Skip to content

Commit

Permalink
Revert "Fixed bug #80377"
Browse files Browse the repository at this point in the history
This reverts commit fc26ad9.
  • Loading branch information
dstogov committed Nov 24, 2020
1 parent cdd5ec7 commit 7fc2a3e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion ext/opcache/config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion ext/session/config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7fc2a3e

Please sign in to comment.