Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

View File

@@ -0,0 +1,30 @@
# $NetBSD: options.mk,v 1.1 2016/03/11 21:30:55 fhajny Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql-pgpool
PKG_SUPPORTED_OPTIONS= memcached pam ssl
.include "../../mk/bsd.options.mk"
###
### memcached support.
###
.if !empty(PKG_OPTIONS:Mmemcached)
CONFIGURE_ARGS+= --with-memcached=${BUILDLINK_PREFIX.libmemcached}
.include "../../devel/libmemcached/buildlink3.mk"
.endif
###
### pam support.
###
.if !empty(PKG_OPTIONS:Mpam)
CONFIGURE_ARGS+= --with-pam
.include "../../mk/pam.buildlink3.mk"
.endif
###
### OpenSSL support.
###
.if !empty(PKG_OPTIONS:Mssl)
CONFIGURE_ARGS+= --with-openssl
.include "../../security/openssl/buildlink3.mk"
.endif