From 94842408987bf09ecd6123df4338c2467e099216 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 21 Oct 2014 14:19:34 +0200 Subject: use ISO C11 standard --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d508acb..ab6296d 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ ECHO := echo GREP := grep INSTALL := install RM := rm -CFLAGS += -O2 -Wall -Werror +CFLAGS += -std=c11 -O2 -Wall -Werror # Debian has the libs but no pkg-config file. Fall back to hard coded # "-lnettle" if pkg-config fails. CFLAGS += $(shell pkg-config --cflags --libs nettle 2>/dev/null || echo "-lnettle") -- cgit v1.2.3-54-g00ecf