From b625ad6d8b609c703e4550edd9e147d5b976b06e Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 25 Mar 2013 12:16:03 +0000 Subject: [PATCH] Use -std=gnu99 not c99 with GCC. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index a790ea02..bb2f4dac 100644 --- a/Makefile.am +++ b/Makefile.am @@ -24,7 +24,7 @@ endif # Set flags for gcc. gcc4 whines abouts silly stuff so it needs slightly # different flags. if IS_GCC -CFLAGS += -std=c99 +CFLAGS += -std=gnu99 if IS_DEBUG CFLAGS += -g -ggdb -O0 CFLAGS += -Wno-long-long -Wall -W -Wnested-externs -Wformat=2