diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-09-25 14:17:14 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-09-25 14:17:14 (GMT) |
commit | 29577449a18c6d97285f1f6ba67a00f7c00d2792 (patch) | |
tree | 7939397b65014810c328725b125e4e251c1c9d3d /unix/tcl.m4 | |
parent | 21b10cef381ba4d268e285e46454ccb1529af85d (diff) | |
download | tcl-29577449a18c6d97285f1f6ba67a00f7c00d2792.zip tcl-29577449a18c6d97285f1f6ba67a00f7c00d2792.tar.gz tcl-29577449a18c6d97285f1f6ba67a00f7c00d2792.tar.bz2 |
Use utf-8 as default encoding for configuration information
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 056cf1f..a4824ff 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -2445,14 +2445,14 @@ AC_DEFUN([SC_TCL_64BIT_FLAGS], [ AC_DEFUN([SC_TCL_CFG_ENCODING], [ AC_ARG_WITH(encoding, AC_HELP_STRING([--with-encoding], - [encoding for configuration values (default: iso8859-1)]), + [encoding for configuration values (default: utf-8)]), with_tcencoding=${withval}) if test x"${with_tcencoding}" != x ; then AC_DEFINE_UNQUOTED(TCL_CFGVAL_ENCODING,"${with_tcencoding}", [What encoding should be used for embedded configuration info?]) else - AC_DEFINE(TCL_CFGVAL_ENCODING,"iso8859-1", + AC_DEFINE(TCL_CFGVAL_ENCODING,"utf-8", [What encoding should be used for embedded configuration info?]) fi ]) |