From: Brian Gernhardt Date: Tue, 8 Sep 2009 13:54:38 +0000 (-0400) Subject: Makefile: Add NEEDS_CRYPTO_WITH_SSL X-Git-Tag: v1.6.5-rc1~23 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/0460dba4b4c47ac0b11ccb85b319792280422bc9?ds=inline;hp=0460dba4b4c47ac0b11ccb85b319792280422bc9 Makefile: Add NEEDS_CRYPTO_WITH_SSL The Makefile comment for NEEDS_SSL_WITH_CRYPTO says to define it "if you need -lcrypto with -lssl (Darwin)." However, what it actually does is add -lssl when you use -lcrypto and not the other way around. However, libcrypto contains a majority of the ERR_* functions from OpenSSL (at least on OS X) so we need it both ways. So, add NEEDS_CRYPTO_WITH_SSL which adds -lcrypto to the OpenSSL link flags and clarify the difference between it and NEEDS_SSL_WITH_CRYPTO. Signed-off-by: Brian Gernhardt Signed-off-by: Junio C Hamano ---