diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2014-07-27 09:45:28 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-07-27 10:29:45 +0200 |
commit | fee0de369348c0a4098cfe79ae86bbf9bbee34d0 (patch) | |
tree | c9485f4e1ef6e05adb00bb7212f4ca493285391e /package/fetchmail/fetchmail.mk | |
parent | 07e8d28c51685bd0ccd253bbff269de08812015b (diff) | |
download | buildroot-fee0de369348c0a4098cfe79ae86bbf9bbee34d0.tar.gz buildroot-fee0de369348c0a4098cfe79ae86bbf9bbee34d0.zip |
package/fetchmail: Fix checking for statically build OpenSSL with libz dependency
Fixes
http://autobuild.buildroot.net/results/48a/48ad6d3659cf1f04581b7e3d115bebf454ff17fd/
To fix the error add "-lz" to LIBS variable and re-order the libraries in
configure.ac. Please note line 797 in configure.ac:
dnl XXX FIXME: use pkg-config if available!
Quote of the compile error:
configure: Enabling OpenSSL support in /home/br/br/output/host/usr/i486-buildroot-linux-uclibc/sysroot/usr.
checking for additional library dependencies of SSL... error
configure: error: cannot link with SSL - check config.log
In config.log multiple linking errors to libz can be found:
configure:10099: /home/br/br/output/host/usr/bin/i486-ctng-linux-uclibc-gcc -o
conftest -D_LARGEFILE_SOURCE -D_LARGEFILE64
/home/br/br/output/host/usr/i486-buildroot-linux-uclibc/sysroot/usr/lib/libcrypto.a(c_zlib.o):
In function `zlib_stateful_c_zlib.c:(.text+0x56): undefined reference to `inflate'
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/fetchmail/fetchmail.mk')
-rw-r--r-- | package/fetchmail/fetchmail.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/fetchmail/fetchmail.mk b/package/fetchmail/fetchmail.mk index bb723f7b61..e910019fcf 100644 --- a/package/fetchmail/fetchmail.mk +++ b/package/fetchmail/fetchmail.mk @@ -10,6 +10,9 @@ FETCHMAIL_SOURCE = fetchmail-$(FETCHMAIL_VERSION).tar.xz FETCHMAIL_SITE = http://downloads.sourceforge.net/project/fetchmail/branch_$(FETCHMAIL_VERSION_MAJOR)/ FETCHMAIL_LICENSE = GPLv2; some exceptions are mentioned in COPYING FETCHMAIL_LICENSE_FILES = COPYING +FETCHMAIL_AUTORECONF = YES + +FETCHMAIL_CONF_ENV += LIBS="-lz" FETCHMAIL_CONF_OPT = \ --with-ssl=$(STAGING_DIR)/usr |