From 420e304d2c865fea49eae5f3813337ea34d6e2fb Mon Sep 17 00:00:00 2001 From: nakeee Date: Mon, 22 Sep 2008 07:25:57 +0000 Subject: [PATCH] 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 --- Source/Plugins/Plugin_VideoOGL/Src/SConscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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' ]