diff options
author | ghen <ghen@pkgsrc.org> | 2007-02-16 16:23:12 +0000 |
---|---|---|
committer | ghen <ghen@pkgsrc.org> | 2007-02-16 16:23:12 +0000 |
commit | c54627ca23273d0feb0e87ccd0e700f82fbb9932 (patch) | |
tree | b933ff8cefa25d2d43f2135f0320220468222dfa /net | |
parent | 2a3096f51cb469e7041704a74d71eb152041c908 (diff) | |
download | pkgsrc-c54627ca23273d0feb0e87ccd0e700f82fbb9932.tar.gz |
Remove the "mysql", "pgsql" and "xml" options, as they were removed from the
Samba distribution since version 3.0.23. "mysql" and "pgsql" passdb backends
are now maintained via http://pdbsql.sourceforge.net/ and will have to be
packaged separately.
Diffstat (limited to 'net')
-rw-r--r-- | net/samba/options.mk | 43 |
1 files changed, 2 insertions, 41 deletions
diff --git a/net/samba/options.mk b/net/samba/options.mk index 0ec883d6132..96107c07f38 100644 --- a/net/samba/options.mk +++ b/net/samba/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.16 2006/05/31 18:22:25 ghen Exp $ +# $NetBSD: options.mk,v 1.17 2007/02/16 16:23:12 ghen Exp $ # Recommended package options for various setups: # @@ -8,12 +8,10 @@ # Domain Controller ldap winbind # PKG_OPTIONS_VAR= PKG_OPTIONS.samba -PKG_SUPPORTED_OPTIONS= ads cups ldap ldap-compat mysql pam pgsql \ - winbind xml +PKG_SUPPORTED_OPTIONS= ads cups ldap ldap-compat pam winbind .include "../../mk/bsd.options.mk" -SAMBA_PASSDB_BACKENDS:= # empty SAMBA_STATIC_MODULES:= # empty ### @@ -75,16 +73,6 @@ CONFIGURE_ARGS+= --without-ldap .endif ### -### Support using a MySQL database as a "passdb backend" for password -### and account information storage. -### -.if !empty(PKG_OPTIONS:Mmysql) -. include "../../mk/mysql.buildlink3.mk" -SAMBA_PASSDB_BACKENDS:= ${SAMBA_PASSDB_BACKENDS},mysql -SAMBA_STATIC_MODULES:= ${SAMBA_STATIC_MODULES},pdb_mysql -.endif - -### ### Support PAM authentication and build smbpass and winbind PAM modules. ### .if !empty(PKG_OPTIONS:Mpam) @@ -112,16 +100,6 @@ PLIST_SUBST+= PAM="@comment " .endif ### -### Support using a PostgreSQL database as a "passdb backend" for password -### and account information storage. -### -.if !empty(PKG_OPTIONS:Mpgsql) -. include "../../mk/pgsql.buildlink3.mk" -SAMBA_PASSDB_BACKENDS:= ${SAMBA_PASSDB_BACKENDS},pgsql -SAMBA_STATIC_MODULES:= ${SAMBA_STATIC_MODULES},pdb_pgsql -.endif - -### ### Support querying a PDC for domain user and group information, e.g., ### through NSS or PAM. ### @@ -193,23 +171,6 @@ PLIST_SUBST+= NSS_WINS="@comment no NSS WINS module" .endif ### -### Support using an XML file as a "passdb backend" for password and -### account information storage. -### -.if !empty(PKG_OPTIONS:Mxml) -. include "../../textproc/libxml2/buildlink3.mk" -SAMBA_PASSDB_BACKENDS:= ${SAMBA_PASSDB_BACKENDS},xml -SAMBA_STATIC_MODULES:= ${SAMBA_STATIC_MODULES},pdb_xml -.endif - -### -### Add the optional passdb backends to the configuration. -### -.if !empty(SAMBA_PASSDB_BACKENDS) -CONFIGURE_ARGS+= --with-expsam=${SAMBA_PASSDB_BACKENDS:S/^,//} -.endif - -### ### Add the optional static modules to the configuration. ### .if !empty(SAMBA_STATIC_MODULES) |