diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2013-07-04 09:56:11 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-07-08 10:35:56 +0200 |
commit | 5b2978fb32677ece50c21f052107f882e63b62a5 (patch) | |
tree | 88f96b6c86ffd9d578011d22db40ff30dc2ee97c /meta-oe | |
parent | 84116c5b360988d73c5e497c8b8ad2061322a137 (diff) | |
download | meta-openembedded-5b2978fb32677ece50c21f052107f882e63b62a5.tar.gz |
gsoap: add missing dependency on zlib
* do_compile fails without:
| i586-oe-linux-g++ -m32 -march=i586 --sysroot=/OE/sysroots/qemux86 -O2 -pipe -g -feliminate-unused-debug-types -fpermissive -fvisibility-inlines-hidden -L. -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -o wsdl2h wsdl2h-wsdl2h.o wsdl2h-wsdl.o wsdl2h-schema.o wsdl2h-types.o wsdl2h-service.o wsdl2h-soap.o wsdl2h-mime.o wsdl2h-wsp.o wsdl2h-wsdlC.o ../../gsoap/libgsoapssl++.a -lssl -lcrypto -lz
| /OE/sysroots/x86_64-linux/usr/libexec/i586-oe-linux/gcc/i586-oe-linux/4.7.2/ld: cannot find -lz
| collect2: error: ld returned 1 exit status
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-support/gsoap/gsoap_2.8.12.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/gsoap/gsoap_2.8.12.bb b/meta-oe/recipes-support/gsoap/gsoap_2.8.12.bb index ba8b6195f..b85db05ff 100644 --- a/meta-oe/recipes-support/gsoap/gsoap_2.8.12.bb +++ b/meta-oe/recipes-support/gsoap/gsoap_2.8.12.bb | |||
@@ -1,6 +1,6 @@ | |||
1 | require gsoap_${PV}.inc | 1 | require gsoap_${PV}.inc |
2 | 2 | ||
3 | DEPENDS = "gsoap-native openssl" | 3 | DEPENDS = "gsoap-native openssl zlib" |
4 | 4 | ||
5 | do_install_append() { | 5 | do_install_append() { |
6 | install -d ${D}${libdir} | 6 | install -d ${D}${libdir} |