1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/chinese/tcl83/files/patch-ae
Kevin Lo 06762bfda1 Chineselized Tcl ver. 8.3.0. This version is i18n improvement.
This changes the behavior of Tk on X where X Input Methods (XIM) were
recognized and used without question.
With 8.3, they will be recognized and initialized, but not used unless
XIM is turned on (tk useinputmethods 1).  This should only affect users
users with special input methods, and the new default behavior should
be more beneficial to the average user.

BTW, please repo copy, thanks.
2001-02-22 03:53:36 +00:00

22 lines
721 B
Plaintext

--- tclConfig.sh.in.orig Thu Feb 10 11:09:57 2000
+++ tclConfig.sh.in Wed Feb 21 20:48:23 2001
@@ -21,7 +21,7 @@
TCL_CC='@CC@'
# -D flags for use with the C compiler.
-TCL_DEFS='@DEFS@'
+TCL_DEFS='@DEFS@ @I18N_FLAGS@'
# If TCL was built with debugging symbols, generated libraries contain
# this string at the end of the library name (before the extension).
@@ -30,6 +30,9 @@
# Default flags used in an optimized and debuggable build, respectively.
TCL_CFLAGS_DEBUG='@CFLAGS_DEBUG@'
TCL_CFLAGS_OPTIMIZE='@CFLAGS_OPTIMIZE@'
+
+# I18n improvement flags
+TCL_I18N_IMPROVE_FLAGS='@I18N_FLAGS@'
# Default linker flags used in an optimized and debuggable build, respectively.
TCL_LDFLAGS_DEBUG='@LDFLAGS_DEBUG@'