From de514850009385f11a05698b0b011837b68092a0 Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Fri, 11 Jun 2010 18:42:08 -0700 Subject: scons: Disable i915g build if using MSVC. i915g uses C99 constructs that are not supported by MSVC. --- src/gallium/drivers/i915/SConscript | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/gallium/drivers/i915') diff --git a/src/gallium/drivers/i915/SConscript b/src/gallium/drivers/i915/SConscript index 7b69681096..d6e7a8dbd3 100644 --- a/src/gallium/drivers/i915/SConscript +++ b/src/gallium/drivers/i915/SConscript @@ -2,6 +2,10 @@ Import('*') env = env.Clone() +if msvc: + print 'warning: not building i915g' + Return() + i915 = env.ConvenienceLibrary( target = 'i915', source = [ -- cgit v1.2.3