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
This commit is contained in:
nakeee 2008-09-22 07:25:57 +00:00
parent 3a130d4263
commit 420e304d2c
1 changed files with 2 additions and 1 deletions

View File

@ -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' ]