From: Jeff Trawick Date: Fri, 4 Aug 2000 02:25:08 +0000 (+0000) Subject: Disable the dbm_ usage in mod_rewrite so that it links. X-Git-Tag: APACHE_2_0_ALPHA_5~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=750ff5fd96ddd43bc764f4e6bbd1f174ced333ee;p=apache Disable the dbm_ usage in mod_rewrite so that it links. Still to do: decide at config time whether any modules need dbm, whether to use the native one or sdbm, etc. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85982 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/aaa/config.m4 b/modules/aaa/config.m4 index 6b1872bcbc..c05dc9d7e0 100644 --- a/modules/aaa/config.m4 +++ b/modules/aaa/config.m4 @@ -27,7 +27,11 @@ APACHE_CHECK_STANDARD_MODULE(actions, Action triggering on requests, action, yes APACHE_CHECK_STANDARD_MODULE(speling, correct common URL misspellings, , no) APACHE_CHECK_STANDARD_MODULE(userdir, mapping of user requests, , yes) APACHE_CHECK_STANDARD_MODULE(alias, translation of requests, , yes) -APACHE_CHECK_STANDARD_MODULE(rewrite, regex URL translation, , no) + +APACHE_CHECK_STANDARD_MODULE(rewrite, regex URL translation, , no, [ + EXTRA_CFLAGS="$EXTRA_CFLAGS -DNO_DBM_REWRITEMAP" +]) + APACHE_CHECK_STANDARD_MODULE(access, host-based access control, , yes) APACHE_CHECK_STANDARD_MODULE(auth, user-based access control, , yes) APACHE_CHECK_STANDARD_MODULE(auth_anon, anonymous user access, , no)