mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] php8: Version bump 8.3.8 -> 8.5.5
@ 2026-04-18 18:23 Andreas Helmcke
  2026-04-20 16:50 ` [ptxdist] [PATCH v2] " Andreas Helmcke
  0 siblings, 1 reply; 2+ messages in thread
From: Andreas Helmcke @ 2026-04-18 18:23 UTC (permalink / raw)
  To: ptxdist

Upgrade to latest stable version.

Link: https://www.php.net/ChangeLog-8.php#8.5.5
Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
---
 rules/php8.make | 30 +++++++++---------------------
 1 file changed, 9 insertions(+), 21 deletions(-)

diff --git a/rules/php8.make b/rules/php8.make
index 01925bf93..1f1d0dde5 100644
--- a/rules/php8.make
+++ b/rules/php8.make
@@ -18,8 +18,8 @@ PACKAGES-$(PTXCONF_PHP8) += php8
 #
 # Paths and names
 #
-PHP8_VERSION	:= 8.3.8
-PHP8_MD5	:= 3a731ebd24cd36c70148416703ba2f0e
+PHP8_VERSION	:= 8.5.5
+PHP8_MD5	:= 75841bde77d44ec53584fec41dde43a4
 PHP8		:= php-$(PHP8_VERSION)
 PHP8_SUFFIX	:= tar.xz
 PHP8_SOURCE	:= $(SRCDIR)/$(PHP8).$(PHP8_SUFFIX)
@@ -48,10 +48,8 @@ PHP8_CONF_OPT := \
 	$(CROSS_AUTOCONF_USR) \
 	--disable-rpath \
 	--disable-re2c-cgoto \
-	--disable-gcc-global-regs \
 	--without-apxs2 \
 	--$(call ptx/endis, PTXCONF_PHP8_SAPI_CLI)-cli \
-	--without-pear \
 	--disable-embed \
 	--disable-fpm \
 	--without-fpm-user \
@@ -66,6 +64,7 @@ PHP8_CONF_OPT := \
 	--disable-phpdbg-debug \
 	--disable-phpdbg-readline \
 	--$(call ptx/endis, PTXCONF_PHP8_SAPI_CGI)-cgi \
+	--enable-system-glob \
 	--without-valgrind \
 	--disable-gcov \
 	--disable-debug \
@@ -89,8 +88,9 @@ PHP8_CONF_OPT := \
 	--disable-all \
 	--without-libxml \
 	--without-openssl \
-	--without-kerberos \
 	--without-system-ciphers \
+	--without-openssl-legacy-provider \
+	--without-openssl-argon2 \
 	--without-external-pcre \
 	--without-pcre-jit \
 	--without-sqlite3 \
@@ -122,7 +122,7 @@ PHP8_CONF_OPT := \
 	--disable-fileinfo \
 	--$(call ptx/endis, PTXCONF_PHP8_FILTER)-filter \
 	--disable-ftp \
-	--without-openssl-dir \
+	--with-ftp-ssl \
 	--disable-gd \
 	--without-external-gd \
 	--without-avif \
@@ -135,8 +135,6 @@ PHP8_CONF_OPT := \
 	--without-gmp \
 	--without-mhash \
 	--without-iconv \
-	--without-imap \
-	--without-imap-ssl \
 	--disable-intl \
 	--without-ldap \
 	--without-ldap-sasl \
@@ -144,20 +142,10 @@ PHP8_CONF_OPT := \
 	--disable-mbregex \
 	--without-mysqli \
 	--without-mysql-sock \
-	--without-oci8 \
-	--without-odbcver \
-	--without-adabas \
-	--without-sapdb \
-	--without-solid \
 	--without-ibm-db2 \
-	--without-empress \
-	--without-empress-bcs \
 	--without-custom-odbc \
 	--without-iodbc \
-	--without-esoob \
 	--without-unixODBC \
-	--without-dbmaker \
-	--disable-opcache \
 	--disable-huge-code-pages \
 	--disable-opcache-jit \
 	--without-capstone \
@@ -166,15 +154,12 @@ PHP8_CONF_OPT := \
 	--without-pdo-dblib \
 	--without-pdo-firebird \
 	--without-pdo-mysql \
-	--without-zlib-dir \
-	--without-pdo-oci \
 	--without-pdo-odbc \
 	--without-pdo-pgsql \
 	--without-pdo-sqlite \
 	--without-pgsql \
 	--disable-phar \
 	--disable-posix \
-	--without-pspell \
 	--without-libedit \
 	--without-readline \
 	--$(call ptx/endis, PTXCONF_PHP8_SESSION)-session \
@@ -192,6 +177,7 @@ PHP8_CONF_OPT := \
 	--disable-sysvshm \
 	--without-tidy \
 	--disable-tokenizer \
+	--without-external-uriparser \
 	--disable-xml \
 	--without-expat \
 	--disable-xmlreader \
@@ -200,9 +186,11 @@ PHP8_CONF_OPT := \
 	--disable-zend-test \
 	--without-zip \
 	--disable-mysqlnd \
+	--with-mysqlnd-ssl \
 	--disable-mysqlnd-compression-support \
 	--without-pear \
 	--disable-fiber-asm \
+	--disable-gcc-global-regs \
 	--disable-zend-signals \
 	--disable-zend-max-execution-timers
 
-- 
2.51.0




^ permalink raw reply	[flat|nested] 2+ messages in thread

* [ptxdist] [PATCH v2] php8: Version bump 8.3.8 -> 8.5.5
  2026-04-18 18:23 [ptxdist] [PATCH] php8: Version bump 8.3.8 -> 8.5.5 Andreas Helmcke
@ 2026-04-20 16:50 ` Andreas Helmcke
  0 siblings, 0 replies; 2+ messages in thread
From: Andreas Helmcke @ 2026-04-20 16:50 UTC (permalink / raw)
  To: ptxdist

Upgrade to latest stable version.

Link: https://www.php.net/ChangeLog-8.php#8.5.5

- added option to build with openssl

Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
---
v2: added option to build with openssl

 rules/php8.in   |  7 +++++++
 rules/php8.make | 32 ++++++++++----------------------
 2 files changed, 17 insertions(+), 22 deletions(-)

diff --git a/rules/php8.in b/rules/php8.in
index 68d64bd83..7c16b2fcb 100644
--- a/rules/php8.in
+++ b/rules/php8.in
@@ -5,6 +5,7 @@ menuconfig PHP8
 	tristate
 	prompt "php8                          "
 	select GLIBC_M
+	select OPENSSL if PHP8_OPENSSL
 	help
 	  PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used
 	  general-purpose scripting language that is especially suited for web
@@ -72,4 +73,10 @@ config PHP8_SAPI_CLI
 	help
 	  Build command line interface (CLI) version of PHP
 
+config PHP8_OPENSSL
+	bool
+	prompt "openssl"
+	help
+	  Build with openssl support
+
 endif
diff --git a/rules/php8.make b/rules/php8.make
index 01925bf93..36c4ce4a5 100644
--- a/rules/php8.make
+++ b/rules/php8.make
@@ -18,8 +18,8 @@ PACKAGES-$(PTXCONF_PHP8) += php8
 #
 # Paths and names
 #
-PHP8_VERSION	:= 8.3.8
-PHP8_MD5	:= 3a731ebd24cd36c70148416703ba2f0e
+PHP8_VERSION	:= 8.5.5
+PHP8_MD5	:= 75841bde77d44ec53584fec41dde43a4
 PHP8		:= php-$(PHP8_VERSION)
 PHP8_SUFFIX	:= tar.xz
 PHP8_SOURCE	:= $(SRCDIR)/$(PHP8).$(PHP8_SUFFIX)
@@ -48,10 +48,8 @@ PHP8_CONF_OPT := \
 	$(CROSS_AUTOCONF_USR) \
 	--disable-rpath \
 	--disable-re2c-cgoto \
-	--disable-gcc-global-regs \
 	--without-apxs2 \
 	--$(call ptx/endis, PTXCONF_PHP8_SAPI_CLI)-cli \
-	--without-pear \
 	--disable-embed \
 	--disable-fpm \
 	--without-fpm-user \
@@ -66,6 +64,7 @@ PHP8_CONF_OPT := \
 	--disable-phpdbg-debug \
 	--disable-phpdbg-readline \
 	--$(call ptx/endis, PTXCONF_PHP8_SAPI_CGI)-cgi \
+	--enable-system-glob \
 	--without-valgrind \
 	--disable-gcov \
 	--disable-debug \
@@ -88,9 +87,10 @@ PHP8_CONF_OPT := \
 	--disable-undefined-sanitizer \
 	--disable-all \
 	--without-libxml \
-	--without-openssl \
-	--without-kerberos \
+	--$(call ptx/wwo, PTXCONF_PHP8_OPENSSL)-openssl \
 	--without-system-ciphers \
+	--without-openssl-legacy-provider \
+	--without-openssl-argon2 \
 	--without-external-pcre \
 	--without-pcre-jit \
 	--without-sqlite3 \
@@ -122,7 +122,7 @@ PHP8_CONF_OPT := \
 	--disable-fileinfo \
 	--$(call ptx/endis, PTXCONF_PHP8_FILTER)-filter \
 	--disable-ftp \
-	--without-openssl-dir \
+	--with-ftp-ssl \
 	--disable-gd \
 	--without-external-gd \
 	--without-avif \
@@ -135,8 +135,6 @@ PHP8_CONF_OPT := \
 	--without-gmp \
 	--without-mhash \
 	--without-iconv \
-	--without-imap \
-	--without-imap-ssl \
 	--disable-intl \
 	--without-ldap \
 	--without-ldap-sasl \
@@ -144,20 +142,10 @@ PHP8_CONF_OPT := \
 	--disable-mbregex \
 	--without-mysqli \
 	--without-mysql-sock \
-	--without-oci8 \
-	--without-odbcver \
-	--without-adabas \
-	--without-sapdb \
-	--without-solid \
 	--without-ibm-db2 \
-	--without-empress \
-	--without-empress-bcs \
 	--without-custom-odbc \
 	--without-iodbc \
-	--without-esoob \
 	--without-unixODBC \
-	--without-dbmaker \
-	--disable-opcache \
 	--disable-huge-code-pages \
 	--disable-opcache-jit \
 	--without-capstone \
@@ -166,15 +154,12 @@ PHP8_CONF_OPT := \
 	--without-pdo-dblib \
 	--without-pdo-firebird \
 	--without-pdo-mysql \
-	--without-zlib-dir \
-	--without-pdo-oci \
 	--without-pdo-odbc \
 	--without-pdo-pgsql \
 	--without-pdo-sqlite \
 	--without-pgsql \
 	--disable-phar \
 	--disable-posix \
-	--without-pspell \
 	--without-libedit \
 	--without-readline \
 	--$(call ptx/endis, PTXCONF_PHP8_SESSION)-session \
@@ -192,6 +177,7 @@ PHP8_CONF_OPT := \
 	--disable-sysvshm \
 	--without-tidy \
 	--disable-tokenizer \
+	--without-external-uriparser \
 	--disable-xml \
 	--without-expat \
 	--disable-xmlreader \
@@ -200,9 +186,11 @@ PHP8_CONF_OPT := \
 	--disable-zend-test \
 	--without-zip \
 	--disable-mysqlnd \
+	--with-mysqlnd-ssl \
 	--disable-mysqlnd-compression-support \
 	--without-pear \
 	--disable-fiber-asm \
+	--disable-gcc-global-regs \
 	--disable-zend-signals \
 	--disable-zend-max-execution-timers
 
-- 
2.51.0




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-04-20 16:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-04-18 18:23 [ptxdist] [PATCH] php8: Version bump 8.3.8 -> 8.5.5 Andreas Helmcke
2026-04-20 16:50 ` [ptxdist] [PATCH v2] " Andreas Helmcke

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox