From 50c215a067c94b62e2664b496c3b09337db5f84e Mon Sep 17 00:00:00 2001 From: nakeee Date: Sun, 7 Dec 2008 19:13:44 +0000 Subject: [PATCH] Forgot glu git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1427 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_VideoOGL/Src/SConscript | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/Plugins/Plugin_VideoOGL/Src/SConscript b/Source/Plugins/Plugin_VideoOGL/Src/SConscript index 7eaaa1aa14..c56be3a27d 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/SConscript +++ b/Source/Plugins/Plugin_VideoOGL/Src/SConscript @@ -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':