diff options
author | Fatih Aşıcı <fatih.asici@gmail.com> | 2014-05-27 09:24:05 +0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-27 13:27:57 +0200 |
commit | 6a5c818cb7b0fc76ab32b9880721eed8a76df015 (patch) | |
tree | 107f973cacf4b062df67da71f3991ef4b6a98fb7 /package/qt5/qt5base/qt5base-0005-uclibc-no-gnu-lib-names.patch | |
parent | 299f89ab57d7a5df1031f6b4c28588bb878a7ddb (diff) | |
download | buildroot-6a5c818cb7b0fc76ab32b9880721eed8a76df015.tar.gz buildroot-6a5c818cb7b0fc76ab32b9880721eed8a76df015.zip |
qt5: bump to 5.3.0
Remove upstreamed patches.
See http://qt-project.org/qt5/qt53 for the release information.
Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/qt5/qt5base/qt5base-0005-uclibc-no-gnu-lib-names.patch')
-rw-r--r-- | package/qt5/qt5base/qt5base-0005-uclibc-no-gnu-lib-names.patch | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/package/qt5/qt5base/qt5base-0005-uclibc-no-gnu-lib-names.patch b/package/qt5/qt5base/qt5base-0005-uclibc-no-gnu-lib-names.patch deleted file mode 100644 index 7c667db258..0000000000 --- a/package/qt5/qt5base/qt5base-0005-uclibc-no-gnu-lib-names.patch +++ /dev/null @@ -1,44 +0,0 @@ -[PATCH]: fix build on uClibc - -Reported upstream: https://bugreports.qt-project.org/browse/QTBUG-35742 - -uClibc defines __GNU_LIBRARY__ like glibc, but doesn't provide -gnu/lib-names.h, so the build breaks with: - -kernel/qdnslookup_unix.cpp:56:29: fatal error: gnu/lib-names.h: -No such file or directory - -Fix it by explicitly checking for !uClibc. - -Signed-off-by: Peter Korsgaard <peter@korsgaard.com> ---- - src/network/kernel/qdnslookup_unix.cpp | 2 +- - src/network/kernel/qhostinfo_unix.cpp | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -Index: qt5base-5.2.0/src/network/kernel/qdnslookup_unix.cpp -=================================================================== ---- qt5base-5.2.0.orig/src/network/kernel/qdnslookup_unix.cpp -+++ qt5base-5.2.0/src/network/kernel/qdnslookup_unix.cpp -@@ -52,7 +52,7 @@ - #include <arpa/nameser_compat.h> - #include <resolv.h> - --#ifdef __GNU_LIBRARY__ -+#if defined(__GNU_LIBRARY__) && !defined(__UCLIBC__) - # include <gnu/lib-names.h> - #endif - -Index: qt5base-5.2.0/src/network/kernel/qhostinfo_unix.cpp -=================================================================== ---- qt5base-5.2.0.orig/src/network/kernel/qhostinfo_unix.cpp -+++ qt5base-5.2.0/src/network/kernel/qhostinfo_unix.cpp -@@ -63,7 +63,7 @@ - # include <resolv.h> - #endif - --#ifdef __GNU_LIBRARY__ -+#if defined(__GNU_LIBRARY__) && !defined(__UCLIBC__) - # include <gnu/lib-names.h> - #endif - |