From: David Aguilar Date: Sun, 19 May 2013 10:23:35 +0000 (-0400) Subject: cache.h: eliminate SHA-1 deprecation warnings on Mac OS X X-Git-Tag: v1.8.3.3~28^2~1 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/61067954ce166e8a6fbcd109376fe2d9681ca333?ds=inline;hp=61067954ce166e8a6fbcd109376fe2d9681ca333 cache.h: eliminate SHA-1 deprecation warnings on Mac OS X As of Mac OS X 10.7, Apple deprecated all OpenSSL functions due to OpenSSL ABI instability, thus leading to build diagnostics such as: warning: 'SHA1_Init' is deprecated (declared at /usr/include/openssl/sha.h:121) Silence the warnings by using Apple's CommonCrypto SHA-1 replacement functions for SHA1_Init(), SHA1_Update(), and SHA1_Final(). COMMON_DIGEST_FOR_OPENSSL is defined to instruct to provide compatibility macros associating OpenSSL SHA-1 functions with their CommonCrypto counterparts. [es: reworded commit message] Signed-off-by: David Aguilar Signed-off-by: Eric Sunshine Signed-off-by: Junio C Hamano ---