From 89605f9ee720a317602bd14c3239436d8360502d Mon Sep 17 00:00:00 2001 From: Rainer Jung Date: Fri, 12 Feb 2016 17:46:38 +0000 Subject: Use different variables to track normal modules and MPMs during build. Normal modules and MPMs follow different rules in the config, e.g. we are only allowed to have one active LoadModule for an MPM in the config. As a side effect, LoadModule for MPMs will now come before LoadModule for the normal modules. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1730079 13f79535-47bb-0310-9956-ffa450edef68 --- acinclude.m4 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'acinclude.m4') diff --git a/acinclude.m4 b/acinclude.m4 index 054a83d9d1..69f28efa69 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -93,6 +93,8 @@ AC_DEFUN([APACHE_GEN_CONFIG_VARS],[ APACHE_SUBST(MK_IMPLIB) APACHE_SUBST(MKDEP) APACHE_SUBST(INSTALL_PROG_FLAGS) + APACHE_SUBST(MPM_MODULES) + APACHE_SUBST(ENABLED_MPM_MODULE) APACHE_SUBST(DSO_MODULES) APACHE_SUBST(ENABLED_DSO_MODULES) APACHE_SUBST(LOAD_ALL_MODULES) @@ -295,10 +297,10 @@ DISTCLEAN_TARGETS = modules.mk static = shared = $libname EOF - DSO_MODULES="$DSO_MODULES mpm_$1" + MPM_MODULES="$MPM_MODULES mpm_$1" # add default MPM to LoadModule list if test $1 = $default_mpm; then - ENABLED_DSO_MODULES="${ENABLED_DSO_MODULES},mpm_$1" + ENABLED_MPM_MODULE="mpm_$1" fi fi $4 -- cgit v1.2.1