diff options
author | adam <adam@pkgsrc.org> | 2021-04-01 10:22:23 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2021-04-01 10:22:23 +0000 |
commit | 0940057cbb39775e6ed7d3c8cb6422fa9256a007 (patch) | |
tree | ce1df44d73a504c344bc8dc2ffdab3e3dd66e61f /databases | |
parent | f8b3e35c9ef698a697f463665de00558cd9f4c9c (diff) | |
download | pkgsrc-0940057cbb39775e6ed7d3c8cb6422fa9256a007.tar.gz |
postgresql13: PLIST fix for gssapi option turned off
Diffstat (limited to 'databases')
-rw-r--r-- | databases/postgresql13-server/PLIST | 6 | ||||
-rw-r--r-- | databases/postgresql13/options.mk | 5 |
2 files changed, 6 insertions, 5 deletions
diff --git a/databases/postgresql13-server/PLIST b/databases/postgresql13-server/PLIST index c56aabce5d2..4a6fc53c85d 100644 --- a/databases/postgresql13-server/PLIST +++ b/databases/postgresql13-server/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2021/03/18 15:04:55 adam Exp $ +@comment $NetBSD: PLIST,v 1.3 2021/04/01 10:22:23 adam Exp $ bin/postgres bin/postmaster include/postgresql/server/plpgsql.h @@ -299,9 +299,9 @@ ${PLIST.llvm}lib/postgresql/bitcode/postgres/lib/rbtree.bc ${PLIST.llvm}lib/postgresql/bitcode/postgres/libpq/auth-scram.bc ${PLIST.llvm}lib/postgresql/bitcode/postgres/libpq/auth.bc ${PLIST.llvm}lib/postgresql/bitcode/postgres/libpq/be-fsstubs.bc -${PLIST.llvm}lib/postgresql/bitcode/postgres/libpq/be-gssapi-common.bc +${PLIST.llvm}${PLIST.gssapi}lib/postgresql/bitcode/postgres/libpq/be-gssapi-common.bc ${PLIST.llvm}lib/postgresql/bitcode/postgres/libpq/be-secure-common.bc -${PLIST.llvm}lib/postgresql/bitcode/postgres/libpq/be-secure-gssapi.bc +${PLIST.llvm}${PLIST.gssapi}lib/postgresql/bitcode/postgres/libpq/be-secure-gssapi.bc ${PLIST.llvm}lib/postgresql/bitcode/postgres/libpq/be-secure-openssl.bc ${PLIST.llvm}lib/postgresql/bitcode/postgres/libpq/be-secure.bc ${PLIST.llvm}lib/postgresql/bitcode/postgres/libpq/crypt.bc diff --git a/databases/postgresql13/options.mk b/databases/postgresql13/options.mk index 548261f653d..43f3a57c8f3 100644 --- a/databases/postgresql13/options.mk +++ b/databases/postgresql13/options.mk @@ -1,10 +1,10 @@ -# $NetBSD: options.mk,v 1.1 2020/10/18 09:24:02 adam Exp $ +# $NetBSD: options.mk,v 1.2 2021/04/01 10:22:23 adam Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql13 PKG_SUPPORTED_OPTIONS= bonjour dtrace icu llvm gssapi ldap nls pam PKG_SUGGESTED_OPTIONS= gssapi nls -PLIST_VARS+= llvm nls +PLIST_VARS+= gssapi llvm nls .include "../../mk/bsd.options.mk" @@ -32,6 +32,7 @@ CONFIGURE_ARGS+= --with-icu # GSSAPI (Kerberos5) authentication for the PostgreSQL backend .if !empty(PKG_OPTIONS:Mgssapi) . include "../../mk/krb5.buildlink3.mk" +PLIST.gssapi= yes CONFIGURE_ARGS+= --with-gssapi .else CONFIGURE_ARGS+= --without-gssapi |