Ok - so I think this compromise makes the most sense

ALL             everything except demo, experimental and things like
                bucketeer, import/export filters.

MOST    all the stable things - including the proxy modules (And
        given the questions on mailing lists and wiki's - that really
        is something people seem to exepct).

And at the same exempt ssl because of crypto and mod_mem_cache
as it has not had that much tender lover and care recently.

Makes sense ?

Dw.

Index: CHANGES
===================================================================
--- CHANGES     (revision 620135)
+++ CHANGES     (working copy)
@@ -2,6 +2,11 @@
 Changes with Apache 2.3.0
 [ When backported to 2.2.x, remove entry from this file ]

+  *) The configuration directive  --enable-modules=MODULE-LIST and
+     --enable-mods-shared "ALL" now includes all modules but
+     mod_ssl and the experimental/debug modules. 'Most' now also
+     includes the proxy modules and mod_disk_cache.
+

Index: modules/proxy/config.m4
===================================================================
--- modules/proxy/config.m4     (revision 620132)
+++ modules/proxy/config.m4     (working copy)
@@ -7,7 +7,7 @@
 elif test "$enable_proxy" = "yes"; then
   proxy_mods_enable=yes
 else
-  proxy_mods_enable=no
+  proxy_mods_enable=most
 fi

 proxy_objs="mod_proxy.lo proxy_util.lo"
Index: modules/cache/config.m4
===================================================================
--- modules/cache/config.m4     (revision 620132)
+++ modules/cache/config.m4     (working copy)
@@ -4,7 +4,7 @@

 APACHE_MODPATH_INIT(cache)

-APACHE_MODULE(file_cache, File cache, , , no)
+APACHE_MODULE(file_cache, File cache)

 dnl #  list of object files for mod_cache
 cache_objs="dnl
@@ -19,8 +19,8 @@
 cache_pqueue.lo dnl
 cache_hash.lo dnl
 "
-APACHE_MODULE(cache, dynamic file caching, $cache_objs, , no)
-APACHE_MODULE(disk_cache, disk caching module, , , no)
+APACHE_MODULE(cache, dynamic file caching, $cache_objs, , yes)
+APACHE_MODULE(disk_cache, disk caching module, , , most)
 APACHE_MODULE(mem_cache, memory caching module, $mem_cache_objs, , no)

 APACHE_MODPATH_FINISH
4x4:httpd-trunk dirkx$ vi CHANGES
4x4:httpd-trunk dirkx$ svn diff
Index: CHANGES
===================================================================
--- CHANGES     (revision 620135)
+++ CHANGES     (working copy)
@@ -2,6 +2,12 @@
 Changes with Apache 2.3.0
 [ When backported to 2.2.x, remove entry from this file ]

+  *) The configuration directive  --enable-modules=MODULE-LIST and
+     --enable-mods-shared "ALL" now includes all modules but
+     mod_ssl and the experimental/debug modules. 'Most' now also
+     includes the proxy modules and mod_disk_cache. mod_memory_cache
+     is still 'no' - as maintenance lags. [Dirk-Willem van Gulik]
+
   *) Also install mod_so.h, mod_rewrite.h and mod_cache.h; as these
      contain public function declarations which are useful for
      third party module authors [Dirk-Willem van Gulik].
Index: modules/proxy/config.m4
===================================================================
--- modules/proxy/config.m4     (revision 620132)
+++ modules/proxy/config.m4     (working copy)
@@ -7,7 +7,7 @@
 elif test "$enable_proxy" = "yes"; then
   proxy_mods_enable=yes
 else
-  proxy_mods_enable=no
+  proxy_mods_enable=most
 fi

 proxy_objs="mod_proxy.lo proxy_util.lo"
Index: modules/cache/config.m4
===================================================================
--- modules/cache/config.m4     (revision 620132)
+++ modules/cache/config.m4     (working copy)
@@ -4,7 +4,7 @@

 APACHE_MODPATH_INIT(cache)

-APACHE_MODULE(file_cache, File cache, , , no)
+APACHE_MODULE(file_cache, File cache)

 dnl #  list of object files for mod_cache
 cache_objs="dnl
@@ -19,8 +19,8 @@
 cache_pqueue.lo dnl
 cache_hash.lo dnl
 "
-APACHE_MODULE(cache, dynamic file caching, $cache_objs, , no)
-APACHE_MODULE(disk_cache, disk caching module, , , no)
+APACHE_MODULE(cache, dynamic file caching, $cache_objs, , yes)
+APACHE_MODULE(disk_cache, disk caching module, , , most)
 APACHE_MODULE(mem_cache, memory caching module, $mem_cache_objs, , no)



Reply via email to