]> asedeno.scripts.mit.edu Git - git.git/commitdiff
imap-send: link against libcrypto for HMAC and others
authorDiego Elio Pettenò <flameeyes@gmail.com>
Wed, 24 Nov 2010 20:03:53 +0000 (21:03 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 24 Nov 2010 20:23:48 +0000 (12:23 -0800)
When using stricter linkers, such as GNU gold or Darwin ld, transitive
dependencies are not counted towards symbol resolution. If we don't link
imap-send to libcrypto, we'll have undefined references to the HMAC_*,
EVP_* and ERR_* functions families.

Signed-off-by: Diego Elio Pettenò <flameeyes@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile

index d3dcfb18a7a4dffddb8e8cc742b7c151e639549e..cd98c5927132b803f95208a38a6a88f58dda599d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1921,7 +1921,7 @@ git-%$X: %.o $(GITLIBS)
 
 git-imap-send$X: imap-send.o $(GITLIBS)
        $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
-               $(LIBS) $(OPENSSL_LINK) $(OPENSSL_LIBSSL)
+               $(LIBS) $(OPENSSL_LINK) $(OPENSSL_LIBSSL) $(LIB_4_CRYPTO)
 
 git-http-fetch$X: revision.o http.o http-walker.o http-fetch.o $(GITLIBS)
        $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \