Module: Mesa Branch: master Commit: 095a6531a2e2720a1488cdd4135b23c20fa7049b URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=095a6531a2e2720a1488cdd4135b23c20fa7049b
Author: José Fonseca <[email protected]> Date: Thu May 6 21:19:35 2010 +0100 scons: Disable graw-null on msvc until linkage works. --- src/gallium/targets/SConscript | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/gallium/targets/SConscript b/src/gallium/targets/SConscript index be5db88..ca3e1ec 100644 --- a/src/gallium/targets/SConscript +++ b/src/gallium/targets/SConscript @@ -15,7 +15,9 @@ if env['platform'] == 'linux' and 'xlib' in env['winsys'] and 'graw-xlib' in env 'graw-xlib/SConscript', ]) else: - SConscript('graw-null/SConscript') + if not env['msvc']: + # XXX: disable until MSVC can link correctly + SConscript('graw-null/SConscript') if env['dri']: _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
