summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers
diff options
context:
space:
mode:
authorJose Fonseca <[email protected]>2016-02-11 11:07:49 +0000
committerJose Fonseca <[email protected]>2016-02-11 21:36:00 +0000
commita97a955b92f39d10c092490b3bf5a9fcbc8e2d57 (patch)
tree88435bbe434ea9e1f09a3d5f0a98c58daa5707b1 /src/gallium/drivers
parent1cadfe08c4109d2c117cbae2c82edee1293a8016 (diff)
scons: Eliminate MSVC2008 compatibility.
Reviewed-by: Brian Paul <[email protected]> Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r--src/gallium/drivers/llvmpipe/SConscript2
-rw-r--r--src/gallium/drivers/softpipe/SConscript2
-rw-r--r--src/gallium/drivers/trace/SConscript2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/llvmpipe/SConscript b/src/gallium/drivers/llvmpipe/SConscript
index 3a51efcd506..11cc3bcc858 100644
--- a/src/gallium/drivers/llvmpipe/SConscript
+++ b/src/gallium/drivers/llvmpipe/SConscript
@@ -9,7 +9,7 @@ if not env['llvm']:
env = env.Clone()
-env.MSVC2008Compat()
+env.MSVC2013Compat()
llvmpipe = env.ConvenienceLibrary(
target = 'llvmpipe',
diff --git a/src/gallium/drivers/softpipe/SConscript b/src/gallium/drivers/softpipe/SConscript
index dc3542c5100..8ae53b676ce 100644
--- a/src/gallium/drivers/softpipe/SConscript
+++ b/src/gallium/drivers/softpipe/SConscript
@@ -2,7 +2,7 @@ Import('*')
env = env.Clone()
-env.MSVC2008Compat()
+env.MSVC2013Compat()
softpipe = env.ConvenienceLibrary(
target = 'softpipe',
diff --git a/src/gallium/drivers/trace/SConscript b/src/gallium/drivers/trace/SConscript
index 1bbed73903d..7397983647a 100644
--- a/src/gallium/drivers/trace/SConscript
+++ b/src/gallium/drivers/trace/SConscript
@@ -2,7 +2,7 @@ Import('*')
env = env.Clone()
-env.MSVC2008Compat()
+env.MSVC2013Compat()
trace = env.ConvenienceLibrary(
target = 'trace',