blob: 0b06b7d0d58af2b93a1c3b71c79bd5e28135cb11 (
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.2 2006/01/01 18:53:03 wiz 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/buildlink3.mk"
.endif
|