diff options
author | chris <chris@pkgsrc.org> | 2003-07-05 22:06:36 +0000 |
---|---|---|
committer | chris <chris@pkgsrc.org> | 2003-07-05 22:06:36 +0000 |
commit | a2af715a358c1eef8c3f246943dece5cb62c5d95 (patch) | |
tree | 27c99a8a033d58a0bf4792d898df32e8afe09be0 /devel/ccache | |
parent | a04fdf7f0070bb6e19f9fa76144ebd295f4fa0b7 (diff) | |
download | pkgsrc-a2af715a358c1eef8c3f246943dece5cb62c5d95.tar.gz |
Update ccache to version 2.2. No clear list of changes since 1.8 is available.
However changes since 2.1.1 include:
# added a test suite
# better integration with distcc
# added CCACHE_PREFIX option
# disabled hard links by default
# recognise some more gcc options (eg. profiling)
# added --ccache-skip option
Diffstat (limited to 'devel/ccache')
-rw-r--r-- | devel/ccache/Makefile | 4 | ||||
-rw-r--r-- | devel/ccache/distinfo | 7 | ||||
-rw-r--r-- | devel/ccache/patches/patch-aa | 17 |
3 files changed, 5 insertions, 23 deletions
diff --git a/devel/ccache/Makefile b/devel/ccache/Makefile index 8565f906e2a..c623bd1c17d 100644 --- a/devel/ccache/Makefile +++ b/devel/ccache/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.3 2002/05/07 05:22:50 tron Exp $ +# $NetBSD: Makefile,v 1.4 2003/07/05 22:06:36 chris Exp $ -DISTNAME= ccache-1.8 +DISTNAME= ccache-2.2 CATEGORIES= devel MASTER_SITES= http://ccache.samba.org/ftp/ccache/ diff --git a/devel/ccache/distinfo b/devel/ccache/distinfo index d96a4be273d..966240f86fb 100644 --- a/devel/ccache/distinfo +++ b/devel/ccache/distinfo @@ -1,5 +1,4 @@ -$NetBSD: distinfo,v 1.3 2002/05/09 01:40:03 enami Exp $ +$NetBSD: distinfo,v 1.4 2003/07/05 22:06:37 chris Exp $ -SHA1 (ccache-1.8.tar.gz) = 54a65bca01549aeeb1320db73f2f0803f3df6db5 -Size (ccache-1.8.tar.gz) = 62148 bytes -SHA1 (patch-aa) = caafca94d1e2a9a86a8d66959d3a23083e2c0a40 +SHA1 (ccache-2.2.tar.gz) = 0b232e1629ced7814193a0969d7fc54802dc2f78 +Size (ccache-2.2.tar.gz) = 81666 bytes diff --git a/devel/ccache/patches/patch-aa b/devel/ccache/patches/patch-aa deleted file mode 100644 index f4413130b5a..00000000000 --- a/devel/ccache/patches/patch-aa +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-aa,v 1.1 2002/05/09 01:40:04 enami Exp $ - ---- util.c.orig Sat Apr 6 22:48:03 2002 -+++ util.c -@@ -83,8 +83,11 @@ - } - } - -- close(fd2); - close(fd1); -+ if (close(fd2) == -1) { -+ unlink(dest); -+ return -1; -+ } - return 0; - } - |