summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2008-09-22 07:25:57 +0000
committernakeee <nakeee@gmail.com>2008-09-22 07:25:57 +0000
commit420e304d2c865fea49eae5f3813337ea34d6e2fb (patch)
tree8e910eafddff45d9becb77e7d688d3baa52de0b3 /Source
parent3a130d4263573042d184c51eeb7e08e62e83cf72 (diff)
fix compilation on linux, I wonder how it worked before
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@605 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source')
-rw-r--r--Source/Plugins/Plugin_VideoOGL/Src/SConscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Plugins/Plugin_VideoOGL/Src/SConscript b/Source/Plugins/Plugin_VideoOGL/Src/SConscript
index 0dac6be092..70baea5684 100644
--- a/Source/Plugins/Plugin_VideoOGL/Src/SConscript
+++ b/Source/Plugins/Plugin_VideoOGL/Src/SConscript
@@ -54,9 +54,10 @@ else:
# instead if you like, by changing the line below.
useSDL = False
gfxenv.ParseConfig("pkg-config x11 --cflags --libs")
+ gfxenv.ParseConfig("pkg-config xxf86vm --cflags --libs")
# Libraries without pkg-config support.
- libs += [ 'GL', 'Cg', 'CgGL', 'X11' ]
+ libs += [ 'GL', 'Cg', 'CgGL' ]
if useSDL:
compileFlags += [ '-DUSE_SDL=1' ]