diff options
author | nijtmans <nijtmans> | 2008-12-11 22:30:31 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-12-11 22:30:31 (GMT) |
commit | 85aba5fb4879a9d1e77e993796d21973453a20cd (patch) | |
tree | 01bb50195b9e551edd9c706c9109db1de681f175 /win/Makefile.in | |
parent | 6cb99f7bf8a960b9c8db1d06c4509fea270989b1 (diff) | |
download | tcl-85aba5fb4879a9d1e77e993796d21973453a20cd.zip tcl-85aba5fb4879a9d1e77e993796d21973453a20cd.tar.gz tcl-85aba5fb4879a9d1e77e993796d21973453a20cd.tar.bz2 |
Eliminate warning: different 'const' qualifiers
with msvc compiler. A few more 'const' optimizations.
fix Windows build (msvc) for TIP #234 implementation
Diffstat (limited to 'win/Makefile.in')
-rw-r--r-- | win/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 16d7474..ebe7f5c 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.138 2008/12/11 14:32:34 nijtmans Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.139 2008/12/11 22:30:31 nijtmans Exp $ VERSION = @TCL_VERSION@ @@ -177,7 +177,7 @@ SHLIB_LD = @SHLIB_LD@ SHLIB_LD_LIBS = @SHLIB_LD_LIBS@ $(LIBS) SHLIB_CFLAGS = @SHLIB_CFLAGS@ SHLIB_SUFFIX = @SHLIB_SUFFIX@ -LIBS = @LIBS@ -lz +LIBS = @LIBS@ RMDIR = rm -rf MKDIR = mkdir -p |