File tree Expand file tree Collapse file tree 4 files changed +4
-31
lines changed Expand file tree Collapse file tree 4 files changed +4
-31
lines changed Original file line number Diff line number Diff line change 5
5
- Upgraded bundled libmagic to 5.03 in the fileinfo extension. (Scott)
6
6
7
7
- Added the ability for json_decode() to take a user specified depth. (Scott)
8
+ - Coalesce all the zend_extension_* variables into zend_extension. (Derick)
8
9
9
10
- Disabled SQLite3::loadExtension for threaded SAPIs. (Scott)
10
11
Original file line number Diff line number Diff line change @@ -1332,15 +1332,7 @@ if test "$PHP_THREAD_SAFETY" = "yes" && test "$PHP_MYSQL" = "yes"; then
1332
1332
CPPFLAGS="$CPPFLAGS -DTHREAD=1"
1333
1333
fi
1334
1334
1335
- if test "$PHP_DEBUG" = "1" && test "$PHP_THREAD_SAFETY" = "yes"; then
1336
- ZEND_EXT_TYPE="zend_extension_debug_ts"
1337
- elif test "$PHP_DEBUG" = "1"; then
1338
- ZEND_EXT_TYPE="zend_extension_debug"
1339
- elif test "$PHP_THREAD_SAFETY" = "yes"; then
1340
- ZEND_EXT_TYPE="zend_extension_ts"
1341
- else
1342
- ZEND_EXT_TYPE="zend_extension"
1343
- fi
1335
+ ZEND_EXT_TYPE="zend_extension"
1344
1336
PHP_SUBST(ZEND_EXT_TYPE)
1345
1337
1346
1338
dnl
Original file line number Diff line number Diff line change @@ -170,19 +170,7 @@ PHPAPI void display_ini_entries(zend_module_entry *module)
170
170
171
171
/* php.ini support */
172
172
#define PHP_EXTENSION_TOKEN "extension"
173
- #ifdef ZTS
174
- # if (ZEND_DEBUG )
175
- # define ZEND_EXTENSION_TOKEN "zend_extension_debug_ts"
176
- # else
177
- # define ZEND_EXTENSION_TOKEN "zend_extension_ts"
178
- # endif
179
- #else
180
- # if (ZEND_DEBUG )
181
- # define ZEND_EXTENSION_TOKEN "zend_extension_debug"
182
- # else
183
- # define ZEND_EXTENSION_TOKEN "zend_extension"
184
- # endif
185
- #endif
173
+ #define ZEND_EXTENSION_TOKEN "zend_extension"
186
174
187
175
/* {{{ config_zval_dtor
188
176
*/
Original file line number Diff line number Diff line change @@ -96,15 +96,7 @@ CPPFLAGS=$old_CPPFLAGS
96
96
AC_MSG_RESULT ( [ $PHP_DEBUG] )
97
97
98
98
dnl Support for building and testing Zend extensions
99
- if test "$PHP_DEBUG" = "yes" && test "$PHP_THREAD_SAFETY" = "yes; then
100
- ZEND_EXT_TYPE="zend_extension_debug_ts"
101
- elif test "$PHP_DEBUG" = "yes"; then
102
- ZEND_EXT_TYPE="zend_extension_debug"
103
- elif test "$PHP_THREAD_SAFETY" = "yes; then
104
- ZEND_EXT_TYPE="zend_extension_ts"
105
- else
106
- ZEND_EXT_TYPE="zend_extension"
107
- fi
99
+ ZEND_EXT_TYPE="zend_extension"
108
100
PHP_SUBST(ZEND_EXT_TYPE)
109
101
110
102
dnl Discard optimization flags when debugging is enabled
You can’t perform that action at this time.
0 commit comments