Module: Mesa Branch: master Commit: 8f81769148eab0042ffb7192a702350275648715 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=8f81769148eab0042ffb7192a702350275648715
Author: Vinson Lee <[email protected]> Date: Thu Jan 28 01:19:53 2010 -0800 scons: Fix GLEW build on Mac OS X. --- src/glew/SConscript | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/glew/SConscript b/src/glew/SConscript index ce6e71e..45375e0 100644 --- a/src/glew/SConscript +++ b/src/glew/SConscript @@ -52,6 +52,9 @@ prog_env = env.Clone() prog_env.Prepend(LIBS = [glew]) +if prog_env['platform'] == 'darwin': + prog_env.Append(FRAMEWORKS = ['AGL']) + prog_env.Program( target = 'glewinfo', source = ['glewinfo.c'], _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
