aboutsummaryrefslogtreecommitdiffstats
path: root/testing/flightgear/fix-link_with_x11.patch
blob: f45bc3e565ba35c164ae634133f70d3389ac2f78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From 04ca64edc46cfb54ecff5bddf12370b2c7a0f192 Mon Sep 17 00:00:00 2001
From: Fabrice Bellet <fabrice@bellet.info>
Date: Tue, 17 Feb 2015 22:49:50 +0100
Subject: [PATCH] explicitely link with libX11

---
 src/Main/CMakeLists.txt       | 1 +
 utils/fgviewer/CMakeLists.txt | 1 +
 2 files changed, 2 insertions(+)

diff --git a/src/Main/CMakeLists.txt b/src/Main/CMakeLists.txt
index 12c0961..78c4163 100644
--- a/src/Main/CMakeLists.txt
+++ b/src/Main/CMakeLists.txt
@@ -142,6 +142,7 @@ target_link_libraries(fgfs
 	${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
 	${SIMGEAR_SCENE_LIBRARY_DEPENDENCIES}
 	${PLATFORM_LIBS}
+        ${X11_X11_LIB}
 )
 
 if(ENABLE_FLITE)