summaryrefslogtreecommitdiffstats
path: root/package/fetchmail
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-05-19 23:04:41 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-05-31 23:04:53 +0200
commit281d8451c4082fb2e1f0e65c7e10aecfbe192482 (patch)
tree43e490dff606a4bf98f1356dde99b6e378cedd3c /package/fetchmail
parente613c6eb4a79b0c4e79d099e12c35e27370ecb60 (diff)
downloadbuildroot-281d8451c4082fb2e1f0e65c7e10aecfbe192482.tar.gz
buildroot-281d8451c4082fb2e1f0e65c7e10aecfbe192482.zip
fetchmail: adjust zlib handling
fetchmail itself does not need zlib, there is no reference to it in its source, so the "select BR2_PACKAGE_ZLIB" is not necessary. Moreover, "zlib" was not added to FETCHMAIL_DEPENDENCIES (but was anyway in the dependency chain through openssl). In addition, LIBS="-lz" is only needed in static linking configurations, to help fetchmail's configure script find OpenSSL (it doesn't use pkg-config unfortunately). Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/fetchmail')
-rw-r--r--package/fetchmail/Config.in1
-rw-r--r--package/fetchmail/fetchmail.mk4
2 files changed, 4 insertions, 1 deletions
diff --git a/package/fetchmail/Config.in b/package/fetchmail/Config.in
index 7c14176b23..62f4f84d50 100644
--- a/package/fetchmail/Config.in
+++ b/package/fetchmail/Config.in
@@ -3,7 +3,6 @@ config BR2_PACKAGE_FETCHMAIL
depends on BR2_USE_MMU # fork()
select BR2_PACKAGE_CA_CERTIFICATES
select BR2_PACKAGE_OPENSSL
- select BR2_PACKAGE_ZLIB
help
Fetchmail - the mail-retrieval daemon
Client daemon to move mail from POP and IMAP to your local computer
diff --git a/package/fetchmail/fetchmail.mk b/package/fetchmail/fetchmail.mk
index 49ce0d3a80..164b2f8ad8 100644
--- a/package/fetchmail/fetchmail.mk
+++ b/package/fetchmail/fetchmail.mk
@@ -13,7 +13,11 @@ FETCHMAIL_LICENSE_FILES = COPYING
FETCHMAIL_AUTORECONF = YES
FETCHMAIL_GETTEXTIZE = YES
+# needed to help fetchmail detecting the availability of openssl,
+# because it doesn't use pkg-config
+ifeq ($(BR2_STATIC_LIBS),y)
FETCHMAIL_CONF_ENV += LIBS="-lz"
+endif
FETCHMAIL_CONF_OPTS = \
--with-ssl=$(STAGING_DIR)/usr
OpenPOWER on IntegriCloud