diff options
author | adam <adam@pkgsrc.org> | 2017-12-07 14:19:32 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2017-12-07 14:19:32 +0000 |
commit | 4f16b91a09616ecf33b59253ed7845eb8c9ff354 (patch) | |
tree | 682309d4bf7af53df77209d77aaf9fbc50794bdf /databases/postgresql93 | |
parent | 05902f9bbf7e337c13d142c72d8603de3966bcf4 (diff) | |
download | pkgsrc-4f16b91a09616ecf33b59253ed7845eb8c9ff354.tar.gz |
postgresql: removed obsolete "kerberos" option; fix for #52787
Diffstat (limited to 'databases/postgresql93')
-rw-r--r-- | databases/postgresql93/Makefile.common | 3 | ||||
-rw-r--r-- | databases/postgresql93/options.mk | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/databases/postgresql93/Makefile.common b/databases/postgresql93/Makefile.common index 2b5b305bcc8..fcf1538a483 100644 --- a/databases/postgresql93/Makefile.common +++ b/databases/postgresql93/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.29 2017/11/13 09:33:31 adam Exp $ +# $NetBSD: Makefile.common,v 1.30 2017/12/07 14:19:32 adam Exp $ # # This Makefile fragment is included by all PostgreSQL packages built from # the main sources of the PostgreSQL distribution except jdbc-postgresql. @@ -112,6 +112,7 @@ LIBS.SunOS+= -lintl .include "../../devel/zlib/buildlink3.mk" .include "../../textproc/libxml2/buildlink3.mk" +.include "../../mk/krb5.buildlink3.mk" .include "../../mk/readline.buildlink3.mk" .if ${READLINE_TYPE} == "editline" CONFIGURE_ARGS+= --with-libedit-preferred diff --git a/databases/postgresql93/options.mk b/databases/postgresql93/options.mk index 6603c9066d5..b6fe36a67a6 100644 --- a/databases/postgresql93/options.mk +++ b/databases/postgresql93/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.3 2017/11/13 09:33:31 adam Exp $ +# $NetBSD: options.mk,v 1.4 2017/12/07 14:19:32 adam Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql93 PKG_SUPPORTED_OPTIONS= bonjour dtrace kerberos ldap pam @@ -21,7 +21,6 @@ CONFIGURE_ARGS+= --enable-dtrace # Kerberos5 authentication for the PostgreSQL backend .if !empty(PKG_OPTIONS:Mkerberos) -. include "../../mk/krb5.buildlink3.mk" CONFIGURE_ARGS+= --with-krb5 CHECK_BUILTIN.${KRB5_TYPE}:= yes |