summaryrefslogtreecommitdiff
path: root/lang/ruby200-base/patches/patch-ext_tk_extconf.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lang/ruby200-base/patches/patch-ext_tk_extconf.rb')
-rw-r--r--lang/ruby200-base/patches/patch-ext_tk_extconf.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/lang/ruby200-base/patches/patch-ext_tk_extconf.rb b/lang/ruby200-base/patches/patch-ext_tk_extconf.rb
deleted file mode 100644
index 69a8aab26a4..00000000000
--- a/lang/ruby200-base/patches/patch-ext_tk_extconf.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ext_tk_extconf.rb,v 1.1 2013/07/21 02:32:58 taca Exp $
-
-* Fix trivial bug fix.
-
---- ext/tk/extconf.rb.orig 2013-06-17 15:38:49.000000000 +0000
-+++ ext/tk/extconf.rb
-@@ -315,7 +315,7 @@ def find_macosx_framework
- paths.map{|dir| dir.strip.chomp('/')}.each{|dir|
- next unless File.exist?(File.join(dir, "Tcl.framework", "Headers"))
- next unless File.directory?(tcldir = File.join(dir, "Tcl.framework"))
-- next unless File.exist?(File.join(dir, "Tk.framework"), "Headers")
-+ next unless File.exist?(File.join(dir, "Tk.framework", "Headers"))
- next unless File.directory?(tkdir = File.join(dir, "Tk.framework"))
- TkLib_Config["tcltk-framework"] = dir
- return [tcldir, tkdir]