summaryrefslogtreecommitdiff
path: root/devel/ccache
diff options
context:
space:
mode:
authoradam <adam>2015-10-09 12:02:20 +0000
committeradam <adam>2015-10-09 12:02:20 +0000
commitbb611a777a0bf0e316634b800aebbae1b508c175 (patch)
tree24de6051109c72f19dfadf5ba0b517cf6aae2440 /devel/ccache
parent7616d4a5672865b8d71105da1f67edd522b018c2 (diff)
downloadpkgsrc-bb611a777a0bf0e316634b800aebbae1b508c175.tar.gz
Changes 3.2.4:
Fixed build error related to zlib on systems with older make versions (regression in ccache 3.2.3). Made conversion-to-bool explicit to avoid build warnings (and potential runtime errors) on legacy systems. Improved signal handling: Kill compiler on SIGTERM; wait for compiler to exit before exiting; die appropriately. Minor fixes related to Windows support. The correct compression level is now used if compression is requested. Fixed a bug where cache cleanup could be run too early for caches larger than 64 GiB on 32-bit systems.
Diffstat (limited to 'devel/ccache')
-rw-r--r--devel/ccache/Makefile4
-rw-r--r--devel/ccache/distinfo9
-rw-r--r--devel/ccache/patches/patch-configure15
3 files changed, 6 insertions, 22 deletions
diff --git a/devel/ccache/Makefile b/devel/ccache/Makefile
index 0c0dff5f6bb..3711405e863 100644
--- a/devel/ccache/Makefile
+++ b/devel/ccache/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.30 2015/09/13 07:59:45 adam Exp $
+# $NetBSD: Makefile,v 1.31 2015/10/09 12:02:20 adam Exp $
-DISTNAME= ccache-3.2.3
+DISTNAME= ccache-3.2.4
CATEGORIES= devel
MASTER_SITES= http://samba.org/ftp/ccache/
# do not use xz distfile here, xz needs gettext-lib which leads to circular
diff --git a/devel/ccache/distinfo b/devel/ccache/distinfo
index b885fae5d34..036aac8112e 100644
--- a/devel/ccache/distinfo
+++ b/devel/ccache/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.19 2015/09/13 07:59:45 adam Exp $
+$NetBSD: distinfo,v 1.20 2015/10/09 12:02:20 adam Exp $
-SHA1 (ccache-3.2.3.tar.gz) = e394759b0b77b9fff878513ee9b99c0087f20d53
-RMD160 (ccache-3.2.3.tar.gz) = 5c85a680e1d6feb4b5c88bd7243c40376bd23f2a
-Size (ccache-3.2.3.tar.gz) = 438086 bytes
-SHA1 (patch-configure) = 0e08e9662e15a5dfbf1da4073a777571de38716b
+SHA1 (ccache-3.2.4.tar.gz) = 191b2a72adb626d0d2498bc75e72f53acf924bfb
+RMD160 (ccache-3.2.4.tar.gz) = e19df2f2ff4c745630cdcdd3a011ccc722f2ade9
+Size (ccache-3.2.4.tar.gz) = 439320 bytes
SHA1 (patch-util.c) = b56f7c348067bba472c4a9091f8d0f6b0a579263
diff --git a/devel/ccache/patches/patch-configure b/devel/ccache/patches/patch-configure
deleted file mode 100644
index 9ee66705388..00000000000
--- a/devel/ccache/patches/patch-configure
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-configure,v 1.1 2015/09/13 07:59:45 adam Exp $
-
-Use proper variable for external zlib.
-
---- configure.orig 2015-09-13 07:49:05.000000000 +0000
-+++ configure
-@@ -5682,7 +5682,7 @@ if test x${use_bundled_zlib} = xyes; the
- extra_libs="zlib/libz.a"
- mkdir -p zlib
- else
-- extra_libs="-lz"
-+ extra_ldflags="-lz"
- fi
-
- if test x${windows_os} = xyes; then