summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/trace
diff options
context:
space:
mode:
authorJose Fonseca <[email protected]>2015-03-04 14:25:39 +0000
committerJose Fonseca <[email protected]>2015-03-04 15:12:17 +0000
commit2c25008e8e37a41fa61988b7fb65b524cbb7e64f (patch)
tree4ca8782e8ccb41b78a637047d692930d06f9c4a4 /src/gallium/drivers/trace
parent00faf9f00059370bc20ebeaf00884c2d8ef15a74 (diff)
softpipe,trace: Set MSVC 2008 compat flags.
Although we don't deploy these, we need to use them for debugging. Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/drivers/trace')
-rw-r--r--src/gallium/drivers/trace/Makefile.am3
-rw-r--r--src/gallium/drivers/trace/SConscript2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/drivers/trace/Makefile.am b/src/gallium/drivers/trace/Makefile.am
index db7b4491800..6a8a74a9103 100644
--- a/src/gallium/drivers/trace/Makefile.am
+++ b/src/gallium/drivers/trace/Makefile.am
@@ -2,7 +2,8 @@ include Makefile.sources
include $(top_srcdir)/src/gallium/Automake.inc
AM_CFLAGS = \
- $(GALLIUM_DRIVER_CFLAGS)
+ $(GALLIUM_DRIVER_CFLAGS) \
+ $(MSVC2008_COMPAT_CFLAGS)
noinst_LTLIBRARIES = libtrace.la
diff --git a/src/gallium/drivers/trace/SConscript b/src/gallium/drivers/trace/SConscript
index 7341d1c1c1d..1bbed73903d 100644
--- a/src/gallium/drivers/trace/SConscript
+++ b/src/gallium/drivers/trace/SConscript
@@ -2,6 +2,8 @@ Import('*')
env = env.Clone()
+env.MSVC2008Compat()
+
trace = env.ConvenienceLibrary(
target = 'trace',
source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')