diff options
author | dgp <dgp@users.sourceforge.net> | 2006-11-09 16:52:25 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-11-09 16:52:25 (GMT) |
commit | c7f945aac52601074c20727c95a1f548ed743a98 (patch) | |
tree | dfefc1722356d87fe272ed914076059ca241b48a /win | |
parent | 50372ddbf9e9b93ddf9b64cad6b9380d5a542c2d (diff) | |
download | tcl-c7f945aac52601074c20727c95a1f548ed743a98.zip tcl-c7f945aac52601074c20727c95a1f548ed743a98.tar.gz tcl-c7f945aac52601074c20727c95a1f548ed743a98.tar.bz2 |
* generic/tclParseExpr.c (removed): Moved all the code of
* generic/tclCompExpr.c: tclParseExpr.c into tclCompExpr.c.
* unix/Makefile.in: This sets the stage for expr compiling to
* win/Makefile.in: work directly with the full parse tree
* win/makefile.bc: structures, and not have to pass through
* win/makefile.vc: the information lossy format of an array
* win/tcl.dsp: of Tcl_Tokens.
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 3 | ||||
-rw-r--r-- | win/makefile.bc | 1 | ||||
-rw-r--r-- | win/makefile.vc | 3 | ||||
-rw-r--r-- | win/tcl.dsp | 4 |
4 files changed, 2 insertions, 9 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index c78a018..861a395 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.108 2006/10/20 15:16:48 dkf Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.109 2006/11/09 16:52:31 dgp Exp $ VERSION = @TCL_VERSION@ @@ -255,7 +255,6 @@ GENERIC_OBJS = \ tclObj.$(OBJEXT) \ tclPanic.$(OBJEXT) \ tclParse.$(OBJEXT) \ - tclParseExpr.$(OBJEXT) \ tclPathObj.$(OBJEXT) \ tclPipe.$(OBJEXT) \ tclPkg.$(OBJEXT) \ diff --git a/win/makefile.bc b/win/makefile.bc index a42a06b..75d7ca4 100644 --- a/win/makefile.bc +++ b/win/makefile.bc @@ -236,7 +236,6 @@ TCLOBJS = \ $(TMPDIR)\tclObj.obj \ $(TMPDIR)\tclPanic.obj \ $(TMPDIR)\tclParse.obj \ - $(TMPDIR)\tclParseExpr.obj \ $(TMPDIR)\tclPipe.obj \ $(TMPDIR)\tclPkg.obj \ $(TMPDIR)\tclPkgConfig.obj \ diff --git a/win/makefile.vc b/win/makefile.vc index c408909..d30fb0b 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -12,7 +12,7 @@ # Copyright (c) 2001-2004 David Gravereaux. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: makefile.vc,v 1.154 2006/10/31 21:47:34 patthoyts Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.155 2006/11/09 16:52:31 dgp Exp $ #------------------------------------------------------------------------------ # Check to see we are configured to build with MSVC (MSDEVDIR or MSVCDIR) @@ -296,7 +296,6 @@ TCLOBJS = \ $(TMP_DIR)\tclObj.obj \ $(TMP_DIR)\tclPanic.obj \ $(TMP_DIR)\tclParse.obj \ - $(TMP_DIR)\tclParseExpr.obj \ $(TMP_DIR)\tclPathObj.obj \ $(TMP_DIR)\tclPipe.obj \ $(TMP_DIR)\tclPkg.obj \ diff --git a/win/tcl.dsp b/win/tcl.dsp index 0967d5f..193ef14 100644 --- a/win/tcl.dsp +++ b/win/tcl.dsp @@ -1244,10 +1244,6 @@ SOURCE=..\generic\tclParse.c # End Source File # Begin Source File -SOURCE=..\generic\tclParseExpr.c -# End Source File -# Begin Source File - SOURCE=..\generic\tclPipe.c # End Source File # Begin Source File |