summaryrefslogtreecommitdiffstats
path: root/net/ripe-whois
diff options
context:
space:
mode:
authorvs <vs@FreeBSD.org>2004-08-06 08:57:41 +0000
committervs <vs@FreeBSD.org>2004-08-06 08:57:41 +0000
commit8b799ba23fedada77b65b391c7231b8cacacc31f (patch)
tree79550039b8e19338b4e62f29a3c86b87156f6013 /net/ripe-whois
parent4be4082cc7072e08926c44031d0ebed95fc7977e (diff)
downloadFreeBSD-ports-8b799ba23fedada77b65b391c7231b8cacacc31f.zip
FreeBSD-ports-8b799ba23fedada77b65b391c7231b8cacacc31f.tar.gz
Fix running w/o INET6
Closes PR: ports/69941 Submitted by: Igor Karpov Patch by: Lars Erik Gullerud (maintainer)
Diffstat (limited to 'net/ripe-whois')
-rw-r--r--net/ripe-whois/Makefile1
-rw-r--r--net/ripe-whois/files/patch-whois3.c16
2 files changed, 17 insertions, 0 deletions
diff --git a/net/ripe-whois/Makefile b/net/ripe-whois/Makefile
index a93e2b8..dba15c3 100644
--- a/net/ripe-whois/Makefile
+++ b/net/ripe-whois/Makefile
@@ -7,6 +7,7 @@
PORTNAME= ripe-whois
PORTVERSION= 3.1.1v6
+PORTREVISION= 1
CATEGORIES= net ipv6
MASTER_SITES= ftp://ftp.ripe.net/tools/
diff --git a/net/ripe-whois/files/patch-whois3.c b/net/ripe-whois/files/patch-whois3.c
new file mode 100644
index 0000000..694f1a4
--- /dev/null
+++ b/net/ripe-whois/files/patch-whois3.c
@@ -0,0 +1,16 @@
+--- whois3.c.orig Thu Aug 5 16:41:00 2004
++++ whois3.c Thu Aug 5 16:59:16 2004
+@@ -130,7 +130,12 @@
+ /* create the socket */
+ fd = socket(dest.ss_family, SOCK_STREAM, 0);
+ if (fd < 0)
+- fatal("cannot create the socket: %s", strerror(errno));
++ {
++ if (errno == EPROTONOSUPPORT)
++ continue;
++ else
++ fatal("cannot create the socket: %s", strerror(errno));
++ }
+
+ /* perform the connection */
+ err = connect(fd, (struct sockaddr *) &dest, destlen);
OpenPOWER on IntegriCloud