From: Daniel F. Dickinson Date: Wed, 31 Dec 2025 01:27:14 +0000 (-0500) Subject: php8: fix PHP8_GETTEXT missing icu dependency X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=996046e642426f900809d07f5bedb6f2807f0816;p=feed%2Fpackages.git php8: fix PHP8_GETTEXT missing icu dependency With CONFIG_PHP8_GETTEXT php8 always gains a dependency on a version of the 'icu' package, however said dependency is not declared, so on gets compilation errors when CONFIG_PHP8_GETTEXT=y but PACKAGE_icu is not selected. Therefore select PACKAGE_icu when PHP8_GETTEXT is selected. Closes #28207 Signed-off-by: Daniel F. Dickinson --- diff --git a/lang/php8/Makefile b/lang/php8/Makefile index 70c45f93e3..8271421a9a 100644 --- a/lang/php8/Makefile +++ b/lang/php8/Makefile @@ -81,6 +81,7 @@ define Package/php8/config config PHP8_GETTEXT bool "Enable gettext" + select PACKAGE_icu default y config PHP8_INTL