Skip to content

Commit 161adff

Browse files
committed
For consistency with Windows, and because ZTS is not experimental or a "maintainer" feature, this commits renames --enable-maintainer-zts to --enable-zts in the autotools build, and related documentation
1 parent 598175e commit 161adff

12 files changed

+30
-27
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ env:
5454
- PDO_MYSQL_TEST_HOST=127.0.0.1
5555
- REPORT_EXIT_STATUS=1
5656
matrix:
57-
- ENABLE_MAINTAINER_ZTS=0 ENABLE_DEBUG=0
58-
- ENABLE_MAINTAINER_ZTS=1 ENABLE_DEBUG=1
57+
- ENABLE_ZTS=0 ENABLE_DEBUG=0
58+
- ENABLE_ZTS=1 ENABLE_DEBUG=1
5959

6060
before_script:
6161
- ccache --version

README.GIT-RULES

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Having said that, here are the organizational rules::
3939
To do so use "make test".
4040

4141
7. For development use the --enable-debug switch to avoid memory leaks
42-
and the --enable-maintainer-zts switch to ensure your code handles
42+
and the --enable-zts switch to ensure your code handles
4343
TSRM correctly and doesn't break for those who need that.
4444

4545
Currently we have the following branches in use::

README.SUBMITTING_PATCH

+2-2
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ Checklist for submitting your PHP or PECL code patch
162162
- Rebuild PHP with --enable-debug (which will show some kinds of
163163
memory errors) and check the PHP and web server error logs after
164164
running your PHP tests.
165-
- Rebuild PHP with --enable-maintainer-zts to check your patch
166-
compiles on multi-threaded web servers.
165+
- Rebuild PHP with --enable-zts to check your patch
166+
compiles and operates correctly in a thread safe PHP.
167167
- Review the patch once more just before submitting it.
168168

169169

UPGRADING.INTERNALS

+3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ PHP 8.0 INTERNALS UPGRADE NOTES
3232
a. Abstract
3333

3434
b. Unix build system changes
35+
36+
1. --enable-maintainer-zts is renamed --enable-zts for parity with Windows
37+
and as recognition that ZTS is not a "maintainer" or experimental feature.
3538

3639
c. Windows build system changes
3740

Zend/Zend.m4

+7-7
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ int main()
7979

