diff options
author | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2010-05-07 13:14:38 +0800 |
---|---|---|
committer | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2010-05-07 13:14:38 +0800 |
commit | 02a2b9d8f03f1f665bcb5789beb60bb64f164367 (patch) | |
tree | e6726990c628ab8c62bff0b41b3a945e75560375 /www | |
parent | 782d0a4471497c04fffad12bf27383357101ea54 (diff) | |
download | freebsd-ports-gnome-02a2b9d8f03f1f665bcb5789beb60bb64f164367.tar.gz freebsd-ports-gnome-02a2b9d8f03f1f665bcb5789beb60bb64f164367.tar.zst freebsd-ports-gnome-02a2b9d8f03f1f665bcb5789beb60bb64f164367.zip |
- fix ldap support (duplicate www/apache20 fix)
--with-ldap switches on LDAP library linking in apr-util
--enable-ldap option switches on the LDAP caching module
--enable-authnz-ldap option switches on the LDAP authentication module
[AAA was rewritten in 3 peices in 2.4.x, hence the option change]
- no custom patch, the linking was fixed in 2.2.x
- ldap is not in the default package, so no PORTREVISION bump
PR: ports/128079
Reported by: koitsu, skreuzer
With Hat: apache@
Diffstat (limited to 'www')
-rw-r--r-- | www/apache22/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/apache22/Makefile b/www/apache22/Makefile index a484be19621c..d182dd225988 100644 --- a/www/apache22/Makefile +++ b/www/apache22/Makefile @@ -147,8 +147,8 @@ SCRIPTS_ENV+= FULLBUILD=on .endif .if defined (WITH_LDAP) || defined (WITH_LDAP_MODULES) -USE_OPENLDAP= YES -CONFIGURE_ARGS+= --with-ldap \ +USE_OPENLDAP= yes +CONFIGURE_ARGS+= --enable-ldap=shared --with-ldap --enable-authnz-ldap \ --with-ldap-lib="${LOCALBASE}/lib" \ --with-ldap-include="${LOCALBASE}/include" .endif |