summaryrefslogtreecommitdiff
path: root/games-emulation/hatari/files/hatari-2.3.1-cmake-include-checksym.patch
blob: 39da11ea307d5785deb417702007a8fed1b46d27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Fix edge case build failure triggered by passing every
DISABLE_FIND_PACKAGE, including disabling the normally
always-enabled readline.

CMake Error at CMakeLists.txt:229 (check_symbol_exists):
  Unknown CMake command "check_symbol_exists".
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -12,2 +12,3 @@
 include(CheckStructHasMember)
+include(CheckSymbolExists)
 include(CheckCCompilerFlag)