From 4fc1ad22ad21ae528d63fefd999bae492b9582cd Mon Sep 17 00:00:00 2001 From: Connor Lane Smith Date: Tue, 24 May 2011 19:22:28 +0100 Subject: [PATCH] posix 2 hates symlinks --- config.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.mk b/config.mk index 259479e..f340f0c 100644 --- a/config.mk +++ b/config.mk @@ -6,6 +6,6 @@ VERSION = 0.0 AR = ar -CPPFLAGS = -D_POSIX_C_SOURCE=2 -CFLAGS = -Os -std=c99 -Wall -pedantic $(CPPFLAGS) +CPPFLAGS = -D_POSIX_C_SOURCE=200112L +CFLAGS = -Os -ansi -Wall -pedantic $(CPPFLAGS) LDFLAGS = -s -static