Overview
Comment: | Updated to not provide Tk package, since that is taken care of by Tk itself |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | d589e2755f7ca8ba374d39c415152d374033732d |
User & Date: | rkeene on 2010-09-26 04:49:15 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:49 | Updated to not remount TclKit VFS in initialization check-in: c7d604dff8 user: rkeene tags: trunk | |
04:49 | Updated to not provide Tk package, since that is taken care of by Tk itself check-in: d589e2755f user: rkeene tags: trunk | |
04:49 | Added patch for Tk to fix Tk 8.4 on UNIX's bind ... <MouseWheel> check-in: 6aed8e99b7 user: rkeene tags: trunk | |
Changes
Modified kitsh/buildsrc/kitsh-0.0/kitInit.c from [daa56f5f14] to [dc3318ae4e].
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
"close $f\n"
"}\n"
"uplevel #0 $s\n"
#if defined(KIT_INCLUDES_TK) && defined(KIT_TK_VERSION)
# ifndef _WIN32
"package ifneeded Tk " KIT_TK_VERSION " {\n"
"load {} Tk\n"
"package provide Tk " KIT_TK_VERSION "\n"
"}\n"
# endif
#endif
#ifdef _WIN32
"catch {load {} dde}\n"
"catch {load {} registry}\n"
#endif /* _WIN32 */
|
< |
145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
"close $f\n" "}\n" "uplevel #0 $s\n" #if defined(KIT_INCLUDES_TK) && defined(KIT_TK_VERSION) # ifndef _WIN32 "package ifneeded Tk " KIT_TK_VERSION " {\n" "load {} Tk\n" "}\n" # endif #endif #ifdef _WIN32 "catch {load {} dde}\n" "catch {load {} registry}\n" #endif /* _WIN32 */ |