diff options
author | hobbs <hobbs> | 2005-12-05 08:19:36 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2005-12-05 08:19:36 (GMT) |
commit | 403f07fad3a34a8d96e855e42124439774d1b8d3 (patch) | |
tree | 641e84ce6d8a5e51a92dc5642880541f0f549f8f /unix/tcl.m4 | |
parent | f078a958a988281d9fa063f631db04e67d0148e0 (diff) | |
download | tcl-403f07fad3a34a8d96e855e42124439774d1b8d3.zip tcl-403f07fad3a34a8d96e855e42124439774d1b8d3.tar.gz tcl-403f07fad3a34a8d96e855e42124439774d1b8d3.tar.bz2 |
* unix/configure: Use FTS file APIs 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)
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 211dae3..1bc6e31 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1497,6 +1497,17 @@ dnl AC_CHECK_TOOL(AR, ar) AC_CHECK_FUNCS(OSSpinLockLock) AC_CHECK_HEADERS(copyfile.h) AC_CHECK_FUNCS(copyfile) + AC_CACHE_CHECK([for fts], tcl_cv_api_fts, [ + AC_TRY_LINK([#include <sys/param.h> + #include <sys/stat.h> + #include <fts.h>], + [char*const p[2] = {"/", NULL}; + FTS *f = fts_open(p, FTS_PHYSICAL|FTS_NOCHDIR|FTS_NOSTAT, NULL); + FTSENT *e = fts_read(f); fts_close(f);], + tcl_cv_api_fts=yes, tcl_cv_api_fts=no)]) + if test $tcl_cv_api_fts = yes; then + AC_DEFINE(HAVE_FTS, 1, [Do we have fts functions?]) + fi AC_DEFINE(MAC_OSX_TCL, 1, [Is this a Mac I see before me?]) AC_DEFINE(USE_VFORK, 1, [Should we use vfork() instead of fork()?]) AC_DEFINE(TCL_DEFAULT_ENCODING,"utf-8", |