aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2013-03-25 12:16:03 +0000
committerThomas Adam <thomas.adam@smoothwall.net>2013-03-25 15:33:23 +0000
commitb625ad6d8b609c703e4550edd9e147d5b976b06e (patch)
tree5d97b706ef2c34bb4550cd4e18c00d18d84750bb
parent97b5df35b1b4d255f8d9eef55f0a169c0b16f0e0 (diff)
downloadrtmux-b625ad6d8b609c703e4550edd9e147d5b976b06e.tar.gz
rtmux-b625ad6d8b609c703e4550edd9e147d5b976b06e.tar.bz2
rtmux-b625ad6d8b609c703e4550edd9e147d5b976b06e.zip
Use -std=gnu99 not c99 with GCC.
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
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