diff options
author | adam <adam@pkgsrc.org> | 2010-01-22 20:12:11 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2010-01-22 20:12:11 +0000 |
commit | cc201583efa027e1bf3941b73d8cdff86dd3701a (patch) | |
tree | 9270777f725e53fb47cf7c0a9e1487f21184d8c2 /databases/postgresql82 | |
parent | 1e69ccb6bae14ce8d2b5eda3f9333362744bdf82 (diff) | |
download | pkgsrc-cc201583efa027e1bf3941b73d8cdff86dd3701a.tar.gz |
Added support for gssapi and krb5 authentication as options
Diffstat (limited to 'databases/postgresql82')
-rw-r--r-- | databases/postgresql82/options.mk | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/databases/postgresql82/options.mk b/databases/postgresql82/options.mk index 047fc88e519..4473be865b4 100644 --- a/databases/postgresql82/options.mk +++ b/databases/postgresql82/options.mk @@ -1,15 +1,15 @@ -# $NetBSD: options.mk,v 1.2 2008/02/04 15:29:28 ghen Exp $ +# $NetBSD: options.mk,v 1.3 2010/01/22 20:12:11 adam Exp $ PKG_SUPPORTED_OPTIONS+= # empty .include "../../mk/bsd.options.mk" ### -### PAM authentication for the PostgreSQL backend. +### Kerberos5 authentication for the PostgreSQL backend. ### -.if !empty(PKG_OPTIONS:Mpam) -. include "../../mk/pam.buildlink3.mk" -CONFIGURE_ARGS+= --with-pam +.if !empty(PKG_OPTIONS:Mkrb5) +. include "../../mk/krb5.buildlink3.mk" +CONFIGURE_ARGS+= --with-krb5 .endif ### @@ -19,3 +19,11 @@ CONFIGURE_ARGS+= --with-pam . include "../../databases/openldap-client/buildlink3.mk" CONFIGURE_ARGS+= --with-ldap .endif + +### +### PAM authentication for the PostgreSQL backend. +### +.if !empty(PKG_OPTIONS:Mpam) +. include "../../mk/pam.buildlink3.mk" +CONFIGURE_ARGS+= --with-pam +.endif |