[Starkit] tclkit sans metakit
Tom Poindexter
tpoindex at nyx.net
Wed Sep 14 10:08:09 CEST 2005
Slight correction to my version of genkit I posted a few days ago,
to enable static linking of libstdc++.
at line 426, I fumbled the code while playing around:
was posted as:
# special case configs, make the 'dyn' versions of Z stuff same as non-dyn
if {$Z(tkdynconfig) ne ""} {set Z(tkdynconfig) $Z(tkconfig)}
if {$Z(itcldynconfig) ne ""} {set Z(itcldynconfig) $Z(itclconfig)}
if {$Z(tkdynmakesuff) ne ""} {set Z(tkdynmakesuff) $Z(tkmakesuff)}
if {$Z(itcldynmakesuff) ne ""} {set Z(itcldynmakesuff) $Z(itclmakesuff)}
should be:
# special case configs, make the 'dyn' versions of Z stuff same as non-dyn
if {$Z(tkdynconfig) eq ""} {set Z(tkdynconfig) $Z(tkconfig)}
if {$Z(itcldynconfig) eq ""} {set Z(itcldynconfig) $Z(itclconfig)}
if {$Z(tkdynmakesuff) eq ""} {set Z(tkdynmakesuff) $Z(tkmakesuff)}
if {$Z(itcldynmakesuff) eq ""} {set Z(itcldynmakesuff) $Z(itclmakesuff)}
I am curious if anyone else has given my genkit a try, especially on platforms
other than Linux.
--
Tom Poindexter
tpoindex at nyx.net
http://www.nyx.net/~tpoindex/
More information about the Starkit
mailing list