Commit 9b8d56087cf6e981da76ac9e9cdb84e7dbc0fc32

Vicent Martí 2012-02-09T01:18:26

makefile: Define _GNU_SOURCE in the embed mkfile

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/Makefile.embed b/Makefile.embed
index 83dc281..fb6b01b 100644
--- a/Makefile.embed
+++ b/Makefile.embed
@@ -6,7 +6,7 @@ LIBNAME=libgit2.a
 
 INCLUDES= -I. -Isrc -Iinclude -Ideps/http-parser -Ideps/zlib
 
-DEFINES= $(INCLUDES) -DNO_VIZ -DSTDC -DNO_GZIP -D_FILE_OFFSET_BITS=64
+DEFINES= $(INCLUDES) -DNO_VIZ -DSTDC -DNO_GZIP -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
 CFLAGS= -g $(DEFINES) -Wall -Wextra -fPIC -O2
 
 SRCS = $(wildcard src/*.c) $(wildcard src/transports/*.c) $(wildcard src/unix/*.c) $(wildcard deps/http-parser/*.c) $(wildcard deps/zlib/*.c)