Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ PHP NEWS
. Implemented lazy objects RFC. (Arnaud)
. Fixed bug GH-15686 (Building shared iconv with external iconv library).
(Peter Kokot, zeriyoshi)
. The Libtool --silent option is set to on in phpize. (Peter Kokot)

- DOM:
. Fixed bug GH-13988 (Storing DOMElement consume 4 times more memory in
Expand Down
1 change: 1 addition & 0 deletions UPGRADING.INTERNALS
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ PHP 8.4 INTERNALS UPGRADE NOTES
- ac_cv_write_stdout -> php_cv_have_write_stdout
and all other checks wrapped with their belonging cache variables (see *.m4
source files for details).
- The libtool now has the --silent option set in phpize as in php-src.

c. Windows build system changes
- The configure options --with-oci8-11g, --with-oci8-12c, --with-oci8-19,
Expand Down
2 changes: 2 additions & 0 deletions scripts/phpize.m4
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ AC_PROVIDE_IFELSE([PHP_REQUIRE_CXX], [], [
])
AC_PROG_LIBTOOL

PHP_SET_LIBTOOL_VARIABLE([--silent])

all_targets='$(PHP_MODULES) $(PHP_ZEND_EX)'
install_targets="install-modules install-headers"
CPPFLAGS="$CPPFLAGS -DHAVE_CONFIG_H"
Expand Down
Loading