Open yurivict opened 1 year ago
Thanks for the report.
Regarding the Illegal byte sequence error, is your system encoding UTF-8? If it is, could you apply the following patch and test again:
diff --git a/t/system.cc b/t/system.cc
index c5fb89b..134e4c4 100644
--- a/t/system.cc
+++ b/t/system.cc
@@ -3,2 +3,3 @@
+#include <locale.h>
#include <string.h>
@@ -50,2 +51,3 @@ void check_converter()
{
+ setlocale(LC_ALL, "");
is(ot::decode_utf8(ot::encode_utf8("Éphémère")), "Éphémère", "decode_utf8 reverts encode_utf8");
The error about List/MoreUtils.pm is a missing dependency error. You need to install https://metacpan.org/dist/List-MoreUtils.
Closing for inactivity.
Hi @fmang ,
Sorry for the delay.
I see that in 1.10.0 you've already applied the above patch.
However, the "Illegal byte sequence" error is still present in 1.10.0
Thanks, Yuri
Well, then I am out of clues. I am reopening this issue in case someone more familiar with FreeBSD wishes to solve it.
Version: 1.8.0 clang-14 FreeBSD 13.1