diff options
author | adam <adam@pkgsrc.org> | 2015-09-13 07:59:45 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2015-09-13 07:59:45 +0000 |
commit | d298396bcbddbfeb82e2d8b18fd60d498a866489 (patch) | |
tree | ab9a50197abcbfc628e8abb45bf1ec420ae86fce /devel/ccache | |
parent | f2358f3cad054bfd059fc1beff010195f9a02f84 (diff) | |
download | pkgsrc-d298396bcbddbfeb82e2d8b18fd60d498a866489.tar.gz |
Changes 3.2.3:
New features and improvements
* Added support for compiler option -gsplit-dwarf.
Bug fixes
* Support external zlib in nonstandard directory.
* Avoid calling exit() inside an exit handler.
* Let exit handler terminate properly.
* Bail out on compiler option --save-temps in addition to -save-temps.
* Only log "Disabling direct mode" once when failing to read potential include files.
Diffstat (limited to 'devel/ccache')
-rw-r--r-- | devel/ccache/Makefile | 4 | ||||
-rw-r--r-- | devel/ccache/distinfo | 9 | ||||
-rw-r--r-- | devel/ccache/patches/patch-configure | 15 |
3 files changed, 22 insertions, 6 deletions
diff --git a/devel/ccache/Makefile b/devel/ccache/Makefile index 9752667d09d..0c0dff5f6bb 100644 --- a/devel/ccache/Makefile +++ b/devel/ccache/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.29 2015/05/18 10:33:55 adam Exp $ +# $NetBSD: Makefile,v 1.30 2015/09/13 07:59:45 adam Exp $ -DISTNAME= ccache-3.2.2 +DISTNAME= ccache-3.2.3 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 5ef886589cf..b885fae5d34 100644 --- a/devel/ccache/distinfo +++ b/devel/ccache/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.18 2015/05/18 10:33:55 adam Exp $ +$NetBSD: distinfo,v 1.19 2015/09/13 07:59:45 adam Exp $ -SHA1 (ccache-3.2.2.tar.gz) = c74894dd94f4d734658a0ecf27b1c552240e66e0 -RMD160 (ccache-3.2.2.tar.gz) = e3541328ce0d5a16f885379670ad34ef1a5ace23 -Size (ccache-3.2.2.tar.gz) = 436913 bytes +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 (patch-util.c) = b56f7c348067bba472c4a9091f8d0f6b0a579263 diff --git a/devel/ccache/patches/patch-configure b/devel/ccache/patches/patch-configure new file mode 100644 index 00000000000..9ee66705388 --- /dev/null +++ b/devel/ccache/patches/patch-configure @@ -0,0 +1,15 @@ +$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 |