diff options
author | bsam <bsam@FreeBSD.org> | 2007-03-09 22:17:07 +0800 |
---|---|---|
committer | bsam <bsam@FreeBSD.org> | 2007-03-09 22:17:07 +0800 |
commit | 77225c1d53967f1f52fd4b3a42f0302faef45666 (patch) | |
tree | 14286d96a4bd8084ca44e98be3c422991dc17957 /misc | |
parent | fd2c850fd37c4fe7dd842b1411cef94e78ac17f0 (diff) | |
download | freebsd-ports-gnome-77225c1d53967f1f52fd4b3a42f0302faef45666.tar.gz freebsd-ports-gnome-77225c1d53967f1f52fd4b3a42f0302faef45666.tar.zst freebsd-ports-gnome-77225c1d53967f1f52fd4b3a42f0302faef45666.zip |
. permit using buffers upto 64MB; [1]
. bump PORTREVISION.
PR: 106806 [1]
Submitted by: Eugene Grosbein <eugen at grosbein.pp.ru> [1]
Approved by: joerg (maintainer timeout 10 weeks) [1]
Discussed at: freebsd-hackers@, freebsd-ports@ [1]
Diffstat (limited to 'misc')
-rw-r--r-- | misc/team/Makefile | 2 | ||||
-rw-r--r-- | misc/team/files/patch-b | 11 |
2 files changed, 9 insertions, 4 deletions
diff --git a/misc/team/Makefile b/misc/team/Makefile index 5a87ea4a6c0c..7cc10c613d18 100644 --- a/misc/team/Makefile +++ b/misc/team/Makefile @@ -7,7 +7,7 @@ PORTNAME= team PORTVERSION= 3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= joerg diff --git a/misc/team/files/patch-b b/misc/team/files/patch-b index c873695a46a0..ec41a8dca31b 100644 --- a/misc/team/files/patch-b +++ b/misc/team/files/patch-b @@ -1,6 +1,6 @@ ---- team.c.orig Sat Jul 1 17:33:24 1995 -+++ team.c Mon Sep 1 16:13:15 2003 -@@ -58,8 +58,10 @@ +--- team.c.orig Sat Jul 1 23:33:24 1995 ++++ team.c Sat Dec 16 18:34:07 2006 +@@ -58,12 +58,14 @@ upstream to it, which has much the same effect. */ @@ -13,6 +13,11 @@ #define TeamLBUFSZ (64) /* Low buffer size */ #define TeamDBUFSZ (60*512) /* Default buffer size */ +-#define TeamHBUFSZ (1L<<20) /* High buffer size */ ++#define TeamHBUFSZ (1L<<26) /* High buffer size */ + + #define TeamDTEAMSZ 4 /* Default # of processes */ + #define TeamHTEAMSZ 16 /* High # of processes */ @@ -84,11 +86,23 @@ #include <sys/file.h> #include <sys/stat.h> |