aboutsummaryrefslogtreecommitdiffstats
path: root/main/curl/use-OPENSSL_config.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/curl/use-OPENSSL_config.patch')
-rw-r--r--main/curl/use-OPENSSL_config.patch41
1 files changed, 41 insertions, 0 deletions
diff --git a/main/curl/use-OPENSSL_config.patch b/main/curl/use-OPENSSL_config.patch
new file mode 100644
index 0000000000..925a90349f
--- /dev/null
+++ b/main/curl/use-OPENSSL_config.patch
@@ -0,0 +1,41 @@
+Fix symbol conflict with OpenSSL 1.0 / LibreSSL.
+
+This basically reverts https://github.com/curl/curl/commit/7d2f61f66ab4e047fc9aefc2effc1ac6d340a66a
+
+Issue: https://bugs.alpinelinux.org/issues/8923
+Patch-Source: https://build.opensuse.org/package/view_file/devel:libraries:c_c++/curl/curl-use_OPENSSL_config.patch
+
+diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c
+index 80e9bf940..ba227891f 100644
+--- a/lib/vtls/openssl.c
++++ b/lib/vtls/openssl.c
+@@ -935,26 +935,12 @@
+ ENGINE_load_builtin_engines();
+ #endif
+
+- /* OPENSSL_config(NULL); is "strongly recommended" to use but unfortunately
+- that function makes an exit() call on wrongly formatted config files
+- which makes it hard to use in some situations. OPENSSL_config() itself
+- calls CONF_modules_load_file() and we use that instead and we ignore
+- its return code! */
+-
+- /* CONF_MFLAGS_DEFAULT_SECTION introduced some time between 0.9.8b and
+- 0.9.8e */
+-#ifndef CONF_MFLAGS_DEFAULT_SECTION
+-#define CONF_MFLAGS_DEFAULT_SECTION 0x0
+-#endif
+-
+- CONF_modules_load_file(NULL, NULL,
+- CONF_MFLAGS_DEFAULT_SECTION|
+- CONF_MFLAGS_IGNORE_MISSING_FILE);
+-
+ #if (OPENSSL_VERSION_NUMBER >= 0x10100000L) && \
+ !defined(LIBRESSL_VERSION_NUMBER)
+- /* OpenSSL 1.1.0+ takes care of initialization itself */
++ OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, NULL);
+ #else
++ OPENSSL_config(NULL);
++
+ /* Lets get nice error messages */
+ SSL_load_error_strings();
+