Skip to content

Commit

Permalink
makefile: Define _GNU_SOURCE in the embed mkfile
Browse files Browse the repository at this point in the history
  • Loading branch information
vmg committed Feb 9, 2012
1 parent 61eba2d commit 9b8d560
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.embed
Expand Up @@ -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)
Expand Down

0 comments on commit 9b8d560

Please sign in to comment.