summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid M. Syzdek <david.syzdek@acsalaska.net>2008-10-26 11:52:47 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-11-02 08:12:35 (GMT)
commit069bb5765c04645313d79a1eb345a4fb8fe7f06c (patch)
tree23996e119b99fe35acdac14cc054dcbe77d464bb /Makefile
parent0bc3e781deb543ac2042cbd862c035403404c93d (diff)
downloadgit-069bb5765c04645313d79a1eb345a4fb8fe7f06c.zip
git-069bb5765c04645313d79a1eb345a4fb8fe7f06c.tar.gz
git-069bb5765c04645313d79a1eb345a4fb8fe7f06c.tar.bz2
Add Makefile check for FreeBSD 4.9-SECURITY
If the system is FreeBSD 4.9, then NO_UINTMAX_T and NO_STRTOUMAX is defined. Signed-off-by: David M. Syzdek <david.syzdek@acsalaska.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 0698365..426e1a6 100644
--- a/Makefile
+++ b/Makefile
@@ -694,6 +694,10 @@ ifeq ($(uname_S),FreeBSD)
THREADED_DELTA_SEARCH = YesPlease
COMPAT_CFLAGS += -Icompat/regex
COMPAT_OBJS += compat/regex/regex.o
+ ifeq ($(shell expr "$(uname_R)" : '4\.'),2)
+ NO_UINTMAX_T = YesPlease
+ NO_STRTOUMAX = YesPlease
+ endif
endif
ifeq ($(uname_S),OpenBSD)
NO_STRCASESTR = YesPlease