From 979692a52aec5d3c927f77f2602e9d848136e7ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Fonseca?= Date: Thu, 1 May 2014 14:19:13 +0100 Subject: scons: Don't use bundled C99 headers for VS 2013. Use the ones provided by the compiler instead. NOTE: External trees should be updated to not include '#include/c99' directory directly, but rather rely on scons/gallium.py to do the right thing. Reviewed-by: Brian Paul Reviewed-by: Roland Scheidegger --- SConstruct | 6 ------ 1 file changed, 6 deletions(-) (limited to 'SConstruct') diff --git a/SConstruct b/SConstruct index 0e10818..ef71ab6 100644 --- a/SConstruct +++ b/SConstruct @@ -80,9 +80,6 @@ env.Append(CPPPATH = [ '#/src/gallium/winsys', ]) -if env['msvc']: - env.Append(CPPPATH = ['#include/c99']) - # for debugging #print env.Dump() @@ -115,9 +112,6 @@ if env['crosscompile'] and not env['embedded']: host_env['hostonly'] = True assert host_env['crosscompile'] == False - if host_env['msvc']: - host_env.Append(CPPPATH = ['#include/c99']) - target_env = env env = host_env Export('env') -- cgit v1.1