]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Makefile: imap/pop3-login now links SSL_LIBS explicitly.
authorTimo Sirainen <tss@iki.fi>
Tue, 3 Aug 2010 16:21:11 +0000 (17:21 +0100)
committerTimo Sirainen <tss@iki.fi>
Tue, 3 Aug 2010 16:21:11 +0000 (17:21 +0100)
This fixes compiling in some systems where they didn't get included
automatically (or the automatic linking used wrong libraries).

src/imap-login/Makefile.am
src/pop3-login/Makefile.am

index 435e346da2d1f0e1c1c99ee4164c063dc476d6fa..ec95a05101586a8a805d9f14f22875e5033c769c 100644 (file)
@@ -12,7 +12,8 @@ AM_CPPFLAGS = \
 
 imap_login_LDADD = \
        $(LIBDOVECOT_LOGIN) \
-       $(LIBDOVECOT)
+       $(LIBDOVECOT) \
+       $(SSL_LIBS)
 imap_login_DEPENDENCIES = \
        $(LIBDOVECOT_LOGIN) \
        $(LIBDOVECOT_DEPS)
index 7eff6858db1c0c920376f859add14242237dcaa3..6d2ad736393df331e5ebbeb32154626d790763d6 100644 (file)
@@ -11,7 +11,8 @@ AM_CPPFLAGS = \
 
 pop3_login_LDADD = \
        $(LIBDOVECOT_LOGIN) \
-       $(LIBDOVECOT)
+       $(LIBDOVECOT) \
+       $(SSL_LIBS)
 pop3_login_DEPENDENCIES = \
        $(LIBDOVECOT_LOGIN) \
        $(LIBDOVECOT_DEPS)