diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2013-07-02 20:31:56 +0200 |
---|---|---|
committer | Joe MacDonald <joe.macdonald@windriver.com> | 2013-07-02 14:39:17 -0400 |
commit | 46354a697c18a64c5836159adf8dbd92e6547e85 (patch) | |
tree | 86174572d816850681950484c68f9a0253e2de43 /meta-networking/recipes-daemons/vsftpd | |
parent | 30e97c15d762f09fa37a31602d00f1f4b0d059bb (diff) | |
download | meta-openembedded-46354a697c18a64c5836159adf8dbd92e6547e85.tar.gz |
vsftpd: add missing dependency on openssl
* Fails without openssl in sysroot:
| i586-webos-linux-gcc -m32 -march=i586 --sysroot=/OE/sysroots/qemux86 -o vsftpd main.o utility.o prelogin.o ftpcmdio.o postlogin.o privsock.o tunables.o ftpdataio.o secbuf.o ls.o postprivparent.o logging.o str.o netstr.o sysstr.o strlist.o banner.o filestr.o parseconf.o secutil.o ascii.o oneprocess.o twoprocess.o privops.o standalone.o hash.o tcpwrap.o ipaddrparse.o access.o features.o readwrite.o opts.o ssl.o sslslave.o ptracesandbox.o ftppolicy.o sysutil.o sysdeputil.o -lssl -lcrypto -lnsl -lresolv -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -lcrypt -lcap
| /OE/sysroots/x86_64-linux/usr/libexec/i586-webos-linux/gcc/i586-webos-linux/4.7.2/ld: cannot find -lssl
| /OE/sysroots/x86_64-linux/usr/libexec/i586-webos-linux/gcc/i586-webos-linux/4.7.2/ld: cannot find -lcrypto
| collect2: error: ld returned 1 exit status
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
Diffstat (limited to 'meta-networking/recipes-daemons/vsftpd')
-rw-r--r-- | meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb b/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb index c02ee9c0a..f14691034 100644 --- a/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb +++ b/meta-networking/recipes-daemons/vsftpd/vsftpd_2.3.5.bb | |||
@@ -4,7 +4,7 @@ SECTION = "network" | |||
4 | LICENSE = "GPLv2" | 4 | LICENSE = "GPLv2" |
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=a6067ad950b28336613aed9dd47b1271" | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=a6067ad950b28336613aed9dd47b1271" |
6 | 6 | ||
7 | DEPENDS = "libcap" | 7 | DEPENDS = "libcap openssl" |
8 | 8 | ||
9 | SRC_URI = "https://security.appspot.com/downloads/vsftpd-${PV}.tar.gz \ | 9 | SRC_URI = "https://security.appspot.com/downloads/vsftpd-${PV}.tar.gz \ |
10 | file://makefile-destdir.patch \ | 10 | file://makefile-destdir.patch \ |