summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKang Kai <kai.kang@windriver.com>2012-09-03 14:32:29 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-09-04 12:53:10 +0100
commit80c1bbfba1be61ebd5f6e55c7ed400791191fc3f (patch)
tree3f0bb199f56d7b40e0a240cabc2c4ab596b10d63
parentb640604a02149e5953a304062067d043d3f5cde9 (diff)
downloadpoky-80c1bbfba1be61ebd5f6e55c7ed400791191fc3f.tar.gz
wget: disable iri/idn support
There is a build issue with wget idn support. When libidn has been populated to sysroot but rpm packages are not created, wget checks libidn support automatically and then depends on libidn. But package libidn doesn't exist, build image which includes wget will fail with: | error: Failed dependencies: | libidn.so.11 is needed by wget-1.13.4-r14.3.core2 | libidn.so.11(LIBIDN_1.0) is needed by wget-1.13.4-r14.3.core2 Disable iri/idn support to fix it. Signer-off-by: Kang Kai <kai.kang@windriver.com> (From OE-Core rev: 48a11f8dc9f70cfc205f558b4dc959c8b4d5e0cd) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-extended/wget/wget.inc5
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-extended/wget/wget.inc b/meta/recipes-extended/wget/wget.inc
index 3575c87da6..278706835b 100644
--- a/meta/recipes-extended/wget/wget.inc
+++ b/meta/recipes-extended/wget/wget.inc
@@ -4,11 +4,12 @@ LICENSE = "GPLv3"
4LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" 4LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
5DEPENDS = "openssl" 5DEPENDS = "openssl"
6 6
7INC_PR = "r15" 7INC_PR = "r16"
8 8
9inherit autotools gettext update-alternatives 9inherit autotools gettext update-alternatives
10 10
11EXTRA_OECONF = "--with-libc --enable-ipv6 --with-libssl-prefix=${STAGING_DIR_HOST} --with-ssl=openssl --disable-rpath" 11EXTRA_OECONF = "--with-libc --enable-ipv6 --with-libssl-prefix=${STAGING_DIR_HOST} \
12 --with-ssl=openssl --disable-rpath --disable-iri"
12 13
13ALTERNATIVE_${PN} = "wget" 14ALTERNATIVE_${PN} = "wget"
14ALTERNATIVE_PRIORITY = "100" 15ALTERNATIVE_PRIORITY = "100"