diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2013-12-17 13:57:30 +0000 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-12-19 16:33:47 +0100 |
commit | e4a839277f7d74104e25fb4fd846f9c2bf3f9c1e (patch) | |
tree | 9e1284c191351310df7edb402cb77bc8e4d58bc4 /package/qt5/qt5base/qt5base-0004-qatomic-ppc.patch | |
parent | 60e9010ec843c736ce5d1d34d7a60a0abab23d84 (diff) | |
download | buildroot-e4a839277f7d74104e25fb4fd846f9c2bf3f9c1e.tar.gz buildroot-e4a839277f7d74104e25fb4fd846f9c2bf3f9c1e.zip |
qt5: version bump
-bump version to 5.2.0
-remove unneeded patches
-remove invalid configure options
[Peter: uclibc-no-lfs + qatomic patches still needed, new patch for uClibc]
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/qt5/qt5base/qt5base-0004-qatomic-ppc.patch')
-rw-r--r-- | package/qt5/qt5base/qt5base-0004-qatomic-ppc.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/package/qt5/qt5base/qt5base-0004-qatomic-ppc.patch b/package/qt5/qt5base/qt5base-0004-qatomic-ppc.patch new file mode 100644 index 0000000000..906b56a0d4 --- /dev/null +++ b/package/qt5/qt5base/qt5base-0004-qatomic-ppc.patch @@ -0,0 +1,29 @@ +Set loadAcquire() as const + +Fixes powerpc build. + +Fetched-from: https://bugzilla.redhat.com/attachment.cgi?id=812643 +Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> + +Index: qtbase-opensource-src-5.1.1/src/corelib/thread/qoldbasicatomic.h +=================================================================== +--- qtbase-opensource-src-5.1.1.orig/src/corelib/thread/qoldbasicatomic.h ++++ qtbase-opensource-src-5.1.1/src/corelib/thread/qoldbasicatomic.h +@@ -63,7 +63,7 @@ public: + // Atomic API, implemented in qatomic_XXX.h + + int load() const { return _q_value; } +- int loadAcquire() { return _q_value; } ++ int loadAcquire() const { return _q_value; } + void store(int newValue) { _q_value = newValue; } + void storeRelease(int newValue) { _q_value = newValue; } + +@@ -107,7 +107,7 @@ public: + // Atomic API, implemented in qatomic_XXX.h + + T *load() const { return _q_value; } +- T *loadAcquire() { return _q_value; } ++ T *loadAcquire() const { return _q_value; } + void store(T *newValue) { _q_value = newValue; } + void storeRelease(T *newValue) { _q_value = newValue; } + |