summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordas <das>2005-12-05 13:03:16 (GMT)
committerdas <das>2005-12-05 13:03:16 (GMT)
commit72a72bdbda1a618c81ce21298d38a7b66024cf95 (patch)
treede184beb12392b5d5382cd6ff21227041743df82 /ChangeLog
parent403f07fad3a34a8d96e855e42124439774d1b8d3 (diff)
downloadtcl-72a72bdbda1a618c81ce21298d38a7b66024cf95.zip
tcl-72a72bdbda1a618c81ce21298d38a7b66024cf95.tar.gz
tcl-72a72bdbda1a618c81ce21298d38a7b66024cf95.tar.bz2
* unix/configure.in: move check for fts API to configure.in and run it
* unix/tcl.m4: on all platforms, since Linux glibc2 and *BSDs also have this; using fts is more efficient than recursive opendir/readdir. * unix/tclUnixFCmd.c (TraverseUnixTree): add support to fts code for platforms with stat64. * unix/configure: * unix/tclConfig.h.in: regen.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog14
1 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index eb71468..5460ec1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,19 @@
+2005-12-05 Daniel Steffen <das@users.sourceforge.net>
+
+ * unix/configure.in: move check for fts API to configure.in and run it
+ * unix/tcl.m4: on all platforms, since Linux glibc2 and *BSDs also
+ have this; using fts is more efficient than recursive opendir/readdir.
+ * unix/tclUnixFCmd.c (TraverseUnixTree): add support to fts code for
+ platforms with stat64.
+ * unix/configure:
+ * unix/tclConfig.h.in: regen.
+
2005-12-05 Jeff Hobbs <jeffh@ActiveState.com>
- * unix/configure: Use FTS file APIs on Darwin if available.
+ * unix/configure: Use fts file API on Darwin if available.
* unix/tcl.m4: Addresses file delete issues in readdir noted
* unix/tclUnixFCmd.c: in [Bug 1034337]. (steffen)
- Reduce on stat call in DoCopyFile. (steffen)
+ Remove redundant stat call for each file in DoCopyFile. (steffen)
2005-12-02 Kevin B. Kenny <kennykb@acm.org>