summaryrefslogtreecommitdiffstats
path: root/unix/Makefile.in
diff options
context:
space:
mode:
authorhobbs <hobbs>1999-09-21 04:21:26 (GMT)
committerhobbs <hobbs>1999-09-21 04:21:26 (GMT)
commit89420b81b99afdd1c68f441f4a099c2d9e4e290a (patch)
tree71b471eaa7912e94f153f38b64cf41b4af69ccff /unix/Makefile.in
parenta583a768fbe40ec2b7d661fe32d8347a34632fcf (diff)
downloadtcl-89420b81b99afdd1c68f441f4a099c2d9e4e290a.zip
tcl-89420b81b99afdd1c68f441f4a099c2d9e4e290a.tar.gz
tcl-89420b81b99afdd1c68f441f4a099c2d9e4e290a.tar.bz2
* unix/Makefile.in: fixed gendate target - this never worked
since RCS was intro'd. * unix/tcl.m4: * unix/aclocal.m4: added fix for FreeBSD-[1-2] recognition [Bug: 2070] and fix for IRIX SHLIB_LB_LIBS. [Bug: 2610]
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r--unix/Makefile.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index ed7422f..2138e82 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.45 1999/08/19 03:00:26 hobbs Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.46 1999/09/21 04:21:26 hobbs Exp $
VERSION = @TCL_VERSION@
@@ -461,9 +461,10 @@ topDirName:
gendate:
yacc -l $(GENERIC_DIR)/tclGetDate.y
sed -e 's/yy/TclDate/g' -e '/^#include <values.h>/d' \
- -e "s/SCCSID/RCS: @(#) \$Id\$"
+ -e 's/SCCSID/RCS: @(#) $$Id: Makefile.in,v 1.46 1999/09/21 04:21:26 hobbs Exp $$/' \
-e '/#ifdef __STDC__/,/#endif/d' -e '/TclDateerrlab:/d' \
-e '/TclDatenewstate:/d' -e '/#pragma/d' \
+ -e '/#include <inttypes.h>/d' \
<y.tab.c >$(GENERIC_DIR)/tclDate.c
rm y.tab.c