softpipe,trace: Set MSVC 2008 compat flags.

Although we don't deploy these, we need to use them for debugging.

Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
Jose Fonseca 2015-03-04 14:25:39 +00:00
parent 00faf9f000
commit 2c25008e8e
4 changed files with 7 additions and 2 deletions

View File

@ -24,7 +24,8 @@ include Makefile.sources
include $(top_srcdir)/src/gallium/Automake.inc
AM_CFLAGS = \
$(GALLIUM_DRIVER_CFLAGS)
$(GALLIUM_DRIVER_CFLAGS) \
$(MSVC2008_COMPAT_CFLAGS)
noinst_LTLIBRARIES = libsoftpipe.la

View File

@ -2,6 +2,7 @@ Import('*')
env = env.Clone()
env.MSVC2008Compat()
softpipe = env.ConvenienceLibrary(
target = 'softpipe',

View File

@ -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

View File

@ -2,6 +2,8 @@ Import('*')
env = env.Clone()
env.MSVC2008Compat()
trace = env.ConvenienceLibrary(
target = 'trace',
source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')