X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/c627d61324e9dcd5df833ee6236dd10415f5bac4..d5ee1f8e7a370884aa9c5353de5129728ed9a37b:/configure.in diff --git a/configure.in b/configure.in index 9a04b264..0d34b4a6 100644 --- a/configure.in +++ b/configure.in @@ -12,7 +12,8 @@ AC_HEADER_STDC AC_HEADER_TIME AC_HEADER_SYS_WAIT AC_CHECK_HEADERS(sys/fcntl.h fcntl.h sys/time.h unistd.h utime.h grp.h) -AC_CHECK_HEADERS(compat.h sys/param.h ctype.h sys/wait.h) +AC_CHECK_HEADERS(compat.h sys/param.h ctype.h sys/wait.h sys/ioctl.h) +AC_CHECK_HEADERS(sys/filio.h) AC_CHECK_SIZEOF(int) AC_CHECK_SIZEOF(long) @@ -28,7 +29,7 @@ AC_TYPE_SIZE_T AC_TYPE_PID_T AC_STRUCT_ST_RDEV -echo -n "checking for errno in errno.h... " +echo $ac_n "checking for errno in errno.h... $ac_c" AC_TRY_COMPILE([#include ],[int i = errno], echo yes; AC_DEFINE(HAVE_ERRNO_DECL), echo no) @@ -37,9 +38,10 @@ AC_FUNC_MEMCMP AC_FUNC_MMAP AC_FUNC_UTIME_NULL AC_CHECK_FUNCS(waitpid strtok pipe getcwd mkdir strdup strerror chown chmod mknod) -AC_CHECK_FUNCS(fchmod fstat strchr bcopy bzero readlink utime utimes getopt_long) +AC_CHECK_FUNCS(fchmod fstat strchr bcopy bzero readlink utime utimes) +AC_CHECK_FUNCS(memmove getopt_long) -echo -n "checking for working fnmatch... " +echo $ac_n "checking for working fnmatch... $ac_c" AC_TRY_RUN([#include main() { exit(fnmatch("*.o", "x.o", 0) == 0? 0: 1); }], echo yes;AC_DEFINE(HAVE_FNMATCH),