diff options
author | Kevin B Kenny <kennykb@acm.org> | 2003-05-15 21:51:46 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2003-05-15 21:51:46 (GMT) |
commit | 6d32bfc2e3607fa604256d127278dc051779c549 (patch) | |
tree | 49e0fa2a9af827e2b90a9260b0cbb7364e6a0f7a /unix/Makefile.in | |
parent | 254184a818b32e16b090faa444a90591c81c8c56 (diff) | |
download | tcl-6d32bfc2e3607fa604256d127278dc051779c549.zip tcl-6d32bfc2e3607fa604256d127278dc051779c549.tar.gz tcl-6d32bfc2e3607fa604256d127278dc051779c549.tar.bz2 |
Fixed Tcl bug 736425
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 8401624..24eabc0 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.125 2003/05/14 19:21:25 das Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.126 2003/05/15 21:51:46 kennykb Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -354,6 +354,7 @@ GENERIC_SRCS = \ $(GENERIC_DIR)/tclCompile.c \ $(GENERIC_DIR)/tclDate.c \ $(GENERIC_DIR)/tclDictObj.c \ + $(GENERIC_DIR)/tclDToA.c \ $(GENERIC_DIR)/tclEncoding.c \ $(GENERIC_DIR)/tclEnv.c \ $(GENERIC_DIR)/tclEvent.c \ @@ -564,6 +565,8 @@ gendate: -e '/#ifdef __STDC__/,/#endif/d' -e '/TclDateerrlab:/d' \ -e '/TclDatenewstate:/d' -e '/#pragma/d' \ -e '/#include <inttypes.h>/d' -e 's/const /CONST /g' \ + -e '/#define YYNEW/s/malloc/TclDateAlloc/g' \ + -e '/#define YYENLARGE/,/realloc/s/realloc/TclDateRealloc/g' \ <y.tab.c >$(GENERIC_DIR)/tclDate.c rm y.tab.c |