config.mk: fix compiler warning, just use DEFAULT_SOURCE
warning was: warning: implicit declaration of function 'strptime' warning: implicit declaration of function 'setgroups'
This commit is contained in:
parent
bd2e9e66ff
commit
6ec37625f8
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue