git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] imap-send: link against libcrypto for HMAC and others
@ 2010-11-24 13:55 Diego Elio Pettenò
  2010-11-24 20:01 ` Junio C Hamano
  0 siblings, 1 reply; 10+ messages in thread
From: Diego Elio Pettenò @ 2010-11-24 13:55 UTC (permalink / raw)
  To: git

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.
---
 Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Makefile b/Makefile
index 1f1ce04..c8377d4 100644
--- a/Makefile
+++ b/Makefile
@@ -1927,7 +1927,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,$^) \
-- 
1.7.3.2

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2010-12-08  4:58 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-24 13:55 [PATCH] imap-send: link against libcrypto for HMAC and others Diego Elio Pettenò
2010-11-24 20:01 ` Junio C Hamano
2010-11-24 20:03   ` Diego Elio Pettenò
2010-12-06  5:28     ` Anders Kaseorg
2010-12-06  5:39       ` Diego Elio Pettenò
2010-12-06  6:06         ` Jonathan Nieder
2010-12-06  6:11         ` Junio C Hamano
2010-12-08  1:51           ` Jared Hance
2010-12-08  2:12             ` Junio C Hamano
2010-12-08  4:53           ` Anders Kaseorg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).