mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
Merge branch 'PHP-8.2' into PHP-8.3
This commit is contained in:
commit
719c74e919
4
NEWS
4
NEWS
@ -13,6 +13,10 @@ PHP NEWS
|
||||
- Opcache:
|
||||
. Fixed bug GH-13145 (strtok() is not comptime). (ilutov)
|
||||
|
||||
- OpenSSL:
|
||||
. Fixed LibreSSL undefined reference when OPENSSL_NO_ENGINE not set.
|
||||
(David Carlier).
|
||||
|
||||
- Phar:
|
||||
. Fixed bug #71465 (PHAR doesn't know about litespeed). (nielsdos)
|
||||
|
||||
|
@ -61,7 +61,7 @@
|
||||
#include <openssl/param_build.h>
|
||||
#endif
|
||||
|
||||
#if OPENSSL_VERSION_NUMBER < 0x10100000L && !defined(OPENSSL_NO_ENGINE)
|
||||
#if (OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)) && !defined(OPENSSL_NO_ENGINE)
|
||||
#include <openssl/engine.h>
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user