X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/5a788adec19043d4d93c4fa2713f9f633bfd35ab..4440b8aa3fb0edb9626c8eaa4856d72f78c9e176:/configure.in diff --git a/configure.in b/configure.in index 4d96eca0..79aab779 100644 --- a/configure.in +++ b/configure.in @@ -49,7 +49,7 @@ fi AC_FUNC_MEMCMP AC_FUNC_UTIME_NULL -AC_CHECK_FUNCS(mmap munmap waitpid getcwd strdup strerror chown chmod mknod) +AC_CHECK_FUNCS(waitpid 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) @@ -162,6 +162,14 @@ if test x"$ac_cv_func_connect" = x"no"; then fi fi +# +# if we can't find strcasecmp, look in -lresolv (for Unixware at least) +# +AC_CHECK_FUNCS(strcasecmp) +if test x"$ac_cv_func_strcasecmp" = x"no"; then + AC_CHECK_LIB(resolv, strcasecmp) +fi + # # The following test was mostly taken from the tcl/tk plus patches #