All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] qt4-x11-free: enable -accessibility and -sm
@ 2012-03-30  5:29 Robert Yang
  2012-03-30  5:29 ` [PATCH 1/1] " Robert Yang
  2012-04-27 21:20 ` [PATCH 0/1] " Saul Wold
  0 siblings, 2 replies; 5+ messages in thread
From: Robert Yang @ 2012-03-30  5:29 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit c8afc79b5d3205355ad61d2589221bf8babe8395:

  libc-packgae.bbclass: Add i686 support in locale_arch_options (2012-03-29 22:22:58 +0100)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib robert/qt4
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=robert/qt4

Robert Yang (1):
  qt4-x11-free: enable -accessibility and -sm

 meta/recipes-qt/qt4/qt4-x11-free.inc |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)




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

* [PATCH 1/1] qt4-x11-free: enable -accessibility and -sm
  2012-03-30  5:29 [PATCH 0/1] qt4-x11-free: enable -accessibility and -sm Robert Yang
@ 2012-03-30  5:29 ` Robert Yang
  2012-04-12 14:00   ` Robert Yang
  2012-04-27 21:20 ` [PATCH 0/1] " Saul Wold
  1 sibling, 1 reply; 5+ messages in thread
From: Robert Yang @ 2012-03-30  5:29 UTC (permalink / raw)
  To: openembedded-core

Is it possible to enable the "-sm -accessibility" in oe-core, please?
There is a meta-kde layer which requires the "-sm -accessibility", but
they are disabled in meta/recipes-qt/qt4/qt4.inc:

QT_DISTRO_FLAGS ?= "-no-accessibility -no-sm"

I checked the log of the qt4, can't find the related log for
"-no-accessibility -no-sm".

Another way is use the bbappend, but it would be great if it can be
enabled in oe-core.

This only enables for qt4-x11, doesn't enable for qt4-embedded, and
have done testing on: qemux86, qemuarm, qemumips, qemuppc.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-qt/qt4/qt4-x11-free.inc |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/meta/recipes-qt/qt4/qt4-x11-free.inc b/meta/recipes-qt/qt4/qt4-x11-free.inc
index 072c522..a59198d 100644
--- a/meta/recipes-qt/qt4/qt4-x11-free.inc
+++ b/meta/recipes-qt/qt4/qt4-x11-free.inc
@@ -13,6 +13,9 @@ QT_GLFLAGS_qemuppc = "-opengl"
 QT_CONFIG_FLAGS += "-no-xinerama -no-xkb"
 QT_BASE_LIB  ?= "libqt"
 
+# required by kdelibs4
+QT_DISTRO_FLAGS = "-accessibility -sm"
+
 inherit qt4x11
 
 do_install_append() {
-- 
1.7.1




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

* Re: [PATCH 1/1] qt4-x11-free: enable -accessibility and -sm
  2012-03-30  5:29 ` [PATCH 1/1] " Robert Yang
@ 2012-04-12 14:00   ` Robert Yang
  2012-04-13 11:07     ` Richard Purdie
  0 siblings, 1 reply; 5+ messages in thread
From: Robert Yang @ 2012-04-12 14:00 UTC (permalink / raw)
  To: openembedded-core


Is there any suggestions for this one please?

// Robert

On 03/30/2012 01:29 PM, Robert Yang wrote:
> Is it possible to enable the "-sm -accessibility" in oe-core, please?
> There is a meta-kde layer which requires the "-sm -accessibility", but
> they are disabled in meta/recipes-qt/qt4/qt4.inc:
>
> QT_DISTRO_FLAGS ?= "-no-accessibility -no-sm"
>
> I checked the log of the qt4, can't find the related log for
> "-no-accessibility -no-sm".
>
> Another way is use the bbappend, but it would be great if it can be
> enabled in oe-core.
>
> This only enables for qt4-x11, doesn't enable for qt4-embedded, and
> have done testing on: qemux86, qemuarm, qemumips, qemuppc.
>
> Signed-off-by: Robert Yang<liezhi.yang@windriver.com>
> ---
>   meta/recipes-qt/qt4/qt4-x11-free.inc |    3 +++
>   1 files changed, 3 insertions(+), 0 deletions(-)
>
> diff --git a/meta/recipes-qt/qt4/qt4-x11-free.inc b/meta/recipes-qt/qt4/qt4-x11-free.inc
> index 072c522..a59198d 100644
> --- a/meta/recipes-qt/qt4/qt4-x11-free.inc
> +++ b/meta/recipes-qt/qt4/qt4-x11-free.inc
> @@ -13,6 +13,9 @@ QT_GLFLAGS_qemuppc = "-opengl"
>   QT_CONFIG_FLAGS += "-no-xinerama -no-xkb"
>   QT_BASE_LIB  ?= "libqt"
>
> +# required by kdelibs4
> +QT_DISTRO_FLAGS = "-accessibility -sm"
> +
>   inherit qt4x11
>
>   do_install_append() {



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

* Re: [PATCH 1/1] qt4-x11-free: enable -accessibility and -sm
  2012-04-12 14:00   ` Robert Yang
@ 2012-04-13 11:07     ` Richard Purdie
  0 siblings, 0 replies; 5+ messages in thread
From: Richard Purdie @ 2012-04-13 11:07 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Thu, 2012-04-12 at 22:00 +0800, Robert Yang wrote:
> Is there any suggestions for this one please?

This is a change suitable for post 1.2 so it needs to wait until after
release.

Cheers,

Richard




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

* Re: [PATCH 0/1] qt4-x11-free: enable -accessibility and -sm
  2012-03-30  5:29 [PATCH 0/1] qt4-x11-free: enable -accessibility and -sm Robert Yang
  2012-03-30  5:29 ` [PATCH 1/1] " Robert Yang
@ 2012-04-27 21:20 ` Saul Wold
  1 sibling, 0 replies; 5+ messages in thread
From: Saul Wold @ 2012-04-27 21:20 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 03/29/2012 10:29 PM, Robert Yang wrote:
> The following changes since commit c8afc79b5d3205355ad61d2589221bf8babe8395:
>
>    libc-packgae.bbclass: Add i686 support in locale_arch_options (2012-03-29 22:22:58 +0100)
>
> are available in the git repository at:
>    git://git.pokylinux.org/poky-contrib robert/qt4
>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=robert/qt4
>
> Robert Yang (1):
>    qt4-x11-free: enable -accessibility and -sm
>
>   meta/recipes-qt/qt4/qt4-x11-free.inc |    3 +++
>   1 files changed, 3 insertions(+), 0 deletions(-)
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>

Merged into OE-Core

Thanks
	Sau!



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

end of thread, other threads:[~2012-04-27 21:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-30  5:29 [PATCH 0/1] qt4-x11-free: enable -accessibility and -sm Robert Yang
2012-03-30  5:29 ` [PATCH 1/1] " Robert Yang
2012-04-12 14:00   ` Robert Yang
2012-04-13 11:07     ` Richard Purdie
2012-04-27 21:20 ` [PATCH 0/1] " Saul Wold

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.