diff options
author | Stefan Fritsch <sf@apache.org> | 2011-11-08 01:34:58 +0000 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-11-08 01:34:58 +0000 |
commit | bd5efb04fa7d28ed07b1b5fa402620e8c19e4e34 (patch) | |
tree | 7f5e0c63678c406905f4f1b38c6415afdf3f5ad2 /modules/session | |
parent | d63996c35dd05a1b077dad84567eeb566c6a9c4a (diff) | |
download | httpd-bd5efb04fa7d28ed07b1b5fa402620e8c19e4e34.tar.gz |
We still have to pass the dependency check to APACHE_MODULE to ensure
that mod_session_crypto is disabled with --enable-mods-shared=reallyall
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1199046 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/session')
-rw-r--r-- | modules/session/config.m4 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/session/config.m4 b/modules/session/config.m4 index 1f6f364eba..373df4761a 100644 --- a/modules/session/config.m4 +++ b/modules/session/config.m4 @@ -54,7 +54,11 @@ if test "$session_mods_enable_crypto" != "no"; then session_mods_enable_crypto="no" fi fi -APACHE_MODULE(session_crypto, session crypto module, $session_crypto_objects, , $session_mods_enable_crypto) +APACHE_MODULE(session_crypto, session crypto module, $session_crypto_objects, , $session_mods_enable_crypto, [ +if test "$session_mods_enable_crypto" = "no" ; then + enable_session_crypto=no +fi +]) APACHE_MODULE(session_dbd, session dbd module, $session_dbd_objects, , $session_mods_enable) |