From: Stefan Fritsch Date: Tue, 8 Nov 2011 01:34:58 +0000 (+0000) Subject: We still have to pass the dependency check to APACHE_MODULE to ensure X-Git-Tag: 2.3.15~26 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bd5efb04fa7d28ed07b1b5fa402620e8c19e4e34;p=apache 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 --- 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)