Overview
Comment: | Updated patch for bug 2233954 to work with newer Tcl fossil trunk tip |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | db8979348de7911064503e7e54b5311d91273774 |
User & Date: | rkeene on 2012-05-06 22:38:27 |
Other Links: | manifest | tags |
Context
2012-05-07
| ||
04:18 | Stopped use of -mno-cygwin as it has been removed from some Mingw32s check-in: 9396658a02 user: rkeene tags: trunk | |
2012-05-06
| ||
22:38 | Updated patch for bug 2233954 to work with newer Tcl fossil trunk tip check-in: db8979348d user: rkeene tags: trunk | |
22:21 | Minor update to clean-up warnings check-in: 1e19f573c8 user: rkeene tags: trunk | |
Changes
Added tcl/patches/all/tcl-all-fix-stat64-bug2233954-newer.diff version [9340be2758].
1 +diff -uNr tclfossil_trunk.orig//generic/tcl.h tclfossil_trunk-1rsk//generic/tcl.h 2 +--- tclfossil_trunk.orig//generic/tcl.h 2012-05-04 16:11:58.000000000 -0500 3 ++++ tclfossil_trunk-1rsk//generic/tcl.h 2012-05-06 17:33:17.487466336 -0500 4 +@@ -475,6 +475,9 @@ 5 + /* Here is a 4-byte gap */ 6 + } Tcl_StatBuf; 7 + #elif defined(HAVE_STRUCT_STAT64) 8 ++# ifdef HAVE_SYS_STAT_H 9 ++# include <sys/stat.h> 10 ++# endif 11 + typedef struct stat64 Tcl_StatBuf; 12 + #else 13 + typedef struct stat Tcl_StatBuf;