You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2001/04/18 22:56:04 UTC

cvs commit: httpd-2.0/modules/http config2.m4 config.m4

rbb         01/04/18 13:56:04

  Modified:    .        STATUS
  Added:       modules/http config2.m4
  Removed:     modules/http config.m4
  Log:
  There is a bug in how we sort some hooks, the pre-config hook is one that
  is definately incorrect.  Basically, the first time we call the pre-config
  hooks, they are sorted correctly.  However, when we call them the second
  time, we use the order that modules are loaded into the server.  This
  move basically puts the http_module after mod_log_config in the compiled
  server.  It is a hack, and a work-around to allow for my next commit.
  
  When the hook sort issue is solved, this should be re-named to config.m4
  
  Revision  Changes    Path
  1.224     +8 -1      httpd-2.0/STATUS
  
  Index: STATUS
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/STATUS,v
  retrieving revision 1.223
  retrieving revision 1.224
  diff -u -d -b -w -u -r1.223 -r1.224
  --- STATUS	2001/04/10 18:05:19	1.223
  +++ STATUS	2001/04/18 20:56:03	1.224
  @@ -1,5 +1,5 @@
   APACHE 2.0 STATUS:						-*-text-*-
  -Last modified at [$Date: 2001/04/10 18:05:19 $]
  +Last modified at [$Date: 2001/04/18 20:56:03 $]
   
   Release:
   
  @@ -24,6 +24,13 @@
   RELEASE SHOWSTOPPERS:
   
       WARNING: ALWAYS check srclib/apr/STATUS and srclib/apr-util/STATUS
  +
  +    * There is a bug in how we sort some hooks, at least the pre-config
  +      hook.  The first time we call the hooks, they are in the correct 
  +      order, but the second time, we don't sort them correctly.  Currently,
  +      the modules/http/config.m4 file has been renamed to 
  +      modules/http/config2.m4 to work around this problem, it should moved
  +      back when this is fixed.    rbb
   
       * Root all file systems with <Directory /> for WIN32/OS2/NW permissions 
           Status: patch brought forward from 1.3.14
  
  
  
  1.1                  httpd-2.0/modules/http/config2.m4
  
  Index: config2.m4
  ===================================================================
  dnl modules enabled in this directory by default
  
  APACHE_MODPATH_INIT(http)
  
  http_objects="http_core.lo http_protocol.lo http_request.lo"
  
  APACHE_MODULE(http, HTTP protocol handling, $http_objects, , yes)
  APACHE_MODULE(mime, mapping of file-extension to MIME, , , yes)
  
  APACHE_MODPATH_FINISH