summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authornagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-08-29 05:12:00 +0000
committernagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-08-29 05:12:00 +0000
commit5272c137f5808b5319775461063987e8f2544048 (patch)
tree919e32c4019eb6deb8ee04ac993ce5529bc2b25d /ext
parent98662367eb5f7f501b274f0a6d291eb67550c773 (diff)
* ext/tcltklib/tcltklib.c: compile error on bcc32 [ruby-dev:24081]
* ext/tk/lib/multi-tk.rb: MultiTkIp#eval_string does not work git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6830 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/tcltklib/tcltklib.c4
-rw-r--r--ext/tk/lib/multi-tk.rb2
2 files changed, 4 insertions, 2 deletions
diff --git a/ext/tcltklib/tcltklib.c b/ext/tcltklib/tcltklib.c
index 2792e53388..0217ab8feb 100644
--- a/ext/tcltklib/tcltklib.c
+++ b/ext/tcltklib/tcltklib.c
@@ -97,7 +97,8 @@ static VALUE ip_invoke _((int, VALUE*, VALUE));
/* from tkAppInit.c */
-#if !defined __MINGW32__
+#if TCL_MAJOR_VERSION < 8 || (TCL_MAJOR_VERSION == 8 && TCL_MINOR_VERSION < 4)
+# if !defined __MINGW32__ && !defined __BORLANDC__
/*
* The following variable is a special hack that is needed in order for
* Sun shared libraries to be used for Tcl.
@@ -105,6 +106,7 @@ static VALUE ip_invoke _((int, VALUE*, VALUE));
extern int matherr();
int *tclDummyMathPtr = (int *) matherr;
+# endif
#endif
/*---- module TclTkLib ----*/
diff --git a/ext/tk/lib/multi-tk.rb b/ext/tk/lib/multi-tk.rb
index 7957e0b3c7..2a471ca01d 100644
--- a/ext/tk/lib/multi-tk.rb
+++ b/ext/tk/lib/multi-tk.rb
@@ -857,7 +857,7 @@ class MultiTkIp
if cmd.kind_of?(String)
xcmd = cmd
xargs = args
- cmd = proc{ TkComm._get_eval_string(TkUtil.eval_cmd(xcmd, *xargs)) }
+ cmd = proc{ TkComm._get_eval_string(eval(xcmd, *xargs)) }
args = []
end