diff options
author | andreas_kupries <akupries@shaw.ca> | 2001-09-14 01:00:59 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2001-09-14 01:00:59 (GMT) |
commit | 6bf33fafa3cb59c443e11a36316b099fc94727b3 (patch) | |
tree | 161dd45a1e70e0ab79f3a7b7744c30825ec4cc9f /win/makefile.vc | |
parent | 42e90f4f65fe0740c1045bf3f4a1f4c81522b6a3 (diff) | |
download | tcl-6bf33fafa3cb59c443e11a36316b099fc94727b3.zip tcl-6bf33fafa3cb59c443e11a36316b099fc94727b3.tar.gz tcl-6bf33fafa3cb59c443e11a36316b099fc94727b3.tar.bz2 |
* win/Makefile.in:
* win/configure.in:
* win/makefile.bc:
* win/makefile.vc:
* library/reg/pkgIndex.tcl
* library/dde/pkgIndex.tcl: Fixed version numbers from bogus tcl
versions to independent versions for dde and registry packages.
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index ff4bfea..03639b3 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -6,7 +6,7 @@ # Copyright (c) 1995-1996 Sun Microsystems, Inc. # Copyright (c) 1998-2000 Ajuba Solutions. # -# RCS: @(#) $Id: makefile.vc,v 1.64 2001/09/07 02:43:12 dgp Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.65 2001/09/14 01:00:59 andreas_kupries Exp $ # Does not depend on the presence of any environment variables in # order to compile tcl; all needed information is derived from @@ -99,6 +99,12 @@ STUBPREFIX = $(NAMEPREFIX)stub DOTVERSION = 8.4 VERSION = 84 +DDEVERSION = 12 +DDEDOTVERSION = 1.2 + +REGVERSION = 10 +REGDOTVERSION = 1.0 + BINROOT = . !IF "$(NODEBUG)" == "1" TMPDIRNAME = Release @@ -125,9 +131,9 @@ TCLSH = $(OUTDIR)\$(NAMEPREFIX)sh$(VERSION)$(DBGX).exe TCLSHP = $(OUTDIR)\$(NAMEPREFIX)shp$(VERSION)$(DBGX).exe TCLPIPEDLLNAME = $(NAMEPREFIX)pip$(VERSION)$(DBGX).dll TCLPIPEDLL = $(OUTDIR)\$(TCLPIPEDLLNAME) -TCLREGDLLNAME = $(NAMEPREFIX)reg$(VERSION)$(DBGX).dll +TCLREGDLLNAME = $(NAMEPREFIX)reg$(REGVERSION)$(DBGX).dll TCLREGDLL = $(OUTDIR)\$(TCLREGDLLNAME) -TCLDDEDLLNAME = $(NAMEPREFIX)dde$(VERSION)$(DBGX).dll +TCLDDEDLLNAME = $(NAMEPREFIX)dde$(DDEVERSION)$(DBGX).dll TCLDDEDLL = $(OUTDIR)\$(TCLDDEDLLNAME) TCLTEST = $(OUTDIR)\$(NAMEPREFIX)test.exe CAT32 = $(TMPDIR)\cat32.exe |