diff options
author | mbr <mbr@FreeBSD.org> | 2003-04-17 01:26:59 +0800 |
---|---|---|
committer | mbr <mbr@FreeBSD.org> | 2003-04-17 01:26:59 +0800 |
commit | 14cb94532118aa1b34fe913c3cfc849ad25c4e2b (patch) | |
tree | 16c676c887183c4311f7138ec288281c3b2f197e | |
parent | 11d1d9c723af2d74ee3074c0aa7a7ffa5ead57d0 (diff) | |
download | freebsd-ports-gnome-14cb94532118aa1b34fe913c3cfc849ad25c4e2b.tar.gz freebsd-ports-gnome-14cb94532118aa1b34fe913c3cfc849ad25c4e2b.tar.zst freebsd-ports-gnome-14cb94532118aa1b34fe913c3cfc849ad25c4e2b.zip |
Work around segfault on FreeBSD Kernels kern.maxfiles >= 16384
Reviewed by: no answer from maintainer
-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 ]; |