From d4d4ab5b0686c7c1a5aae785b9a39cb615df5824 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 27 Jan 2026 21:50:34 -0600 Subject: [PATCH] Only use the libssl.so linking hack for AppImages --- app/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.cpp b/app/main.cpp index 79587431..aae900f5 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -484,7 +484,7 @@ int main(int argc, char *argv[]) // Force AntiHooking.dll to be statically imported and loaded // by ntdll on Win32 platforms by calling a dummy function. AntiHookingDummyImport(); -#elif defined(Q_OS_LINUX) +#elif defined(APP_IMAGE) // Force libssl.so to be directly linked to our binary, so // linuxdeployqt can find it and include it in our AppImage. // QtNetwork will pull it in via dlopen().