From 1e1b5cdd25c87b393658e78a4cfd799ef6caf6da Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 3 Oct 2000 08:56:50 +0000 Subject: matz git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@987 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/tcltklib/extconf.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ext') diff --git a/ext/tcltklib/extconf.rb b/ext/tcltklib/extconf.rb index c958755c6e..c9082e0a7f 100644 --- a/ext/tcltklib/extconf.rb +++ b/ext/tcltklib/extconf.rb @@ -24,12 +24,14 @@ def find_tcl(tcllib, stubs) find_library(tcllib, func, *paths) elsif RUBY_PLATFORM =~ /mswin32|mingw|cygwin/ find_library("tcl", func, *paths) or + find_library("tcl84", func, *paths) or find_library("tcl83", func, *paths) or find_library("tcl82", func, *paths) or find_library("tcl80", func, *paths) or find_library("tcl76", func, *paths) else find_library("tcl", func, *paths) or + find_library("tcl8.4", func, *paths) or find_library("tcl8.3", func, *paths) or find_library("tcl8.2", func, *paths) or find_library("tcl8.0", func, *paths) or @@ -44,12 +46,14 @@ def find_tk(tklib, stubs) find_library(tklib, func, *paths) elsif RUBY_PLATFORM =~ /mswin32|mingw|cygwin/ find_library("tk", func, *paths) or + find_library("tk84", func, *paths) or find_library("tk83", func, *paths) or find_library("tk82", func, *paths) or find_library("tk80", func, *paths) or find_library("tk42", func, *paths) else find_library("tk", func, *paths) or + find_library("tk8.4", func, *paths) or find_library("tk8.3", func, *paths) or find_library("tk8.2", func, *paths) or find_library("tk8.0", func, *paths) or -- cgit v1.2.3