diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1999-11-04 08:39:57 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1999-11-04 08:39:57 +0000 |
commit | fbf1b1ead9323a7f5909f483c137c46f65d3f68c (patch) | |
tree | 9976842c343a888dc34f5cc53ecedc5abb358669 /ext/tcltklib/extconf.rb | |
parent | 9868574ae43c0fdc49a9d3fc0431bb0613507bfa (diff) | |
download | ruby-fbf1b1ead9323a7f5909f483c137c46f65d3f68c.tar.gz ruby-fbf1b1ead9323a7f5909f483c137c46f65d3f68c.tar.xz ruby-fbf1b1ead9323a7f5909f483c137c46f65d3f68c.zip |
19991104
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@557 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tcltklib/extconf.rb')
-rw-r--r-- | ext/tcltklib/extconf.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/tcltklib/extconf.rb b/ext/tcltklib/extconf.rb index e1086855b..713cc811e 100644 --- a/ext/tcltklib/extconf.rb +++ b/ext/tcltklib/extconf.rb @@ -21,6 +21,7 @@ def find_tcl(tcllib) find_library(tcllib, func, *paths) else find_library("tcl", func, *paths) or + find_library("tcl8.2", func, *paths) or find_library("tcl8.0", func, *paths) or find_library("tcl7.6", func, *paths) end @@ -33,6 +34,7 @@ def find_tk(tklib) find_library(tklib, func, *paths) else find_library("tk", func, *paths) or + find_library("tk8.2", func, *paths) or find_library("tk8.0", func, *paths) or find_library("tk4.2", func, *paths) end |