From owner-svn-ports-all@freebsd.org Tue Jan 3 21:04:38 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 DF454C9E378; Tue, 3 Jan 2017 21:04:38 +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 944C41CF8; Tue, 3 Jan 2017 21:04:38 +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 v03L4bbK097445; Tue, 3 Jan 2017 21:04:37 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v03L4bxh097443; Tue, 3 Jan 2017 21:04:37 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201701032104.v03L4bxh097443@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:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r430522 - in head/emulators/snes9x: . 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:39 -0000 Author: jbeich Date: Tue Jan 3 21:04:37 2017 New Revision: 430522 URL: https://svnweb.freebsd.org/changeset/ports/430522 Log: emulators/snes9x: unbreak with libc++ 3.9 unix/unix.cpp:1451:9: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *slash = strrchr(path, SLASH_CHAR); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~ unix/unix.cpp:1452:9: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *dot = strrchr(path, '.'); ^ ~~~~~~~~~~~~~~~~~~ PR: 212343 Regressed by: https://github.com/llvm-mirror/libcxx/commit/b4aa97130b8b Modified: head/emulators/snes9x/Makefile (contents, props changed) head/emulators/snes9x/files/patch-unix_unix.cpp (contents, props changed) Modified: head/emulators/snes9x/Makefile ============================================================================== --- head/emulators/snes9x/Makefile Tue Jan 3 21:04:28 2017 (r430521) +++ head/emulators/snes9x/Makefile Tue Jan 3 21:04:37 2017 (r430522) @@ -3,7 +3,7 @@ PORTNAME= snes9x PORTVERSION= 1.51 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= emulators MASTER_SITES= http://files.ipherswipsite.com/snes9x/ \ http://www.lysator.liu.se/snes9x/${PORTVERSION}/ Modified: head/emulators/snes9x/files/patch-unix_unix.cpp ============================================================================== --- head/emulators/snes9x/files/patch-unix_unix.cpp Tue Jan 3 21:04:28 2017 (r430521) +++ head/emulators/snes9x/files/patch-unix_unix.cpp Tue Jan 3 21:04:37 2017 (r430522) @@ -417,6 +417,17 @@ #endif // defined (JOYSTICK_SUPPORT) START_EXTERN_C +@@ -1162,8 +1448,8 @@ void _splitpath(const char *path, char * + { + *drive = 0; + +- char *slash = strrchr(path, SLASH_CHAR); +- char *dot = strrchr(path, '.'); ++ const char *slash = strrchr(path, SLASH_CHAR); ++ const char *dot = strrchr(path, '.'); + + if (dot && slash && dot < slash) + { @@ -1716,7 +2002,7 @@ } #endif