summaryrefslogtreecommitdiffstats
path: root/php-7.4.0-httpd.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2021-06-04 15:02:56 +0200
committerRemi Collet <remi@remirepo.net>2021-06-04 15:02:56 +0200
commit01001a538a5789c91d7c218729563e15b9ff5e75 (patch)
treefd4a90a9f0b8bd7ec7de8e5037dd4bcab9da6b49 /php-7.4.0-httpd.patch
duplicate php 8.0
Diffstat (limited to 'php-7.4.0-httpd.patch')
-rw-r--r--php-7.4.0-httpd.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/php-7.4.0-httpd.patch b/php-7.4.0-httpd.patch
new file mode 100644
index 0000000..34f7c8a
--- /dev/null
+++ b/php-7.4.0-httpd.patch
@@ -0,0 +1,27 @@
+Disable MPM detection
+
+mod_php is build twice
+- as NTS without option
+- as ZTS using --enable-maintainer-zts
+
+diff --git a/sapi/apache2handler/config.m4 b/sapi/apache2handler/config.m4
+--- a/sapi/apache2handler/config.m4
++++ b/sapi/apache2handler/config.m4
+@@ -105,17 +105,6 @@ if test "$PHP_APXS2" != "no"; then
+ ;;
+ esac
+
+- if test "$APACHE_VERSION" -lt 2004001; then
+- APXS_MPM=`$APXS -q MPM_NAME`
+- if test "$APXS_MPM" != "prefork" && test "$APXS_MPM" != "peruser" && test "$APXS_MPM" != "itk"; then
+- PHP_BUILD_THREAD_SAFE
+- fi
+- else
+- APACHE_THREADED_MPM=`$APXS_HTTPD -V 2>/dev/null | grep 'threaded:.*yes'`
+- if test -n "$APACHE_THREADED_MPM"; then
+- PHP_BUILD_THREAD_SAFE
+- fi
+- fi
+ AC_MSG_RESULT(yes)
+ PHP_SUBST(APXS)
+ else