diff options
author | José Fonseca <[email protected]> | 2010-05-06 21:19:35 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-05-06 21:19:35 +0100 |
commit | 095a6531a2e2720a1488cdd4135b23c20fa7049b (patch) | |
tree | e5f61a462ff63491ee86e721b9e2c921cec26c27 /src/gallium | |
parent | f63672c9ab51e6855c2a6bedc6d23d7cd23d329a (diff) |
scons: Disable graw-null on msvc until linkage works.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | 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 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']: |