From: David M. Syzdek Date: Sun, 26 Oct 2008 11:52:47 +0000 (-0800) Subject: Add Makefile check for FreeBSD 4.9-SECURITY X-Git-Tag: v1.6.1-rc1~53^2~2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=069bb5765c04645313d79a1eb345a4fb8fe7f06c;p=git.git 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 Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index 069836507..426e1a652 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