summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-05-06 21:19:35 +0100
committerJosé Fonseca <jfonseca@vmware.com>2010-05-06 21:19:35 +0100
commit095a6531a2e2720a1488cdd4135b23c20fa7049b (patch)
treee5f61a462ff63491ee86e721b9e2c921cec26c27 /src
parentf63672c9ab51e6855c2a6bedc6d23d7cd23d329a (diff)
scons: Disable graw-null on msvc until linkage works.
Diffstat (limited to 'src')
-rw-r--r--src/gallium/targets/SConscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/targets/SConscript b/src/gallium/targets/SConscript
index be5db88e41..ca3e1ec132 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']: