1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-06 09:01:14 +03:00

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
This commit is contained in:
Jeff Trawick
2000-08-04 02:25:08 +00:00
parent c70973166f
commit 750ff5fd96

View File

@@ -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)