Skip to content

Commit 36cfa11

Browse files
committed
Merge branch 'PHP-8.0'
* PHP-8.0: Fixed bug #80377
2 parents 14eabd9 + fc26ad9 commit 36cfa11

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/opcache/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ if test "$PHP_OPCACHE" != "no"; then
6666
esac
6767
fi
6868

69-
if test "$enable_zts" = "yes"; then
69+
if test "$PHP_THREAD_SAFETY" = "yes"; then
7070
DASM_FLAGS="$DASM_FLAGS -D ZTS=1"
7171
fi
7272

ext/session/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if test "$PHP_MM" != "no"; then
3131
AC_MSG_ERROR(cannot find mm library)
3232
fi
3333

34-
if test "$enable_zts" = "yes"; then
34+
if test "$PHP_THREAD_SAFETY" = "yes"; then
3535
dnl The mm library is not thread-safe, and mod_mm.c refuses to compile.
3636
AC_MSG_ERROR(--with-mm cannot be combined with --enable-zts)
3737
fi

0 commit comments

Comments
 (0)