X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/4440b8aa3fb0edb9626c8eaa4856d72f78c9e176..08f15335b5b469b29cbdacd0fc5ba48d76acf280:/configure.in diff --git a/configure.in b/configure.in index 79aab779..1e7da12a 100644 --- a/configure.in +++ b/configure.in @@ -37,6 +37,7 @@ AC_TYPE_MODE_T AC_TYPE_OFF_T AC_TYPE_SIZE_T AC_TYPE_PID_T +AC_TYPE_GETGROUPS AC_STRUCT_ST_RDEV AC_CHECK_TYPE(ino_t,unsigned) @@ -49,22 +50,41 @@ fi AC_FUNC_MEMCMP AC_FUNC_UTIME_NULL -AC_CHECK_FUNCS(waitpid getcwd strdup strerror chown chmod mknod) +AC_CHECK_FUNCS(waitpid wait4 getcwd strdup strerror chown chmod mknod) AC_CHECK_FUNCS(fchmod fstat strchr readlink link utime utimes strftime) -AC_CHECK_FUNCS(memmove getopt_long lchown vsnprintf snprintf setsid glob strpbrk) -AC_CHECK_FUNCS(strlcat strlcpy) +AC_CHECK_FUNCS(memmove lchown vsnprintf snprintf setsid glob strpbrk) +AC_CHECK_FUNCS(strlcat strlcpy inet_aton socketpair) -echo $ac_n "checking for working fnmatch... $ac_c" +AC_CACHE_CHECK([for working fnmatch],rsync_cv_HAVE_FNMATCH,[ AC_TRY_RUN([#include -main() { exit(fnmatch("*.o", "x.o", 0) == 0? 0: 1); }], -echo yes;AC_DEFINE(HAVE_FNMATCH), -echo no) +main() { exit((fnmatch("*.o", "x.o", FNM_PATHNAME) == 0 && + fnmatch("a/b/*", "a/b/c/d", FNM_PATHNAME) != 0) ? 0: 1); }], +rsync_cv_HAVE_FNMATCH=yes,rsync_cv_HAVE_FNMATCH=no,rsync_cv_HAVE_FNMATCH=cross)]) +if test x"$rsync_cv_HAVE_FNMATCH" = x"yes"; then + AC_DEFINE(HAVE_FNMATCH) +fi + +# sometimes getopt_long cannot parse same arguments twice +# e.g. on certain versions of CygWin32 +AC_CACHE_CHECK([for working getopt_long],rsync_cv_HAVE_GETOPT_LONG,[ +AC_TRY_RUN([#include +main() { + int i, x = 0; char *argv[] = { "x", "--xx" }; + struct option o[] = {{"xx", 0, 0, 1}, {0,0,0,0}}; + getopt_long(2, argv, "x", o, &i) == 1 ? x++ : 0; optind = 0; + getopt_long(2, argv, "x", o, &i) == 1 ? x++ : 0; + exit(x == 2 ? 0 : 1); +}], rsync_cv_HAVE_GETOPT_LONG=yes,rsync_cv_HAVE_GETOPT_LONG=no, + rsync_cv_HAVE_GETOPT_LONG=cross)]) +if test x"$rsync_cv_HAVE_GETOPT_LONG" = x"yes"; then + AC_DEFINE(HAVE_GETOPT_LONG) +fi -AC_CACHE_CHECK([for long long],rsync_cv_have_longlong,[ +AC_CACHE_CHECK([for long long],rsync_cv_HAVE_LONGLONG,[ AC_TRY_RUN([#include main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }], -rsync_cv_have_longlong=yes,rsync_cv_have_longlong=no,rsync_cv_have_longlong=cross)]) -if test x"$rsync_cv_have_longlong" = x"yes"; then +rsync_cv_HAVE_LONGLONG=yes,rsync_cv_HAVE_LONGLONG=no,rsync_cv_HAVE_LONGLONG=cross)]) +if test x"$rsync_cv_HAVE_LONGLONG" = x"yes"; then AC_DEFINE(HAVE_LONGLONG) fi @@ -77,13 +97,15 @@ if test x"$rsync_cv_HAVE_OFF64_T" = x"yes"; then AC_DEFINE(HAVE_OFF64_T) fi -echo $ac_n "checking for short ino_t ... $ac_c" +AC_CACHE_CHECK([for short ino_t],rsync_cv_HAVE_SHORT_INO_T,[ AC_TRY_RUN([#include #include #include main() { if (sizeof(ino_t) < sizeof(unsigned int)) return 0; return 1; }], -echo yes;AC_DEFINE(HAVE_SHORT_INO_T), -echo no) +rsync_cv_HAVE_SHORT_INO_T=yes,rsync_cv_HAVE_SHORT_INO_T=no,rsync_cv_HAVE_SHORT_INO_T=cross)]) +if test x"$rsync_cv_HAVE_SHORT_INO_T" = x"yes"; then + AC_DEFINE(HAVE_SHORT_INO_T) +fi AC_CACHE_CHECK([for unsigned char],rsync_cv_HAVE_UNSIGNED_CHAR,[ AC_TRY_RUN([#include @@ -113,6 +135,17 @@ if test x"$rsync_cv_HAVE_UTIMBUF" = x"yes"; then AC_DEFINE(HAVE_UTIMBUF) fi +AC_CACHE_CHECK([if gettimeofday takes tz argument],rsync_cv_HAVE_GETTIMEOFDAY_TZ,[ +AC_TRY_RUN([ +#include +#include +main() { struct timeval tv; exit(gettimeofday(&tv, NULL));}], + rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes,rsync_cv_HAVE_GETTIMEOFDAY_TZ=no,rsync_cv_HAVE_GETTIMEOFDAY_TZ=cross)]) +if test x"$rsync_cv_HAVE_GETTIMEOFDAY_TZ" = x"yes"; then + AC_DEFINE(HAVE_GETTIMEOFDAY_TZ) +fi + + AC_CACHE_CHECK([for broken inet_ntoa],rsync_cv_REPLACE_INET_NTOA,[ AC_TRY_RUN([ #include @@ -173,24 +206,29 @@ fi # # The following test was mostly taken from the tcl/tk plus patches # -echo $ac_n "checking whether -c -o works ... $ac_c" +AC_CACHE_CHECK([whether -c -o works],rsync_cv_DASHC_WORKS_WITH_DASHO,[ rm -rf conftest* cat > conftest.$ac_ext <