summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoritojun <itojun@pkgsrc.org>2000-03-18 09:45:02 +0000
committeritojun <itojun@pkgsrc.org>2000-03-18 09:45:02 +0000
commitd8f56f78b8bc4c8e4870e328440b938128b34163 (patch)
tree77c84d491e904216ddcd627a8b77ee57060ed12b
parent9e2063e78df1d9144db98e7f36f285bd79f8f486 (diff)
downloadpkgsrc-d8f56f78b8bc4c8e4870e328440b938128b34163.tar.gz
upgrade to 4.4S. try to address PR 9630 (compilation fails on IPv4-only?
kernel). 4.4R -> 4.4S changes: - properly fix the terrible bug in send_text().
-rw-r--r--net/ircII/Makefile10
-rw-r--r--net/ircII/files/md54
-rw-r--r--net/ircII/files/patch-sum3
-rw-r--r--net/ircII/patches/patch-ad15
4 files changed, 25 insertions, 7 deletions
diff --git a/net/ircII/Makefile b/net/ircII/Makefile
index df438bd6ae6..2707245ad34 100644
--- a/net/ircII/Makefile
+++ b/net/ircII/Makefile
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.27 2000/03/16 15:32:50 mrg Exp $
+# $NetBSD: Makefile,v 1.28 2000/03/18 09:45:02 itojun Exp $
# FreeBSD Id: Makefile,v 1.14 1997/05/14 10:35:13 torstenb Exp
#
-DISTNAME= ircii-4.4R
-PKGNAME= ircII-4.4R
-WRKSRC= ${WRKDIR}/ircii-4.4R
+DISTNAME= ircii-4.4S
+PKGNAME= ircII-4.4S
+WRKSRC= ${WRKDIR}/ircii-4.4S
CATEGORIES= net
MASTER_SITES= ftp://ircftp.au.eterna.com.au/pub/ircII/
@@ -17,6 +17,8 @@ GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-default-server=${DEFAULT_IRC_SERVER}
.endif
+BUILD_DEFS+= USE_INET6
+
# Note: this pkg auto-detects IPv6 without regarding USE_INET6.
# (Leave the above line in to still get it into the README-IPv6.html!)
diff --git a/net/ircII/files/md5 b/net/ircII/files/md5
index 780aa83ac1c..dcea39e7da9 100644
--- a/net/ircII/files/md5
+++ b/net/ircII/files/md5
@@ -1,3 +1,3 @@
-$NetBSD: md5,v 1.10 2000/03/16 15:32:51 mrg Exp $
+$NetBSD: md5,v 1.11 2000/03/18 09:45:02 itojun Exp $
-MD5 (ircii-4.4R.tar.gz) = 520ac1d352dde775196bf0cbd275b1cb
+MD5 (ircii-4.4S.tar.gz) = 26a5c15a3a2f0abfc07a8b64e4553434
diff --git a/net/ircII/files/patch-sum b/net/ircII/files/patch-sum
index 1c16775f54f..dd87d490c4d 100644
--- a/net/ircII/files/patch-sum
+++ b/net/ircII/files/patch-sum
@@ -1,3 +1,4 @@
-$NetBSD: patch-sum,v 1.13 2000/03/16 15:03:44 mrg Exp $
+$NetBSD: patch-sum,v 1.14 2000/03/18 09:45:02 itojun Exp $
MD5 (patch-ac) = a1297cc8a4c19898983e2420c8307160
+MD5 (patch-ad) = cbe93c8a97c8480f8e3d8cc4ed38eba1
diff --git a/net/ircII/patches/patch-ad b/net/ircII/patches/patch-ad
new file mode 100644
index 00000000000..690ce16f9d1
--- /dev/null
+++ b/net/ircII/patches/patch-ad
@@ -0,0 +1,15 @@
+$NetBSD: patch-ad,v 1.5 2000/03/18 09:45:02 itojun Exp $
+
+--- configure.in- Sat Mar 18 18:19:09 2000
++++ configure.in Sat Mar 18 18:19:25 2000
+@@ -1128,7 +1128,9 @@
+ }
+ }
+
+- if (inet6 != 2 || inet4 != 2)
++ if (inet4 != 0 && inet4 != 2)
++ goto bad;
++ if (inet6 != 0 && inet6 != 2)
+ goto bad;
+
+ if (aitop)