From 7cb4d267de56982ef6d739f03cb01f065df567fb Mon Sep 17 00:00:00 2001 From: sthen Date: Fri, 5 Jun 2026 07:01:11 +0000 Subject: [PATCH] drop deprecated .so suffix from extension/zend_extension lines in generated config files. --- lang/php/8.3/Makefile | 2 +- lang/php/8.4/Makefile | 1 + lang/php/8.5/Makefile | 1 + lang/php/Makefile.inc | 4 ++-- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/lang/php/8.3/Makefile b/lang/php/8.3/Makefile index 439b611f39a..07251c85a09 100644 --- a/lang/php/8.3/Makefile +++ b/lang/php/8.3/Makefile @@ -1,5 +1,5 @@ PHP_VERSION= 8.3.31 -REVISION= 1 +REVISION= 2 AUTOCONF_VERSION= 2.71 diff --git a/lang/php/8.4/Makefile b/lang/php/8.4/Makefile index 434c9ff385d..a572bbb4f73 100644 --- a/lang/php/8.4/Makefile +++ b/lang/php/8.4/Makefile @@ -1,4 +1,5 @@ PHP_VERSION= 8.4.22 +REVISION= 0 AUTOCONF_VERSION= 2.72 diff --git a/lang/php/8.5/Makefile b/lang/php/8.5/Makefile index e9f80b9a599..c469cd887ad 100644 --- a/lang/php/8.5/Makefile +++ b/lang/php/8.5/Makefile @@ -1,4 +1,5 @@ PHP_VERSION= 8.5.7 +REVISION= 0 AUTOCONF_VERSION= 2.72 diff --git a/lang/php/Makefile.inc b/lang/php/Makefile.inc index 7e4e8c60a8e..d8bb80bd026 100644 --- a/lang/php/Makefile.inc +++ b/lang/php/Makefile.inc @@ -510,7 +510,7 @@ post-install: . for m in ${ZEND_EXTENSIONS:S/-//g} cd ${PREFIX}; \ ${INSTALL_DATA} ${WRKBUILD}/modules/$m.so ${MODULES_SUBDIR}/$m.so; \ - echo "zend_extension=$m.so" > share/examples/php-${PV}/$m.ini + echo "zend_extension=$m" > share/examples/php-${PV}/$m.ini . endfor .endif @@ -518,7 +518,7 @@ post-install: . if ${BUILD_PACKAGES:M-$m} cd ${PREFIX}; \ ${INSTALL_DATA} ${WRKBUILD}/modules/$m.so ${MODULES_SUBDIR}/$m.so; \ - echo "extension=$m.so" > share/examples/php-${PV}/$m.ini + echo "extension=$m" > share/examples/php-${PV}/$m.ini . endif .endfor