X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/6de417d9d4ac8ab67d705e2f6e7ab062154026a9..d4c5cb2b0101299569dbbeeae08597c8300f92e7:/configure.in diff --git a/configure.in b/configure.in index 8ad96c27..746b06d7 100644 --- a/configure.in +++ b/configure.in @@ -958,6 +958,23 @@ else esac fi +if test x"$enable_acl_support" = x"no" -o x"$enable_xattr_support" = x"no" -o x"$enable_iconv" = x"no"; then + AC_MSG_CHECKING([whether $CC supports -Wno-unused-parameter]) + OLD_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -Wno-unused-parameter" + AC_COMPILE_IFELSE([ ], [rsync_warn_flag=yes], [rsync_warn_flag=no]) + AC_MSG_RESULT([$rsync_warn_flag]) + if test x"$rsync_warn_flag" = x"no"; then + CFLAGS="$OLD_CFLAGS" + fi +fi + +case "$CC" in +' checker'*|checker*) + AC_DEFINE(FORCE_FD_ZERO_MEMSET, 1, [Used to make "checker" understand that FD_ZERO() clears memory.]) + ;; +esac + AC_CONFIG_FILES([Makefile lib/dummy zlib/dummy popt/dummy shconfig]) AC_OUTPUT