<feed xmlns='http://www.w3.org/2005/Atom'>
<title>buildroot-novena/package/qt, branch 2011.08_rc2</title>
<subtitle>build system for the novena open hardware laptop board</subtitle>
<id>https://git.bnewbold.net/buildroot-novena/atom?h=2011.08_rc2</id>
<link rel='self' href='https://git.bnewbold.net/buildroot-novena/atom?h=2011.08_rc2'/>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/'/>
<updated>2011-06-27T09:56:11+00:00</updated>
<entry>
<title>qt: fix webkit/sqlite build without largefile support</title>
<updated>2011-06-27T09:56:11+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2011-06-27T09:56:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=7e4d47593850851d6fcaa6068258c16cc8761ab5'/>
<id>urn:sha1:7e4d47593850851d6fcaa6068258c16cc8761ab5</id>
<content type='text'>
The embedded sqlite module forces FILE_OFFSET_BITS=64 unless
SQLITE_DISABLE_LFS is defined, breaking the build for !largefile toolchains.
Webkit internally builds sqlite, so that's affected as well.

Fix it by passing -DSQLITE_DISABLE_LFS in C/CXXFLAGS for !largefile
builds, similar to how we do it for the standalone sqlite package.

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>qt: fix typo in webkit pthread_getattr_np patch</title>
<updated>2011-06-27T08:29:46+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2011-06-27T08:28:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=36f8b40d22ce68155744124d75489dc15b5ff34c'/>
<id>urn:sha1:36f8b40d22ce68155744124d75489dc15b5ff34c</id>
<content type='text'>
Missing continuation (\) character in #if check.

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>qt: update pthread_getattr_np patches for uClibc 0.9.32</title>
<updated>2011-06-22T19:58:46+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2011-06-22T19:58:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=417df559ad1781829d5d57405d7379059e158f04'/>
<id>urn:sha1:417df559ad1781829d5d57405d7379059e158f04</id>
<content type='text'>
And only when linuxthreads.old is used, as the other thread implementations
don't need it.

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>qt: QtDeclarative needs script support as well</title>
<updated>2011-06-21T11:15:04+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2011-06-21T11:15:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=0a78829e0a0d781a95a040435e22ec0d155c59ca'/>
<id>urn:sha1:0a78829e0a0d781a95a040435e22ec0d155c59ca</id>
<content type='text'>
Otherwise configure errors out with:

Error: QtDeclarative was requested, but it can't be built due to
QtScript or QtGui being disabled.

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>Qt: add config option to build libQtDeclarative module</title>
<updated>2011-06-20T09:50:43+00:00</updated>
<author>
<name>Daniel Mack</name>
<email>zonque@gmail.com</email>
</author>
<published>2011-05-31T16:16:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=377b2785c136e7439ac4f4a6e4509bc5c9fe3015'/>
<id>urn:sha1:377b2785c136e7439ac4f4a6e4509bc5c9fe3015</id>
<content type='text'>
Signed-off-by: Daniel Mack &lt;zonque@gmail.com&gt;
Acked-by: Daniel Nyström &lt;daniel.nystrom@timeterminal.se&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>qt: scripttools needs gui</title>
<updated>2011-05-22T13:52:34+00:00</updated>
<author>
<name>Thomas Petazzoni</name>
<email>thomas.petazzoni@free-electrons.com</email>
</author>
<published>2011-05-22T08:53:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=5c8c02a0c6747357ecc3f4884b065cf08bf2395a'/>
<id>urn:sha1:5c8c02a0c6747357ecc3f4884b065cf08bf2395a</id>
<content type='text'>
The QtScriptTools library depends on the QtGui library, as can be seen
in the src/src.pro file of the Qt sources :

!contains(QT_CONFIG, no-gui):contains(QT_CONFIG, scripttools): SRC_SUBDIRS += src_scripttools

If the scripttools are enabled in the Qt configuration, but not the
gui, then the scripttools library is not built by Qt, and the
Buildroot build process fails with:

cp: cannot stat `/home/test/outputs/test-502/host/usr/sh4-unknown-linux-gnu/sysroot/usr/lib/libQtScriptTools.so.*': No such file or directory

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: fix build when script+dbus are enabled, but gui isn't</title>
<updated>2011-05-16T12:27:24+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2011-05-16T12:27:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=f5a106e22abd4142c95687f440c99befda4f4d45'/>
<id>urn:sha1:f5a106e22abd4142c95687f440c99befda4f4d45</id>
<content type='text'>
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>qt: bump version</title>
<updated>2011-05-16T12:09:42+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2011-05-16T12:09:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=b1f31142536770df278bf195d545173810f248eb'/>
<id>urn:sha1:b1f31142536770df278bf195d545173810f248eb</id>
<content type='text'>
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>qt: hide shared library option if BR2_PREFER_STATIC_LIB</title>
<updated>2011-05-12T15:07:15+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2011-05-12T15:07:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=5db57b7ac9fc8c5bd0bec6e06166443f04870a3a'/>
<id>urn:sha1:5db57b7ac9fc8c5bd0bec6e06166443f04870a3a</id>
<content type='text'>
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>Get rid of unneeded CFLAGS</title>
<updated>2011-05-05T21:39:03+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2011-05-02T21:58:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=125e2558b2ec253d255bf3a1fb2950efc358c8d2'/>
<id>urn:sha1:125e2558b2ec253d255bf3a1fb2950efc358c8d2</id>
<content type='text'>
Now that we use a wrapper for external toolchains (and internal ones
default to the correct setting), we no longer need to explicitly pass
sysroot/march/mtune/mabi/floating point mode in TARGET_CFLAGS.

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