summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2014-12-11 10:56:01 -0800
committerThiago Macieira <thiago.macieira@intel.com>2014-12-12 03:39:37 +0100
commitd47b9ace50d47a4472dc9fb029bbf6e8dd810c01 (patch)
tree8ed703f58767dd7414a36c80762874fff81cb1e2 /src/corelib
parentd61ee49df4d540d08782c9fac1c42541d2f4f9b6 (diff)
Fix the Apple build version numbers for Clang
A bunch of zeroes were missing. And not to the left. Task-number: QTBUG-43279 Change-Id: I1a710cf572099547b2ade7b2574a7e0a61649758 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@theqtcompany.com>
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/global/qcompilerdetection.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/corelib/global/qcompilerdetection.h b/src/corelib/global/qcompilerdetection.h
index 4c84daae13..5f8ca5c7cc 100644
--- a/src/corelib/global/qcompilerdetection.h
+++ b/src/corelib/global/qcompilerdetection.h
@@ -154,17 +154,17 @@
/* Clang also masquerades as GCC */
# if defined(__apple_build_version__)
# /* http://en.wikipedia.org/wiki/Xcode#Toolchain_Versions */
-# if __apple_build_version__ >= 600051
+# if __apple_build_version__ >= 6000051
# define Q_CC_CLANG 305
-# elif __apple_build_version__ >= 503038
+# elif __apple_build_version__ >= 5030038
# define Q_CC_CLANG 304
-# elif __apple_build_version__ >= 500275
+# elif __apple_build_version__ >= 5000275
# define Q_CC_CLANG 303
-# elif __apple_build_version__ >= 425024
+# elif __apple_build_version__ >= 4250024
# define Q_CC_CLANG 302
-# elif __apple_build_version__ >= 318045
+# elif __apple_build_version__ >= 3180045
# define Q_CC_CLANG 301
-# elif __apple_build_version__ >= 211101
+# elif __apple_build_version__ >= 2111001
# define Q_CC_CLANG 300
# else
# error "Unknown Apple Clang version"