Skip to content

Commit 1c709f0

Browse files
committed
Merge branch 'PHP-7.0'
2 parents 6cc0188 + d01566f commit 1c709f0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ext/opcache/config.m4

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ PHP_ARG_ENABLE(huge-code-pages, whether to enable copying PHP CODE pages into HU
1414

1515
if test "$PHP_OPCACHE" != "no"; then
1616

17-
if test "$PHP_OPCACHE_FILE" == "yes"; then
17+
if test "$PHP_OPCACHE_FILE" = "yes"; then
1818
AC_DEFINE(HAVE_OPCACHE_FILE_CACHE, 1, [Define to enable file based caching (experimental)])
1919
fi
2020

21-
if test "$PHP_HUGE_CODE_PAGES" == "yes"; then
21+
if test "$PHP_HUGE_CODE_PAGES" = "yes"; then
2222
AC_DEFINE(HAVE_HUGE_CODE_PAGES, 1, [Define to enable copying PHP CODE pages into HUGE PAGES (experimental)])
2323
fi
2424

sapi/phpdbg/config.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ PHP_ARG_ENABLE(phpdbg-webhelper, for phpdbg web SAPI support,
1111
PHP_ARG_ENABLE(phpdbg-debug, for phpdbg debug build,
1212
[ --enable-phpdbg-debug Build phpdbg in debug mode], no, no)
1313

14-
if test "$BUILD_PHPDBG" == "" && test "$PHP_PHPDBG" != "no"; then
14+
if test "$BUILD_PHPDBG" = "" && test "$PHP_PHPDBG" != "no"; then
1515
AC_HEADER_TIOCGWINSZ
1616
AC_DEFINE(HAVE_PHPDBG, 1, [ ])
1717

0 commit comments

Comments
 (0)