changeset 11923:b45e0637a5ef

Makefile: imap/pop3-login now links SSL_LIBS explicitly. This fixes compiling in some systems where they didn't get included automatically (or the automatic linking used wrong libraries).
author Timo Sirainen <tss@iki.fi>
date Tue, 03 Aug 2010 17:21:11 +0100
parents 62abbfe45cde
children 7edfd661cbfa
files src/imap-login/Makefile.am src/pop3-login/Makefile.am
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/imap-login/Makefile.am	Tue Aug 03 16:49:43 2010 +0100
+++ b/src/imap-login/Makefile.am	Tue Aug 03 17:21:11 2010 +0100
@@ -12,7 +12,8 @@
 
 imap_login_LDADD = \
 	$(LIBDOVECOT_LOGIN) \
-	$(LIBDOVECOT)
+	$(LIBDOVECOT) \
+	$(SSL_LIBS)
 imap_login_DEPENDENCIES = \
 	$(LIBDOVECOT_LOGIN) \
 	$(LIBDOVECOT_DEPS)
--- a/src/pop3-login/Makefile.am	Tue Aug 03 16:49:43 2010 +0100
+++ b/src/pop3-login/Makefile.am	Tue Aug 03 17:21:11 2010 +0100
@@ -11,7 +11,8 @@
 
 pop3_login_LDADD = \
 	$(LIBDOVECOT_LOGIN) \
-	$(LIBDOVECOT)
+	$(LIBDOVECOT) \
+	$(SSL_LIBS)
 pop3_login_DEPENDENCIES = \
 	$(LIBDOVECOT_LOGIN) \
 	$(LIBDOVECOT_DEPS)