File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -191,11 +191,6 @@ if(SIZEOF_SIZE_T STREQUAL "")
191
191
set (SIZEOF_SIZE_T_CODE "#define SIZEOF_SIZE_T 0" )
192
192
endif ()
193
193
194
- check_type_size ("ssize_t" SIZEOF_SSIZE_T )
195
- if (SIZEOF_SSIZE_T STREQUAL "" )
196
- set (SIZEOF_SSIZE_T_CODE "#define SIZEOF_SSIZE_T 0" )
197
- endif ()
198
-
199
194
check_type_size ("uid_t" SIZEOF_UID_T )
200
195
if (NOT HAVE_SIZEOF_UID_T )
201
196
set (
Original file line number Diff line number Diff line change 632
632
/* The size of 'size_t', as computed by sizeof. */
633
633
@SIZEOF_SIZE_T_CODE @
634
634
635
- /* The size of 'ssize_t', as computed by sizeof. */
636
- @SIZEOF_SSIZE_T_CODE @
637
-
638
635
@PHP_SYSTEM_EXTENSIONS_CODE @
639
636
640
637
/* Define if processor uses big-endian word. */
Original file line number Diff line number Diff line change @@ -959,6 +959,13 @@ PHP coding standards now use the C11 standard.
959
959
`--with-libdir` configure options (e.g.,
960
960
`--libdir=/usr/lib64 --with-libdir=lib64` will set `libdir` to
961
961
`/usr/lib64/php`).
962
+ * Autoconf macro `PHP_AP_EXTRACT_VERSION` has been removed.
963
+ * Autoconf macro `PHP_BUILD_THREAD_SAFE` has been removed (set `enable_zts`
964
+ variable manually).
965
+ * Autoconf macro `PHP_CHECK_SIZEOF` is obsolete (use `AC_CHECK_SIZEOF`).
966
+ * Autoconf macro `PHP_DEF_HAVE` has been removed (use `AC_DEFINE`).
967
+ * Autoconf macro `PHP_OUTPUT` has been removed (use `AC_CONFIG_FILES`).
968
+ * Autoconf macro `PHP_TEST_BUILD` has been removed (use `AC_*` macros).
962
969
963
970
##### Changes to main/php_config.h
964
971
@@ -967,6 +974,8 @@ PHP coding standards now use the C11 standard.
967
974
instead of the `build-defs.h` header.
968
975
* The `HAVE_INTMAX_T` preprocessor macro has been removed.
969
976
* The `HAVE_PTRDIFF_T` preprocessor macro has been removed.
977
+ * The `HAVE_SSIZE_T` preprocessor macro has been removed.
978
+ * The `SIZEOF_SSIZE_T` preprocessor macro has been removed.
970
979
971
980
#### Windows
972
981
You can’t perform that action at this time.
0 commit comments