diff options
author | obrien <obrien@FreeBSD.org> | 1997-04-25 03:37:59 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1997-04-25 03:37:59 +0800 |
commit | b8cbd48816bd0bb49a54965ad83b44daa19a8f00 (patch) | |
tree | a5d13efa54c90001408e9b408d434645e77d5714 | |
parent | 676bcc5e8abec1758364c242395c324b9a4340b2 (diff) | |
download | freebsd-ports-gnome-b8cbd48816bd0bb49a54965ad83b44daa19a8f00.tar.gz freebsd-ports-gnome-b8cbd48816bd0bb49a54965ad83b44daa19a8f00.tar.zst freebsd-ports-gnome-b8cbd48816bd0bb49a54965ad83b44daa19a8f00.zip |
Author applied our 4.4BSD patches and released a new version.
Submitted by: John DiMarco <jdd@cs.toronto.edu>
-rw-r--r-- | sysutils/tcplist/Makefile | 4 | ||||
-rw-r--r-- | sysutils/tcplist/distinfo | 2 | ||||
-rw-r--r-- | sysutils/tcplist/files/patch-02 | 28 |
3 files changed, 3 insertions, 31 deletions
diff --git a/sysutils/tcplist/Makefile b/sysutils/tcplist/Makefile index 22fd24a81f35..ca185279ce4d 100644 --- a/sysutils/tcplist/Makefile +++ b/sysutils/tcplist/Makefile @@ -4,10 +4,10 @@ # Date created: Mon Apr 14, 1997 # Whom: David O'Brien (obrien@FreeBSD.org) # -# $Id$ +# $Id: Makefile,v 1.2 1997/04/24 16:31:42 obrien Exp $ # -DISTNAME= tcplist-2.1 +DISTNAME= tcplist-2.2 CATEGORIES= sysutils net MASTER_SITES= ftp://ftp.cdf.toronto.edu/pub/tcplist/ \ ftp://ftp.ece.uc.edu/pub/sun-faq/FAQs/mirrors/ftp.cdf.toronto.edu/tcplist/ \ diff --git a/sysutils/tcplist/distinfo b/sysutils/tcplist/distinfo index 578daea7f285..5ff45f005c49 100644 --- a/sysutils/tcplist/distinfo +++ b/sysutils/tcplist/distinfo @@ -1 +1 @@ -MD5 (tcplist-2.1.shar.gz) = 1563b70141821d06bc17e5e3c2856b87 +MD5 (tcplist-2.2.shar.gz) = 3e6c9da0b6037c779ec1da71aa61887b diff --git a/sysutils/tcplist/files/patch-02 b/sysutils/tcplist/files/patch-02 deleted file mode 100644 index e5daecc457ce..000000000000 --- a/sysutils/tcplist/files/patch-02 +++ /dev/null @@ -1,28 +0,0 @@ ---- tcplist.c.orig Tue Apr 15 00:28:29 1997 -+++ tcplist.c Tue Apr 15 00:31:40 1997 -@@ -37,6 +37,10 @@ - #include <arpa/inet.h> - #include <netdb.h> - -+#if ((defined(__unix__) || defined(unix)) && !defined(USG)) -+#include <sys/param.h> -+#endif -+ - #include "utils.h" - #include "tcplist.h" - -@@ -346,10 +350,14 @@ - - if(verbose) printf("Connecting to remote hosts.\n"); - -+#if (defined(BSD) && (BSD >= 199103)) -+ maxfd=getdtablesize(); /* could also use getrlimit(2) here... */ -+#else - if(0>(maxfd=ulimit(4,0l))){ - perror("ulimit"); - exit(2); - } -+#endif - - /* waltz through the connections in the hostlist, setting idents */ - /* to NULL */ |