diff options
author | wiz <wiz> | 2015-01-20 23:49:52 +0000 |
---|---|---|
committer | wiz <wiz> | 2015-01-20 23:49:52 +0000 |
commit | 543f9d5d027ba23de9d4d5585ac483d5059f2e2b (patch) | |
tree | 02c6513b1d00ceeb73f604add828cebb23885c0a /net/samba | |
parent | e519ddb181d8e90bb4ecf7c05790e953ddd218fb (diff) | |
download | pkgsrc-543f9d5d027ba23de9d4d5585ac483d5059f2e2b.tar.gz |
Do not enable ads on Darwin-10+ by default.
Fixes PR 49590 by Youri Mouton.
Diffstat (limited to 'net/samba')
-rw-r--r-- | net/samba/options.mk | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/net/samba/options.mk b/net/samba/options.mk index ce9c487325e..9f02fd94091 100644 --- a/net/samba/options.mk +++ b/net/samba/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.32 2014/06/18 09:26:10 wiz Exp $ +# $NetBSD: options.mk,v 1.33 2015/01/20 23:49:52 wiz Exp $ # Recommended package options for various setups: # @@ -9,7 +9,7 @@ # PKG_OPTIONS_VAR= PKG_OPTIONS.samba PKG_SUPPORTED_OPTIONS= ads cups fam ldap pam winbind -PKG_SUGGESTED_OPTIONS= ads ldap pam winbind +PKG_SUGGESTED_OPTIONS= ldap pam winbind .include "../../mk/bsd.fast.prefs.mk" @@ -18,6 +18,10 @@ SAMBA_ACL_OPSYS= AIX Darwin FreeBSD HPUX IRIX Linux OSF1 SunOS PKG_SUPPORTED_OPTIONS+= acl .endif +.if empty(MACHINE_PLATFORM:MDarwin-1[1-9].*) +PKG_SUGGESTED_OPTIONS+= ads +.endif + .include "../../mk/bsd.options.mk" SAMBA_STATIC_MODULES:= # empty |