* [meta-qt5][PATCH] qtbase: Add libxi to depends.
@ 2014-03-19 13:44 Søren Holm
2014-03-19 13:45 ` Søren Holm
0 siblings, 1 reply; 9+ messages in thread
From: Søren Holm @ 2014-03-19 13:44 UTC (permalink / raw)
To: openembedded-devel; +Cc: Søren Holm
Not having so gives errors like this when configuring qtbase
XInput2 auto-detection... ()
compiling /home/teamcitybuildagent/work/33644ecacd0fdba5/build/tmp/work/i586-poky-linux/qtbase/5.1.1-r0/qtbase-opensource-src-5.1.1/config.tests/x11/xinput2/xinput2.cpp
/home/teamcitybuildagent/work/33644ecacd0fdba5/build/tmp/work/i586-poky-linux/qtbase/5.1.1-r0/qtbase-opensource-src-5.1.1/config.tests/x11/xinput2/xinput2.cpp:43:36: fatal error: X11/extensions/XInput2.h: No such file or directory
^
compilation terminated.
make: *** [xinput2.o] Error 1
XInput2 disabled.
XInput2 support cannot be enabled due to functionality tests!
Turn on verbose messaging (-v) to /home/teamcitybuildagent/work/33644ecacd0fdba5/build/tmp/work/i586-poky-linux/qtbase/5.1.1-r0/qtbase-opensource-src-5.1.1/configure to see the final report.
If you believe this message is in error you may use the continue
switch (-continue) to /home/teamcitybuildagent/work/33644ecacd0fdba5/build/tmp/work/i586-poky-linux/qtbase/5.1.1-r0/qtbase-opensource-src-5.1.1/configure to continue.
---
recipes-qt/qt5/qtbase.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes-qt/qt5/qtbase.inc b/recipes-qt/qt5/qtbase.inc
index eb22e40..3888a0a 100644
--- a/recipes-qt/qt5/qtbase.inc
+++ b/recipes-qt/qt5/qtbase.inc
@@ -24,7 +24,7 @@ SRC_URI += " \
file://0024-Use-OE_QMAKE_PATH_EXTERNAL_HOST_BINS-to-determine-pa.patch \
"
-DEPENDS += "qtbase-native"
+DEPENDS += "qtbase-native libxi"
# for syncqt
RDEPENDS_${PN}-tools += "perl"
--
1.9.0
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [meta-qt5][PATCH] qtbase: Add libxi to depends.
2014-03-19 13:44 [meta-qt5][PATCH] qtbase: Add libxi to depends Søren Holm
@ 2014-03-19 13:45 ` Søren Holm
2014-03-19 13:56 ` Jacob Kroon
0 siblings, 1 reply; 9+ messages in thread
From: Søren Holm @ 2014-03-19 13:45 UTC (permalink / raw)
To: openembedded-devel; +Cc: sgh
I'd like this to go into dora if possible.
Sorry for the double posts :)
--
Søren Holm
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-qt5][PATCH] qtbase: Add libxi to depends.
2014-03-19 13:45 ` Søren Holm
@ 2014-03-19 13:56 ` Jacob Kroon
2014-03-19 14:15 ` Martin Jansa
0 siblings, 1 reply; 9+ messages in thread
From: Jacob Kroon @ 2014-03-19 13:56 UTC (permalink / raw)
To: openembedded-devel; +Cc: sgh
Maybe do something this instead ? This is only necessary for X11 right ?
-DEPENDS += "qtbase-native"
+DEPENDS += " \
+ qtbase-native \
+ ${@base_contains('DISTRO_FEATURES', 'x11', 'libxi', '', d)} \
+"
/Jacob
On Wed, Mar 19, 2014 at 2:45 PM, Søren Holm <sgh@sgh.dk> wrote:
> I'd like this to go into dora if possible.
>
> Sorry for the double posts :)
>
> --
> Søren Holm
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
--
-- Jacob
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [meta-qt5][PATCH] qtbase: Add libxi to depends.
2014-03-19 13:56 ` Jacob Kroon
@ 2014-03-19 14:15 ` Martin Jansa
2014-03-19 17:02 ` Søren Holm
0 siblings, 1 reply; 9+ messages in thread
From: Martin Jansa @ 2014-03-19 14:15 UTC (permalink / raw)
To: openembedded-devel; +Cc: sgh
[-- Attachment #1: Type: text/plain, Size: 1100 bytes --]
On Wed, Mar 19, 2014 at 02:56:18PM +0100, Jacob Kroon wrote:
> Maybe do something this instead ? This is only necessary for X11 right ?
>
> -DEPENDS += "qtbase-native"
> +DEPENDS += " \
> + qtbase-native \
> + ${@base_contains('DISTRO_FEATURES', 'x11', 'libxi', '', d)} \
> +"
>
> /Jacob
I think it belongs to
PACKAGECONFIG[xinput2] = "-xinput2,-no-xinput2,libxi"
> On Wed, Mar 19, 2014 at 2:45 PM, Søren Holm <sgh@sgh.dk> wrote:
>
> > I'd like this to go into dora if possible.
> >
> > Sorry for the double posts :)
> >
> > --
> > Søren Holm
> > --
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >
>
>
>
> --
> -- Jacob
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [meta-qt5][PATCH] qtbase: Add libxi to depends.
2014-03-19 14:15 ` Martin Jansa
@ 2014-03-19 17:02 ` Søren Holm
2014-03-19 17:40 ` Martin Jansa
0 siblings, 1 reply; 9+ messages in thread
From: Søren Holm @ 2014-03-19 17:02 UTC (permalink / raw)
To: Martin Jansa; +Cc: openembedded-devel, sgh
yes problably. I did not investigate the whole structure that thorough
apparently.
Could that change get into dora?
Onsdag den 19. marts 2014 15:15:01 skrev Martin Jansa:
> On Wed, Mar 19, 2014 at 02:56:18PM +0100, Jacob Kroon wrote:
> > Maybe do something this instead ? This is only necessary for X11 right ?
> >
> > -DEPENDS += "qtbase-native"
> > +DEPENDS += " \
> > + qtbase-native \
> > + ${@base_contains('DISTRO_FEATURES', 'x11', 'libxi', '', d)} \
> > +"
> >
> > /Jacob
>
> I think it belongs to
> PACKAGECONFIG[xinput2] = "-xinput2,-no-xinput2,libxi"
>
--
Søren Holm
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [meta-qt5][PATCH] qtbase: Add libxi to depends.
2014-03-19 17:02 ` Søren Holm
@ 2014-03-19 17:40 ` Martin Jansa
2014-04-23 7:00 ` Søren Holm
0 siblings, 1 reply; 9+ messages in thread
From: Martin Jansa @ 2014-03-19 17:40 UTC (permalink / raw)
To: Søren Holm; +Cc: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 827 bytes --]
On Wed, Mar 19, 2014 at 06:02:57PM +0100, Søren Holm wrote:
>
> yes problably. I did not investigate the whole structure that thorough
> apparently.
>
> Could that change get into dora?
Yes, but first it needs to go to master.
> Onsdag den 19. marts 2014 15:15:01 skrev Martin Jansa:
> > On Wed, Mar 19, 2014 at 02:56:18PM +0100, Jacob Kroon wrote:
> > > Maybe do something this instead ? This is only necessary for X11 right ?
> > >
> > > -DEPENDS += "qtbase-native"
> > > +DEPENDS += " \
> > > + qtbase-native \
> > > + ${@base_contains('DISTRO_FEATURES', 'x11', 'libxi', '', d)} \
> > > +"
> > >
> > > /Jacob
> >
> > I think it belongs to
> > PACKAGECONFIG[xinput2] = "-xinput2,-no-xinput2,libxi"
> >
> --
> Søren Holm
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [meta-qt5][PATCH] qtbase: Add libxi to depends.
2014-03-19 17:40 ` Martin Jansa
@ 2014-04-23 7:00 ` Søren Holm
2014-04-23 7:28 ` Jacob Kroon
0 siblings, 1 reply; 9+ messages in thread
From: Søren Holm @ 2014-04-23 7:00 UTC (permalink / raw)
To: Martin Jansa; +Cc: openembedded-devel
Hi MArtin
This fix is not in master yet. Is it lost between two chairs ?
Onsdag den 19. marts 2014 18:40:24 skrev Martin Jansa:
> On Wed, Mar 19, 2014 at 06:02:57PM +0100, Søren Holm wrote:
> > yes problably. I did not investigate the whole structure that thorough
> > apparently.
> >
> > Could that change get into dora?
>
> Yes, but first it needs to go to master.
>
> > Onsdag den 19. marts 2014 15:15:01 skrev Martin Jansa:
> > > On Wed, Mar 19, 2014 at 02:56:18PM +0100, Jacob Kroon wrote:
> > > > Maybe do something this instead ? This is only necessary for X11 right
> > > > ?
> > > >
> > > > -DEPENDS += "qtbase-native"
> > > > +DEPENDS += " \
> > > > + qtbase-native \
> > > > + ${@base_contains('DISTRO_FEATURES', 'x11', 'libxi', '', d)} \
> > > > +"
> > > >
> > > > /Jacob
> > >
> > > I think it belongs to
> > > PACKAGECONFIG[xinput2] = "-xinput2,-no-xinput2,libxi"
--
Søren Holm
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [meta-qt5][PATCH] qtbase: Add libxi to depends.
2014-04-23 7:00 ` Søren Holm
@ 2014-04-23 7:28 ` Jacob Kroon
0 siblings, 0 replies; 9+ messages in thread
From: Jacob Kroon @ 2014-04-23 7:28 UTC (permalink / raw)
To: openembedded-devel
Hi Søren,
On Wed, Apr 23, 2014 at 9:00 AM, Søren Holm <sgh@sgh.dk> wrote:
> Hi MArtin
>
> This fix is not in master yet. Is it lost between two chairs ?
>
> Onsdag den 19. marts 2014 18:40:24 skrev Martin Jansa:
> > On Wed, Mar 19, 2014 at 06:02:57PM +0100, Søren Holm wrote:
> > > yes problably. I did not investigate the whole structure that thorough
> > > apparently.
> > >
> > > Could that change get into dora?
> >
> > Yes, but first it needs to go to master.
> >
> > > Onsdag den 19. marts 2014 15:15:01 skrev Martin Jansa:
> > > > On Wed, Mar 19, 2014 at 02:56:18PM +0100, Jacob Kroon wrote:
> > > > > Maybe do something this instead ? This is only necessary for X11
> right
> > > > > ?
> > > > >
> > > > > -DEPENDS += "qtbase-native"
> > > > > +DEPENDS += " \
> > > > > + qtbase-native \
> > > > > + ${@base_contains('DISTRO_FEATURES', 'x11', 'libxi', '', d)} \
> > > > > +"
> > > > >
> > > > > /Jacob
> > > >
> > > > I think it belongs to
> > > > PACKAGECONFIG[xinput2] = "-xinput2,-no-xinput2,libxi"
>
>
Please test the solution that Martin proposed, and if everything looks
good, submit a patch using the instructions found in meta-qt5/README
and http://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded.
/Jacob
^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <1395236570-27411-1-git-send-email-sh@mikrofyn.com>]
end of thread, other threads:[~2014-04-23 7:28 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-19 13:44 [meta-qt5][PATCH] qtbase: Add libxi to depends Søren Holm
2014-03-19 13:45 ` Søren Holm
2014-03-19 13:56 ` Jacob Kroon
2014-03-19 14:15 ` Martin Jansa
2014-03-19 17:02 ` Søren Holm
2014-03-19 17:40 ` Martin Jansa
2014-04-23 7:00 ` Søren Holm
2014-04-23 7:28 ` Jacob Kroon
[not found] <1395236570-27411-1-git-send-email-sh@mikrofyn.com>
2014-03-19 13:43 ` Søren Holm
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.