diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2016-06-27 15:45:02 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2016-06-27 15:45:02 +0200 |
commit | 6a3a4f5cc57dd858a0768d230dd37d244f08866a (patch) | |
tree | f5d1ca8c17a7012b63c888428b0169b4d647af0e /acinclude.m4 | |
parent | mod_proxy: follow up to r1750301: APLOGNO(). (diff) | |
download | apache2-6a3a4f5cc57dd858a0768d230dd37d244f08866a.tar.xz apache2-6a3a4f5cc57dd858a0768d230dd37d244f08866a.zip |
Ensure not-selected means 'no', once an APACHE_MODULE enable_foo is processed
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1750335 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 65db19340d..e392494ba8 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -375,6 +375,8 @@ AC_DEFUN([APACHE_MODULE],[ "$force_$1" != "no" ; then enable_$1=$module_default _apmod_extra_msg=" ($module_selection)" + else + enable_$1=no fi if test "$enable_$1" != "no"; then dnl If we plan to enable it, allow the module to run some autoconf magic |