Update for the newest Darwin-family operating systems.
Change-Id: I72ba0554eb9e1201ce3844d6420f253c51750de3 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@theqtcompany.com>bb10
parent
78a10bb8dc
commit
ca1077ce4b
|
|
@ -1152,6 +1152,9 @@ bool qSharedBuild() Q_DECL_NOTHROW
|
|||
\value MV_IOS_7_0 iOS 7.0
|
||||
\value MV_IOS_7_1 iOS 7.1
|
||||
\value MV_IOS_8_0 iOS 8.0
|
||||
\value MV_IOS_8_1 iOS 8.1
|
||||
\value MV_IOS_8_2 iOS 8.2
|
||||
\value MV_IOS_8_3 iOS 8.3
|
||||
|
||||
\value MV_None Not a Darwin operating system
|
||||
|
||||
|
|
|
|||
|
|
@ -160,7 +160,10 @@ public:
|
|||
MV_IOS_6_1 = Q_MV_IOS(6, 1),
|
||||
MV_IOS_7_0 = Q_MV_IOS(7, 0),
|
||||
MV_IOS_7_1 = Q_MV_IOS(7, 1),
|
||||
MV_IOS_8_0 = Q_MV_IOS(8, 0)
|
||||
MV_IOS_8_0 = Q_MV_IOS(8, 0),
|
||||
MV_IOS_8_1 = Q_MV_IOS(8, 1),
|
||||
MV_IOS_8_2 = Q_MV_IOS(8, 2),
|
||||
MV_IOS_8_3 = Q_MV_IOS(8, 3)
|
||||
};
|
||||
#if defined(Q_OS_MAC)
|
||||
static const MacVersion MacintoshVersion;
|
||||
|
|
|
|||
|
|
@ -270,6 +270,15 @@
|
|||
# if !defined(__IPHONE_8_0)
|
||||
# define __IPHONE_8_0 80000
|
||||
# endif
|
||||
# if !defined(__IPHONE_8_1)
|
||||
# define __IPHONE_8_1 80100
|
||||
# endif
|
||||
# if !defined(__IPHONE_8_2)
|
||||
# define __IPHONE_8_2 80200
|
||||
# endif
|
||||
# if !defined(__IPHONE_8_3)
|
||||
# define __IPHONE_8_3 80300
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#ifdef __LSB_VERSION__
|
||||
|
|
|
|||
Loading…
Reference in New Issue