# $NetBSD: options.mk,v 1.3 2019/10/25 12:01:19 triaxx Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql10 PKG_SUPPORTED_OPTIONS= bonjour dtrace icu gssapi ldap nls pam PKG_SUGGESTED_OPTIONS= gssapi nls PLIST_VARS+= nls .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 # ICU collatium support .if !empty(PKG_OPTIONS:Micu) USE_TOOLS+= pkg-config CONFIGURE_ARGS+= --with-icu . include "../../textproc/icu/buildlink3.mk" .endif # GSSAPI (Kerberos5) authentication for the PostgreSQL backend .if !empty(PKG_OPTIONS:Mgssapi) . include "../../mk/krb5.buildlink3.mk" CONFIGURE_ARGS+= --with-gssapi .else CONFIGURE_ARGS+= --without-gssapi .endif # LDAP authentication for the PostgreSQL backend .if !empty(PKG_OPTIONS:Mldap) . include "../../databases/openldap-client/buildlink3.mk" CONFIGURE_ARGS+= --with-ldap .endif # NLS support .if !empty(PKG_OPTIONS:Mnls) USE_PKGLOCALEDIR= yes CONFIGURE_ARGS+= --enable-nls PLIST.nls= yes BROKEN_GETTEXT_DETECTION= yes . include "../../devel/gettext-lib/buildlink3.mk" LIBS.SunOS+= -lintl .else CONFIGURE_ARGS+= --disable-nls .endif # PAM authentication for the PostgreSQL backend .if !empty(PKG_OPTIONS:Mpam) . include "../../mk/pam.buildlink3.mk" CONFIGURE_ARGS+= --with-pam .endif