summaryrefslogtreecommitdiffstats
path: root/php-7.1.7-httpd.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2019-07-09 11:03:24 +0200
committerRemi Collet <remi@remirepo.net>2019-07-09 11:03:24 +0200
commit7c76192fc9f86d6b163ef5fccb60ee6cf33ccc89 (patch)
treea42bcdd6a02677a5298b66cc67b09127203f408e /php-7.1.7-httpd.patch
parent9b7969bc8f1416eaf80728468eb2be39e3a53dbc (diff)
- update to 7.4.0alpha3
- drop argon2 dependency using libsodium implementation
Diffstat (limited to 'php-7.1.7-httpd.patch')
-rw-r--r--php-7.1.7-httpd.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/php-7.1.7-httpd.patch b/php-7.1.7-httpd.patch
deleted file mode 100644
index acb3d2c..0000000
--- a/php-7.1.7-httpd.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-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
-index 2e64b21..ec4799f 100644
---- a/sapi/apache2handler/config.m4
-+++ b/sapi/apache2handler/config.m4
-@@ -116,17 +116,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 | grep 'threaded:.*yes'`
-- if test -n "$APACHE_THREADED_MPM"; then
-- PHP_BUILD_THREAD_SAFE
-- fi
-- fi
- AC_MSG_RESULT(yes)
- PHP_SUBST(APXS)
- else