diff options
author | Remi Collet <remi@remirepo.net> | 2023-07-24 11:10:59 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2023-07-24 11:10:59 +0200 |
commit | 16bfe8481842870229de0c47d55091cef3d2e6ad (patch) | |
tree | 40bcc06ea0afa324ecab4c3647f900065c1ace92 /php.spec | |
parent | e866cb455ca932c3694960d0aede64efd08ca304 (diff) |
openssl: always warn about missing curve_name
Diffstat (limited to 'php.spec')
-rw-r--r-- | php.spec | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -130,7 +130,7 @@ Summary: PHP scripting language for creating dynamic web sites Name: %{?scl_prefix}php Version: %{upver}%{?lower:~%{lower}}%{?gh_date:.%{gh_date}} -Release: 1%{?dist} +Release: 2%{?dist} # All files licensed under PHP version 3.01, except # Zend is licensed under Zend # TSRM is licensed under BSD @@ -188,6 +188,9 @@ Patch46: php-8.0.7-argon2.patch # drop "Configure command" from phpinfo output # and only use gcc (instead of full version) Patch47: php-8.1.0-phpinfo.patch +# Always warn about missing curve_name +# Both Fedora and RHEL do not support arbitrary EC parameters +Patch48: php-8.3.0-openssl-ec-param.patch # RC Patch Patch91: php-7.2.0-oci8conf.patch @@ -970,6 +973,7 @@ sed -e 's/php-devel/%{?scl_prefix}php-devel/' -i scripts/phpize.in %patch -P45 -p1 -b .ldap_r %patch -P46 -p1 -b .argon2 %patch -P47 -p1 -b .phpinfo +%patch -P48 -p1 -b .ec-param %patch -P91 -p1 -b .remi-oci8 @@ -1022,6 +1026,9 @@ rm Zend/tests/bug68412.phpt rm sapi/cli/tests/upload_2G.phpt # tar issue rm ext/zlib/tests/004-mb.phpt +# Both Fedora and RHEL do not support arbitrary EC parameters +# https://bugzilla.redhat.com/2223953 +rm ext/openssl/tests/ecc_custom_params.phpt # Safety check for API version change. pver=$(sed -n '/#define PHP_VERSION /{s/.* "//;s/".*$//;p}' main/php_version.h) @@ -1855,6 +1862,9 @@ fi %changelog +* Mon Jul 24 2023 Remi Collet <remi@remirepo.net> - 8.3.0~beta1-2 +- openssl: always warn about missing curve_name + * Wed Jul 19 2023 Remi Collet <remi@remirepo.net> - 8.3.0~beta1-1 - update to 8.3.0beta1 |