diff options
author | Tim Potter <tpot@samba.org> | 2004-02-01 22:17:36 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2004-02-01 22:17:36 +0000 |
commit | 4c49368dbce34fd5f2671c9974d521466592cda9 (patch) | |
tree | 30a1cc3cf4118e59af7a832373a23a4e71e4f9dd | |
parent | 6d69dd9ae223d4793add7f959ef60e4533df7c14 (diff) | |
download | samba-4c49368dbce34fd5f2671c9974d521466592cda9.tar.gz samba-4c49368dbce34fd5f2671c9974d521466592cda9.tar.bz2 samba-4c49368dbce34fd5f2671c9974d521466592cda9.zip |
Include sys/acl.h in check for broken nisplus include files. Bug #1025.
(This used to be commit 5ca866f2475e11759d04dbf6469b055808020d5a)
-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 61a9849d0d..8e0434971c 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2210,7 +2210,9 @@ fi esac AC_CACHE_CHECK([for broken nisplus include files],samba_cv_BROKEN_NISPLUS_INCLUDE_FILES,[ -AC_TRY_COMPILE([#include <sys/acl.h> +AC_TRY_COMPILE([ +#include <sys/types.h> +#include <sys/acl.h> #if defined(HAVE_RPCSVC_NIS_H) #include <rpcsvc/nis.h> #endif], |