From: Kyle J. McKay Date: Fri, 15 Aug 2014 07:46:11 +0000 (-0700) Subject: config.mak.uname: set NO_APPLE_COMMON_CRYPTO on older systems X-Git-Tag: v2.2.0-rc0~156^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9c7a0beee09;p=thirdparty%2Fgit.git config.mak.uname: set NO_APPLE_COMMON_CRYPTO on older systems Older MacOS systems prior to 10.5 do not have the CommonCrypto support Git uses so set NO_APPLE_COMMON_CRYPTO on those systems. Signed-off-by: Kyle J. McKay Signed-off-by: Junio C Hamano --- diff --git a/config.mak.uname b/config.mak.uname index 7846bd7657..f8e12c9626 100644 --- a/config.mak.uname +++ b/config.mak.uname @@ -88,6 +88,7 @@ ifeq ($(uname_S),Darwin) NEEDS_LIBICONV = YesPlease ifeq ($(shell expr "$(uname_R)" : '[15678]\.'),2) OLD_ICONV = UnfortunatelyYes + NO_APPLE_COMMON_CRYPTO = YesPlease endif ifeq ($(shell expr "$(uname_R)" : '[15]\.'),2) NO_STRLCPY = YesPlease