mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
bac9ac8d0a
--with-ldap switches on LDAP library linking in apr-util --enable-ldap option switches on the LDAP caching module --enable-auth-ldap option switches on the LDAP authentication module also apply a custom patch to fix the linking - add a missing quote to OPTIONS desc - ldap is not in the default package, so no PORTREVISION bump PR: ports/128079 Reported by: koitsu, skreuzer With Hat: apache@
12 lines
520 B
Plaintext
12 lines
520 B
Plaintext
--- modules/experimental/config.m4.orig 2010-05-07 00:41:44.796911069 -0400
|
|
+++ modules/experimental/config.m4 2010-05-07 00:41:27.000000000 -0400
|
|
@@ -33,7 +33,7 @@
|
|
ldap_objects="util_ldap.lo util_ldap_cache.lo util_ldap_cache_mgr.lo"
|
|
APACHE_MODULE(ldap, LDAP caching and connection pooling services, $ldap_objects, , no)
|
|
|
|
-auth_ldap_objects="mod_auth_ldap.lo"
|
|
+auth_ldap_objects="mod_auth_ldap.lo $ldap_objects"
|
|
APACHE_MODULE(auth_ldap, LDAP based authentication, $auth_ldap_objects, , no)
|
|
|
|
APACHE_MODPATH_FINISH
|