Fix static modules in www/apache24

--enable-foo=static
works in both 2.2/2.4 and is required in 2.4

PR:           200161
Submitted by: freebsd@magic.360xl.net
With Hat:     apache@
This commit is contained in:
Philip M. Gollucci 2015-07-14 22:34:53 +00:00
parent 081733b1e2
commit 1bf967b107
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=392104

View File

@ -217,7 +217,7 @@ APACHE_MODULES+= ${module}
.if defined(WITH_STATIC_MODULES)
.for module in ${APACHE_MODULES}
. if ${WITH_STATIC_MODULES:M${module}}
_CONFIGURE_ARGS+= --enable-${module:tl}
_CONFIGURE_ARGS+= --enable-${module:tl}=static
. else
_CONFIGURE_ARGS+= --enable-${module:tl}=shared
. endif