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 | 98a40cff2c3ad8c126a6eccea19a472ef52f6339 (patch) | |
tree | 3d2fb6e945d2b988e86c8bb080749552980d10e7 /unix/tclUnixPort.h | |
parent | 581c5b94ab4c310a88bb6cc3259e65e96590cfdf (diff) | |
parent | b6eebed4e69d98556922e00a571b94ecabe3bdda (diff) | |
download | tcl-98a40cff2c3ad8c126a6eccea19a472ef52f6339.zip tcl-98a40cff2c3ad8c126a6eccea19a472ef52f6339.tar.gz tcl-98a40cff2c3ad8c126a6eccea19a472ef52f6339.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 |