Configure check for -Wno-unused-parameter now tries to link too.
authorWayne Davison <wayned@samba.org>
Thu, 31 Dec 2009 03:57:47 +0000 (19:57 -0800)
committerWayne Davison <wayned@samba.org>
Thu, 31 Dec 2009 03:57:47 +0000 (19:57 -0800)
configure.in

index ece0b2ac2c2ccaf637d1468e76d6d60949b83406..35f5b1d7cffc50c2bbd4d2c1cd0c4bc35dbbba74 100644 (file)
@@ -988,7 +988,7 @@ if test x"$enable_acl_support" = x"no" -o x"$enable_xattr_support" = x"no" -o x"
     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_TRY_LINK([#include <stdio.h>], [printf("hello\n");], [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"