diff options
author | Johannes Obermayr <[email protected]> | 2013-01-12 22:13:47 +0100 |
---|---|---|
committer | Matt Turner <[email protected]> | 2013-01-14 13:32:13 -0800 |
commit | dc473c5f0a2f0dafd85a1b7bef22b3f4f39596bb (patch) | |
tree | ba1db26fe79805ebbaa78ffb4c289a61a147db4b /src | |
parent | 164a04ed1bb712fd7cada24fbe899ec7fea28a51 (diff) |
gallium/svga: Make sure -std=gnu99 is set.
This is a work-around until configure.ac stops touching CFLAGS.
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/svga/Makefile.am | 3 | ||||
-rw-r--r-- | src/gallium/winsys/svga/drm/Makefile.am | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/gallium/drivers/svga/Makefile.am b/src/gallium/drivers/svga/Makefile.am index e08a133bf71..fdaa3c8ebc4 100644 --- a/src/gallium/drivers/svga/Makefile.am +++ b/src/gallium/drivers/svga/Makefile.am @@ -29,7 +29,8 @@ AM_CPPFLAGS = \ -I$(top_srcdir)/include \ $(GALLIUM_CFLAGS) -AM_CFLAGS = -std=gnu99 +#On some systems -std= must be added to CFLAGS to be the last -std= +CFLAGS += -std=gnu99 noinst_LTLIBRARIES = libsvga.la diff --git a/src/gallium/winsys/svga/drm/Makefile.am b/src/gallium/winsys/svga/drm/Makefile.am index 452af3ae034..53bbcc244fd 100644 --- a/src/gallium/winsys/svga/drm/Makefile.am +++ b/src/gallium/winsys/svga/drm/Makefile.am @@ -30,7 +30,9 @@ AM_CPPFLAGS = \ -I$(top_srcdir)/src/gallium/drivers \ $(GALLIUM_CFLAGS) \ $(LIBDRM_CFLAGS) -AM_CFLAGS = -std=gnu99 -D_FILE_OFFSET_BITS=64 + +#On some systems -std= must be added to CFLAGS to be the last -std= +CFLAGS += -std=gnu99 -D_FILE_OFFSET_BITS=64 noinst_LTLIBRARIES = libsvgadrm.la |