From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mail.openembedded.org (Postfix) with ESMTP id 97BB460657 for ; Wed, 22 May 2013 10:56:36 +0000 (UTC) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP; 22 May 2013 03:54:32 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.87,719,1363158000"; d="scan'208";a="317681035" Received: from bogdanm.rb.intel.com ([10.237.105.166]) by orsmga001.jf.intel.com with ESMTP; 22 May 2013 03:56:22 -0700 From: Bogdan Marinescu To: openembedded-core@lists.openembedded.org Date: Wed, 22 May 2013 13:56:01 +0300 Message-Id: <1369220161-28240-1-git-send-email-bogdan.a.marinescu@intel.com> X-Mailer: git-send-email 1.7.10.4 Subject: [PATCH] guile: added runtime dependency on glibc-gconv-iso8859-1 X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 May 2013 10:56:37 -0000 guile needs to be able to convert strings from ISO-8859-1 in order to work properly. This patch adds a runtime dependency to the required convert package. Signed-off-by: Bogdan Marinescu --- meta/recipes-devtools/guile/guile_2.0.9.bb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta/recipes-devtools/guile/guile_2.0.9.bb b/meta/recipes-devtools/guile/guile_2.0.9.bb index 617f7ce..5afccd1 100644 --- a/meta/recipes-devtools/guile/guile_2.0.9.bb +++ b/meta/recipes-devtools/guile/guile_2.0.9.bb @@ -27,7 +27,7 @@ SRC_URI = "${GNU_MIRROR}/guile/guile-${PV}.tar.xz \ SRC_URI[md5sum] = "a69b575d4a633bdd9118f3a4a1e97766" SRC_URI[sha256sum] = "f70a38c8d9751f442679bfe61852bba8545af4d4355d037630997c2f37f2895b" -PR = "r0" +PR = "r1" inherit autotools gettext BBCLASSEXTEND = "native" @@ -36,6 +36,9 @@ DEPENDS = "libunistring bdwgc gmp libtool libffi" # add guile-native only to the target recipe's DEPENDS DEPENDS += "${@['guile-native libatomics-ops', ''][d.getVar('PN', True) != 'guile']}" +RDEPENDS_${PN} = "glibc-gconv-iso8859-1" +RDEPENDS_${PN}_class-native = "" + EXTRA_OECONF += "${@['--without-libltdl-prefix --without-libgmp-prefix', ''][bb.data.inherits_class('native',d)]}" do_configure_prepend() { -- 1.7.10.4