diff options
Diffstat (limited to 'Build/source/libs/icu')
-rw-r--r-- | Build/source/libs/icu/icu-49.1-PATCHES/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/libs/icu/icu-49.1-PATCHES/patch-04-FreeBSD | 23 | ||||
-rw-r--r-- | Build/source/libs/icu/icu-49.1/common/unicode/platform.h | 4 |
3 files changed, 29 insertions, 2 deletions
diff --git a/Build/source/libs/icu/icu-49.1-PATCHES/ChangeLog b/Build/source/libs/icu/icu-49.1-PATCHES/ChangeLog index 918f97caab4..210cb8752e2 100644 --- a/Build/source/libs/icu/icu-49.1-PATCHES/ChangeLog +++ b/Build/source/libs/icu/icu-49.1-PATCHES/ChangeLog @@ -1,3 +1,7 @@ +2012-03-17 Peter Breitenlohner <peb@mppmu.mpg.de> + + * patch-04-FreeBSD (new): From ICU. + 2012-03-15 Peter Breitenlohner <peb@mppmu.mpg.de> * patch-40-auxParam: Fix a typo (auxillary => auxiliary). diff --git a/Build/source/libs/icu/icu-49.1-PATCHES/patch-04-FreeBSD b/Build/source/libs/icu/icu-49.1-PATCHES/patch-04-FreeBSD new file mode 100644 index 00000000000..11454e8cc9c --- /dev/null +++ b/Build/source/libs/icu/icu-49.1-PATCHES/patch-04-FreeBSD @@ -0,0 +1,23 @@ + Patch from ICU for ticket 9197 + +diff -ur icu-49.rc.orig/source/common/unicode/platform.h icu-49.rc/source/common/unicode/platform.h +--- icu-49.rc.orig/source/common/unicode/platform.h 2012-03-02 23:11:48.000000000 +0100 ++++ icu-49.rc/source/common/unicode/platform.h 2012-03-17 10:45:22.000000000 +0100 +@@ -1,7 +1,7 @@ + /* + ****************************************************************************** + * +-* Copyright (C) 1997-2011, International Business Machines ++* Copyright (C) 1997-2012, International Business Machines + * Corporation and others. All Rights Reserved. + * + ****************************************************************************** +@@ -131,7 +131,7 @@ + # include <android/api-level.h> + #elif defined(linux) || defined(__linux__) || defined(__linux) + # define U_PLATFORM U_PF_LINUX +-#elif defined(BSD) ++#elif defined(BSD) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) + # define U_PLATFORM U_PF_BSD + #elif defined(sun) || defined(__sun) + /* Check defined(__SVR4) || defined(__svr4__) to distinguish Solaris from SunOS? */ diff --git a/Build/source/libs/icu/icu-49.1/common/unicode/platform.h b/Build/source/libs/icu/icu-49.1/common/unicode/platform.h index e1b815b777b..dccc7018e0d 100644 --- a/Build/source/libs/icu/icu-49.1/common/unicode/platform.h +++ b/Build/source/libs/icu/icu-49.1/common/unicode/platform.h @@ -1,7 +1,7 @@ /* ****************************************************************************** * -* Copyright (C) 1997-2011, International Business Machines +* Copyright (C) 1997-2012, International Business Machines * Corporation and others. All Rights Reserved. * ****************************************************************************** @@ -131,7 +131,7 @@ # include <android/api-level.h> #elif defined(linux) || defined(__linux__) || defined(__linux) # define U_PLATFORM U_PF_LINUX -#elif defined(BSD) +#elif defined(BSD) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) # define U_PLATFORM U_PF_BSD #elif defined(sun) || defined(__sun) /* Check defined(__SVR4) || defined(__svr4__) to distinguish Solaris from SunOS? */ |