<feed xmlns='http://www.w3.org/2005/Atom'>
<title>buildroot.git/package/qt, branch 2011.02</title>
<subtitle>Buildroot: Making Embedded Linux easy
</subtitle>
<id>https://git.hiegel.fr/cgit/buildroot.git/atom?h=2011.02</id>
<link rel='self' href='https://git.hiegel.fr/cgit/buildroot.git/atom?h=2011.02'/>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/'/>
<updated>2011-02-28T20:46:05Z</updated>
<entry>
<title>qt: qt3 compatibility needs gui support</title>
<updated>2011-02-28T20:46:05Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2011-02-28T20:46:05Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=42daeb724174ddea339ecc3335ce8060f1970fc6'/>
<id>urn:sha1:42daeb724174ddea339ecc3335ce8060f1970fc6</id>
<content type='text'>
Closes #2911

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>qt: add option to hide mouse cursor</title>
<updated>2011-02-25T20:45:31Z</updated>
<author>
<name>Daniel Nyström</name>
<email>daniel.nystrom@timeterminal.se</email>
</author>
<published>2011-02-02T23:06:44Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=fab79678f017363941d50abe7d12727cc01a3d5b'/>
<id>urn:sha1:fab79678f017363941d50abe7d12727cc01a3d5b</id>
<content type='text'>
Allow the user to build Qt with the QT_NO_QWS_CURSOR macro set.

Signed-off-by: Daniel Nyström &lt;daniel.nystrom@timeterminal.se&gt;
Acked-by: Gustavo Zacarias &lt;gustavo@zacarias.com.ar&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>qt: make QT_QMAKE variable point to HOST_DIR now</title>
<updated>2011-02-09T22:01:44Z</updated>
<author>
<name>Gustavo Zacarias</name>
<email>gustavo@zacarias.com.ar</email>
</author>
<published>2011-02-09T19:02:17Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=e5f6f55e12251faaaca54dbdcaf41296aedd3498'/>
<id>urn:sha1:e5f6f55e12251faaaca54dbdcaf41296aedd3498</id>
<content type='text'>
Signed-off-by: Gustavo Zacarias &lt;gustavo@zacarias.com.ar&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>qt: move host programs and specs in HOST_DIR</title>
<updated>2011-02-07T17:22:25Z</updated>
<author>
<name>Thomas Petazzoni</name>
<email>thomas.petazzoni@free-electrons.com</email>
</author>
<published>2011-02-07T17:18:00Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=ca290e7e280da8bdaa2818d6666fee1875f359ef'/>
<id>urn:sha1:ca290e7e280da8bdaa2818d6666fee1875f359ef</id>
<content type='text'>
The Qt build system installs all host programs (uic, rcc, moc, qmake,
etc.) in the same base directory as the headers and libraries, but
that's not great for Buildroot.

So we now move the host programs and the mkspecs files to the
$(HOST_DIR), and create a qt.conf, which tells qmake where everything
is located.

Tested with Qmake and Cmake as build system for a simple Qt
application.

Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>qt: dbus module needs gui support as well</title>
<updated>2010-12-27T23:07:53Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2010-12-27T23:07:53Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=bff52482023a055aab28602ac630d229303c9013'/>
<id>urn:sha1:bff52482023a055aab28602ac630d229303c9013</id>
<content type='text'>
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>qt: fix mysql module build</title>
<updated>2010-12-22T21:08:42Z</updated>
<author>
<name>Thomas Petazzoni</name>
<email>thomas.petazzoni@free-electrons.com</email>
</author>
<published>2010-12-22T13:07:09Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=4c31d75ca447c9d27cd57233caffedef1c36ee4b'/>
<id>urn:sha1:4c31d75ca447c9d27cd57233caffedef1c36ee4b</id>
<content type='text'>
Closes #2371

Bug 2371 was a Qt compilation issue when MySQL support was enabled,
because the Qt configuration tests were looking at host MySQL
libraries.

Even though I couldn't reproduce the bug with MySQL libraries
installed on my host, there was clearly a problem since
-I/usr/include/mysql and -L/usr/lib/mysql were part of the compilation
flags when building those tests.

This was caused by the fact that /usr/bin/mysql_config was used
instead of $(STAGING_DIR)/usr/bin/mysql_config. We fix this by passing
the path to the correct mysql_config script using the -mysql_config Qt
./configure argument. Since this mysql_config script returns the
correct flags for libraries and headers path, the hardcoded -I and -L
flag in qt.mk are no longer needed.

With this in place, Qt is no longer compiled with -I/usr/include/mysql
and -L/usr/lib/mysql, which presumably should fix the problem reported
in bug 2371.

Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>qt: svg and multimedia modules depends on gui module as well</title>
<updated>2010-12-20T10:17:05Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2010-12-20T10:17:05Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=11ab05f53a16f635a27139b33170a9dadba9f3c5'/>
<id>urn:sha1:11ab05f53a16f635a27139b33170a9dadba9f3c5</id>
<content type='text'>
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>qt: phonon support depends on gui module</title>
<updated>2010-12-20T09:12:39Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2010-12-20T09:12:39Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=e98318205cd8d79c3bfa492889f68b0f74d738f9'/>
<id>urn:sha1:e98318205cd8d79c3bfa492889f68b0f74d738f9</id>
<content type='text'>
Otherwise configure errors out with 'Phonon enabled, but GUI disabled'.

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>qt: only build gui module if enabled</title>
<updated>2010-12-08T22:09:24Z</updated>
<author>
<name>Frederik Pasch</name>
<email>fpasch@googlemail.com</email>
</author>
<published>2010-12-08T22:09:03Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=d3d67f7fb527b3b549d9da0c67b42477a224b00b'/>
<id>urn:sha1:d3d67f7fb527b3b549d9da0c67b42477a224b00b</id>
<content type='text'>
Closes #2905

Signed-off-by: Frederik Pasch &lt;fpasch@googlemail.com&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>qt: tighten webkit dependencies</title>
<updated>2010-11-27T20:09:59Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2010-11-27T20:09:15Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=13a51114c60336def06cfc0a681176ecc7d2fcac'/>
<id>urn:sha1:13a51114c60336def06cfc0a681176ecc7d2fcac</id>
<content type='text'>
webkit needs shared library and gui support to build, so make that visible
in Config.in.

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
</feed>
