summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle J. McKay <mackyle@gmail.com>2014-08-15 00:46:11 -0700
committerJunio C Hamano <gitster@pobox.com>2014-08-15 09:50:18 -0700
commit9c7a0beee093908e26c11e689e391f95410d35c2 (patch)
tree051419b0471c82cd6cc6b7ffbbb5af6d786b3517
parent32f56600bb6ac6fc57183e79d2c1515dfa56672f (diff)
downloadgit-km/no-apple-common-crypto-on-darwin-8-and-below.tar.gz
config.mak.uname: set NO_APPLE_COMMON_CRYPTO on older systemskm/no-apple-common-crypto-on-darwin-8-and-below
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 <mackyle@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--config.mak.uname1
1 files changed, 1 insertions, 0 deletions
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