File: disable-openssl.diff

package info (click to toggle)
gcompris-qt 25.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 134,588 kB
  • sloc: javascript: 64,247; cpp: 5,095; xml: 1,500; python: 1,137; sh: 525; php: 114; java: 92; perl: 40; ansic: 14; makefile: 7; awk: 6
file content (18 lines) | stat: -rw-r--r-- 516 bytes parent folder | download
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()