]> granicus.if.org Git - php/commitdiff
Revert "Fixed bug #80377"
authorDmitry Stogov <dmitry@zend.com>
Tue, 24 Nov 2020 22:10:26 +0000 (01:10 +0300)
committerDmitry Stogov <dmitry@zend.com>
Tue, 24 Nov 2020 22:10:26 +0000 (01:10 +0300)
This reverts commit fc26ad9b1220fdfd7db15ecaff5e7c38283c55b6.

NEWS
ext/opcache/config.m4
ext/session/config.m4

diff --git a/NEWS b/NEWS
index 095c0efce8f4745a3fd0608d957000588fd1684f..1e2478cef9765ded09e227f3d7ed7bc7220fb2cf 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -16,7 +16,6 @@ PHP                                                                        NEWS
 - Opcache:
   . Fixed bug #80404 (Incorrect range inference result when division results
     in float). (Nikita)
-  . Fixed bug #80377 (Opcache misses executor_globals). (Nikita)
 
 - Standard:
   . Fixed bug #80366 (Return Value of zend_fstat() not Checked). (sagpant, cmb)
index 93d72fb73d19b29e1953226132950baf5b4962ef..054cd28c02475da269c0809bf25d6ec21c7467a9 100644 (file)
@@ -66,7 +66,7 @@ if test "$PHP_OPCACHE" != "no"; then
       esac
     fi
 
-    if test "$PHP_THREAD_SAFETY" = "yes"; then
+    if test "$enable_zts" = "yes"; then
       DASM_FLAGS="$DASM_FLAGS -D ZTS=1"
     fi
 
index da31bbde86cc9a678f3058291fb5bcc2ac2a790b..7abc8813b72aee13adb08936be9eb53311b3fb31 100644 (file)
@@ -31,7 +31,7 @@ if test "$PHP_MM" != "no"; then
     AC_MSG_ERROR(cannot find mm library)
   fi
 
-  if test "$PHP_THREAD_SAFETY" = "yes"; then
+  if test "$enable_zts" = "yes"; then
     dnl The mm library is not thread-safe, and mod_mm.c refuses to compile.
     AC_MSG_ERROR(--with-mm cannot be combined with --enable-zts)
   fi