diff options
author | hobbs <hobbs> | 2005-11-30 00:15:35 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2005-11-30 00:15:35 (GMT) |
commit | 08315becbe85b5742b61c005317cc4586a8272b4 (patch) | |
tree | 7a34312c78af88bec60c628ccad0bbbccff6791f /win/Makefile.in | |
parent | 78e4bd756c392b75621c7d8c46d00a7cc2c03701 (diff) | |
download | tcl-08315becbe85b5742b61c005317cc4586a8272b4.zip tcl-08315becbe85b5742b61c005317cc4586a8272b4.tar.gz tcl-08315becbe85b5742b61c005317cc4586a8272b4.tar.bz2 |
* win/tcl.m4: Add build support for Windows-x64 builds.
* win/configure: --enable-64bit now accepts =amd64|ia64 for
* win/Makefile.in: Windows 64-bit build variants (default: amd64)
* win/makefile.vc: [Bug 1369597]
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 1dd0684..0110120 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.68.2.2 2004/11/16 23:39:52 andreas_kupries Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.68.2.3 2005/11/30 00:15:39 hobbs Exp $ VERSION = @TCL_VERSION@ @@ -329,7 +329,7 @@ cat32.$(OBJEXT): cat.c $(CC) -c $(CC_SWITCHES) @DEPARG@ $(CC_OBJNAME) $(CAT32): cat32.$(OBJEXT) - $(CC) $(CFLAGS) cat32.$(OBJEXT) $(CC_EXENAME) $(LDFLAGS_CONSOLE) + $(CC) $(CFLAGS) cat32.$(OBJEXT) $(CC_EXENAME) $(LIBS) $(LDFLAGS_CONSOLE) # The following targets are configured by autoconf to generate either # a shared library or static library |