Overview
Comment: | Added patch required to build with MingW64 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
26410a9c32b3124815052a455fdd48e7 |
User & Date: | rkeene on 2010-09-26 04:43:40 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:43 | Added support for building under Win64 (MingW64) check-in: 53cdd8c9a6 user: rkeene tags: trunk | |
04:43 | Added patch required to build with MingW64 check-in: 26410a9c32 user: rkeene tags: trunk | |
04:43 | Added unmodified zipvfs from tclvfs 20080503 check-in: 91c236fce7 user: rkeene tags: trunk | |
Changes
Added tclvfs/patches/all/tclvfs-20080503-includestat.diff version [3e97f602cf].
> > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | diff -uNr tclvfs-20080503.orig//generic/vfs.c tclvfs-20080503-1rsk//generic/vfs.c --- tclvfs-20080503.orig//generic/vfs.c 2006-08-30 19:38:03.000000000 +0000 +++ tclvfs-20080503-1rsk//generic/vfs.c 2010-09-10 06:41:30.280557731 +0000 @@ -20,6 +20,9 @@ * of this file, and for a DISCLAIMER OF ALL WARRANTIES. */ +#ifdef HAVE_SYS_STAT_H +# include <sys/stat.h> +#endif #include <tcl.h> /* Required to access the 'stat' structure fields, and TclInExit() */ #include "tclInt.h" |