57a1b75287
mkstemp patch no longer needed, as the new mktemp usage is safe.
20 lines
799 B
Plaintext
20 lines
799 B
Plaintext
$OpenBSD: patch-findtcltk,v 1.3 2000/09/05 13:56:25 espie Exp $
|
|
--- ext/tcltklib/extconf.rb.orig Tue May 30 06:10:31 2000
|
|
+++ ext/tcltklib/extconf.rb Tue Sep 5 15:26:21 2000
|
|
@@ -23,6 +23,7 @@ def find_tcl(tcllib)
|
|
find_library(tcllib, func, *paths)
|
|
else
|
|
find_library("tcl", func, *paths) or
|
|
+ find_library("tcl83", func, *paths) or
|
|
find_library("tcl8.3", func, *paths) or
|
|
find_library("tcl8.2", func, *paths) or
|
|
find_library("tcl8.0", func, *paths) or
|
|
@@ -37,6 +38,7 @@ def find_tk(tklib)
|
|
find_library(tklib, func, *paths)
|
|
else
|
|
find_library("tk", func, *paths) or
|
|
+ find_library("tk83", func, *paths) or
|
|
find_library("tk8.3", func, *paths) or
|
|
find_library("tk8.2", func, *paths) or
|
|
find_library("tk8.0", func, *paths) or
|