Re: kitgen with packages - KBS
"rene" <[email protected]>
| Newsgroups | gmane.comp.lang.tcl.starkit |
|---|---|
| Message-ID | <[email protected]> |
Hi,
Jean-Claude Wippler schrieb:
> To use kbs, you need to first configure and build a tclkit-cli (I've
> only tried it with 8.4 so far). Here's what I use:
> sh config 8.4/base-kbs cli gui
> cd 8.4/base-kbs
> make
I tried with 8.5 and found:
- thread is missing in 8.x directory after "make tars" -> I used the
old one
- tk does not compile because of missing generic/ttk directory -> I
used the HEAD version from tcl and tk
- tk does not link because of missing "-lXft" -> added to Linux switch
GUI_OPT=..
Extension building follows later.
Then I found a bug with german "Umlauts". Try the following script:
package req Tk
proc main {} {
button .b -text "abc 123 üöä ÜÖÄ #"
grid .b
}
main
After "sdx qwrap test.tcl" I see the "Umlaut" with older tclkit
version (8.4.13 and 8.5a4 from the download matrix)
but I get garbage with the news "kitgen" builds :(
"sdx.kit" version doesn´t matter.
rene