1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Author: Pino Toscano <pino@debian.org>
Description: Disable the OpenSSL requirement
GCompris does not use OpenSSL directly, so there is no need to require or link
to it.
Last-Update: 2025-02-02
Forwarded: no
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -125,7 +125,7 @@ if(SHIP_SYSTEM_ICU)
set_package_properties(ICU PROPERTIES TYPE REQUIRED)
endif()
-if((UNIX AND NOT APPLE AND NOT ANDROID) OR WIN32)
+if(FALSE)
find_package(OpenSSL)
set_package_properties(OpenSSL PROPERTIES TYPE REQUIRED)
endif()
|