From owner-svn-ports-all@freebsd.org Tue Jan 3 21:04:20 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A52EAC9E323; Tue, 3 Jan 2017 21:04:20 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5BEAA1BF2; Tue, 3 Jan 2017 21:04:20 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v03L4Jnr097153; Tue, 3 Jan 2017 21:04:19 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v03L4J9C097151; Tue, 3 Jan 2017 21:04:19 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201701032104.v03L4J9C097151@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 3 Jan 2017 21:04:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r430520 - in head/devel/fam: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jan 2017 21:04:20 -0000 Author: jbeich Date: Tue Jan 3 21:04:19 2017 New Revision: 430520 URL: https://svnweb.freebsd.org/changeset/ports/430520 Log: devel/fam: unbreak with libc++ 3.9 NFSFileSystem.c++:105:12: error: assigning to 'char *' from incompatible type 'const char *' if ((p = strstr(opt, "actimeo"))) ^ ~~~~~~~~~~~~~~~~~~~~~~ NFSFileSystem.c++:112:12: error: assigning to 'char *' from incompatible type 'const char *' if ((p = strstr(opt, "acregmin"))) { ^ ~~~~~~~~~~~~~~~~~~~~~~~ NFSFileSystem.c++:118:12: error: assigning to 'char *' from incompatible type 'const char *' if ((p = strstr(opt, "acregmax"))) { ^ ~~~~~~~~~~~~~~~~~~~~~~~ PR: 212343 Regressed by: https://github.com/llvm-mirror/libcxx/commit/b4aa97130b8b Added: head/devel/fam/files/patch-fam_NFSFileSystem.c++ (contents, props changed) Modified: head/devel/fam/Makefile (contents, props changed) Modified: head/devel/fam/Makefile ============================================================================== --- head/devel/fam/Makefile Tue Jan 3 20:38:47 2017 (r430519) +++ head/devel/fam/Makefile Tue Jan 3 21:04:19 2017 (r430520) @@ -3,7 +3,7 @@ PORTNAME= fam PORTVERSION= 2.6.10 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= devel MASTER_SITES= ftp://oss.sgi.com/projects/fam/download/ DIST_SUBDIR= ${PORTNAME} Added: head/devel/fam/files/patch-fam_NFSFileSystem.c++ ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/fam/files/patch-fam_NFSFileSystem.c++ Tue Jan 3 21:04:19 2017 (r430520) @@ -0,0 +1,11 @@ +--- fam/NFSFileSystem.c++.orig 2003-04-15 04:21:38 UTC ++++ fam/NFSFileSystem.c++ +@@ -97,7 +97,7 @@ NFSFileSystem::NFSFileSystem(const mnten + + attr_cache_timeout = ACREGMAX; + +- char * p; ++ const char * p; + + if (strstr(opt, "noac")) { + f_noac = true;