diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-18 15:07:18 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-18 15:07:18 (GMT) |
commit | 62a66095ee80918300cf2d26a7cbecf8fdfab4e1 (patch) | |
tree | cf7746a63216f18ebf06a35801494a47d5e4ea1b /unix | |
parent | f50af0e8c33d29a694f03efedfc7bf1ae18b3e16 (diff) | |
download | tcl-62a66095ee80918300cf2d26a7cbecf8fdfab4e1.zip tcl-62a66095ee80918300cf2d26a7cbecf8fdfab4e1.tar.gz tcl-62a66095ee80918300cf2d26a7cbecf8fdfab4e1.tar.bz2 |
Proposed solution for Bug 3598300 on MacOSXbug_3598300
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclUnixFCmd.c | 2 | ||||
-rw-r--r-- | unix/tclUnixPort.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixFCmd.c b/unix/tclUnixFCmd.c index 79f115e..d655990 100644 --- a/unix/tclUnixFCmd.c +++ b/unix/tclUnixFCmd.c @@ -232,7 +232,7 @@ MODULE_SCOPE long tclMacOSXDarwinRelease; #endif /* NO_REALPATH */ #ifdef HAVE_FTS -#ifdef HAVE_STRUCT_STAT64 +#if defined(HAVE_STRUCT_STAT64) && !defined(__APPLE__) /* fts doesn't do stat64 */ #define noFtsStat 1 #elif defined(__APPLE__) && defined(__LP64__) && \ diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h index 99c564b..7cfeec0 100644 --- a/unix/tclUnixPort.h +++ b/unix/tclUnixPort.h @@ -100,7 +100,7 @@ typedef off_t Tcl_SeekOffset; extern char **__cygwin_environ; extern int TclOSstat(const char *name, void *statBuf); extern int TclOSlstat(const char *name, void *statBuf); -#elif defined(HAVE_STRUCT_STAT64) +#elif defined(HAVE_STRUCT_STAT64) && !defined(__APPLE__) # define TclOSstat stat64 # define TclOSlstat lstat64 #else |