OLD | NEW |
(Empty) | |
| 1 diff --git a/source/common/unicode/platform.h b/source/common/unicode/platform.h |
| 2 index 07dce8a..0b40fed 100644 |
| 3 --- a/source/common/unicode/platform.h |
| 4 +++ b/source/common/unicode/platform.h |
| 5 @@ -121,8 +121,10 @@ |
| 6 #define U_PF_QNX 3700 |
| 7 /** Linux is a Unix-like operating system. @internal */ |
| 8 #define U_PF_LINUX 4000 |
| 9 +/** Native Client is pretty close to Linux. @internal */ |
| 10 +#define U_PF_NATIVE_CLIENT 4050 |
| 11 /** Android is based on Linux. @internal */ |
| 12 -#define U_PF_ANDROID 4050 |
| 13 +#define U_PF_ANDROID 4100 |
| 14 /** z/OS is the successor to OS/390 which was the successor to MVS. @internal *
/ |
| 15 #define U_PF_OS390 9000 |
| 16 /** "IBM i" is the current name of what used to be i5/OS and earlier OS/400. @i
nternal */ |
| 17 @@ -140,6 +142,8 @@ |
| 18 # define U_PLATFORM U_PF_ANDROID |
| 19 /* Android wchar_t support depends on the API level. */ |
| 20 # include <android/api-level.h> |
| 21 +#elif defined(__native_client__) |
| 22 +# define U_PLATFORM U_PF_NATIVE_CLIENT |
| 23 #elif defined(linux) || defined(__linux__) || defined(__linux) |
| 24 # define U_PLATFORM U_PF_LINUX |
| 25 #elif defined(__APPLE__) && defined(__MACH__) |
OLD | NEW |