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/Makefile.in | |
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/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 163f4b5..443e70d 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -349,6 +349,8 @@ NOTIFY_OBJS = tclUnixNotfy.o MAC_OSX_OBJS = tclMacOSXBundle.o tclMacOSXFCmd.o tclMacOSXNotify.o +CYGWIN_OBJS = tclWinError.o + DTRACE_OBJ = tclDTrace.o ZLIB_OBJS = Zadler32.o Zcompress.o Zcrc32.o Zdeflate.o Zinfback.o \ @@ -578,6 +580,9 @@ MAC_OSX_SRCS = \ $(MAC_OSX_DIR)/tclMacOSXFCmd.c \ $(MAC_OSX_DIR)/tclMacOSXNotify.c +CYGWIN_SRCS = \ + $(TOP_DIR)/win/tclWinError.c + DTRACE_HDR = tclDTrace.h DTRACE_SRC = $(GENERIC_DIR)/tclDTrace.d |