From 9521e82361b6918912bfd5d905a0e08e6361a286 Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Fri, 2 Jul 2010 22:35:28 +0200 Subject: [PATCH] s3 build: Attempt to fix *netgrent prototype detection on opensolaris --- source3/configure.in | 12 +++++++++--- 1 files changed, 9 insertions(+), 3 deletions(-) diff --git a/source3/configure.in b/source3/configure.in index 424c320..4c17e4c 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -6424,21 +6424,27 @@ CFLAGS_SAVE=$CFLAGS CFLAGS="$CFLAGS -Werror-implicit-function-declaration" AC_CACHE_CHECK([for setnetgrent prototype],samba_cv_setnetgrent_prototype, [ AC_TRY_COMPILE([#include - #include],[setnetgrent("foo")], + #ifdef HAVE_NETGROUP_H + #include + #endif],[setnetgrent("foo")], samba_cv_setnetgrent_prototype=yes, samba_cv_setnetgrent_prototype=no)]) if test x"$samba_cv_setnetgrent_prototype" = x"yes"; then AC_DEFINE(HAVE_SETNETGRENT_PROTOTYPE, 1, [If setnetgrent prototype is defined]) fi AC_CACHE_CHECK([for getnetgrent prototype],samba_cv_getnetgrent_prototype, [ AC_TRY_COMPILE([#include - #include],[char *dom, *user,*host; getnetgrent(&dom,&user,&host)], + #ifdef HAVE_NETGROUP_H + #include + #endif],[char *dom, *user,*host; getnetgrent(&dom,&user,&host)], samba_cv_getnetgrent_prototype=yes, samba_cv_getnetgrent_prototype=no)]) if test x"$samba_cv_getnetgrent_prototype" = x"yes"; then AC_DEFINE(HAVE_GETNETGRENT_PROTOTYPE, 1, [If getnetgrent prototype is defined]) fi AC_CACHE_CHECK([for endnetgrent prototype],samba_cv_endnetgrent_prototype, [ AC_TRY_COMPILE([#include - #include],[endnetgrent()], + #ifdef HAVE_NETGROUP_H + #include + #endif],[endnetgrent()], samba_cv_endnetgrent_prototype=yes, samba_cv_endnetgrent_prototype=no)]) if test x"$samba_cv_endnetgrent_prototype" = x"yes"; then AC_DEFINE(HAVE_ENDNETGRENT_PROTOTYPE, 1, [If endnetgrent prototype is defined]) -- 1.7.0.4