diff options
author | Quentin Rameau <quinq@fifth.space> | 2016-01-10 00:47:45 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2016-01-13 21:58:08 +0100 |
commit | d8bad43b3c67a344fe78b6bdab36d414ed9ff13b (patch) | |
tree | a5eccca77c0501d2587bc1ca204fd2f47d6ec7f4 | |
parent | 79fab7c6faf78d7bcc0c870359138617aee24c7d (diff) |
stop glibc complaining about _BSD_SOURCE being deprecated
-rw-r--r-- | config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ LIBS = -L${GITLIB} -lgit2 -lc # debug CFLAGS = -fstack-protector-all -O0 -g -std=c99 -Wall -Wextra -pedantic \ - -D_XOPEN_SOURCE=700 -D_BSD_SOURCE ${INCS} + -D_XOPEN_SOURCE=700 -D_DEFAULT_SOURCE -D_BSD_SOURCE ${INCS} LDFLAGS = ${LIBS} # optimized |