From: Markus Scherer Date: Wed, 27 Sep 2017 22:35:34 +0000 (+0000) Subject: ICU-13202 add U_PF_FUCHSIA X-Git-Tag: release-60-rc~102 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=80a7f5e4b503b33489f3db310c39cda5179c7b23;p=icu ICU-13202 add U_PF_FUCHSIA X-SVN-Rev: 40487 --- diff --git a/icu4c/source/common/unicode/platform.h b/icu4c/source/common/unicode/platform.h index 4d2deb2d361..e1a7bdbc745 100644 --- a/icu4c/source/common/unicode/platform.h +++ b/icu4c/source/common/unicode/platform.h @@ -132,6 +132,8 @@ #define U_PF_BROWSER_NATIVE_CLIENT 4020 /** Android is based on Linux. @internal */ #define U_PF_ANDROID 4050 +/** Fuchsia is a POSIX-ish platform. @internal */ +#define U_PF_FUCHSIA 4100 /* Maximum value for Linux-based platform is 4499 */ /** z/OS is the successor to OS/390 which was the successor to MVS. @internal */ #define U_PF_OS390 9000 @@ -152,6 +154,8 @@ # include #elif defined(__pnacl__) || defined(__native_client__) # define U_PLATFORM U_PF_BROWSER_NATIVE_CLIENT +#elif defined(__Fuchsia__) +# define U_PLATFORM U_PF_FUCHSIA #elif defined(linux) || defined(__linux__) || defined(__linux) # define U_PLATFORM U_PF_LINUX #elif defined(__APPLE__) && defined(__MACH__)