diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | win/makefile.vc | 6 |
2 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2000-07-20 Eric Melski <ericm@ajubasolutions.com> + + * win/makefile.vc: Applied patch from Don Porter to enhance nmake + support on NT/Alpha [RFE: 5939]. + 2000-07-19 Eric Melski <ericm@ajubasolutions.com> * library/text.tcl: Enhanced <Tab> binding to behave like normal diff --git a/win/makefile.vc b/win/makefile.vc index 124891d..693a792 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -4,7 +4,7 @@ # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # Copyright (c) 1995-1997 Sun Microsystems, Inc. -# RCS: @(#) $Id: makefile.vc,v 1.34 2000/05/03 00:18:37 hobbs Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.35 2000/07/20 15:20:52 ericm Exp $ # Does not depend on the presence of any environment variables in # order to compile tcl; all needed information is derived from @@ -31,10 +31,14 @@ INSTALLDIR = c:\progra~1\tcl # Set this to the appropriate value of /MACHINE: for your platform MACHINE = IX86 +#MACHINE = ALPHA !IF "$(MACHINE)" == "IA64" TOOLS32 = c:\ia64sdk17 TOOLS32_rc = c:\ia64sdk17 +!ELSE IF "$(MACHINE)" == "ALPHA" +TOOLS32 = C:\Progra~1\Micros~2\vc98 +TOOLS32_rc = C:\Progra~1\Micros~2\common\MSDev98 !ELSE TOOLS32 = c:\Progra~1\devstudio\vc TOOLS32_rc = c:\Progra~1\devstudio\sharedide |