diff options
author | Brendan Taylor <whateley@gmail.com> | 2012-04-22 11:07:56 -0600 |
---|---|---|
committer | Brendan Taylor <whateley@gmail.com> | 2012-04-22 11:07:56 -0600 |
commit | 9d6c51053ec466b286b40f1852b207ea81fffdbb (patch) | |
tree | c7984b4112404c59005ed5278c496141366c50c3 /Makefile | |
parent | 1e83beb108fb442ae87e41fbf1abe5bb7f8b739a (diff) |
move _POSIX_SOURCE define into Makefile for consistency
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ ARCH:=$(shell uname -m) COMMIT_HASH:=$(shell ./misc/hash.sh) -CPPFLAGS += -D_BSD_SOURCE -DARCH=\"$(ARCH)\" -DCOMMIT=\"$(COMMIT_HASH)\" +CPPFLAGS += -D_BSD_SOURCE -D_POSIX_SOURCE -DARCH=\"$(ARCH)\" -DCOMMIT=\"$(COMMIT_HASH)\" PKG_CFLAGS:=$(shell pkg-config --cflags $(REQ_PKGS)) |