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.
1 parent 97c6da1 commit 5e2a586Copy full SHA for 5e2a586
NEWS
@@ -10,6 +10,10 @@ PHP NEWS
10
. Fixed bug GH-12996 (Incorrect SCRIPT_NAME with Apache ProxyPassMatch when
11
plus in path). (Jakub Zelenka)
12
13
+- OpenSSL:
14
+ . Fixed LibreSSL undefined reference when OPENSSL_NO_ENGINE not set.
15
+ (David Carlier).
16
+
17
- Phar:
18
. Fixed bug #71465 (PHAR doesn't know about litespeed). (nielsdos)
19
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