diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-07-29 10:12:12 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-07-29 10:12:12 (GMT) |
commit | 4bd227bc12b1ef9858d4bcabb100b79a3da8fdd6 (patch) | |
tree | 77052a1b04cfbe94d67b034868a6b6d1fd59091d /unix/tcl.m4 | |
parent | 15ca940ca7c564de29ebeeca34c8140599a831e8 (diff) | |
parent | 84e92af6dc25e59e12d8f7ad4b12016464e030d2 (diff) | |
download | tcl-4bd227bc12b1ef9858d4bcabb100b79a3da8fdd6.zip tcl-4bd227bc12b1ef9858d4bcabb100b79a3da8fdd6.tar.gz tcl-4bd227bc12b1ef9858d4bcabb100b79a3da8fdd6.tar.bz2 |
Make sure that "string is space \u202f" will continue to return "1", even if in future Unicode this character (NARROW_NO_BREAK_SPACE) will cease to be a space. See: [http://www.unicode.org/review/pri249/].
Don't hardcode "tclWinError.o" for Cygwin
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index dc5c16a..f12d0a8 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1225,7 +1225,8 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ SHLIB_LD='${CC} -shared' SHLIB_SUFFIX=".dll" DL_OBJS="tclLoadDl.o" - PLAT_OBJS="tclWinError.o" + PLAT_OBJS='${CYGWIN_OBJS}' + PLAT_SRCS='${CYGWIN_SRCS}' DL_LIBS="-ldl" CC_SEARCH_FLAGS="" LD_SEARCH_FLAGS="" |