Skip to content

Commit 711e452

Browse files
authored
Rename HAVE_PHP_SOAP symbol on Windows ext/soap (#13426)
This syncs the symbol name with the *nix build, where HAVE_SOAP is defined.
1 parent cc934d0 commit 711e452

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

UPGRADING.INTERNALS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ PHP 8.4 INTERNALS UPGRADE NOTES
8181
in ext/mbstring/libmbfl removed.
8282
- FIBER_ASSEMBLER and FIBER_ASM_ARCH Makefile variables removed in favor of
8383
PHP_ASSEMBLER and FIBER_ASM_ABI.
84+
- HAVE_PHP_SOAP symbol renamed to HAVE_SOAP.
8485

8586
========================
8687
3. Module changes

ext/soap/config.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if (PHP_SOAP != "no") {
99
CHECK_HEADER_ADD_INCLUDE("libxml/tree.h", "CFLAGS_SOAP", PHP_PHP_BUILD + "\\include\\libxml2")
1010
) {
1111
EXTENSION('soap', 'soap.c php_encoding.c php_http.c php_packet_soap.c php_schema.c php_sdl.c php_xml.c', null, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
12-
AC_DEFINE('HAVE_PHP_SOAP', 1, "SOAP support");
12+
AC_DEFINE('HAVE_SOAP', 1, "SOAP support");
1313

1414
if (!PHP_SOAP_SHARED) {
1515
ADD_FLAG('CFLAGS_SOAP', "/D LIBXML_STATIC ");

0 commit comments

Comments
 (0)