22 lines
910 B
Plaintext
22 lines
910 B
Plaintext
$OpenBSD: patch-findtcltk,v 1.4 2001/02/21 17:17:18 espie Exp $
|
|
--- ext/tcltklib/extconf.rb.orig Tue Oct 3 09:48:51 2000
|
|
+++ ext/tcltklib/extconf.rb Wed Feb 21 17:24:27 2001
|
|
@@ -31,6 +31,8 @@ def find_tcl(tcllib, stubs)
|
|
find_library("tcl76", func, *paths)
|
|
else
|
|
find_library("tcl", func, *paths) or
|
|
+ find_library("tcl84", func, *paths) or
|
|
+ find_library("tcl83", func, *paths) or
|
|
find_library("tcl8.4", func, *paths) or
|
|
find_library("tcl8.3", func, *paths) or
|
|
find_library("tcl8.2", func, *paths) or
|
|
@@ -53,6 +55,8 @@ def find_tk(tklib, stubs)
|
|
find_library("tk42", func, *paths)
|
|
else
|
|
find_library("tk", func, *paths) or
|
|
+ find_library("tk84", func, *paths) or
|
|
+ find_library("tk83", func, *paths) or
|
|
find_library("tk8.4", func, *paths) or
|
|
find_library("tk8.3", func, *paths) or
|
|
find_library("tk8.2", func, *paths) or
|