From bf9ae5ceae36e553c725ab7da9e5205aa952320a Mon Sep 17 00:00:00 2001 From: Emil Renner Berthing Date: Mon, 2 Jan 2012 17:11:40 +0100 Subject: Makefile: add -std=gnu99 to CFLAGS --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d04bf01..82576e5 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ CC = gcc -CFLAGS ?= -O2 -pipe -Wall -Wextra -Wno-variadic-macros -Wno-strict-aliasing +CFLAGS ?= -O2 -pipe -Wall -Wextra -Wno-variadic-macros +CFLAGS += -std=gnu99 PKGCONFIG = pkg-config STRIP = strip INSTALL = install -- cgit v1.2.1