From: José Fonseca Date: Thu, 6 May 2010 20:19:35 +0000 (+0100) Subject: scons: Disable graw-null on msvc until linkage works. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=095a6531a2e2720a1488cdd4135b23c20fa7049b;p=mesa.git scons: Disable graw-null on msvc until linkage works. --- diff --git a/src/gallium/targets/SConscript b/src/gallium/targets/SConscript index be5db88e41c..ca3e1ec1327 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']: