summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2007-03-20 22:17:09 +0000
committergrant <grant@pkgsrc.org>2007-03-20 22:17:09 +0000
commit69495a534eb0decc158c65f9c1932d2b9228f18c (patch)
treebaa0474086f52fd13f1bcff629ce602b96657fb1
parent2a45f71b2ab44155e85172faa4adac370b17bc32 (diff)
downloadpkgsrc-69495a534eb0decc158c65f9c1932d2b9228f18c.tar.gz
add PKG_OPTION acl to enable Access Control Lists. tested on Solaris
10 w/ UFS (ZFS/NFSv4 style ACLs not yet supported as of this release of Samba).
-rw-r--r--net/samba/options.mk11
1 files changed, 9 insertions, 2 deletions
diff --git a/net/samba/options.mk b/net/samba/options.mk
index 0c6fe23f62a..237262ee7f4 100644
--- a/net/samba/options.mk
+++ b/net/samba/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.20 2007/02/19 05:53:37 taca Exp $
+# $NetBSD: options.mk,v 1.21 2007/03/20 22:17:09 grant Exp $
# Recommended package options for various setups:
#
@@ -8,7 +8,7 @@
# Domain Controller ldap winbind
#
PKG_OPTIONS_VAR= PKG_OPTIONS.samba
-PKG_SUPPORTED_OPTIONS= ads cups ldap pam winbind
+PKG_SUPPORTED_OPTIONS= acl ads cups ldap pam winbind
.include "../../mk/bsd.options.mk"
@@ -35,6 +35,13 @@ CONFIGURE_ARGS+= --without-krb5
.endif
###
+### Access Control List support.
+###
+.if !empty(PKG_OPTIONS:Macl)
+CONFIGURE_ARGS+= --with-acl-support
+.endif
+
+###
### Native CUPS support for providing printing services.
###
.if !empty(PKG_OPTIONS:Mcups)