pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/icu icu: fix build on armeb by adding it to t...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/0e14f39d6d98
branches:  trunk
changeset: 309920:0e14f39d6d98
user:      maya <maya%pkgsrc.org@localhost>
date:      Wed Jun 27 19:06:17 2018 +0000

description:
icu: fix build on armeb by adding it to the long list of archs that exist
and don't have 80bit float types.

PR pkg/53408

diffstat:

 textproc/icu/distinfo                                     |   3 +-
 textproc/icu/patches/patch-i18n_double-conversion-utils.h |  16 +++++++++++++++
 2 files changed, 18 insertions(+), 1 deletions(-)

diffs (37 lines):

diff -r 257fcee9719e -r 0e14f39d6d98 textproc/icu/distinfo
--- a/textproc/icu/distinfo     Wed Jun 27 14:02:59 2018 +0000
+++ b/textproc/icu/distinfo     Wed Jun 27 19:06:17 2018 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.75 2018/04/14 07:05:08 adam Exp $
+$NetBSD: distinfo,v 1.76 2018/06/27 19:06:17 maya Exp $
 
 SHA1 (icu4c-61_1-src.tgz) = 06ca7b1e64c28e07d5633a2e0257380884ea486b
 RMD160 (icu4c-61_1-src.tgz) = 50560a899c9c55eb033f86fb7fc56a3db28f2b87
@@ -18,6 +18,7 @@
 SHA1 (patch-config_mh-solaris-gcc) = e1097930f577917d3583e425d9d2affa1c3dcaf2
 SHA1 (patch-configure) = fdeae51f4390779dfd8df8471196e322cbb9ea3d
 SHA1 (patch-configure.ac) = b0291cf02351cbad9b0c7340baea9eb81cabb158
+SHA1 (patch-i18n_double-conversion-utils.h) = fb8f14bc60d572fa063aa4ed15bd034b43883699
 SHA1 (patch-icudefs.mk.in) = c2a9469bf896b5f0702d5795c3b1c2b394893663
 SHA1 (patch-runConfigureICU) = ee780dbe797c7230208f378f73a0bc4d215b1bb2
 SHA1 (patch-tools-toolutil-pkg_genc.cpp) = 3cbcf3387d6a39315b26a3e2a2ffb715507e9110
diff -r 257fcee9719e -r 0e14f39d6d98 textproc/icu/patches/patch-i18n_double-conversion-utils.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/icu/patches/patch-i18n_double-conversion-utils.h Wed Jun 27 19:06:17 2018 +0000
@@ -0,0 +1,16 @@
+$NetBSD: patch-i18n_double-conversion-utils.h,v 1.1 2018/06/27 19:06:17 maya Exp $
+
+Big endian is a thing and typically has the same behaviour with regards to float
+sizes.
+
+--- i18n/double-conversion-utils.h.orig        2018-03-26 13:38:30.000000000 +0000
++++ i18n/double-conversion-utils.h
+@@ -77,7 +77,7 @@ inline void abort_noreturn() { abort(); 
+ // On Linux,x86 89255e-22 != Div_double(89255.0/1e22)
+ // ICU PATCH: Enable ARM builds for Windows with 'defined(_M_ARM)'.
+ #if defined(_M_X64) || defined(__x86_64__) || \
+-    defined(__ARMEL__) || defined(__avr32__) || defined(_M_ARM) || \
++    defined(__ARMEL__) || defined(__ARMEB__) || defined(__avr32__) || defined(_M_ARM) || \
+     defined(__hppa__) || defined(__ia64__) || \
+     defined(__mips__) || \
+     defined(__powerpc__) || defined(__ppc__) || defined(__ppc64__) || \



Home | Main Index | Thread Index | Old Index