aboutsummaryrefslogtreecommitdiff
path: root/misc/team
diff options
context:
space:
mode:
authorBoris Samorodov <bsam@FreeBSD.org>2007-03-09 14:17:07 +0000
committerBoris Samorodov <bsam@FreeBSD.org>2007-03-09 14:17:07 +0000
commit225a5a7cc1c898b4aae6d9f308c6a384041e6718 (patch)
tree44feccb9db673122c58e335c5cd76ddcdecb5196 /misc/team
parente205474393e8ecaa6fb63ad94e4fff6f39228ef3 (diff)
downloadports-225a5a7cc1c898b4aae6d9f308c6a384041e6718.tar.gz
ports-225a5a7cc1c898b4aae6d9f308c6a384041e6718.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]
Notes
Notes: svn path=/head/; revision=187018
Diffstat (limited to 'misc/team')
-rw-r--r--misc/team/Makefile2
-rw-r--r--misc/team/files/patch-b11
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>