diff options
author | jlam <jlam@pkgsrc.org> | 2004-11-21 07:57:38 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-11-21 07:57:38 +0000 |
commit | 1d9b0c6b9571b70aa6d693cb58034a06889cc372 (patch) | |
tree | 53e78d32d713ec870e4552596ecb2aef4189536b /devel | |
parent | fd677b604865e52dc5027b726d73ae5ab9c38c58 (diff) | |
download | pkgsrc-1d9b0c6b9571b70aa6d693cb58034a06889cc372.tar.gz |
The common global option for LDAP support is "ldap".
Diffstat (limited to 'devel')
-rw-r--r-- | devel/apr/options.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/apr/options.mk b/devel/apr/options.mk index bfda3aec7d4..da16154f580 100644 --- a/devel/apr/options.mk +++ b/devel/apr/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.2 2004/11/17 19:33:11 xtraeme Exp $ +# $NetBSD: options.mk,v 1.3 2004/11/21 07:57:38 jlam Exp $ # # XXX Support for the following variables will be removed after the # XXX pkgsrc-2004Q4 branch is released: @@ -11,11 +11,11 @@ PKG_DEFAULT_OPTIONS+= db4 .endif .if defined(APR_USE_OPENLDAP) && !empty(APR_USE_OPENLDAP:M[Yy][Ee][Ss]) -PKG_DEFAULT_OPTIONS+= openldap +PKG_DEFAULT_OPTIONS+= ldap .endif PKG_OPTIONS_VAR= PKG_OPTIONS.apr -PKG_SUPPORTED_OPTIONS= db4 openldap +PKG_SUPPORTED_OPTIONS= db4 ldap .include "../../mk/bsd.options.mk" @@ -27,7 +27,7 @@ APU_CONFIGURE_ARGS+= \ APU_CONFIGURE_ARGS+= --with-dbm=sdbm .endif -.if !empty(PKG_OPTIONS:Mopenldap) +.if !empty(PKG_OPTIONS:Mldap) APU_CONFIGURE_ARGS+= --with-ldap APR_CONFIGURE_ARGS+= --with-ldap . include "../../databases/openldap/buildlink3.mk" |