diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2015-05-13 13:29:17 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-05-13 14:10:44 +0200 |
commit | 205f07755661b64da21509469b46006ea0badcf9 (patch) | |
tree | ddb9405a174b8a8d38ced1ddd3056a278165bbe9 | |
parent | 527d119efde7e2384cb9f95283a02baaf32e55c8 (diff) | |
download | buildroot-205f07755661b64da21509469b46006ea0badcf9.tar.gz buildroot-205f07755661b64da21509469b46006ea0badcf9.zip |
vsftpd: correct openssl linking after 1d046a5c (vsftpd: use pkg-config to get OpenSSL link flags)
Fixes:
http://autobuild.buildroot.net/results/221/221c987a9657caefad54bcc2fe9d2d71189c94c5/
http://autobuild.buildroot.net/results/90c/90cea7c4fdb3e5af923eedf96d79594d6d02e563/
vsftpd directly uses symbols from libcrypto (X509_{digest,free}), so it
needs to link against both.
This doesn't trigger for static builds as libssl internally uses libcrypto
(and lists it in Requires.private).
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/vsftpd/vsftpd.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/vsftpd/vsftpd.mk b/package/vsftpd/vsftpd.mk index ed15f00dff..3091f06d4e 100644 --- a/package/vsftpd/vsftpd.mk +++ b/package/vsftpd/vsftpd.mk @@ -24,7 +24,7 @@ endif ifeq ($(BR2_PACKAGE_OPENSSL),y) VSFTPD_DEPENDENCIES += openssl host-pkgconf -VSFTPD_LIBS += $(shell $(PKG_CONFIG_HOST_BINARY) --libs libssl) +VSFTPD_LIBS += $(shell $(PKG_CONFIG_HOST_BINARY) --libs libssl libcrypto) VSFTPD_POST_CONFIGURE_HOOKS += VSFTPD_ENABLE_SSL endif |