From owner-svn-ports-all@freebsd.org Thu Nov 24 16:15:15 2016 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 CBEEFC53040; Thu, 24 Nov 2016 16:15:15 +0000 (UTC) (envelope-from amdmi3@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 9B394195E; Thu, 24 Nov 2016 16:15:15 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAOGFE0a019643; Thu, 24 Nov 2016 16:15:14 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAOGFENV019641; Thu, 24 Nov 2016 16:15:14 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201611241615.uAOGFENV019641@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 24 Nov 2016 16:15:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427053 - head/games/amoebax/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: Thu, 24 Nov 2016 16:15:15 -0000 Author: amdmi3 Date: Thu Nov 24 16:15:14 2016 New Revision: 427053 URL: https://svnweb.freebsd.org/changeset/ports/427053 Log: - Fix build with libc++ 3.9 - Regenerate patches PR: 214648 Added: head/games/amoebax/files/patch-src_Music.cxx - copied, changed from r427052, head/games/amoebax/files/patch-src-Music.cxx head/games/amoebax/files/patch-src_binreloc.cxx (contents, props changed) Deleted: head/games/amoebax/files/patch-src-Music.cxx Copied and modified: head/games/amoebax/files/patch-src_Music.cxx (from r427052, head/games/amoebax/files/patch-src-Music.cxx) ============================================================================== --- head/games/amoebax/files/patch-src-Music.cxx Thu Nov 24 16:11:05 2016 (r427052, copy source) +++ head/games/amoebax/files/patch-src_Music.cxx Thu Nov 24 16:15:14 2016 (r427053) @@ -1,5 +1,5 @@ ---- src/Music.cxx.orig 2007-05-27 19:04:33.000000000 +0400 -+++ src/Music.cxx 2013-09-13 22:00:04.632230761 +0400 +--- src/Music.cxx.orig 2007-05-27 15:04:33 UTC ++++ src/Music.cxx @@ -22,6 +22,7 @@ #include #include Added: head/games/amoebax/files/patch-src_binreloc.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/amoebax/files/patch-src_binreloc.cxx Thu Nov 24 16:15:14 2016 (r427053) @@ -0,0 +1,12 @@ +--- src/binreloc.cxx.orig 2007-05-27 15:04:33 UTC ++++ src/binreloc.cxx +@@ -739,7 +739,8 @@ br_strndup (const char *str, size_t size + char * + br_dirname (const char *path) + { +- char *end, *result; ++ const char *end; ++ char *result; + + if (path == (const char *) NULL) + return (char *) NULL;