diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2014-04-28 09:58:54 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-04-28 14:43:59 +0000 |
commit | 31fbea4943a5f2ac294ef38e378c129d4eaf7ff7 (patch) | |
tree | f481d5074a75737ef847c6f4a43132a75de749fe /testing/qt5-qtbase/qt-uclibc-lib-names.patch | |
parent | eadc260707b766492fbff002b3d4776e68487177 (diff) | |
download | aports-31fbea4943a5f2ac294ef38e378c129d4eaf7ff7.tar.bz2 aports-31fbea4943a5f2ac294ef38e378c129d4eaf7ff7.tar.xz |
testing/qt5-qtbase: upgrade to 5.3.0_beta0
Diffstat (limited to 'testing/qt5-qtbase/qt-uclibc-lib-names.patch')
-rw-r--r-- | testing/qt5-qtbase/qt-uclibc-lib-names.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/testing/qt5-qtbase/qt-uclibc-lib-names.patch b/testing/qt5-qtbase/qt-uclibc-lib-names.patch deleted file mode 100644 index e3097d27c4..0000000000 --- a/testing/qt5-qtbase/qt-uclibc-lib-names.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 7c65b1f6463f65931a77d760662deab63fcecb78 Mon Sep 17 00:00:00 2001 -From: Jorgen Lind <jorgen.lind@digia.com> -Date: Thu, 23 Jan 2014 12:16:20 +0100 -Subject: [PATCH] Don't include <gnu/lib-names.h> when compiling with uClibc - -Change-Id: I5264280b7ce1e94eaf410a070f9670984f7a655b -Reviewed-by: Peter Hartmann <phartmann@blackberry.com> ---- - src/network/kernel/qdnslookup_unix.cpp | 2 +- - src/network/kernel/qhostinfo_unix.cpp | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/network/kernel/qdnslookup_unix.cpp b/src/network/kernel/qdnslookup_unix.cpp -index 052c492..9fb488c 100644 ---- a/src/network/kernel/qdnslookup_unix.cpp -+++ b/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 - -diff --git a/src/network/kernel/qhostinfo_unix.cpp b/src/network/kernel/qhostinfo_unix.cpp -index dc2702b..32b7318 100644 ---- a/src/network/kernel/qhostinfo_unix.cpp -+++ b/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 - --- -1.7.1 - |