[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * configure.ac (texinfo_cv_sys_iconv_converts_euc
From: |
Patrice Dumas |
Subject: |
branch master updated: * configure.ac (texinfo_cv_sys_iconv_converts_euc_cn): set to "cross compile guess no" if cross-compiling. It is better to skip the tests requiring conversion to EUC-CN in case of cross-compilation as we do not know if the host can do the conversion. Based on James Le Cuirot <address@hidden> report and patch. |
Date: |
Sun, 17 Nov 2024 11:15:24 -0500 |
This is an automated email from the git hooks/post-receive script.
pertusus pushed a commit to branch master
in repository texinfo.
The following commit(s) were added to refs/heads/master by this push:
new 95030cc664 * configure.ac (texinfo_cv_sys_iconv_converts_euc_cn): set
to "cross compile guess no" if cross-compiling. It is better to skip the tests
requiring conversion to EUC-CN in case of cross-compilation as we do not know
if the host can do the conversion. Based on James Le Cuirot <chewi@gentoo.org>
report and patch.
95030cc664 is described below
commit 95030cc6641d6a446f7c57bb0e20da71ff1cf9af
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sun Nov 17 17:15:19 2024 +0100
* configure.ac (texinfo_cv_sys_iconv_converts_euc_cn): set to "cross
compile guess no" if cross-compiling. It is better to skip the tests
requiring conversion to EUC-CN in case of cross-compilation as we do
not know if the host can do the conversion. Based on James Le Cuirot
<chewi@gentoo.org> report and patch.
---
ChangeLog | 8 ++++++++
configure.ac | 3 ++-
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
index c9c5449e97..86d41a108d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2024-11-17 Patrice Dumas <pertusus@free.fr>
+
+ * configure.ac (texinfo_cv_sys_iconv_converts_euc_cn): set to "cross
+ compile guess no" if cross-compiling. It is better to skip the tests
+ requiring conversion to EUC-CN in case of cross-compilation as we do
+ not know if the host can do the conversion. Based on James Le Cuirot
+ <chewi@gentoo.org> report and patch.
+
2024-11-17 Patrice Dumas <pertusus@free.fr>
* tp/Texinfo/XS/main/base_utils.c (isascii_space): add.
diff --git a/configure.ac b/configure.ac
index 0709259a03..a3c2519701 100644
--- a/configure.ac
+++ b/configure.ac
@@ -158,7 +158,8 @@ if test "x$am_func_iconv" = "xyes" ; then
}
return result;
]])],
- [texinfo_cv_sys_iconv_converts_euc_cn=yes], ,)
+ [texinfo_cv_sys_iconv_converts_euc_cn=yes], ,
+ [texinfo_cv_sys_iconv_converts_euc_cn="cross compile guess no"])
test "$texinfo_cv_sys_iconv_converts_euc_cn" = no || break
done
LIBS="$euc_cn_save_LIBS"
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * configure.ac (texinfo_cv_sys_iconv_converts_euc_cn): set to "cross compile guess no" if cross-compiling. It is better to skip the tests requiring conversion to EUC-CN in case of cross-compilation as we do not know if the host can do the conversion. Based on James Le Cuirot <address@hidden> report and patch.,
Patrice Dumas <=