summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b4635be)
raw | patch | inline | side by side (parent: b4635be)
author | Junio C Hamano <junkio@cox.net> | |
Tue, 10 May 2005 20:25:27 +0000 (13:25 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Tue, 10 May 2005 20:25:27 +0000 (13:25 -0700) |
Mark Allen had trouble with building GIT on his Darwin and
posted a patch to link with -lcrypto instead of -lssl on Darwin.
Later Daniel Barkalow suggested to change it for everybody who
uses openssl, because the relevant functionality is in -lcrypto
not in -lssl, and the current linking happens to work only
because -lssl pulls in -lcrypto.
Signed-off-by: Junio C Hamano <junkio@cox.net>
posted a patch to link with -lcrypto instead of -lssl on Darwin.
Later Daniel Barkalow suggested to change it for everybody who
uses openssl, because the relevant functionality is in -lcrypto
not in -lssl, and the current linking happens to work only
because -lssl pulls in -lcrypto.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Makefile | patch | blob | history |
diff --git a/Makefile b/Makefile
index 5c078f907aaecab48703bd1f86800b11785b0fb6..6afcb3e867a6857f9128dba877e433c12366c1f4 100644 (file)
--- a/Makefile
+++ b/Makefile
LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
else
SHA1_HEADER=<openssl/sha.h>
- LIBS += -lssl
+ LIBS += -lcrypto
endif
endif