quoted
quoted
quoted
quoted
"DB" == Daniel Barkalow [off-list ref] writes:
DB> Actually, the relevant openssl functionality is always in libcrypto, not
DB> libssl...
Ok, could people try the following single liner, and if it
breaks yell loudly at me (or Daniel ;-)? It worked for me but I
just want to make sure before I put it in git-jc repository
which I will ask Linus to pull from later.
$ jit-diff 0:7
# - HEAD: Introduce GIT_DIR environment variable.
# + 7: Link with -lcrypto not -lssl
--- a/Makefile
+++ b/Makefile
@@ -60,7 +60,7 @@ ifdef PPC_SHA1
LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
else
SHA1_HEADER=<openssl/sha.h>
- LIBS += -lssl
+ LIBS += -lcrypto
endif
endif