summaryrefslogtreecommitdiff
path: root/devel/distcc
diff options
context:
space:
mode:
authormartti <martti@pkgsrc.org>2004-07-07 11:43:58 +0000
committermartti <martti@pkgsrc.org>2004-07-07 11:43:58 +0000
commiteeb9d6da6e14e4ae50b85cd6dd806a7abf71855e (patch)
treed8b57f6dff316d7cd6716685376a6635cf9b3a2c /devel/distcc
parentb5fdce15998b1949352262cf9b74049a7de91259 (diff)
downloadpkgsrc-eeb9d6da6e14e4ae50b85cd6dd806a7abf71855e.tar.gz
Updated distcc to 2.15
* Fix crash bug in receiving LZO compressed data into a mmapped file. * Remove redundant temporary file cleanup in non-forking mode. * Client calculates and can display the overall throughput in preprocessed bytes per second for remote jobs. * The deprecated fork-after-exec mode controlled by the --no-prefork option has been removed. * mmap is no longer used for compressed data to simplify the code. * Daemon now chdirs to $TMPDIR at startup rather than /. This allows dumping core, among other things.
Diffstat (limited to 'devel/distcc')
-rw-r--r--devel/distcc/Makefile4
-rw-r--r--devel/distcc/distinfo8
-rw-r--r--devel/distcc/patches/patch-aa12
3 files changed, 10 insertions, 14 deletions
diff --git a/devel/distcc/Makefile b/devel/distcc/Makefile
index a9e4a45a57a..02afa70b52e 100644
--- a/devel/distcc/Makefile
+++ b/devel/distcc/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2004/05/02 19:11:38 xtraeme Exp $
+# $NetBSD: Makefile,v 1.15 2004/07/07 11:43:58 martti Exp $
-DISTNAME= distcc-2.14
+DISTNAME= distcc-2.15
CATEGORIES= devel
MASTER_SITES= http://distcc.samba.org/ftp/distcc/
EXTRACT_SUFX= .tar.bz2
diff --git a/devel/distcc/distinfo b/devel/distcc/distinfo
index 60ff01d0b24..93c963a2069 100644
--- a/devel/distcc/distinfo
+++ b/devel/distcc/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.12 2004/05/02 19:11:38 xtraeme Exp $
+$NetBSD: distinfo,v 1.13 2004/07/07 11:43:58 martti Exp $
-SHA1 (distcc-2.14.tar.bz2) = 70afbc72dd8ddd915eb8b75430c06db5a2562c68
-Size (distcc-2.14.tar.bz2) = 340510 bytes
-SHA1 (patch-aa) = c61ca877191a1dec433f87dfd22c692416634578
+SHA1 (distcc-2.15.tar.bz2) = f14105bd33f63f12485cde98cd075a4525d192f1
+Size (distcc-2.15.tar.bz2) = 336352 bytes
+SHA1 (patch-aa) = bab31123ffc4e3e60d7632402f3b1d4d10bbca60
diff --git a/devel/distcc/patches/patch-aa b/devel/distcc/patches/patch-aa
index 7ffd8849f2e..8aa9cc9e567 100644
--- a/devel/distcc/patches/patch-aa
+++ b/devel/distcc/patches/patch-aa
@@ -1,15 +1,11 @@
-$NetBSD: patch-aa,v 1.7 2003/10/05 12:03:12 martti Exp $
+$NetBSD: patch-aa,v 1.8 2004/07/07 11:43:58 martti Exp $
---- src/mon-text.c.orig Tue Sep 23 07:07:02 2003
-+++ src/mon-text.c Sun Oct 5 14:17:08 2003
-@@ -111,8 +111,8 @@
-
- printf("\n");
+--- src/mon-text.c.orig 2004-07-06 12:39:38.000000000 +0000
++++ src/mon-text.c 2004-07-07 14:35:58.000000000 +0000
+@@ -108,4 +108,4 @@
- /* XXX: usleep() is probably not very portable */
- usleep(delay * 1000000);
+ sleep(delay);
+ usleep((delay - (int)delay) * 1000000);
} while (delay);
-
- return 0;