From: Jakob Bornecrantz Date: Tue, 24 Nov 2009 00:14:03 +0000 (+0100) Subject: svga: Filter out pendantic and ansi flags X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=acc51ac0ace11bb375241467ba35e1014f5fb997;p=mesa.git svga: Filter out pendantic and ansi flags Rather have the driver compile without the flags then having to disable them. --- diff --git a/src/gallium/drivers/svga/Makefile b/src/gallium/drivers/svga/Makefile index d1413319c97..8158364d252 100644 --- a/src/gallium/drivers/svga/Makefile +++ b/src/gallium/drivers/svga/Makefile @@ -50,6 +50,9 @@ C_SOURCES = \ LIBRARY_INCLUDES = \ -I$(TOP)/src/gallium/drivers/svga/include +# With linux-debug we get a lots of warnings, filter out the bad flags. +CFLAGS := $(filter-out -pedantic, $(filter-out -ansi, $(CFLAGS))) + LIBRARY_DEFINES = \ -std=gnu99 -fvisibility=hidden \ -DHAVE_STDINT_H -DHAVE_SYS_TYPES_H