You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mi...@apache.org on 2002/11/22 13:35:44 UTC

cvs commit: httpd-2.0/modules/experimental config.m4

minfrin     2002/11/22 04:35:44

  Modified:    modules/experimental config.m4
  Log:
  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.
  
  Revision  Changes    Path
  1.25      +3 -1      httpd-2.0/modules/experimental/config.m4
  
  Index: config.m4
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/experimental/config.m4,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- config.m4	14 Nov 2002 20:24:03 -0000	1.24
  +++ config.m4	22 Nov 2002 12:35:44 -0000	1.25
  @@ -28,9 +28,11 @@
   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