diff options
author | Lars Müller <lmuelle@samba.org> | 2005-07-20 08:07:06 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:00:13 -0500 |
commit | dc1246e4d484f0d8f10b2d429672e5710363c096 (patch) | |
tree | 5d75c66ae9b7c06d973450aed1b9fbe66d8a7c33 | |
parent | ae64b2f2aad54833fb29911c50406f784bd2d8b6 (diff) | |
download | samba-dc1246e4d484f0d8f10b2d429672e5710363c096.tar.gz samba-dc1246e4d484f0d8f10b2d429672e5710363c096.tar.bz2 samba-dc1246e4d484f0d8f10b2d429672e5710363c096.zip |
r8641: Fix bug #2262. Now we accept freebsd 5 till 9 as suggested by Timur
Bakeyev.
(This used to be commit d395ba2d40fdb5df04f0b6fbe9b4893002a3fcae)
-rw-r--r-- | source3/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/configure.in b/source3/configure.in index 928e57baac..d11acd0267 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -4036,7 +4036,7 @@ AC_ARG_WITH(acl-support, AC_DEFINE(HAVE_TRU64_ACLS,1,[Whether Tru64 ACLs are available]) ACL_LIBS="$ACL_LIBS -lpacl" ;; - *freebsd5*|*freebsd6*) + *freebsd[[5-9]]*) AC_MSG_RESULT(Using FreeBSD posix ACLs) AC_DEFINE(HAVE_POSIX_ACLS,1,[Whether FreeBSD POSIX ACLs are available]) AC_DEFINE(HAVE_ACL_GET_PERM_NP,1,[Whether acl_get_perm_np() is available]) @@ -4435,7 +4435,7 @@ case "$host_os" in *linux*) WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_linux.o" ;; - *freebsd5*|*freebsd6*) + *freebsd[[5-9]]*) # FreeBSD winbind client is implemented as a wrapper around # the Linux version. WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_freebsd.o \ |