Fix check for ino_t to work with both autoconf2.50 and autoconf2.13.
[rsync/rsync.git] / configure.in
index 2299915..21ac489 100644 (file)
@@ -39,7 +39,7 @@ AC_ARG_WITH(included-popt,
         [  --with-included-popt    use bundled popt library, not from system])
 
 AC_ARG_WITH(rsync-path,
-       [  --with-rsync-path=PATH  set rsync path used on server to PATH (default: "rsync")],
+       [  --with-rsync-path=PATH  set default --rsync-path to PATH (default: \"rsync\")],
        [ RSYNC_PATH="$with_rsync_name" ],
        [ RSYNC_PATH="rsync" ])
 AC_DEFINE_UNQUOTED(RSYNC_PATH, "$RSYNC_PATH", [ ])
@@ -76,7 +76,7 @@ AC_TYPE_SIZE_T
 AC_TYPE_PID_T
 AC_TYPE_GETGROUPS
 AC_STRUCT_ST_RDEV
-AC_CHECK_TYPE(ino_t,unsigned, [ ])
+AC_CHECK_TYPE([ino_t], [unsigned])
 
 AC_CACHE_CHECK([for errno in errno.h],rsync_cv_errno, [
     AC_TRY_COMPILE([#include <errno.h>],[int i = errno],