Mesa (master): scons: Disable graw-null on msvc until linkage works.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Thu May 6 20:20:08 UTC 2010


Module: Mesa
Branch: master
Commit: 095a6531a2e2720a1488cdd4135b23c20fa7049b
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=095a6531a2e2720a1488cdd4135b23c20fa7049b

Author: José Fonseca <jfonseca at vmware.com>
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']:




More information about the mesa-commit mailing list