CVSROOT: /cvs
Module name: ports
Changes by: [email protected] 2026/03/11 18:06:55
Modified files:
lang/php/8.4 : Makefile distinfo
lang/php/8.4/patches: patch-ext_openssl_openssl_c
Log message:
update to php-8.4.19
an upstream commit changed php_openssl_load_all_certs_from_file() to use
sk_new_reserve to avoid alloc failures from sk_push. libressl doesn't yet
have this (and I want to push this to 7.8-stable anyway), so instead
revert to sk_new_null as done in the previous version, and check sk_push
for a failure return code instead and free/error out if hit.