[BACK]Return to options.mk CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / pkgsrc / databases / postgresql94

File: [cvs.NetBSD.org] / pkgsrc / databases / postgresql94 / Attic / options.mk (download)

Revision 1.3, Thu Dec 7 14:19:32 2017 UTC (6 years, 4 months ago) by adam
Branch: MAIN
Changes since 1.2: +2 -18 lines

postgresql: removed obsolete "kerberos" option; fix for #52787

# $NetBSD: options.mk,v 1.3 2017/12/07 14:19:32 adam Exp $

PKG_OPTIONS_VAR=	PKG_OPTIONS.postgresql94
PKG_SUPPORTED_OPTIONS=	bonjour dtrace ldap pam

.include "../../mk/bsd.options.mk"

# Bonjour support
.if !empty(PKG_OPTIONS:Mbonjour)
CONFIGURE_ARGS+=	--with-bonjour
.  if ${OPSYS} != "Darwin"
LIBS+=			-ldns_sd
.  endif
.  include "../../net/mDNSResponder/buildlink3.mk"
.endif

# Dtrace support
.if !empty(PKG_OPTIONS:Mdtrace)
CONFIGURE_ARGS+=	--enable-dtrace
.endif

# LDAP authentication for the PostgreSQL backend
.if !empty(PKG_OPTIONS:Mldap)
.  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