opengl scons compile fix on linux

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@990 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2008-10-28 14:19:28 +00:00
parent a0a21a9877
commit 418f8a2b23
2 changed files with 4 additions and 2 deletions

View File

@ -16,7 +16,7 @@
// http://code.google.com/p/dolphin-emu/
// Games that uses this UCode:
// Zelda: The Windwaker, Mario Sunshine, Mario Kart
// Zelda: The Windwaker, Mario Sunshine, Mario Kart, Twilight Princess
#include "../Globals.h"
#include "UCodes.h"

View File

@ -99,6 +99,8 @@ else:
# Libraries without pkg-config support.
libs += [ 'GL', 'Cg', 'CgGL' ]
if useSDL:
compileFlags += [ '-DUSE_SDL=1' ]
@ -110,5 +112,5 @@ gfxenv.Append(
gfxenv.SharedLibrary(
'../../../../Binary/%s/Plugins/zeroogl.so' % platform,
files,
LIBS = libs
LIBS = libs + gfxenv['LIBS']
)