Overview
Comment: | Updated to not emit output |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | ec59145e47257c77f1f48b874e90535628fdc7c9 |
User & Date: | rkeene on 2014-04-27 03:06:07 |
Other Links: | manifest | tags |
Context
2014-04-27
| ||
04:12 | Minor whitespace change check-in: a12c65d1e5 user: rkeene tags: trunk | |
03:06 | Updated to not emit output check-in: ec59145e47 user: rkeene tags: trunk | |
2014-03-09
| ||
04:35 | KitCreator 0.8.0 check-in: e57ac649e3 user: rkeene tags: trunk, 0.8.0 | |
Changes
Modified tcl/patchscripts/win32-32bit-timet.sh from [63209e8aa4] to [701d971009].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#! /usr/bin/env bash # Do not run on Win32 if echo '_WIN64' | ${CC:-cc} -E - | grep '^_WIN64$'; then ( echo '#ifndef _USE_32BIT_TIME_T' echo '#define _USE_32BIT_TIME_T 1' echo '#endif' cat generic/tcl.h ) > generic/tcl.h.new cat generic/tcl.h.new > generic/tcl.h fi exit 0 |
| |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#! /usr/bin/env bash
# Do not run on Win32
if echo '_WIN64' | ${CC:-cc} -E - | grep '^_WIN64$' >/dev/null; then
(
echo '#ifndef _USE_32BIT_TIME_T'
echo '#define _USE_32BIT_TIME_T 1'
echo '#endif'
cat generic/tcl.h
) > generic/tcl.h.new
cat generic/tcl.h.new > generic/tcl.h
fi
exit 0
|