summaryrefslogtreecommitdiffstats
path: root/mkspecs/linux-g++/qplatformdefs.h
diff options
context:
space:
mode:
authorDave Flogeras <dflogeras2@gmail.com>2015-09-29 08:52:31 -0300
committerGiuseppe D'Angelo <giuseppe.dangelo@kdab.com>2015-09-30 05:04:20 +0000
commit813f468a14fb84af43c1f8fc0a1430277358eba2 (patch)
treebdd3267cb44ad6cda436110d266c45f772dc2789 /mkspecs/linux-g++/qplatformdefs.h
parentc1e95c62198f3c6bc7b3818572e61e7202ee27e0 (diff)
Fix for platform socklen_t on other C libraries than glibc.
Rather than treating >=glibc-2 specially, we treat <glibc-2 specially and all other libc implementations as POSIX. This was found here http://patchwork.openembedded.org/patch/94947/ and tested with armv6j-hardfloat-linux-uclibceabi and armv6j-hardfloat-linux-musleabi. Change-Id: I3850b1561a2e240f6564afedd80ce39407cc50b6 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'mkspecs/linux-g++/qplatformdefs.h')
-rw-r--r--mkspecs/linux-g++/qplatformdefs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/mkspecs/linux-g++/qplatformdefs.h b/mkspecs/linux-g++/qplatformdefs.h
index 5c18632e5d..95a57585d9 100644
--- a/mkspecs/linux-g++/qplatformdefs.h
+++ b/mkspecs/linux-g++/qplatformdefs.h
@@ -78,10 +78,10 @@
#undef QT_SOCKLEN_T
-#if defined(__GLIBC__) && (__GLIBC__ >= 2)
-#define QT_SOCKLEN_T socklen_t
-#else
+#if defined(__GLIBC__) && (__GLIBC__ < 2)
#define QT_SOCKLEN_T int
+#else
+#define QT_SOCKLEN_T socklen_t
#endif
#if defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE >= 500)