From b1f6ea8ae65d8e64ef988ed736eb2123b6a76d0e Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Thu, 8 Feb 2024 16:49:02 +0100 Subject: More work on libcurl and friends (and set to used emulated version of curl if possible) --- src/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 42052218..d49dc48d 100644 --- a/src/main.c +++ b/src/main.c @@ -1212,13 +1212,14 @@ void LoadEnvVars(box64context_t *context) printf_log(LOG_INFO, "\n"); } } - // add libssl and libcrypto, prefer emulated version because of multiple version exist + // add libssl and libcrypto (and a few other) to prefer emulated version because of multiple version exist AddPath("libssl.so.1", &context->box64_emulated_libs, 0); AddPath("libssl.so.1.0.0", &context->box64_emulated_libs, 0); AddPath("libcrypto.so.1", &context->box64_emulated_libs, 0); AddPath("libcrypto.so.1.0.0", &context->box64_emulated_libs, 0); AddPath("libunwind.so.8", &context->box64_emulated_libs, 0); AddPath("libpng12.so.0", &context->box64_emulated_libs, 0); + AddPath("libcurl.so.4", &context->box64_emulated_libs, 0); if(getenv("BOX64_SSE_FLUSHTO0")) { if (strcmp(getenv("BOX64_SSE_FLUSHTO0"), "1")==0) { -- cgit 1.4.1