From efdd33985cb38429aeae845a556db2322957e71a Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Sun, 4 Apr 2010 18:07:12 -0700 Subject: [PATCH] glew: Include X11 headers and libraries in SCons build. Fixes Mac OS X SCons build. --- src/glew/SConscript | 1 + 1 file changed, 1 insertion(+) diff --git a/src/glew/SConscript b/src/glew/SConscript index 45375e083a5..4b5b5b8d0ff 100644 --- a/src/glew/SConscript +++ b/src/glew/SConscript @@ -15,6 +15,7 @@ if env['platform'] == 'windows': 'user32', ]) else: + env.Tool('x11') env.PrependUnique(LIBS = [ 'GLU', 'GL',