diff options
author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-05-24 08:33:45 +0000 |
---|---|---|
committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-05-24 08:33:45 +0000 |
commit | 0427ff47360c2d169d95f8430bfb9d61a2f29950 (patch) | |
tree | 4ff34ac8e337442d0652ad7dc678178a2b45c43b /ext/tcltklib/README.1st | |
parent | c951f2f28e005d23214aba3f9a89998541ad7eb0 (diff) |
* ext/tcltklib/extconf.rb: add --enable-tcl-thread configure option and
--with-tclConfig-file=<path of tclConfig.sh> configure option
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6396 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tcltklib/README.1st')
-rw-r--r-- | ext/tcltklib/README.1st | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/ext/tcltklib/README.1st b/ext/tcltklib/README.1st index 48e3a2b668..84a7826fdb 100644 --- a/ext/tcltklib/README.1st +++ b/ext/tcltklib/README.1st @@ -35,7 +35,19 @@ When your Tcl/Tk libraries are compiled with "pthread support", Ruby/Tk may cause "Hang-up" or "Segmentation Fault" frequently. If you have such a trouble, please try to use the '--enable-pthread' option of the 'configure' command and re-compile Ruby sources. -It may help you to avoid this trouble. +It may help you to avoid this trouble. The following configure +options may be useful. + + --enable-tcl-thread/--disable-tcl-thread + --with-tclConfig-file=<path of 'tclConfig.sh'> + +It is not need that 'tclConfig.sh' is a normal Tcl/Tk's tclConfig.sh. +But the file is expected to include the line "TCL_THREADS=0" or "...=1". +When no "TCL_THREADS=?" line, if Tcl version is 7.x or 8.0 which is +given by "TCL_MAJOR_VERSION=?" line and "TCL_MINOR_VERSION=?" line, +then --disable-tcl-thread is expected. Else, ignore the 'tclConfig.sh'. +If --enable-tcl-thread or --disable-tcl-thread option is given, then +--with-tclConfig-file option is ignored. ========================================================== Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp) |