Date: Thu, 14 Sep 2017 18:45:06 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449849 - head/www/node4/files Message-ID: <201709141845.v8EIj6Z1052915@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Thu Sep 14 18:45:06 2017 New Revision: 449849 URL: https://svnweb.freebsd.org/changeset/ports/449849 Log: www/node4: unbreak with ICU >= 59 ../deps/v8/src/runtime/runtime-i18n.cc:587:3: error: no member named 'Normalizer' in namespace 'icu'; did you mean 'UNormalizer2'? icu::Normalizer::normalize(u_value, normalizationForms[form_id], 0, result, ^~~~~~~~~~~~~~~ UNormalizer2 /usr/local/include/unicode/unorm2.h:119:29: note: 'UNormalizer2' declared here typedef struct UNormalizer2 UNormalizer2; /**< C typedef for struct UNormalizer2. @stable ICU 4.4 */ ^ ../deps/v8/src/runtime/runtime-i18n.cc:587:8: error: incomplete type 'UNormalizer2' named in nested name specifier icu::Normalizer::normalize(u_value, normalizationForms[form_id], 0, result, ~~~~~^~~~~~~~~~~~ /usr/local/include/unicode/unorm2.h:118:8: note: forward declaration of 'UNormalizer2' struct UNormalizer2; ^ PR: 222224 Added: head/www/node4/files/ head/www/node4/files/patch-deps_v8_src_runtime_runtime-i18n.cc (contents, props changed) Added: head/www/node4/files/patch-deps_v8_src_runtime_runtime-i18n.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/node4/files/patch-deps_v8_src_runtime_runtime-i18n.cc Thu Sep 14 18:45:06 2017 (r449849) @@ -0,0 +1,10 @@ +--- deps/v8/src/runtime/runtime-i18n.cc.orig 2017-07-11 01:49:24 UTC ++++ deps/v8/src/runtime/runtime-i18n.cc +@@ -22,6 +22,7 @@ + #include "unicode/dtfmtsym.h" + #include "unicode/dtptngen.h" + #include "unicode/locid.h" ++#include "unicode/normlzr.h" + #include "unicode/numfmt.h" + #include "unicode/numsys.h" + #include "unicode/rbbi.h"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709141845.v8EIj6Z1052915>