svn commit: r399416 - in head/devel/ccache: . files

Bryan Drewery bdrewery at FreeBSD.org
Thu Oct 15 22:09:58 UTC 2015


Author: bdrewery
Date: Thu Oct 15 22:09:56 2015
New Revision: 399416
URL: https://svnweb.freebsd.org/changeset/ports/399416

Log:
  Update to 3.2.4.
  
  Changes: https://ccache.samba.org/releasenotes.html#_ccache_3_2_4

Deleted:
  head/devel/ccache/files/patch-configure
  head/devel/ccache/files/patch-configure.ac
Modified:
  head/devel/ccache/Makefile
  head/devel/ccache/distinfo
  head/devel/ccache/files/patch-ccache.c

Modified: head/devel/ccache/Makefile
==============================================================================
--- head/devel/ccache/Makefile	Thu Oct 15 21:48:37 2015	(r399415)
+++ head/devel/ccache/Makefile	Thu Oct 15 22:09:56 2015	(r399416)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	ccache
-PORTVERSION=	3.2.3
+PORTVERSION=	3.2.4
 PORTREVISION=	0
 CATEGORIES=	devel
 MASTER_SITES=	http://www.samba.org/ftp/ccache/ \

Modified: head/devel/ccache/distinfo
==============================================================================
--- head/devel/ccache/distinfo	Thu Oct 15 21:48:37 2015	(r399415)
+++ head/devel/ccache/distinfo	Thu Oct 15 22:09:56 2015	(r399416)
@@ -1,2 +1,2 @@
-SHA256 (ccache-3.2.3.tar.gz) = 43b2c0a0f7c8c89cecdc841b4ef55c626c9ca2bc80d5d746c91efcf81d224f6b
-SIZE (ccache-3.2.3.tar.gz) = 438086
+SHA256 (ccache-3.2.4.tar.gz) = bf07d13e3c806971ea01af1d5a8db50319af434c920b4e4b742229aaa04d270c
+SIZE (ccache-3.2.4.tar.gz) = 439320

Modified: head/devel/ccache/files/patch-ccache.c
==============================================================================
--- head/devel/ccache/files/patch-ccache.c	Thu Oct 15 21:48:37 2015	(r399415)
+++ head/devel/ccache/files/patch-ccache.c	Thu Oct 15 22:09:56 2015	(r399416)
@@ -1,11 +1,11 @@
 Determine whether cc(1) is clang or gcc at compile-time.
 
---- ccache.c.orig	2015-01-06 18:24:47.738295980 -0600
-+++ ccache.c	2015-01-06 18:25:58.685291460 -0600
-@@ -1116,6 +1116,11 @@ compiler_is_clang(struct args *args)
+--- ccache.c.orig	2015-10-15 15:01:14.756621000 -0700
++++ ccache.c	2015-10-15 15:01:47.738326000 -0700
+@@ -1350,6 +1350,11 @@ compiler_is_clang(struct args *args)
  {
- 	char* name = basename(args->argv[0]);
- 	bool is = strstr(name, "clang");
+ 	char *name = basename(args->argv[0]);
+ 	bool is = strstr(name, "clang") != NULL;
 +#ifdef CC_IS_CLANG
 +	if (strcmp(name, "cc") == 0 || strcmp(name, "CC") == 0 ||
 +	    strcmp(name, "c++") == 0)
@@ -14,9 +14,9 @@ Determine whether cc(1) is clang or gcc 
  	free(name);
  	return is;
  }
-@@ -1125,6 +1130,11 @@ compiler_is_gcc(struct args *args)
+@@ -1359,6 +1364,11 @@ compiler_is_gcc(struct args *args)
  {
- 	char* name = basename(args->argv[0]);
+ 	char *name = basename(args->argv[0]);
  	bool is = strstr(name, "gcc") || strstr(name, "g++");
 +#ifdef CC_IS_GCC
 +	if (strcmp(name, "cc") == 0 || strcmp(name, "CC") == 0 ||


More information about the svn-ports-all mailing list