summaryrefslogtreecommitdiff
path: root/databases/postgresql82
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2010-01-22 20:12:11 +0000
committeradam <adam@pkgsrc.org>2010-01-22 20:12:11 +0000
commitcc201583efa027e1bf3941b73d8cdff86dd3701a (patch)
tree9270777f725e53fb47cf7c0a9e1487f21184d8c2 /databases/postgresql82
parent1e69ccb6bae14ce8d2b5eda3f9333362744bdf82 (diff)
downloadpkgsrc-cc201583efa027e1bf3941b73d8cdff86dd3701a.tar.gz
Added support for gssapi and krb5 authentication as options
Diffstat (limited to 'databases/postgresql82')
-rw-r--r--databases/postgresql82/options.mk18
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