* [PATCH 1/2] gnome-panel : Fix format of LICENSE field.
@ 2011-12-12 16:24 Philip Balister
2011-12-12 16:24 ` [PATCH 2/2] gvfs : Fix build failure due to introduction of host includes Philip Balister
0 siblings, 1 reply; 6+ messages in thread
From: Philip Balister @ 2011-12-12 16:24 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Philip Balister <philip@balister.org>
---
.../gnome-panel/gnome-panel_2.32.1.bb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/meta-gnome/recipes-gnome/gnome-panel/gnome-panel_2.32.1.bb b/meta-gnome/recipes-gnome/gnome-panel/gnome-panel_2.32.1.bb
index 4a07378..78b874d 100644
--- a/meta-gnome/recipes-gnome/gnome-panel/gnome-panel_2.32.1.bb
+++ b/meta-gnome/recipes-gnome/gnome-panel/gnome-panel_2.32.1.bb
@@ -1,5 +1,5 @@
DESCRIPTION = "GNOME panel"
-LICENSE = "GPLv2 && LGPLv2 && GFDLv1.1"
+LICENSE = "GPLv2 & LGPLv2 & GFDLv1.1"
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
file://COPYING-DOCS;md5=c9211dab3ae61e580f48432020784324 \
--
1.7.3.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* [PATCH 2/2] gvfs : Fix build failure due to introduction of host includes.
2011-12-12 16:24 [PATCH 1/2] gnome-panel : Fix format of LICENSE field Philip Balister
@ 2011-12-12 16:24 ` Philip Balister
2011-12-12 17:35 ` Khem Raj
0 siblings, 1 reply; 6+ messages in thread
From: Philip Balister @ 2011-12-12 16:24 UTC (permalink / raw)
To: openembedded-devel
Tested with Angstrom on usrp-e1xx.
Signed-off-by: Philip Balister <philip@balister.org>
---
meta-gnome/recipes-gnome/gvfs/gvfs_1.8.2.bb | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/meta-gnome/recipes-gnome/gvfs/gvfs_1.8.2.bb b/meta-gnome/recipes-gnome/gvfs/gvfs_1.8.2.bb
index 5a230eb..fd4a089 100644
--- a/meta-gnome/recipes-gnome/gvfs/gvfs_1.8.2.bb
+++ b/meta-gnome/recipes-gnome/gvfs/gvfs_1.8.2.bb
@@ -14,6 +14,7 @@ SRC_URI[archive.md5sum] = "402f94b187b197b403d25c85caeb9562"
SRC_URI[archive.sha256sum] = "0895ac8f6d416e1b15433b6b6b68eb119c6e8b04fdb66db665d684355ef89345"
EXTRA_OECONF = "--disable-samba \
+ --disable-archive \
--with-samba-includes=${STAGING_INCDIR} \
--with-samba-libs=${STAGING_LIBDIR} \
--with-archive-includes=${STAGING_INCDIR} \
--
1.7.3.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH 2/2] gvfs : Fix build failure due to introduction of host includes.
2011-12-12 16:24 ` [PATCH 2/2] gvfs : Fix build failure due to introduction of host includes Philip Balister
@ 2011-12-12 17:35 ` Khem Raj
2011-12-12 18:34 ` Philip Balister
0 siblings, 1 reply; 6+ messages in thread
From: Khem Raj @ 2011-12-12 17:35 UTC (permalink / raw)
To: openembedded-devel; +Cc: openembedded-devel
On Mon, Dec 12, 2011 at 8:24 AM, Philip Balister <philip@balister.org> wrote:
> Tested with Angstrom on usrp-e1xx.
>
> Signed-off-by: Philip Balister <philip@balister.org>
> ---
> meta-gnome/recipes-gnome/gvfs/gvfs_1.8.2.bb | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/meta-gnome/recipes-gnome/gvfs/gvfs_1.8.2.bb b/meta-gnome/recipes-gnome/gvfs/gvfs_1.8.2.bb
> index 5a230eb..fd4a089 100644
> --- a/meta-gnome/recipes-gnome/gvfs/gvfs_1.8.2.bb
> +++ b/meta-gnome/recipes-gnome/gvfs/gvfs_1.8.2.bb
> @@ -14,6 +14,7 @@ SRC_URI[archive.md5sum] = "402f94b187b197b403d25c85caeb9562"
> SRC_URI[archive.sha256sum] = "0895ac8f6d416e1b15433b6b6b68eb119c6e8b04fdb66db665d684355ef89345"
>
> EXTRA_OECONF = "--disable-samba \
> + --disable-archive \
You are disabling archive backend explicitly. It might be that someone is using
it successfully. Why does it not work ?
> --with-samba-includes=${STAGING_INCDIR} \
> --with-samba-libs=${STAGING_LIBDIR} \
> --with-archive-includes=${STAGING_INCDIR} \
the above option is not needed when you are disabling libarchive anyway
> --
> 1.7.3.4
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH 2/2] gvfs : Fix build failure due to introduction of host includes.
2011-12-12 17:35 ` Khem Raj
@ 2011-12-12 18:34 ` Philip Balister
2011-12-12 21:45 ` Khem Raj
0 siblings, 1 reply; 6+ messages in thread
From: Philip Balister @ 2011-12-12 18:34 UTC (permalink / raw)
To: openembedded-devel
On 12/12/2011 12:35 PM, Khem Raj wrote:
> On Mon, Dec 12, 2011 at 8:24 AM, Philip Balister <philip@balister.org> wrote:
>> Tested with Angstrom on usrp-e1xx.
>>
>> Signed-off-by: Philip Balister <philip@balister.org>
>> ---
>> meta-gnome/recipes-gnome/gvfs/gvfs_1.8.2.bb | 1 +
>> 1 files changed, 1 insertions(+), 0 deletions(-)
>>
>> diff --git a/meta-gnome/recipes-gnome/gvfs/gvfs_1.8.2.bb b/meta-gnome/recipes-gnome/gvfs/gvfs_1.8.2.bb
>> index 5a230eb..fd4a089 100644
>> --- a/meta-gnome/recipes-gnome/gvfs/gvfs_1.8.2.bb
>> +++ b/meta-gnome/recipes-gnome/gvfs/gvfs_1.8.2.bb
>> @@ -14,6 +14,7 @@ SRC_URI[archive.md5sum] = "402f94b187b197b403d25c85caeb9562"
>> SRC_URI[archive.sha256sum] = "0895ac8f6d416e1b15433b6b6b68eb119c6e8b04fdb66db665d684355ef89345"
>>
>> EXTRA_OECONF = "--disable-samba \
>> + --disable-archive \
>
> You are disabling archive backend explicitly. It might be that someone is using
> it successfully. Why does it not work ?
With it enabled, the build fails because it looks at host includes. Long
term someone will likely fix this, be in the short term, I need this to
work so I can move forward with oe-core based stuff.
Philip
>
>> --with-samba-includes=${STAGING_INCDIR} \
>> --with-samba-libs=${STAGING_LIBDIR} \
>> --with-archive-includes=${STAGING_INCDIR} \
>
> the above option is not needed when you are disabling libarchive anyway
>
>> --
>> 1.7.3.4
>>
>>
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH 2/2] gvfs : Fix build failure due to introduction of host includes.
2011-12-12 18:34 ` Philip Balister
@ 2011-12-12 21:45 ` Khem Raj
2011-12-13 15:21 ` Philip Balister
0 siblings, 1 reply; 6+ messages in thread
From: Khem Raj @ 2011-12-12 21:45 UTC (permalink / raw)
To: openembedded-devel
On Mon, Dec 12, 2011 at 10:34 AM, Philip Balister <philip@balister.org> wrote:
>>>
>>> EXTRA_OECONF = "--disable-samba \
>>> + --disable-archive \
>>
>> You are disabling archive backend explicitly. It might be that someone is using
>> it successfully. Why does it not work ?
>
> With it enabled, the build fails because it looks at host includes. Long
> term someone will likely fix this, be in the short term, I need this to
> work so I can move forward with oe-core based stuff.
OK. I see that we do not list libarchive in DEPENDS if we did then it
would build I suppose. Can you try that please ?
so I think at present what you get is that if libarchive is built and
staged before you build
gvfs then you get the support compiled in if not then you don't. So
your patch at least makes
it consistent by disabling it.
Problem only happens if you have libarchive-dev installed on your
build host which I think
you do have and hence you see the problem.
I have no strong feeling on enabling or disabling it but I would
prefer consistency
-Khem
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] gvfs : Fix build failure due to introduction of host includes.
2011-12-12 21:45 ` Khem Raj
@ 2011-12-13 15:21 ` Philip Balister
0 siblings, 0 replies; 6+ messages in thread
From: Philip Balister @ 2011-12-13 15:21 UTC (permalink / raw)
To: openembedded-devel
On 12/12/2011 04:45 PM, Khem Raj wrote:
> On Mon, Dec 12, 2011 at 10:34 AM, Philip Balister <philip@balister.org> wrote:
>>>>
>>>> EXTRA_OECONF = "--disable-samba \
>>>> + --disable-archive \
>>>
>>> You are disabling archive backend explicitly. It might be that someone is using
>>> it successfully. Why does it not work ?
>>
>> With it enabled, the build fails because it looks at host includes. Long
>> term someone will likely fix this, be in the short term, I need this to
>> work so I can move forward with oe-core based stuff.
>
> OK. I see that we do not list libarchive in DEPENDS if we did then it
> would build I suppose. Can you try that please ?
>
> so I think at present what you get is that if libarchive is built and
> staged before you build
> gvfs then you get the support compiled in if not then you don't. So
> your patch at least makes
> it consistent by disabling it.
Still fails if you DEPEND on libarchive.
Philip
>
> Problem only happens if you have libarchive-dev installed on your
> build host which I think
> you do have and hence you see the problem.
>
> I have no strong feeling on enabling or disabling it but I would
> prefer consistency
>
> -Khem
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-12-13 15:34 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-12 16:24 [PATCH 1/2] gnome-panel : Fix format of LICENSE field Philip Balister
2011-12-12 16:24 ` [PATCH 2/2] gvfs : Fix build failure due to introduction of host includes Philip Balister
2011-12-12 17:35 ` Khem Raj
2011-12-12 18:34 ` Philip Balister
2011-12-12 21:45 ` Khem Raj
2011-12-13 15:21 ` Philip Balister
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.