Re: [PATCH] cache.h: avoid deprecation warnings on OS X 10.8

2013-05-12 Thread Eric Sunshine
On Fri, May 10, 2013 at 10:23 PM, David Aguilar wrote: > Mac OS X Mountain Lion prints warnings when building git: > > warning: 'SHA1_Init' is deprecated > (declared at /usr/include/openssl/sha.h:121) > > Silence the warnings by using the Common Digest SHA-1 > functions for SHA1_In

[PATCH] cache.h: avoid deprecation warnings on OS X 10.8

2013-05-10 Thread David Aguilar
Mac OS X Mountain Lion prints warnings when building git: warning: 'SHA1_Init' is deprecated (declared at /usr/include/openssl/sha.h:121) Silence the warnings by using the Common Digest SHA-1 functions for SHA1_Init(), SHA1_Update(), and SHA1_Final(). Add a COMMON_DIGEST_SHA1 kno