From ae2b60f0f42ab50c79470ead1cf39f399ea44c4e Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Thu, 23 May 2024 18:20:07 -0400 Subject: [PATCH] fix: use libssl 1.1 --- config.nims | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.nims b/config.nims index 3d0493961..b64492a72 100644 --- a/config.nims +++ b/config.nims @@ -32,8 +32,8 @@ elif defined(windows): else: --dynlibOverrideAll # don't use dlopen() # dynamically link these libs, since we're opting out of dlopen() - switch("passL", "-lcrypto") - switch("passL", "-lssl") + switch("passL", "-l:libcrypto.so.1.1") + switch("passL", "-l:libssl.so.1.1") # don't link libraries we're not actually using switch("passL", "-Wl,-as-needed")