Forgot glu

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1427 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2008-12-07 19:13:44 +00:00
parent 0b7252b8f5
commit 50c215a067

View file

@ -73,8 +73,8 @@ if gfxenv['osx64']:
tests = {'CheckPKG' : utils.CheckPKG}
conf = gfxenv.Configure(custom_tests = tests)
if not conf.CheckPKG('gl'):
print name + " must have opengl to be build"
if not (conf.CheckPKG('gl') and conf.CheckPKG('glu')):
print name + " must have opengl (gl and glu) to be build"
Return()
@ -88,6 +88,7 @@ if gfxenv['HAVE_XXF86VM']:
gfxenv.ParseConfig("pkg-config xxf86vm --cflags --libs")
gfxenv.ParseConfig("pkg-config gl --cflags --libs")
gfxenv.ParseConfig("pkg-config glu --cflags --libs")
if sys.platform == 'darwin':