* [PATCH] webkit-gtk: Apply work around for all PowerPC targets
@ 2012-06-12 11:39 Gary Thomas
2012-06-17 10:31 ` Gary Thomas
0 siblings, 1 reply; 4+ messages in thread
From: Gary Thomas @ 2012-06-12 11:39 UTC (permalink / raw)
To: poky
The current patch for bug #1570 only applies to qemuppc but should be
applicable for all PowerPC targets. Also update the patch so that
only one language backend, either ICU or PANGO, is built.
Also remove some old customizations (dependencies on darwin) as these
should now be handled in a layer specific .bbappend file.
Signed-off-by: Gary Thomas <gary@mlbassoc.com>
---
meta/recipes-sato/webkit/webkit-gtk_svn.bb | 15 +++++++++------
1 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/meta/recipes-sato/webkit/webkit-gtk_svn.bb b/meta/recipes-sato/webkit/webkit-gtk_svn.bb
index 9381486..716afce 100644
--- a/meta/recipes-sato/webkit/webkit-gtk_svn.bb
+++ b/meta/recipes-sato/webkit/webkit-gtk_svn.bb
@@ -7,10 +7,13 @@ LIC_FILES_CHKSUM = "file://Source/WebCore/rendering/RenderApplet.h;endline=22;md
file://Source/WebKit/gtk/webkit/webkit.h;endline=21;md5=b4fbe9f4a944f1d071dba1d2c76b3351 \
file://Source/JavaScriptCore/parser/Parser.h;endline=23;md5=2f3cff0ad0a9c486da5a376928973a90"
-DEPENDS = "zlib enchant gnome-keyring libsoup-2.4 curl icu libxml2 cairo libxslt libxt libidn gnutls gtk+ gstreamer gst-plugins-base flex-native gperf-native perl-native-runtime sqlite3"
+# Choice of language backends - icu has issues on Big Endian machines so use pango
+ICU_LIB = "icu"
+ICU_LIB_powerpc = "pango"
+
+DEPENDS = "zlib enchant gnome-keyring libsoup-2.4 curl libxml2 cairo libxslt libxt libidn gnutls \
+ gtk+ gstreamer gst-plugins-base flex-native gperf-native perl-native-runtime sqlite3 ${ICU_LIB}"
DEPENDS += " ${@base_contains('DISTRO_FEATURES', 'opengl', 'virtual/libgl', '', d)}"
-DEPENDS_darwin8 = "curl icu libxml2 cairo libxslt libidn gnutls gtk+ gstreamer flex-native gperf-native perl-native-runtime sqlite3"
-DEPENDS_append_qemuppc += "pango"
SRCREV_FORMAT = "source"
@@ -48,10 +51,10 @@ EXTRA_OECONF = "\
UNICODE_CFLAGS=-D_REENTRANT \
"
-#default unicode backend icu breaks in cross-compile when target and host owns different endian type
-EXTRA_OECONF_append_qemuppc += "--with-unicode-backend=glib"
+#default unicode backend icu breaks in cross-compile when target and host are different endian type
+EXTRA_OECONF_append_powerpc += "--with-unicode-backend=glib"
-CPPFLAGS_append_qemuppc += "-I${STAGING_INCDIR}/pango-1.0 \
+CPPFLAGS_append_powerpc += "-I${STAGING_INCDIR}/pango-1.0 \
-I${STAGING_LIBDIR}/glib-2.0/include \
-I${STAGING_INCDIR}/glib-2.0"
--
1.7.7.6
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] webkit-gtk: Apply work around for all PowerPC targets
2012-06-12 11:39 [PATCH] webkit-gtk: Apply work around for all PowerPC targets Gary Thomas
@ 2012-06-17 10:31 ` Gary Thomas
2012-06-17 10:47 ` Martin Jansa
0 siblings, 1 reply; 4+ messages in thread
From: Gary Thomas @ 2012-06-17 10:31 UTC (permalink / raw)
To: Yocto Project
On 2012-06-12 05:39, Gary Thomas wrote:
> The current patch for bug #1570 only applies to qemuppc but should be
> applicable for all PowerPC targets. Also update the patch so that
> only one language backend, either ICU or PANGO, is built.
>
> Also remove some old customizations (dependencies on darwin) as these
> should now be handled in a layer specific .bbappend file.
>
> Signed-off-by: Gary Thomas<gary@mlbassoc.com>
ping??
> ---
> meta/recipes-sato/webkit/webkit-gtk_svn.bb | 15 +++++++++------
> 1 files changed, 9 insertions(+), 6 deletions(-)
>
> diff --git a/meta/recipes-sato/webkit/webkit-gtk_svn.bb b/meta/recipes-sato/webkit/webkit-gtk_svn.bb
> index 9381486..716afce 100644
> --- a/meta/recipes-sato/webkit/webkit-gtk_svn.bb
> +++ b/meta/recipes-sato/webkit/webkit-gtk_svn.bb
> @@ -7,10 +7,13 @@ LIC_FILES_CHKSUM = "file://Source/WebCore/rendering/RenderApplet.h;endline=22;md
> file://Source/WebKit/gtk/webkit/webkit.h;endline=21;md5=b4fbe9f4a944f1d071dba1d2c76b3351 \
> file://Source/JavaScriptCore/parser/Parser.h;endline=23;md5=2f3cff0ad0a9c486da5a376928973a90"
>
> -DEPENDS = "zlib enchant gnome-keyring libsoup-2.4 curl icu libxml2 cairo libxslt libxt libidn gnutls gtk+ gstreamer gst-plugins-base flex-native gperf-native perl-native-runtime sqlite3"
> +# Choice of language backends - icu has issues on Big Endian machines so use pango
> +ICU_LIB = "icu"
> +ICU_LIB_powerpc = "pango"
> +
> +DEPENDS = "zlib enchant gnome-keyring libsoup-2.4 curl libxml2 cairo libxslt libxt libidn gnutls \
> + gtk+ gstreamer gst-plugins-base flex-native gperf-native perl-native-runtime sqlite3 ${ICU_LIB}"
> DEPENDS += " ${@base_contains('DISTRO_FEATURES', 'opengl', 'virtual/libgl', '', d)}"
> -DEPENDS_darwin8 = "curl icu libxml2 cairo libxslt libidn gnutls gtk+ gstreamer flex-native gperf-native perl-native-runtime sqlite3"
> -DEPENDS_append_qemuppc += "pango"
>
> SRCREV_FORMAT = "source"
>
> @@ -48,10 +51,10 @@ EXTRA_OECONF = "\
> UNICODE_CFLAGS=-D_REENTRANT \
> "
>
> -#default unicode backend icu breaks in cross-compile when target and host owns different endian type
> -EXTRA_OECONF_append_qemuppc += "--with-unicode-backend=glib"
> +#default unicode backend icu breaks in cross-compile when target and host are different endian type
> +EXTRA_OECONF_append_powerpc += "--with-unicode-backend=glib"
>
> -CPPFLAGS_append_qemuppc += "-I${STAGING_INCDIR}/pango-1.0 \
> +CPPFLAGS_append_powerpc += "-I${STAGING_INCDIR}/pango-1.0 \
> -I${STAGING_LIBDIR}/glib-2.0/include \
> -I${STAGING_INCDIR}/glib-2.0"
>
--
------------------------------------------------------------
Gary Thomas | Consulting for the
MLB Associates | Embedded world
------------------------------------------------------------
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] webkit-gtk: Apply work around for all PowerPC targets
2012-06-17 10:31 ` Gary Thomas
@ 2012-06-17 10:47 ` Martin Jansa
2012-06-17 11:06 ` Gary Thomas
0 siblings, 1 reply; 4+ messages in thread
From: Martin Jansa @ 2012-06-17 10:47 UTC (permalink / raw)
To: Gary Thomas; +Cc: Yocto Project
[-- Attachment #1: Type: text/plain, Size: 3462 bytes --]
On Sun, Jun 17, 2012 at 04:31:52AM -0600, Gary Thomas wrote:
> On 2012-06-12 05:39, Gary Thomas wrote:
> > The current patch for bug #1570 only applies to qemuppc but should be
> > applicable for all PowerPC targets. Also update the patch so that
> > only one language backend, either ICU or PANGO, is built.
> >
> > Also remove some old customizations (dependencies on darwin) as these
> > should now be handled in a layer specific .bbappend file.
> >
> > Signed-off-by: Gary Thomas<gary@mlbassoc.com>
>
> ping??
http://git.openembedded.org/openembedded-core/commit/?id=2782caf0f07f61cab92d2981c5e82914f22bd700
?
>
> > ---
> > meta/recipes-sato/webkit/webkit-gtk_svn.bb | 15 +++++++++------
> > 1 files changed, 9 insertions(+), 6 deletions(-)
> >
> > diff --git a/meta/recipes-sato/webkit/webkit-gtk_svn.bb b/meta/recipes-sato/webkit/webkit-gtk_svn.bb
> > index 9381486..716afce 100644
> > --- a/meta/recipes-sato/webkit/webkit-gtk_svn.bb
> > +++ b/meta/recipes-sato/webkit/webkit-gtk_svn.bb
> > @@ -7,10 +7,13 @@ LIC_FILES_CHKSUM = "file://Source/WebCore/rendering/RenderApplet.h;endline=22;md
> > file://Source/WebKit/gtk/webkit/webkit.h;endline=21;md5=b4fbe9f4a944f1d071dba1d2c76b3351 \
> > file://Source/JavaScriptCore/parser/Parser.h;endline=23;md5=2f3cff0ad0a9c486da5a376928973a90"
> >
> > -DEPENDS = "zlib enchant gnome-keyring libsoup-2.4 curl icu libxml2 cairo libxslt libxt libidn gnutls gtk+ gstreamer gst-plugins-base flex-native gperf-native perl-native-runtime sqlite3"
> > +# Choice of language backends - icu has issues on Big Endian machines so use pango
> > +ICU_LIB = "icu"
> > +ICU_LIB_powerpc = "pango"
> > +
> > +DEPENDS = "zlib enchant gnome-keyring libsoup-2.4 curl libxml2 cairo libxslt libxt libidn gnutls \
> > + gtk+ gstreamer gst-plugins-base flex-native gperf-native perl-native-runtime sqlite3 ${ICU_LIB}"
> > DEPENDS += " ${@base_contains('DISTRO_FEATURES', 'opengl', 'virtual/libgl', '', d)}"
> > -DEPENDS_darwin8 = "curl icu libxml2 cairo libxslt libidn gnutls gtk+ gstreamer flex-native gperf-native perl-native-runtime sqlite3"
> > -DEPENDS_append_qemuppc += "pango"
> >
> > SRCREV_FORMAT = "source"
> >
> > @@ -48,10 +51,10 @@ EXTRA_OECONF = "\
> > UNICODE_CFLAGS=-D_REENTRANT \
> > "
> >
> > -#default unicode backend icu breaks in cross-compile when target and host owns different endian type
> > -EXTRA_OECONF_append_qemuppc += "--with-unicode-backend=glib"
> > +#default unicode backend icu breaks in cross-compile when target and host are different endian type
> > +EXTRA_OECONF_append_powerpc += "--with-unicode-backend=glib"
> >
> > -CPPFLAGS_append_qemuppc += "-I${STAGING_INCDIR}/pango-1.0 \
> > +CPPFLAGS_append_powerpc += "-I${STAGING_INCDIR}/pango-1.0 \
> > -I${STAGING_LIBDIR}/glib-2.0/include \
> > -I${STAGING_INCDIR}/glib-2.0"
> >
>
> --
> ------------------------------------------------------------
> Gary Thomas | Consulting for the
> MLB Associates | Embedded world
> ------------------------------------------------------------
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] webkit-gtk: Apply work around for all PowerPC targets
2012-06-17 10:47 ` Martin Jansa
@ 2012-06-17 11:06 ` Gary Thomas
0 siblings, 0 replies; 4+ messages in thread
From: Gary Thomas @ 2012-06-17 11:06 UTC (permalink / raw)
To: Martin Jansa; +Cc: Yocto Project
On 2012-06-17 04:47, Martin Jansa wrote:
> On Sun, Jun 17, 2012 at 04:31:52AM -0600, Gary Thomas wrote:
>> On 2012-06-12 05:39, Gary Thomas wrote:
>>> The current patch for bug #1570 only applies to qemuppc but should be
>>> applicable for all PowerPC targets. Also update the patch so that
>>> only one language backend, either ICU or PANGO, is built.
>>>
>>> Also remove some old customizations (dependencies on darwin) as these
>>> should now be handled in a layer specific .bbappend file.
>>>
>>> Signed-off-by: Gary Thomas<gary@mlbassoc.com>
>>
>> ping??
>
> http://git.openembedded.org/openembedded-core/commit/?id=2782caf0f07f61cab92d2981c5e82914f22bd700
>
Perfect, thanks
>
>>
>>> ---
>>> meta/recipes-sato/webkit/webkit-gtk_svn.bb | 15 +++++++++------
>>> 1 files changed, 9 insertions(+), 6 deletions(-)
>>>
>>> diff --git a/meta/recipes-sato/webkit/webkit-gtk_svn.bb b/meta/recipes-sato/webkit/webkit-gtk_svn.bb
>>> index 9381486..716afce 100644
>>> --- a/meta/recipes-sato/webkit/webkit-gtk_svn.bb
>>> +++ b/meta/recipes-sato/webkit/webkit-gtk_svn.bb
>>> @@ -7,10 +7,13 @@ LIC_FILES_CHKSUM = "file://Source/WebCore/rendering/RenderApplet.h;endline=22;md
>>> file://Source/WebKit/gtk/webkit/webkit.h;endline=21;md5=b4fbe9f4a944f1d071dba1d2c76b3351 \
>>> file://Source/JavaScriptCore/parser/Parser.h;endline=23;md5=2f3cff0ad0a9c486da5a376928973a90"
>>>
>>> -DEPENDS = "zlib enchant gnome-keyring libsoup-2.4 curl icu libxml2 cairo libxslt libxt libidn gnutls gtk+ gstreamer gst-plugins-base flex-native gperf-native perl-native-runtime sqlite3"
>>> +# Choice of language backends - icu has issues on Big Endian machines so use pango
>>> +ICU_LIB = "icu"
>>> +ICU_LIB_powerpc = "pango"
>>> +
>>> +DEPENDS = "zlib enchant gnome-keyring libsoup-2.4 curl libxml2 cairo libxslt libxt libidn gnutls \
>>> + gtk+ gstreamer gst-plugins-base flex-native gperf-native perl-native-runtime sqlite3 ${ICU_LIB}"
>>> DEPENDS += " ${@base_contains('DISTRO_FEATURES', 'opengl', 'virtual/libgl', '', d)}"
>>> -DEPENDS_darwin8 = "curl icu libxml2 cairo libxslt libidn gnutls gtk+ gstreamer flex-native gperf-native perl-native-runtime sqlite3"
>>> -DEPENDS_append_qemuppc += "pango"
>>>
>>> SRCREV_FORMAT = "source"
>>>
>>> @@ -48,10 +51,10 @@ EXTRA_OECONF = "\
>>> UNICODE_CFLAGS=-D_REENTRANT \
>>> "
>>>
>>> -#default unicode backend icu breaks in cross-compile when target and host owns different endian type
>>> -EXTRA_OECONF_append_qemuppc += "--with-unicode-backend=glib"
>>> +#default unicode backend icu breaks in cross-compile when target and host are different endian type
>>> +EXTRA_OECONF_append_powerpc += "--with-unicode-backend=glib"
>>>
>>> -CPPFLAGS_append_qemuppc += "-I${STAGING_INCDIR}/pango-1.0 \
>>> +CPPFLAGS_append_powerpc += "-I${STAGING_INCDIR}/pango-1.0 \
>>> -I${STAGING_LIBDIR}/glib-2.0/include \
>>> -I${STAGING_INCDIR}/glib-2.0"
>>>
>>
>> --
>> ------------------------------------------------------------
>> Gary Thomas | Consulting for the
>> MLB Associates | Embedded world
>> ------------------------------------------------------------
>> _______________________________________________
>> yocto mailing list
>> yocto@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/yocto
>
--
------------------------------------------------------------
Gary Thomas | Consulting for the
MLB Associates | Embedded world
------------------------------------------------------------
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-06-17 11:06 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-12 11:39 [PATCH] webkit-gtk: Apply work around for all PowerPC targets Gary Thomas
2012-06-17 10:31 ` Gary Thomas
2012-06-17 10:47 ` Martin Jansa
2012-06-17 11:06 ` Gary Thomas
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.