mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
Forgot glu
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1427 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -73,8 +73,8 @@ if gfxenv['osx64']:
|
|||||||
tests = {'CheckPKG' : utils.CheckPKG}
|
tests = {'CheckPKG' : utils.CheckPKG}
|
||||||
conf = gfxenv.Configure(custom_tests = tests)
|
conf = gfxenv.Configure(custom_tests = tests)
|
||||||
|
|
||||||
if not conf.CheckPKG('gl'):
|
if not (conf.CheckPKG('gl') and conf.CheckPKG('glu')):
|
||||||
print name + " must have opengl to be build"
|
print name + " must have opengl (gl and glu) to be build"
|
||||||
Return()
|
Return()
|
||||||
|
|
||||||
|
|
||||||
@ -88,6 +88,7 @@ if gfxenv['HAVE_XXF86VM']:
|
|||||||
gfxenv.ParseConfig("pkg-config xxf86vm --cflags --libs")
|
gfxenv.ParseConfig("pkg-config xxf86vm --cflags --libs")
|
||||||
|
|
||||||
gfxenv.ParseConfig("pkg-config gl --cflags --libs")
|
gfxenv.ParseConfig("pkg-config gl --cflags --libs")
|
||||||
|
gfxenv.ParseConfig("pkg-config glu --cflags --libs")
|
||||||
|
|
||||||
if sys.platform == 'darwin':
|
if sys.platform == 'darwin':
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user