Overview
Comment: | Updated to fix bug build [cb7ed6affe] in build script -- need a better solution |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
592228c7b0bd8add8d0cf359c058d3ce |
User & Date: | rkeene on 2012-05-06 22:05:19 |
Other Links: | manifest | tags |
Context
2012-05-06
| ||
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 | |
20:26 | Updated to override site-local autoconf brokenness on some 64-bit systems check-in: f4d5d0f507 user: rkeene tags: trunk | |
Changes
Modified build/make-kit-win32 from [248a24bff3] to [82996a921e].
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 12 13 | #! /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}" CFLAGS="${CFLAGS} -D_USE_32BIT_TIME_T=1" CPPFLAGS="${CPPFLAGS} -D_USE_32BIT_TIME_T=1" export AR CC CXX RANLIB RC STRIP CFLAGS CPPFLAGS ./kitcreator "$@" --host=i586-mingw32msvc |