Overview
Comment: | More 64-bit test issues corrected |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 4e5fa96d8abec5ddab25fa74fd7246b2105b8f8b |
User & Date: | rkeene on 2013-10-04 10:45:15 |
Other Links: | manifest | tags |
Context
2013-10-05
| ||
11:53 | Fixed issue with disabling debugging on appropriate prefix check-in: 76d1b562f8 user: rkeene tags: trunk | |
2013-10-04
| ||
10:45 | More 64-bit test issues corrected check-in: 4e5fa96d8a user: rkeene tags: trunk | |
2013-10-03
| ||
19:17 | Added debug output for pkgconfig check-in: ee0059a1c6 user: rkeene tags: trunk | |
Changes
Modified build/test/test from [0dfabb437f] to [80606a5b08].
146 146 runnable="0" 147 147 xcompile="1" 148 148 iszip="0" 149 149 150 150 ;; 151 151 esac 152 152 153 - if echo "${kit}" | egrep -- '-(hppa64|amd64|sparc64)-' >/dev/null; then 153 + if echo "${kit}" | egrep -- '-(hppa64|amd64|sparc64)(-|$)' >/dev/null; then 154 154 args="${args} --enable-64bit" 155 155 fi 156 156 157 157 case "${kitruncmd}" in 158 158 wine) 159 159 WINEPREFIX="${WINEPREFIX32}" 160 160 export WINEPREFIX
Modified build/test/tests/01-pkgconfig.tcl from [7817026d2e] to [4d059e3e0c].
13 13 set is64bit 0 14 14 } 15 15 16 16 if {[tcl::pkgconfig get 64bit] == $is64bit} { 17 17 exit 0 18 18 } 19 19 20 -puts "tcl::pkgconfig get returned [tcl::pkgconfig get 64bit], but we platform 64 bit returned: $is64bit" 20 +puts "tcl::pkgconfig get 64 returned [tcl::pkgconfig get 64bit], but platform is 64 bit returned: $is64bit" 21 21 22 22 exit 1