diff options
author | Martin Blapp <mbr@FreeBSD.org> | 2003-04-16 17:26:59 +0000 |
---|---|---|
committer | Martin Blapp <mbr@FreeBSD.org> | 2003-04-16 17:26:59 +0000 |
commit | 437ef8f96a05aa99fe7d2e40a2cfd8ec44f46787 (patch) | |
tree | f934c711a420b76206de384c6157e10acf2847d7 | |
parent | Spell PKGNAMESUFFIX with one 'E'. (diff) |
Work around segfault on FreeBSD Kernels kern.maxfiles >= 16384
Reviewed by: no answer from maintainer
Notes
Notes:
svn path=/head/; revision=79094
-rw-r--r-- | sysutils/nwclient602/Makefile | 2 | ||||
-rw-r--r-- | sysutils/nwclient602/files/patch-networker.sh | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/sysutils/nwclient602/Makefile b/sysutils/nwclient602/Makefile index 4d04eb8b3a10..af413ecf9798 100644 --- a/sysutils/nwclient602/Makefile +++ b/sysutils/nwclient602/Makefile @@ -7,7 +7,7 @@ PORTNAME= nwclient PORTVERSION= 6.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= ftp://ftp.feral.com/pub/networker/freebsd/freebsd_40/ DISTNAME= nwclient-${PORTVERSION}-freebsd-${ARCH} diff --git a/sysutils/nwclient602/files/patch-networker.sh b/sysutils/nwclient602/files/patch-networker.sh new file mode 100644 index 000000000000..02fc0e9aaa19 --- /dev/null +++ b/sysutils/nwclient602/files/patch-networker.sh @@ -0,0 +1,10 @@ +--- networker.sh.orig Sun Apr 23 07:58:18 2000 ++++ networker.sh Wed Apr 16 00:25:47 2003 +@@ -3,6 +3,7 @@ + # Copyright (c) 2000, by Feral Software + # All Rights Reserved + # ++ulimit -n 5000 + ROOTDIR= + NSRDIR=${ROOTDIR}/nsr + if [ -x ${NSRDIR}/bin/nsrexecd ]; |