Overview
Comment: | Updated to always define _USE_32BIT_TIME_T in tcl.h, required to fix [cb7ed6affe] |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8b02cd8c92b69be63476459a1db7226e |
User & Date: | rkeene on 2012-05-06 22:15:25 |
Other Links: | manifest | tags |
References
2012-05-06
| ||
22:16 | • Ticket [cb7ed6affe] MinGW tclvfs error: dereferencing pointer to incomplete type status still Open with 2 other changes artifact: b1636f43d3 user: rkeene | |
Context
2012-05-06
| ||
22:21 | Minor update to clean-up warnings check-in: 1e19f573c8 user: rkeene tags: trunk | |
22:15 | Updated to always define _USE_32BIT_TIME_T in tcl.h, required to fix [cb7ed6affe] check-in: 8b02cd8c92 user: rkeene tags: trunk | |
22:05 | Updated to fix bug build [cb7ed6affe] in build script -- need a better solution check-in: 592228c7b0 user: rkeene tags: trunk | |
Changes
Modified build/make-kit-win32 from [82996a921e] to [248a24bff3].
1 2 3 4 5 6 7 8 | #! /bin/sh AR=i586-mingw32msvc-ar CC=i586-mingw32msvc-gcc CXX=i586-mingw32msvc-g++ RANLIB=i586-mingw32msvc-ranlib RC=i586-mingw32msvc-windres STRIP="${STRIP:-i586-mingw32msvc-strip}" | < < | | 1 2 3 4 5 6 7 8 9 10 11 | #! /bin/sh AR=i586-mingw32msvc-ar CC=i586-mingw32msvc-gcc CXX=i586-mingw32msvc-g++ RANLIB=i586-mingw32msvc-ranlib RC=i586-mingw32msvc-windres STRIP="${STRIP:-i586-mingw32msvc-strip}" export AR CC CXX RANLIB RC STRIP ./kitcreator "$@" --host=i586-mingw32msvc |
Added tcl/patchscripts/win32-32bit-timet.sh version [56f1cb4974].
> > > > > > > > > | 1 2 3 4 5 6 7 8 9 | #! /usr/bin/env bash ( echo '#define _USE_32BIT_TIME_T 1' cat generic/tcl.h ) > generic/tcl.h.new cat generic/tcl.h.new > generic/tcl.h exit 0 |