Commit 4e6394a9 authored by Stefan Fritsch's avatar Stefan Fritsch
Browse files

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
parent 417e0348
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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)