diff options
author | sakamoto <sakamoto> | 2000-04-18 10:46:08 +0000 |
---|---|---|
committer | sakamoto <sakamoto> | 2000-04-18 10:46:08 +0000 |
commit | 576cbe0cbd9310adbc350bb8f8f4af3a3d5feb1c (patch) | |
tree | 01bf8b0074d2ef00130358e81111ee18db3be341 /lang/ruby/patches/patch-ad | |
parent | dee9fba1bacd042c2f60904f8321ad8b8fe84445 (diff) | |
download | pkgsrc-576cbe0cbd9310adbc350bb8f8f4af3a3d5feb1c.tar.gz |
Update ruby to 1.4.4
Changes: Several bug fixes. Compiles out of the box on Alpha.
Diffstat (limited to 'lang/ruby/patches/patch-ad')
-rw-r--r-- | lang/ruby/patches/patch-ad | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/lang/ruby/patches/patch-ad b/lang/ruby/patches/patch-ad deleted file mode 100644 index fb913db3135..00000000000 --- a/lang/ruby/patches/patch-ad +++ /dev/null @@ -1,29 +0,0 @@ -$NetBSD: patch-ad,v 1.1 2000/01/22 13:31:46 itojun Exp $ - ---- ext/socket/extconf.rb- Thu Jan 20 02:50:06 2000 -+++ ext/socket/extconf.rb Thu Jan 20 02:52:52 2000 -@@ -41,6 +41,7 @@ - $ipv6type = nil - $ipv6lib = nil - $ipv6libdir = nil -+$ipv6trylibc = nil - if $ipv6 - if egrep_cpp("yes", <<EOF) - #include <netinet/in.h> -@@ -59,6 +60,7 @@ - $ipv6type = "kame" - $ipv6lib="inet6" - $ipv6libdir="/usr/local/v6/lib" -+ $ipv6trylibc=true - $CFLAGS="-DINET6 "+$CFLAGS - elsif File.directory? "/usr/inet6" - $ipv6type = "linux" -@@ -100,7 +102,7 @@ - if $ipv6lib - if File.directory? $ipv6libdir and File.exist? "#{$ipv6libdir}/lib#{$ipv6lib}.a" - $LOCAL_LIBS = " -L#$ipv6libdir -l#$ipv6lib" -- else -+ elsif !$ipv6trylibc - print <<EOS - - Fatal: no #$ipv6lib library found. cannot continue. |