diff options
author | Tim Potter <tpot@samba.org> | 2004-02-01 22:19:01 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2004-02-01 22:19:01 +0000 |
commit | 152e2282164069d63dde7b15f96d637db5a25245 (patch) | |
tree | e17d06f66dfca744bc993d80cbef725f0854286c /source3 | |
parent | d16540d3c4794010bb6ca8f4c29d68b527195d83 (diff) | |
download | samba-152e2282164069d63dde7b15f96d637db5a25245.tar.gz samba-152e2282164069d63dde7b15f96d637db5a25245.tar.bz2 samba-152e2282164069d63dde7b15f96d637db5a25245.zip |
Merge from 3.0:
>Include sys/acl.h in check for broken nisplus include files. Bug #1025.
(This used to be commit cbf9c3d3953e25999312492dc08f61db875a04e7)
Diffstat (limited to 'source3')
-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 94f623f6e3..af6836f060 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2211,7 +2211,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], |