From patchwork Tue Sep 4 02:32:16 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/3] wget: disable iri/idn support Date: Tue, 04 Sep 2012 02:32:16 -0000 From: Kang Kai X-Patchwork-Id: 35769 Message-Id: <9db4baaea1e4a6e07152da598ba6dffcf8e6d637.1346666634.git.kai.kang@windriver.com> To: Cc: Zhenfeng.Zhao@windriver.com, openembedded-core@lists.openembedded.org 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 --- meta/recipes-extended/wget/wget.inc | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/meta/recipes-extended/wget/wget.inc b/meta/recipes-extended/wget/wget.inc index 3575c87..2787068 100644 --- a/meta/recipes-extended/wget/wget.inc +++ b/meta/recipes-extended/wget/wget.inc @@ -4,11 +4,12 @@ LICENSE = "GPLv3" LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" DEPENDS = "openssl" -INC_PR = "r15" +INC_PR = "r16" inherit autotools gettext update-alternatives -EXTRA_OECONF = "--with-libc --enable-ipv6 --with-libssl-prefix=${STAGING_DIR_HOST} --with-ssl=openssl --disable-rpath" +EXTRA_OECONF = "--with-libc --enable-ipv6 --with-libssl-prefix=${STAGING_DIR_HOST} \ + --with-ssl=openssl --disable-rpath --disable-iri" ALTERNATIVE_${PN} = "wget" ALTERNATIVE_PRIORITY = "100"