scons: Disable graw-null on msvc until linkage works.
authorJosé Fonseca <jfonseca@vmware.com>
Thu, 6 May 2010 20:19:35 +0000 (21:19 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Thu, 6 May 2010 20:19:35 +0000 (21:19 +0100)
src/gallium/targets/SConscript

index be5db88e41cef368d38733a4f191df7a391ab2eb..ca3e1ec1327051fc6e3cadd797832c4c7a307d62 100644 (file)
@@ -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']: