]> granicus.if.org Git - apache/commitdiff
Remove "no" from many APACHE_MODULE() invocations to allow them to be
authorGreg Stein <gstein@apache.org>
Sun, 18 Feb 2001 00:22:18 +0000 (00:22 +0000)
committerGreg Stein <gstein@apache.org>
Sun, 18 Feb 2001 00:22:18 +0000 (00:22 +0000)
selected by --enable-modules=all

Set some modules to "most" to allow --enable-modules=most

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88221 13f79535-47bb-0310-9956-ffa450edef68

modules/aaa/config.m4
modules/dav/fs/config.m4
modules/dav/main/config.m4
modules/mappers/config.m4
modules/metadata/config.m4

index 3eb50dfcf3162230030568548beeca1e9bdd6733..70e2bca34ffb2dfad1a756034dd8b590222a4748 100644 (file)
@@ -6,15 +6,15 @@ APACHE_MODPATH_INIT(aaa)
 
 APACHE_MODULE(access, host-based access control, , , yes)
 APACHE_MODULE(auth, user-based access control, , , yes)
-APACHE_MODULE(auth_anon, anonymous user access, , , no)
-APACHE_MODULE(auth_dbm, DBM-based access databases, , , no)
+APACHE_MODULE(auth_anon, anonymous user access)
+APACHE_MODULE(auth_dbm, DBM-based access databases)
 
-APACHE_MODULE(auth_db, DB-based access databases, , , no, [
+APACHE_MODULE(auth_db, DB-based access databases, , , , [
   AC_CHECK_HEADERS(db.h)
   AC_CHECK_LIB(db,main)
 ]) 
 
-APACHE_MODULE(auth_digest, RFC2617 Digest authentication, , , no)
+APACHE_MODULE(auth_digest, RFC2617 Digest authentication, , , most)
 
 LTFLAGS="$LTFLAGS -export-dynamic"
 
index f52a38161923ec69f40d991357d5b6eb45859ea4..394b02dc141b566570ebdaa28bec31aa3bb5fa9b 100644 (file)
@@ -6,6 +6,6 @@ dav_fs_objects="mod_dav_fs.lo dbm.lo lock.lo repos.lo"
 
 dnl ### we want to default this based on whether dav is being used...
 dnl ### but there is no ordering to the config.m4 files right now...
-APACHE_MODULE(dav_fs, DAV provider for the filesystem, $dav_fs_objects, , no)
+APACHE_MODULE(dav_fs, DAV provider for the filesystem, $dav_fs_objects, , most)
 
 APACHE_MODPATH_FINISH
index 4d0b6e7f828e472f1f68b8de41d08219adc4c1f1..996cf580e80cc93f5948c0e3f7738b40f7e15a8b 100644 (file)
@@ -4,7 +4,7 @@ APACHE_MODPATH_INIT(dav/main)
 
 dav_objects="mod_dav.lo props.lo util.lo util_lock.lo liveprop.lo providers.lo std_liveprop.lo"
 
-APACHE_MODULE(dav, WebDAV protocol handling, $dav_objects, , no)
+APACHE_MODULE(dav, WebDAV protocol handling, $dav_objects, , most)
 
 if test "$enable_dav" != "no"; then
   apache_need_expat=yes
index 29edb3353525b8009368290380c8070820cb9afd..e60dfd7e4f62a2ce452e20fde7c5e86a4d30c286 100644 (file)
@@ -4,16 +4,16 @@ dnl APACHE_MODULE(name, helptext[, objects[, structname[, default[, config]]]])
 
 APACHE_MODPATH_INIT(mappers)
 
-APACHE_MODULE(vhost_alias, mass hosting module, , , no)
+APACHE_MODULE(vhost_alias, mass hosting module)
 APACHE_MODULE(negotiation, content negoatiation, , , yes)
 APACHE_MODULE(dir, directory request handling, , , yes)
 APACHE_MODULE(imap, internal imagemaps, , , yes)
 APACHE_MODULE(actions, Action triggering on requests, , , yes)
-APACHE_MODULE(speling, correct common URL misspellings, , , no)
+APACHE_MODULE(speling, correct common URL misspellings)
 APACHE_MODULE(userdir, mapping of user requests, , , yes)
 APACHE_MODULE(alias, translation of requests, , , yes)
 
-APACHE_MODULE(rewrite, regex URL translation, , , no, [
+APACHE_MODULE(rewrite, regex URL translation, , , most, [
   EXTRA_CFLAGS="$EXTRA_CFLAGS -DNO_DBM_REWRITEMAP"
 ])
 
index 27053b5de8c6fdff29f29702c32ee46919f028fb..a694bfeaa0522a1240de19d7f632d3e900e4a3b9 100644 (file)
@@ -5,17 +5,17 @@ dnl APACHE_MODULE(name, helptext[, objects[, structname[, default[, config]]]])
 APACHE_MODPATH_INIT(metadata)
 
 APACHE_MODULE(env, clearing/setting of ENV vars, , , yes)
-APACHE_MODULE(mime_magic, automagically determining MIME type, , , no)
-APACHE_MODULE(cern_meta, CERN-type meta files, , , no)
-APACHE_MODULE(expires, Expires header control, , , no)
-APACHE_MODULE(headers, HTTP header control, , , no)
+APACHE_MODULE(mime_magic, automagically determining MIME type)
+APACHE_MODULE(cern_meta, CERN-type meta files)
+APACHE_MODULE(expires, Expires header control, , , most)
+APACHE_MODULE(headers, HTTP header control, , , most)
 
-APACHE_MODULE(usertrack, user-session tracking, , , no, [
+APACHE_MODULE(usertrack, user-session tracking, , , , [
   AC_CHECK_HEADERS(sys/times.h)
   AC_CHECK_FUNCS(times)
 ])
 
-APACHE_MODULE(unique_id, per-request unique ids, , , no)
+APACHE_MODULE(unique_id, per-request unique ids)
 APACHE_MODULE(setenvif, basing ENV vars on headers, , , yes)
 
 LTFLAGS="$LTFLAGS -export-dynamic"