X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/c6a7f2f48aa3d317343c54e4f47a9d278ab84f2b..fab9a9c54729984199d20b637ea8cc163c73d2e2:/configure.in diff --git a/configure.in b/configure.in index 22999151..e08249da 100644 --- a/configure.in +++ b/configure.in @@ -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,9 @@ 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]) +dnl TYPE_SOCKLEN_T +AC_CHECK_TYPE([socklen_t], [size_t]) AC_CACHE_CHECK([for errno in errno.h],rsync_cv_errno, [ AC_TRY_COMPILE([#include ],[int i = errno], @@ -162,10 +164,10 @@ then AC_CHECK_LIB(popt, poptGetContext, , [with_included_popt=yes]) fi -AC_MSG_CHECKING("whether to use included libpopt") +AC_MSG_CHECKING([whether to use included libpopt]) if test x"$with_included_popt" = x"yes" then - AC_MSG_RESULT("$srcdir/popt") + AC_MSG_RESULT($srcdir/popt) BUILD_POPT='$(popt_OBJS)' CFLAGS="$CFLAGS -I$srcdir/popt" else