diff options
author | Karl Berry <karl@freefriends.org> | 2017-03-17 22:33:15 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-03-17 22:33:15 +0000 |
commit | 3ead37cfb6b7fa52ee98ef2c48aaf9bc1625fad9 (patch) | |
tree | 50b02e40bdff6302e23e93284a829258b02e0420 | |
parent | 7660473b987f1512007c1455fb1009f37e2bd8d5 (diff) |
netbsd patch for icu digitlst.cpp
git-svn-id: svn://tug.org/texlive/trunk@43532 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/libs/icu/TLpatches/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/libs/icu/TLpatches/patch-19-netbsd | 15 | ||||
-rw-r--r-- | Build/source/libs/icu/icu-src/source/i18n/digitlst.cpp | 2 |
3 files changed, 20 insertions, 1 deletions
diff --git a/Build/source/libs/icu/TLpatches/ChangeLog b/Build/source/libs/icu/TLpatches/ChangeLog index 523961f7a55..2a7d372ed90 100644 --- a/Build/source/libs/icu/TLpatches/ChangeLog +++ b/Build/source/libs/icu/TLpatches/ChangeLog @@ -1,3 +1,7 @@ +2017-03-17 Karl Berry <karl@tug.org> + + * patch-19-netbsd: add per Marc Baudoin, tlbuild 17 Mar 2017 10:03:03. + 2017-03-13 Karl Berry <karl@freefriends.org> * Update for icu-58.2. diff --git a/Build/source/libs/icu/TLpatches/patch-19-netbsd b/Build/source/libs/icu/TLpatches/patch-19-netbsd new file mode 100644 index 00000000000..46b8b8a4349 --- /dev/null +++ b/Build/source/libs/icu/TLpatches/patch-19-netbsd @@ -0,0 +1,15 @@ + Per Marc Baudoin, tlbuild 17 Mar 2017 10:03:03. + +Index: digitlst.cpp +=================================================================== +--- digitlst.cpp (revision 43522) ++++ digitlst.cpp (working copy) +@@ -61,7 +61,7 @@ + #endif + + #if U_USE_STRTOD_L +-# if U_PLATFORM_USES_ONLY_WIN32_API || U_PLATFORM == U_PF_CYGWIN ++# if U_PLATFORM_USES_ONLY_WIN32_API || U_PLATFORM == U_PF_CYGWIN || defined(__NetBSD__) + # include <locale.h> + # else + # include <xlocale.h> diff --git a/Build/source/libs/icu/icu-src/source/i18n/digitlst.cpp b/Build/source/libs/icu/icu-src/source/i18n/digitlst.cpp index ab5b5571ab6..0820c536e25 100644 --- a/Build/source/libs/icu/icu-src/source/i18n/digitlst.cpp +++ b/Build/source/libs/icu/icu-src/source/i18n/digitlst.cpp @@ -61,7 +61,7 @@ #endif #if U_USE_STRTOD_L -# if U_PLATFORM_USES_ONLY_WIN32_API || U_PLATFORM == U_PF_CYGWIN +# if U_PLATFORM_USES_ONLY_WIN32_API || U_PLATFORM == U_PF_CYGWIN || defined(__NetBSD__) # include <locale.h> # else # include <xlocale.h> |