summaryrefslogtreecommitdiff
path: root/www/apache24/files/patch-acinclude.m4
diff options
context:
space:
mode:
authorOlli Hauer <ohauer@FreeBSD.org>2015-01-31 15:22:51 +0000
committerOlli Hauer <ohauer@FreeBSD.org>2015-01-31 15:22:51 +0000
commit5391a9beb25ff182889d175356652b09d50248ac (patch)
treedcd30bc82233b25763d1750b23d08afd11943175 /www/apache24/files/patch-acinclude.m4
parentUpdate WWW. Old URL no longer exists. (diff)
- update to 2.4.12
- change MPM backend from static to dynamic, but keep mpm_prefork for compatiblity with e.g. php modules - install dedicated MPM load file in case httpd was build with modular MPM (modules.d/000_mpm_prefork_fallback.conf) - disable SSLv3 and SSLv2 fallback in sample httpd-ssl-conf - use @sample macro instead EXAMPLESDIR - add some SSLCipherSuite examples for OpenSSL >= 1.0.x - add libressl support [1] - add pkg-install script (to handle new modular MPM build) - build now most all modules, so users using packages don't have to run a custom build for missing modules - fix suexec mode PR: 196139 [1] MFH: 2015Q1
Diffstat (limited to 'www/apache24/files/patch-acinclude.m4')
-rw-r--r--www/apache24/files/patch-acinclude.m424
1 files changed, 24 insertions, 0 deletions
diff --git a/www/apache24/files/patch-acinclude.m4 b/www/apache24/files/patch-acinclude.m4
new file mode 100644
index 000000000000..676c8fefeb8e
--- /dev/null
+++ b/www/apache24/files/patch-acinclude.m4
@@ -0,0 +1,24 @@
+--- acinclude.m4.orig 2014-01-05 08:37:21 UTC
++++ acinclude.m4
+@@ -267,9 +267,10 @@ DISTCLEAN_TARGETS = modules.mk
+ static =
+ shared = $libname
+ EOF
++ dnl https://issues.apache.org/bugzilla/show_bug.cgi?id=53882
++ DSO_MODULES="$DSO_MODULES mpm_$1"
+ # add default MPM to LoadModule list
+ if test $1 = $default_mpm; then
+- DSO_MODULES="$DSO_MODULES mpm_$1"
+ ENABLED_DSO_MODULES="${ENABLED_DSO_MODULES},mpm_$1"
+ fi
+ fi
+@@ -576,7 +577,8 @@ AC_DEFUN(APACHE_CHECK_OPENSSL,[
+ liberrors=""
+ AC_CHECK_HEADERS([openssl/engine.h])
+ AC_CHECK_FUNCS([SSLeay_version SSL_CTX_new], [], [liberrors="yes"])
+- AC_CHECK_FUNCS([ENGINE_init ENGINE_load_builtin_engines])
++ dnl PR 196139, https://issues.apache.org/bugzilla/show_bug.cgi?id=57375
++ AC_CHECK_FUNCS([ENGINE_init ENGINE_load_builtin_engines SSL_CTX_use_certificate_chain RAND_egd])
+ if test "x$liberrors" != "x"; then
+ AC_MSG_WARN([OpenSSL libraries are unusable])
+ fi