From 6ec37625f83b8d71b6cb0421a46f3e5d1c37fe00 Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Tue, 27 Jun 2017 21:33:41 +0200 Subject: [PATCH] config.mk: fix compiler warning, just use DEFAULT_SOURCE warning was: warning: implicit declaration of function 'strptime' warning: implicit declaration of function 'setgroups' --- config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.mk b/config.mk index b6e5e96..962aa47 100644 --- a/config.mk +++ b/config.mk @@ -8,7 +8,7 @@ PREFIX = /usr/local MANPREFIX = $(PREFIX)/man # flags -CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_DEFAULT_SOURCE -D_XOPEN_SOURCE +CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_DEFAULT_SOURCE CFLAGS = -std=c99 -pedantic -Wall -Os LDFLAGS = -s