Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] libsoup-2.4: add intltool-native to DEPENDS
@ 2013-12-17 10:42 Paul Eggleton
  2013-12-19 10:47 ` Javier Viguera
  0 siblings, 1 reply; 4+ messages in thread
From: Paul Eggleton @ 2013-12-17 10:42 UTC (permalink / raw)
  To: openembedded-core

The configure script looks for this; most of the time dependency chains
ensure this is present but we need to be explicit or failures can
occur.

Reported by Nicolas Dechesne <nicolas.dechesne@linaro.org>

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/recipes-support/libsoup/libsoup-2.4_2.44.2.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-support/libsoup/libsoup-2.4_2.44.2.bb b/meta/recipes-support/libsoup/libsoup-2.4_2.44.2.bb
index 5edbb09..3325939 100644
--- a/meta/recipes-support/libsoup/libsoup-2.4_2.44.2.bb
+++ b/meta/recipes-support/libsoup/libsoup-2.4_2.44.2.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2"
 
 SECTION = "x11/gnome/libs"
 
-DEPENDS = "glib-2.0 gnutls libxml2 libproxy sqlite3"
+DEPENDS = "glib-2.0 gnutls libxml2 libproxy sqlite3 intltool-native"
 
 # libsoup-gnome is entirely deprecated and just stubs in 2.42 onwards.  Enable
 # by default but let it be easily disabled.
-- 
1.8.1.2



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] libsoup-2.4: add intltool-native to DEPENDS
  2013-12-17 10:42 [PATCH] libsoup-2.4: add intltool-native to DEPENDS Paul Eggleton
@ 2013-12-19 10:47 ` Javier Viguera
  2013-12-19 10:54   ` Nicolas Dechesne
  0 siblings, 1 reply; 4+ messages in thread
From: Javier Viguera @ 2013-12-19 10:47 UTC (permalink / raw)
  To: openembedded-core@lists.openembedded.org

On 17/12/13 11:42, Paul Eggleton wrote:
> -DEPENDS = "glib-2.0 gnutls libxml2 libproxy sqlite3"
> +DEPENDS = "glib-2.0 gnutls libxml2 libproxy sqlite3 intltool-native"

+1 for this change.

I was bitten by this bug using a DISTRO with no X11 support (removed X11 
from DISTRO_FEATURES). In that case the 'intltool-native' dependence is 
not fulfilled and libsoup fails to build.

Could it be *backported* to Dora/Dylan?

-
Javier Viguera
Software Engineer
Digi International® Spain S.A.U.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] libsoup-2.4: add intltool-native to DEPENDS
  2013-12-19 10:47 ` Javier Viguera
@ 2013-12-19 10:54   ` Nicolas Dechesne
  2013-12-19 12:07     ` Paul Eggleton
  0 siblings, 1 reply; 4+ messages in thread
From: Nicolas Dechesne @ 2013-12-19 10:54 UTC (permalink / raw)
  To: Javier Viguera; +Cc: openembedded-core@lists.openembedded.org

[-- Attachment #1: Type: text/plain, Size: 637 bytes --]

On Thu, Dec 19, 2013 at 11:47 AM, Javier Viguera <javier.viguera@digi.com>wrote:

> On 17/12/13 11:42, Paul Eggleton wrote:
>
>> -DEPENDS = "glib-2.0 gnutls libxml2 libproxy sqlite3"
>> +DEPENDS = "glib-2.0 gnutls libxml2 libproxy sqlite3 intltool-native"
>>
>
> +1 for this change.
>
> I was bitten by this bug using a DISTRO with no X11 support (removed X11
> from DISTRO_FEATURES). In that case the 'intltool-native' dependence is not
> fulfilled and libsoup fails to build.
>
> Could it be *backported* to Dora/Dylan?


it will. Paul said on IRC the other day, that it should reach dylan by the
end of this week .

[-- Attachment #2: Type: text/html, Size: 1137 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] libsoup-2.4: add intltool-native to DEPENDS
  2013-12-19 10:54   ` Nicolas Dechesne
@ 2013-12-19 12:07     ` Paul Eggleton
  0 siblings, 0 replies; 4+ messages in thread
From: Paul Eggleton @ 2013-12-19 12:07 UTC (permalink / raw)
  To: Nicolas Dechesne, Javier Viguera; +Cc: openembedded-core

On Thursday 19 December 2013 11:54:14 Nicolas Dechesne wrote:
> On Thu, Dec 19, 2013 at 11:47 AM, Javier Viguera
> <javier.viguera@digi.com>wrote:
> > On 17/12/13 11:42, Paul Eggleton wrote:
> >> -DEPENDS = "glib-2.0 gnutls libxml2 libproxy sqlite3"
> >> +DEPENDS = "glib-2.0 gnutls libxml2 libproxy sqlite3 intltool-native"
> > 
> > +1 for this change.
> > 
> > I was bitten by this bug using a DISTRO with no X11 support (removed X11
> > from DISTRO_FEATURES). In that case the 'intltool-native' dependence is
> > not
> > fulfilled and libsoup fails to build.
> > 
> > Could it be *backported* to Dora/Dylan?
> 
> it will. Paul said on IRC the other day, that it should reach dylan by the
> end of this week .

FYI It's now merged in dylan thanks to Richard. I've also sent a patch for 
dora (cc'd to Robert).

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-12-19 12:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-17 10:42 [PATCH] libsoup-2.4: add intltool-native to DEPENDS Paul Eggleton
2013-12-19 10:47 ` Javier Viguera
2013-12-19 10:54   ` Nicolas Dechesne
2013-12-19 12:07     ` Paul Eggleton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox