Overview
| Comment: | Minor update to clean-up warnings |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
1e19f573c8d62a0b332eba25973b2da0 |
| User & Date: | rkeene on 2012-05-06 22:21:16 |
| Other Links: | manifest | tags |
Context
|
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 | |
| 22:15 | Updated to always define _USE_32BIT_TIME_T in tcl.h, required to fix [cb7ed6affe] check-in: 8b02cd8c92 user: rkeene tags: trunk | |
Changes
Modified tcl/patchscripts/win32-32bit-timet.sh from [56f1cb4974] to [ecac082458].
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 | > > | 1 2 3 4 5 6 7 8 9 10 11 | #! /usr/bin/env bash ( 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 exit 0 |