From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Greylist: delayed 677 seconds by postgrey-1.34 at layers.openembedded.org; Wed, 15 Oct 2014 13:01:57 UTC Received: from mout0.freenet.de (mout0.freenet.de [195.4.92.90]) by mail.openembedded.org (Postfix) with ESMTP id A2D3E65D56 for ; Wed, 15 Oct 2014 13:01:57 +0000 (UTC) Received: from [195.4.92.141] (helo=mjail1.freenet.de) by mout0.freenet.de with esmtpa (ID ppf83764@freenet.de) (port 25) (Exim 4.82 #2) id 1XeO2J-0008Gt-PE; Wed, 15 Oct 2014 14:50:39 +0200 Received: from localhost ([::1]:46014 helo=mjail1.freenet.de) by mjail1.freenet.de with esmtpa (ID ppf83764@freenet.de) (Exim 4.82 #2) id 1XeO2J-00027Y-Gk; Wed, 15 Oct 2014 14:50:39 +0200 Received: from mx16.freenet.de ([195.4.92.26]:41616) by mjail1.freenet.de with esmtpa (ID ppf83764@freenet.de) (Exim 4.82 #2) id 1XeNzA-0008EN-U5; Wed, 15 Oct 2014 14:47:24 +0200 Received: from p5dda181f.dip0.t-ipconnect.de ([93.218.24.31]:35699 helo=[192.168.178.21]) by mx16.freenet.de with esmtpsa (ID ppf83764@freenet.de) (TLSv1.2:DHE-RSA-AES128-SHA:128) (port 587) (Exim 4.82 #2) id 1XeNzA-0000cT-T0; Wed, 15 Oct 2014 14:47:25 +0200 Message-ID: <543E6CDB.6070802@freenet.de> Date: Wed, 15 Oct 2014 14:47:23 +0200 From: Peter User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: "Fink, Peter" , net147@gmail.com, openembedded-devel@lists.openembedded.org References: In-Reply-To: X-Originated-At: 93.218.24.31!35699 Subject: Re: [meta-qt5] How to build Qt5 with 'designer' module? X-BeenThere: openembedded-devel@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: openembedded-devel@lists.openembedded.org List-Id: Using the OpenEmbedded metadata to build Distributions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Oct 2014 13:02:06 -0000 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Hi Jonathan, thanks for the reply. On 13 Oktober 2014 04:30, Jonathan Liu wrote: > Hi Peter, > > On 9 October 2014 18:13, Fink, Peter wrote: >> I’m trying to build a Qt application with the toolchain generated by openembedded (meta-toolchain-qt5). >> >> The application needs the designer-module, which I thought was included in the qttools package, but now I get the following error: >> >> “Project Error: Unknown module(s) in QT: designer.” >> >> What do I have to include to get the designer module? >> >> Another thing I run into was the missing syncqt.pl script in the toolchain as I need qftp. A link syncqt -> syncqt.pl was present. >> Is it missing by accident or for a reason? >> >> I was using Qt. 5.3.1 02861e677ab.... > You can try backporting the following patches: > http://patchwork.openembedded.org/patch/81599/ > http://patchwork.openembedded.org/patch/81603/ I tried your patches. syncqt.pl is included now, but my application still did not compile. I had to remove qttools-plugins, because it gave me a "cannot install qttools-plugins" error while generating the toolchain - maybe this was the reason why the libs were not included? Now I tested hacking it into qtbase.inc and it seems to include the qtdesigner libs: @@ -131,6 +132,7 @@ QT_CONFIG_FLAGS += " \ -no-pch \ -no-rpath \ -pkg-config \ + -make tools \ ${EXTRA_OECONF} \ " Regards, Peter