summaryrefslogtreecommitdiffstats
path: root/unix/Makefile.in
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2001-10-17 09:28:16 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2001-10-17 09:28:16 (GMT)
commitb134b7beb27e5ccf73392ae7b9e8b0a04bad05a3 (patch)
treed48d17a88c54c29d641da7928c9425aaa164f2c7 /unix/Makefile.in
parentd57ed66242e3615fe0c3bb4e26d06f2a6a78a61d (diff)
downloadtcl-b134b7beb27e5ccf73392ae7b9e8b0a04bad05a3.zip
tcl-b134b7beb27e5ccf73392ae7b9e8b0a04bad05a3.tar.gz
tcl-b134b7beb27e5ccf73392ae7b9e8b0a04bad05a3.tar.bz2
Changes to make more use of what autoconf can discover. Also adds *lots* more
cacheing of discovered values, which not only speeds up reconfiguring, but also makes mistakes easier to override.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r--unix/Makefile.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 31ae68e..d95ed8e 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.83 2001/09/10 00:33:09 mdejong Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.83.4.1 2001/10/17 09:28:16 dkf Exp $
VERSION = @TCL_VERSION@
@@ -1031,9 +1031,15 @@ strtod.o: $(COMPAT_DIR)/strtod.c
strtol.o: $(COMPAT_DIR)/strtol.c
$(CC) -c $(STUB_CC_SWITCHES) $(COMPAT_DIR)/strtol.c
+strtoll.o: $(COMPAT_DIR)/strtoll.c
+ $(CC) -c $(STUB_CC_SWITCHES) $(COMPAT_DIR)/strtoll.c
+
strtoul.o: $(COMPAT_DIR)/strtoul.c
$(CC) -c $(STUB_CC_SWITCHES) $(COMPAT_DIR)/strtoul.c
+strtoull.o: $(COMPAT_DIR)/strtoull.c
+ $(CC) -c $(STUB_CC_SWITCHES) $(COMPAT_DIR)/strtoull.c
+
tmpnam.o: $(COMPAT_DIR)/tmpnam.c
$(CC) -c $(STUB_CC_SWITCHES) $(COMPAT_DIR)/tmpnam.c