diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2016-06-23 17:42:30 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2016-06-23 17:42:30 +0200 |
commit | 3347e068bb9425f5e962cd44768b8b869334b51a (patch) | |
tree | 28938f94e45426554f274cd7a6e67dd8a0e4f789 /acinclude.m4 | |
parent | Add watchdog by default at level 'most' for mod_proxy_hcheck (diff) | |
download | apache2-3347e068bb9425f5e962cd44768b8b869334b51a.tar.xz apache2-3347e068bb9425f5e962cd44768b8b869334b51a.zip |
Promote any static module to yes|shared if a required dependency is not static
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1749925 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index b0263edd74..65db19340d 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -386,8 +386,8 @@ AC_DEFUN([APACHE_MODULE],[ enable_$1=no AC_MSG_WARN("mod_[]prereq is disabled but required for mod_$1") elif test "$enable_$1" = "static" && test "$enable_[]prereq" != "static" ; then - enable_$1=no - AC_MSG_WARN("cannot build mod_$1 statically if mod_[]prereq is built shared") + enable_$1=$enable_[]prereq + AC_MSG_WARN("building mod_$1 shared because mod_[]prereq is built shared") el])se]) ifelse([$6],,:,[ $6]) ifelse([$7],,:,[fi]) |