diff options
| author | nakeee <nakeee@gmail.com> | 2008-09-22 07:25:57 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2008-09-22 07:25:57 +0000 |
| commit | 420e304d2c865fea49eae5f3813337ea34d6e2fb (patch) | |
| tree | 8e910eafddff45d9becb77e7d688d3baa52de0b3 /Source | |
| parent | 3a130d4263573042d184c51eeb7e08e62e83cf72 (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/SConscript | 3 |
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' ] |
