diff options
-rw-r--r-- | source3/configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 5156159aa1..db524d5891 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -6510,7 +6510,9 @@ AC_SUBST(FLAGS1) ################################################### # Check for different/missing (set|get|end)netgrent prototypes CFLAGS_SAVE=$CFLAGS -CFLAGS="$CFLAGS -Werror-implicit-function-declaration" +if test x"$samba_cv_HAVE_Wdeclaration_after_statement" = x"yes"; then + CFLAGS="$CFLAGS -Werror-implicit-function-declaration" +fi AC_CACHE_CHECK([for setnetgrent prototype],samba_cv_setnetgrent_prototype, [ AC_TRY_COMPILE([#include<netdb.h> #ifdef HAVE_NETGROUP_H |