diff options
author | jan.nijtmans <jan.nijtmans@noemail.net> | 2013-07-29 10:12:12 (GMT) |
---|---|---|
committer | jan.nijtmans <jan.nijtmans@noemail.net> | 2013-07-29 10:12:12 (GMT) |
commit | 23da1090949b16db83c8353f1874c559ae0bf0cc (patch) | |
tree | 720ebfd9f10b589f15e2a0f208a7246e7363643a /unix/tcl.m4 | |
parent | 0050724acacdaf86ccaca11c938d091c707eb8ff (diff) | |
parent | 5f456c40e36f5904c3bc57126e765831874cac4c (diff) | |
download | tcl-23da1090949b16db83c8353f1874c559ae0bf0cc.zip tcl-23da1090949b16db83c8353f1874c559ae0bf0cc.tar.gz tcl-23da1090949b16db83c8353f1874c559ae0bf0cc.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
FossilOrigin-Name: a72287aa7ddee6335514b3d64cd4eea243fd995d
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="" |