blob: fa505652aa7632e164c3f186bf595b8600100309 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: options.mk,v 1.2 2004/11/17 19:56:49 xtraeme Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.balsa2
PKG_SUPPORTED_OPTIONS= openldap ssl
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mopenldap)
CONFIGURE_ARGS+= --with-ldap
. include "../../databases/openldap/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mssl)
CONFIGURE_ARGS+= --with-ssl=${BUILDLINK_PREFIX.openssl}
. include "../../security/openssl/buildlink3.mk"
.endif
|