1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/tk/extconf.rb: --with-{tcl,tk}-dir doesn't work.[ruby-dev:38782]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24111 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagai 2009-07-14 21:29:49 +00:00
parent 0845f5c165
commit 3272d17d0c
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Wed Jul 15 06:21:50 2009 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/extconf.rb: --with-{tcl,tk}-dir doesn't work.[ruby-dev:38782]
Wed Jul 15 04:22:54 2009 NARUSE, Yui <naruse@ruby-lang.org>
* test/cgi/test_cgi_multipart.rb (CGIMultipartTest#_prepare):

View file

@ -1173,8 +1173,8 @@ if TkLib_Config["tcltk-framework"]
end
# search Tcl/Tk libraries
tk_idir, tk_ldir = dir_config("tk") if with_config('tk')
tcl_idir, tcl_ldir = dir_config("tcl") if with_config('tcl')
tk_idir, tk_ldir = dir_config("tk")
tcl_idir, tcl_ldir = dir_config("tcl")
tk_ldir2 = with_config("tk-lib")
tcl_ldir2 = with_config("tcl-lib")