Check-in [5a3882c8f0]
Overview
Comment:Updated to always make registry/dde packages available to Windows rather than creating a "package ifneeded" entry -- this fixes the issue with mismatched versions on Tcl 8.5+
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 5a3882c8f026a37d5740caac1d92c99d6c802a0d
User & Date: rkeene on 2010-09-26 04:42:04
Other Links: manifest | tags
Context
2010-09-26
04:42
Added support for minimal builds

Fixed potential loading issue for zlib in pure Tcl metakit check-in: 66930bd6ef user: rkeene tags: trunk

04:42
Updated to always make registry/dde packages available to Windows rather than creating a "package ifneeded" entry -- this fixes the issue with mismatched versions on Tcl 8.5+ check-in: 5a3882c8f0 user: rkeene tags: trunk
04:42
Added internal script to build minimal Tclkit for ARM check-in: 36ac498d1e user: rkeene tags: trunk
Changes

Modified kitsh/buildsrc/kitsh-0.0/kitInit.c from [14eb71a613] to [40729608ac].

95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
    "} else {\n"
        "set f [open setup.tcl]\n"
        "set s [read $f]\n"
        "close $f\n"
    "}\n"
    "uplevel #0 $s\n"
#ifdef _WIN32
    "package ifneeded dde 1.3.1 {load {} dde}\n"
    "package ifneeded registry 1.1.5 {load {} registry}\n"
#endif
"}\n"
"tclKitInit"
;

static const char initScript[] =
"if {[file isfile [file join [info nameofexe] main.tcl]]} {\n"







|
|







95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
    "} else {\n"
        "set f [open setup.tcl]\n"
        "set s [read $f]\n"
        "close $f\n"
    "}\n"
    "uplevel #0 $s\n"
#ifdef _WIN32
    "catch {load {} dde}\n"
    "catch {load {} registry}\n"
#endif
"}\n"
"tclKitInit"
;

static const char initScript[] =
"if {[file isfile [file join [info nameofexe] main.tcl]]} {\n"