We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ed64949 + 5e2a586 commit 719c74eCopy full SHA for 719c74e
NEWS
@@ -13,6 +13,10 @@ PHP NEWS
13
- Opcache:
14
. Fixed bug GH-13145 (strtok() is not comptime). (ilutov)
15
16
+- OpenSSL:
17
+ . Fixed LibreSSL undefined reference when OPENSSL_NO_ENGINE not set.
18
+ (David Carlier).
19
+
20
- Phar:
21
. Fixed bug #71465 (PHAR doesn't know about litespeed). (nielsdos)
22
ext/openssl/openssl.c
@@ -61,7 +61,7 @@
61
#include <openssl/param_build.h>
62
#endif
63
64
-#if OPENSSL_VERSION_NUMBER < 0x10100000L && !defined(OPENSSL_NO_ENGINE)
+#if (OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)) && !defined(OPENSSL_NO_ENGINE)
65
#include <openssl/engine.h>
66
67
0 commit comments