summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/tk/extconf.rb2
-rw-r--r--ext/tk/tcltklib.c4
2 files changed, 6 insertions, 0 deletions
diff --git a/ext/tk/extconf.rb b/ext/tk/extconf.rb
index cb7621fbd4..4311aecce0 100644
--- a/ext/tk/extconf.rb
+++ b/ext/tk/extconf.rb
@@ -322,6 +322,8 @@ if have_header("tcl.h") && have_header("tk.h") &&
$INSTALLFILES ||= []
$INSTALLFILES << ["lib/tkextlib/SUPPORT_STATUS", "$(RUBYLIBDIR)", "lib"]
+ have_func("rb_hash_lookup", "ruby.h")
+
# create
$defs << %[-DRUBY_VERSION=\\"#{RUBY_VERSION}\\"]
$defs << %[-DRUBY_RELEASE_DATE=\\"#{RUBY_RELEASE_DATE}\\"]
diff --git a/ext/tk/tcltklib.c b/ext/tk/tcltklib.c
index 18e0fd76fb..51e2b65198 100644
--- a/ext/tk/tcltklib.c
+++ b/ext/tk/tcltklib.c
@@ -189,6 +189,10 @@ static Tcl_ObjType *Tcl_ObjType_String;
#endif
#endif
+#ifndef HAVE_RB_HASH_LOOKUP
+#define rb_hash_lookup rb_hash_aref
+#endif
+
/* safe Tcl_Eval and Tcl_GlobalEval */
static int
#ifdef RUBY_VM