From owner-svn-ports-all@FreeBSD.ORG Sat Sep 14 01:15:27 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A6DB5E56; Sat, 14 Sep 2013 01:15:26 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7B43E2817; Sat, 14 Sep 2013 01:15:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8E1FQ4N017214; Sat, 14 Sep 2013 01:15:26 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8E1FPpQ017209; Sat, 14 Sep 2013 01:15:25 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201309140115.r8E1FPpQ017209@svn.freebsd.org> From: Dmitry Marakasov Date: Sat, 14 Sep 2013 01:15:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r327203 - head/games/widelands/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.14 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: Sat, 14 Sep 2013 01:15:27 -0000 Author: amdmi3 Date: Sat Sep 14 01:15:25 2013 New Revision: 327203 URL: http://svnweb.freebsd.org/changeset/ports/327203 Log: Fix build with clang/libc++ Added: head/games/widelands/files/patch-src-i18n.cc (contents, props changed) head/games/widelands/files/patch-src-io-filesystem-disk__filesystem.cc (contents, props changed) head/games/widelands/files/patch-src-journal__exceptions.h (contents, props changed) head/games/widelands/files/patch-src-main.cc (contents, props changed) head/games/widelands/files/patch-src-writeHTML.cc (contents, props changed) Added: head/games/widelands/files/patch-src-i18n.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/widelands/files/patch-src-i18n.cc Sat Sep 14 01:15:25 2013 (r327203) @@ -0,0 +1,10 @@ +--- src/i18n.cc.orig 2012-04-23 13:46:49.000000000 +0400 ++++ src/i18n.cc 2013-09-13 20:18:48.792226136 +0400 +@@ -27,6 +27,7 @@ + + #include + #include ++#include + + #if __APPLE__ && LIBINTL_VERSION >= 0x001201 + // for older libintl versions, setlocale is just fine Added: head/games/widelands/files/patch-src-io-filesystem-disk__filesystem.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/widelands/files/patch-src-io-filesystem-disk__filesystem.cc Sat Sep 14 01:15:25 2013 (r327203) @@ -0,0 +1,10 @@ +--- src/io/filesystem/disk_filesystem.cc.orig 2012-04-23 13:46:49.000000000 +0400 ++++ src/io/filesystem/disk_filesystem.cc 2013-09-13 20:35:42.666227898 +0400 +@@ -43,6 +43,7 @@ + #include + #include + #include ++#include // for unlink() + #ifndef _GNU_SOURCE + #define _GNU_SOURCE // for O_NOATIME + #endif Added: head/games/widelands/files/patch-src-journal__exceptions.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/widelands/files/patch-src-journal__exceptions.h Sat Sep 14 01:15:25 2013 (r327203) @@ -0,0 +1,10 @@ +--- src/journal_exceptions.h.orig 2012-04-23 13:46:49.000000000 +0400 ++++ src/journal_exceptions.h 2013-09-13 21:33:33.010227122 +0400 +@@ -22,6 +22,7 @@ + + #include + #include ++#include + + /// + /// Thrown for IO-errors occurring with a journal file (unable to open file Added: head/games/widelands/files/patch-src-main.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/widelands/files/patch-src-main.cc Sat Sep 14 01:15:25 2013 (r327203) @@ -0,0 +1,10 @@ +--- src/main.cc.orig 2012-04-23 13:46:49.000000000 +0400 ++++ src/main.cc 2013-09-13 22:45:51.418226482 +0400 +@@ -34,6 +34,7 @@ + #ifndef WIN32 + #include + #include ++#include + #endif + + using std::cerr; Added: head/games/widelands/files/patch-src-writeHTML.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/widelands/files/patch-src-writeHTML.cc Sat Sep 14 01:15:25 2013 (r327203) @@ -0,0 +1,11 @@ +--- src/writeHTML.cc.orig 2012-04-23 13:46:49.000000000 +0400 ++++ src/writeHTML.cc 2013-09-13 22:31:32.367226376 +0400 +@@ -223,7 +223,7 @@ + // A container to keep the types ordered by descname for the table of + // contents. + struct orderer { +- bool operator () (std::string const * const a, std::string const * const b) ++ bool operator () (std::string const * const a, std::string const * const b) const + { + return *a < *b; + }