9eb8a638a0
- New upstream release 2.068 - Treat OpenSSL 1.1.1e as broken and refuse to build with it in order to prevent follow-up problems in tests and user code https://github.com/noxxi/p5-io-socket-ssl/issues/93 https://github.com/openssl/openssl/issues/11388 https://github.com/openssl/openssl/issues/11378 - Update PublicSuffix with latest data from publicsuffix.org - Patch out the refusal to build with OpenSSL 1.1.1e as the OpenSSL package in Fedora has had the problematic EOF-handling change reverted
16 lines
532 B
Diff
16 lines
532 B
Diff
--- Makefile.PL
|
|
+++ Makefile.PL
|
|
@@ -68,12 +68,6 @@ if (my $compiled = eval {
|
|
die sprintf("API-different OpenSSL versions compiled in (0x%08x) vs linked (0x%08x)",
|
|
$compiled,$linked);
|
|
}
|
|
-
|
|
- # OpenSSL 1.1.1e introduced behavior changes breaking various code
|
|
- # will likely be reverted in 1.1.1f - enforce to not use this version
|
|
- if ($linked == 0x1010105f) {
|
|
- die "detected OpenSSL 1.1.1e - please use a different version\n";
|
|
- }
|
|
}
|
|
|
|
# make sure that we have dualvar from the XS Version of Scalar::Util
|