8080
AC_DEFUN([LIBZEND_OTHER_CHECKS],[
8181
82-
AC_ARG_ENABLE([maintainer-zts],
83-
[AS_HELP_STRING([--enable-maintainer-zts],
84-
[Enable thread safety - for code maintainers only!!])],
85-
[ZEND_MAINTAINER_ZTS=$enableval],
86-
[ZEND_MAINTAINER_ZTS=no])
82+
AC_ARG_ENABLE([zts],
83+
[AS_HELP_STRING([--enable-zts],
84+
[Enable thread safety])],
85+
[ZEND_ZTS=$enableval],
86+
[ZEND_ZTS=no])
8787
8888
AC_ARG_ENABLE([inline-optimization],
8989
[AS_HELP_STRING([--disable-inline-optimization],
@@ -92,7 +92,7 @@ AC_ARG_ENABLE([inline-optimization],
9292
[ZEND_INLINE_OPTIMIZATION=yes])
9393
9494
AC_MSG_CHECKING(whether to enable thread-safety)
95-
AC_MSG_RESULT($ZEND_MAINTAINER_ZTS)
95+
AC_MSG_RESULT($ZEND_ZTS)
9696
9797
AC_MSG_CHECKING(whether to enable inline optimization for GCC)
9898
AC_MSG_RESULT($ZEND_INLINE_OPTIMIZATION)
@@ -115,7 +115,7 @@ fi
115115
116116
test -n "$DEBUG_CFLAGS" && CFLAGS="$CFLAGS $DEBUG_CFLAGS"
117117
118-
if test "$ZEND_MAINTAINER_ZTS" = "yes"; then
118+
if test "$ZEND_ZTS" = "yes"; then
119119
AC_DEFINE(ZTS,1,[ ])
120120
CFLAGS="$CFLAGS -DZTS"
121121
fi

acinclude.m4

+2-2
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ dnl
727727
dnl PHP_BUILD_THREAD_SAFE
728728
dnl
729729
AC_DEFUN([PHP_BUILD_THREAD_SAFE],[
730-
enable_maintainer_zts=yes
730+
enable_zts=yes
731731
if test "$pthreads_working" != "yes"; then
732732
AC_MSG_ERROR([ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads.])
733733
fi
@@ -2307,7 +2307,7 @@ AC_DEFUN([PHP_CHECK_CONFIGURE_OPTIONS],[
23072307
with-tsrm-pth | with-tsrm-st | with-tsrm-pthreads [)];;
23082308
23092309
# Allow certain Zend options
2310-
with-zend-vm | enable-maintainer-zts | enable-inline-optimization[)];;
2310+
with-zend-vm | enable-zts | enable-inline-optimization[)];;
23112311
23122312
# All the rest must be set using the PHP_ARG_* macros
23132313
# PHP_ARG_* macros set php_enable_<arg_name> or php_with_<arg_name>

configure.ac

+4-4
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ if test -z "$PHP_INSTALLED_SAPIS"; then
361361
fi
362362

363363
dnl force ZTS
364-
if test "$enable_maintainer_zts" = "yes"; then
364+
if test "$enable_zts" = "yes"; then
365365
PTHREADS_ASSIGN_VARS
366366
PTHREADS_FLAGS
367367
fi
@@ -1218,7 +1218,7 @@ LIBZEND_BASIC_CHECKS
12181218
LIBZEND_DLSYM_CHECK
12191219
LIBZEND_OTHER_CHECKS
12201220

1221-
if test "$ZEND_MAINTAINER_ZTS" = "yes"; then
1221+
if test "$ZEND_ZTS" = "yes"; then
12221222
AC_DEFINE(ZTS,1,[ ])
12231223
PHP_THREAD_SAFETY=yes
12241224
else
@@ -1289,15 +1289,15 @@ if test -z "$EXTENSION_DIR"; then
12891289
else
12901290
part1=no-debug
12911291
fi
1292-
if test "$enable_maintainer_zts" = "yes"; then
1292+
if test "$enable_zts" = "yes"; then
12931293
part2=zts
12941294
else
12951295
part2=non-zts
12961296
fi
12971297
extbasedir=$part1-$part2-$extbasedir
12981298
EXTENSION_DIR=$libdir/extensions/$extbasedir
12991299
else
1300-
if test "$enable_maintainer_zts" = "yes"; then
1300+
if test "$enable_zts" = "yes"; then
13011301
extbasedir=$extbasedir-zts
13021302
fi
13031303

ext/mysqli/config.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ elif test "$PHP_MYSQLI" != "no"; then
5151
MYSQL_CONFIG=$PHP_MYSQLI
5252

5353
MYSQL_LIB_NAME='mysqlclient'
54-
if test "$enable_maintainer_zts" = "yes"; then
54+
if test "$enable_zts" = "yes"; then
5555
MYSQL_LIB_CFG='--libs_r'
5656
MYSQL_LIB_NAME='mysqlclient_r'
5757
else

ext/pdo_mysql/config.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ if test "$PHP_PDO_MYSQL" != "no"; then
6060
if test "x$SED" = "x"; then
6161
AC_PATH_PROG(SED, sed)
6262
fi
63-
if test "$enable_maintainer_zts" = "yes"; then
63+
if test "$enable_zts" = "yes"; then
6464
PDO_MYSQL_LIBNAME=mysqlclient_r
6565
PDO_MYSQL_LIBS=`$PDO_MYSQL_CONFIG --libs_r | $SED -e "s/'//g"`
6666
else

ext/session/config.m4

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ if test "$PHP_MM" != "no"; then
3333
AC_MSG_ERROR(cannot find mm library)
3434
fi
3535

36-
if test "$enable_maintainer_zts" = "yes"; then
36+
if test "$enable_zts" = "yes"; then
3737
dnl The mm library is not thread-safe, and mod_mm.c refuses to compile.
38-
AC_MSG_ERROR(--with-mm cannot be combined with --enable-maintainer-zts)
38+
AC_MSG_ERROR(--with-mm cannot be combined with --enable-zts)
3939
fi
4040

4141
PHP_ADD_LIBRARY_WITH_PATH(mm, $MM_DIR/$PHP_LIBDIR, SESSION_SHARED_LIBADD)

ext/sqlite3/config0.m4

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ PHP_ARG_WITH([sqlite3],
1010
if test $PHP_SQLITE3 != "no"; then
1111
PHP_SQLITE3_CFLAGS=" -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 "
1212

13-
dnl when running phpize enable_maintainer_zts is not available
14-
if test -z "$enable_maintainer_zts"; then
13+
dnl when running phpize enable_zts is not available
14+
if test -z "$enable_zts"; then
1515
if test -f "$phpincludedir/main/php_config.h"; then
1616
ZTS=`grep '#define ZTS' $phpincludedir/main/php_config.h|$SED 's/#define ZTS//'`
1717
if test "$ZTS" -eq "1"; then
18-
enable_maintainer_zts="yes"
18+
enable_zts="yes"
1919
fi
2020
fi
2121
fi

travis/compile.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
2-
if [[ "$ENABLE_MAINTAINER_ZTS" == 1 ]]; then
3-
TS="--enable-maintainer-zts";
2+
if [[ "$ENABLE_ZTS" == 1 ]]; then
3+
TS="--enable-zts";
44
else
55
TS="";
66
fi

0 commit comments

Comments
 (0)