blob: 0b4ebca1224358362bd93b2b94c8e388bb3b96c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: options.mk,v 1.3 2006/05/31 18:22:25 ghen Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.nntpcache
PKG_SUPPORTED_OPTIONS= nntpcache-pgp
# compile error:
# authinfo_ldap.c: In function `ldap_got_pass':
# authinfo_ldap.c:81: error: dereferencing pointer to incomplete type
# authinfo_ldap.c:47: warning: unused variable `dom'
# PKG_SUPPORTED_OPTIONS+= openldap
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mnntpcache-pgp)
DEPENDS+= pgp-2.*:../../security/pgp2
.endif
.if !empty(PKG_OPTIONS:Mopenldap)
CONFIGURE_ARGS+= --with-authinfo-ldap
.include "../../databases/openldap-client/buildlink3.mk"
.endif
|