diff options
author | pgollucci <pgollucci@FreeBSD.org> | 2010-05-07 13:14:38 +0800 |
---|---|---|
committer | pgollucci <pgollucci@FreeBSD.org> | 2010-05-07 13:14:38 +0800 |
commit | 3fcce68329fe3a224edefebeec6af67bb44358fe (patch) | |
tree | c16c174544ebbaa24918f37dc26d75ae4d1ad181 /www/apache22 | |
parent | c0c7ab2ea8421121a3142e721ce9f0e30733ef85 (diff) | |
download | freebsd-ports-gnome-3fcce68329fe3a224edefebeec6af67bb44358fe.tar.gz freebsd-ports-gnome-3fcce68329fe3a224edefebeec6af67bb44358fe.tar.zst freebsd-ports-gnome-3fcce68329fe3a224edefebeec6af67bb44358fe.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/apache22')
-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 |