OLD | NEW |
---|---|
(Empty) | |
1 diff --git a/source/common/unicode/platform.h b/source/common/unicode/platform.h | |
2 index 057182d..5e46903 100644 | |
3 --- a/source/common/unicode/platform.h | |
4 +++ b/source/common/unicode/platform.h | |
5 @@ -132,6 +132,8 @@ | |
6 #define U_PF_BROWSER_NATIVE_CLIENT 4020 | |
7 /** Android is based on Linux. @internal */ | |
8 #define U_PF_ANDROID 4050 | |
9 +/** Fuchsia is a POSIX-ish platform. @internal */ | |
jungshik at Google
2017/05/18 00:19:35
Glad to know that. :-)
I was wondering about Fuch
| |
10 +#define U_PF_FUCHSIA 4100 | |
11 /* Maximum value for Linux-based platform is 4499 */ | |
12 /** z/OS is the successor to OS/390 which was the successor to MVS. @internal * / | |
13 #define U_PF_OS390 9000 | |
14 @@ -152,6 +154,8 @@ | |
15 # include <android/api-level.h> | |
16 #elif defined(__pnacl__) || defined(__native_client__) | |
17 # define U_PLATFORM U_PF_BROWSER_NATIVE_CLIENT | |
18 +#elif defined(__Fuchsia__) | |
19 +# define U_PLATFORM U_PF_FUCHSIA | |
20 #elif defined(linux) || defined(__linux__) || defined(__linux) | |
21 # define U_PLATFORM U_PF_LINUX | |
22 #elif defined(__APPLE__) && defined(__MACH__) | |
OLD | NEW |