Date: Thu, 21 Jun 2018 23:02:29 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473008 - head/games/amoebax/files Message-ID: <201806212302.w5LN2TPH013484@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Thu Jun 21 23:02:29 2018 New Revision: 473008 URL: https://svnweb.freebsd.org/changeset/ports/473008 Log: - Fix build with clang 6.0 Added: head/games/amoebax/files/patch-configure (contents, props changed) head/games/amoebax/files/patch-src_NewHighScoreState.cxx (contents, props changed) Added: head/games/amoebax/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/amoebax/files/patch-configure Thu Jun 21 23:02:29 2018 (r473008) @@ -0,0 +1,16 @@ +--- configure.orig 2008-08-02 10:10:49 UTC ++++ configure +@@ -2329,12 +2329,7 @@ else + fi + fi + for ac_declaration in \ +- '' \ +- 'extern "C" void std::exit (int) throw (); using std::exit;' \ +- 'extern "C" void std::exit (int); using std::exit;' \ +- 'extern "C" void exit (int) throw ();' \ +- 'extern "C" void exit (int);' \ +- 'void exit (int);' ++ '' + do + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ Added: head/games/amoebax/files/patch-src_NewHighScoreState.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/amoebax/files/patch-src_NewHighScoreState.cxx Thu Jun 21 23:02:29 2018 (r473008) @@ -0,0 +1,11 @@ +--- src/NewHighScoreState.cxx.orig 2007-07-29 16:48:20 UTC ++++ src/NewHighScoreState.cxx +@@ -396,7 +396,7 @@ NewHighScoreState::unicodeCharacterPress + // FIXME: We are only interessted with ASCII values. + if ( 0 == (code & 0xff80) ) + { +- char character[2] = {toupper (static_cast<char>(code & 0x7f)), '\0'}; ++ char character[2] = {static_cast<char>(toupper (static_cast<char>(code & 0x7f)), '\0')}; + std::string::size_type characterPos = + m_CursorValues.find (std::string (character)); + if ( std::string::npos != characterPos )
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806212302.w5LN2TPH013484>