You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by er...@apache.org on 2005/01/07 18:23:03 UTC

svn commit: r124543 - /httpd/httpd/branches/2.0.x/CHANGES /httpd/httpd/branches/2.0.x/STATUS /httpd/httpd/branches/2.0.x/modules/config5.m4

Author: erikabele
Date: Fri Jan  7 09:22:59 2005
New Revision: 124543

URL: http://svn.apache.org/viewcvs?view=rev&rev=124543
Log:
Backport r104934:
Allow for the use of --with-module=foo:bar where the ./modules/foo
directory is local only. Assumes, of course, that the required
files are in ./modules/foo, but makes it easier to statically
build/log "external" modules.


Modified:
   httpd/httpd/branches/2.0.x/CHANGES
   httpd/httpd/branches/2.0.x/STATUS
   httpd/httpd/branches/2.0.x/modules/config5.m4

Modified: httpd/httpd/branches/2.0.x/CHANGES
Url: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.0.x/CHANGES?view=diff&rev=124543&p1=httpd/httpd/branches/2.0.x/CHANGES&r1=124542&p2=httpd/httpd/branches/2.0.x/CHANGES&r2=124543
==============================================================================
--- httpd/httpd/branches/2.0.x/CHANGES	(original)
+++ httpd/httpd/branches/2.0.x/CHANGES	Fri Jan  7 09:22:59 2005
@@ -1,5 +1,10 @@
 Changes with Apache 2.0.53
 
+  *) Allow for the use of --with-module=foo:bar where the ./modules/foo
+     directory is local only. Assumes, of course, that the required
+     files are in ./modules/foo, but makes it easier to statically
+     build/log "external" modules.  [Jim Jagielski]
+
   *) Util_ldap: Implemented the util_ldap_cache_getuserdn() API so that 
      ldap authorization only modules have access to the util_ldap 
      user cache without having to require ldap authentication as well.  

Modified: httpd/httpd/branches/2.0.x/STATUS
Url: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.0.x/STATUS?view=diff&rev=124543&p1=httpd/httpd/branches/2.0.x/STATUS&r1=124542&p2=httpd/httpd/branches/2.0.x/STATUS&r2=124543
==============================================================================
--- httpd/httpd/branches/2.0.x/STATUS	(original)
+++ httpd/httpd/branches/2.0.x/STATUS	Fri Jan  7 09:22:59 2005
@@ -106,18 +106,6 @@
        PR: 31848
        +1: jorton, wrowe, jim
 
-    *) Allow for the use of --with-module=foo:bar where the ./modules/foo
-       directory is a local addition to the ./modules directory.
-       Assumes, of course, that the required files are in ./modules/foo,
-       but makes it easier to statically build "external" modules by
-       simply adding them to ./modules.
-         modules/config5.m4: 1.4
-       +1: jim, jerenkrantz, erikabele
-       +0: wrowe
-           (would rather see --with-module-lib=foo --enable-bar=shared syntax to
-            support multiple libs, module modules.  Might need to pass the
-            --with-module-lib=foo to ./buildconf instead.)
-
     *) several changes to improve logging of connection-oriented errors, including
        ap_log_cerror() API (needs minor bump in addition to changes below)
          http://cvs.apache.org/viewcvs.cgi/httpd-2.0/server/core.c?r1=1.289&r2=1.291

Modified: httpd/httpd/branches/2.0.x/modules/config5.m4
Url: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.0.x/modules/config5.m4?view=diff&rev=124543&p1=httpd/httpd/branches/2.0.x/modules/config5.m4&r1=124542&p2=httpd/httpd/branches/2.0.x/modules/config5.m4&r2=124543
==============================================================================
--- httpd/httpd/branches/2.0.x/modules/config5.m4	(original)
+++ httpd/httpd/branches/2.0.x/modules/config5.m4	Fri Jan  7 09:22:59 2005
@@ -37,6 +37,8 @@
       mv $modpath_current/modules.mk.tmp $modpath_current/modules.mk
     fi
     MODLIST="$MODLIST $module"
+    MODULE_DIRS="$MODULE_DIRS $modtype"
+    APACHE_FAST_OUTPUT($modpath_current/Makefile)
   AC_MSG_RESULT(added $withval)
   ],
   [ AC_MSG_RESULT(no extra modules)