diff options
author | welch <welch> | 1998-08-06 15:53:21 (GMT) |
---|---|---|
committer | welch <welch> | 1998-08-06 15:53:21 (GMT) |
commit | 6dafd1a8bb28bc880897233294000a639a9893e7 (patch) | |
tree | 89e54279083d70fc674d001956aa9366927ae982 | |
parent | d08e382d56076c1a12ec4137c3a89bd25dff8b39 (diff) | |
download | tk-6dafd1a8bb28bc880897233294000a639a9893e7.zip tk-6dafd1a8bb28bc880897233294000a639a9893e7.tar.gz tk-6dafd1a8bb28bc880897233294000a639a9893e7.tar.bz2 |
Changed this to use tcl_findLibrary
-rw-r--r-- | generic/tkInitScript.h | 38 |
1 files changed, 2 insertions, 36 deletions
diff --git a/generic/tkInitScript.h b/generic/tkInitScript.h index 0bce7ac..8087cef 100644 --- a/generic/tkInitScript.h +++ b/generic/tkInitScript.h @@ -47,44 +47,10 @@ static char initScript[] = "if {[info proc tkInit]==\"\"} {\n\ proc tkInit {} {\n\ - global tk_library tk_version tk_patchLevel env errorInfo\n\ + global tk_library tk_version tk_patchLevel\n\ rename tkInit {}\n\ - set errors {}\n\ - set dirs {}\n\ - if {[info exists tk_library]} {\n\ - lappend dirs $tk_library\n\ - } else {\n\ - if {[info exists env(TK_LIBRARY)]} {\n\ - lappend dirs $env(TK_LIBRARY)\n\ - }\n\ - lappend dirs [file join [file dirname [info library]] tk$tk_version]\n\ - set parentDir [file dirname [file dirname [info nameofexecutable]]]\n\ - lappend dirs [file join $parentDir lib tk$tk_version]\n\ - lappend dirs [file join $parentDir library]\n\ - if [string match {*[ab]*} $tk_patchLevel] {\n\ - set ver $tk_patchLevel\n\ - } else {\n\ - set ver $tk_version\n\ - }\n\ - lappend dirs [file join [file dirname $parentDir] tk$ver/library]\n\ + tcl_findLibrary tk $tk_version $tk_patchLevel tk.tcl TK_LIBRARY tk_library\n\ }\n\ - foreach i $dirs {\n\ - set tk_library $i\n\ - set tkfile [file join $i tk.tcl]\n\ - if {[interp issafe] || [file exists $tkfile]} {\n\ - if {![catch {uplevel #0 [list source $tkfile]} msg]} {\n\ - return\n\ - } else {\n\ - append errors \"$tkfile: $msg\n$errorInfo\n\"\n\ - }\n\ - }\n\ - }\n\ - set msg \"Can't find a usable tk.tcl in the following directories: \n\"\n\ - append msg \" $dirs\n\n\"\n\ - append msg \"$errors\n\n\"\n\ - append msg \"This probably means that Tk wasn't installed properly.\n\"\n\ - error $msg\n\ - }\n\ }\n\ tkInit"; |