Overview
| Comment: | Added debug output for pkgconfig | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 
ee0059a1c6aaa4d77d5e8aa03543b20c | 
| User & Date: | rkeene on 2013-10-03 19:17:50 | 
| Other Links: | manifest | tags | 
Context
| 
   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 | |
| 18:27 | Updated TclKit icon check-in: 657c96baa3 user: rkeene tags: trunk | |
Changes
Modified build/test/tests/01-pkgconfig.tcl from [2e10cd62cc] to [7817026d2e].
| ︙ | ︙ | |||
12 13 14 15 16 17 18 19 20  | 
} else {
	set is64bit 0
}
if {[tcl::pkgconfig get 64bit] == $is64bit} {
	exit 0
}
exit 1
 | > >  | 12 13 14 15 16 17 18 19 20 21 22  | 
} else {
	set is64bit 0
}
if {[tcl::pkgconfig get 64bit] == $is64bit} {
	exit 0
}
puts "tcl::pkgconfig get returned [tcl::pkgconfig get 64bit], but we platform 64 bit returned: $is64bit"
exit 1
 |