Skip to content

Commit

Permalink
Try to use libssl version 3, see if this works
Browse files Browse the repository at this point in the history
  • Loading branch information
daid committed Dec 30, 2024
1 parent c1e2133 commit d76f14d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/io/network/tcpSocket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ static void initializeLibSSL()
#else
void* libcrypto = SDL_LoadObject("libcrypto.so.1.1");
void* libssl = SDL_LoadObject("libssl.so.1.1");
if (!libcrypto)
libcrypto = SDL_LoadObject("libcrypto.so.3");
if (!libssl)
libssl = SDL_LoadObject("libssl.so.3");
#endif
if (!libcrypto || !libssl)
return;
Expand Down

0 comments on commit d76f14d

Please sign in to comment.