diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-19 17:49:16 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-19 17:49:16 (GMT) |
commit | 0218abe5f52843f501c1735ffeadef3d5e9d24bd (patch) | |
tree | 3d2fb6e945d2b988e86c8bb080749552980d10e7 /unix/tclUnixPort.h | |
parent | 63fe76b6b89557c393f4e3eefa37ecf11a4d64bc (diff) | |
parent | 8c190c2de231c115b66ef2dc05a8d9b8da20b930 (diff) | |
download | tcl-0218abe5f52843f501c1735ffeadef3d5e9d24bd.zip tcl-0218abe5f52843f501c1735ffeadef3d5e9d24bd.tar.gz tcl-0218abe5f52843f501c1735ffeadef3d5e9d24bd.tar.bz2 |
fix Bug 3598300 on MacOSX too
Diffstat (limited to 'unix/tclUnixPort.h')
-rw-r--r-- | unix/tclUnixPort.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h index 7eb717b..59a35ba 100644 --- a/unix/tclUnixPort.h +++ b/unix/tclUnixPort.h @@ -104,7 +104,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 |