From 8db2b8cdf8240726322058c3379dfd88dafa7e71 Mon Sep 17 00:00:00 2001 From: Graham Leggett Date: Fri, 22 Nov 2002 12:35:44 +0000 Subject: [PATCH] Reorder the definitions for mod_ldap and mod_auth_ldap within config.m4 to make sure the parent mod_ldap is defined first. This ensures that mod_ldap comes before mod_auth_ldap in the httpd.conf file, which is necessary for mod_auth_ldap to load. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97596 13f79535-47bb-0310-9956-ffa450edef68 --- modules/experimental/config.m4 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/experimental/config.m4 b/modules/experimental/config.m4 index f8d3b67b07..d02181a587 100644 --- a/modules/experimental/config.m4 +++ b/modules/experimental/config.m4 @@ -28,9 +28,11 @@ APACHE_MODULE(mem_cache, memory caching module, $mem_cache_objs, , no) APACHE_MODULE(example, example and demo module, , , no) APACHE_MODULE(case_filter, example uppercase conversion filter, , , no) APACHE_MODULE(case_filter_in, example uppercase conversion input filter, , , no) -APACHE_MODULE(auth_ldap, LDAP based authentication, , , no) 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" +APACHE_MODULE(auth_ldap, LDAP based authentication, $auth_ldap_objects, , no) + APACHE_MODPATH_FINISH -- 2.40.0