From owner-svn-ports-head@FreeBSD.ORG Sun Nov 24 13:05:26 2013 Return-Path: Delivered-To: svn-ports-head@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 ESMTPS id 5F065103; Sun, 24 Nov 2013 13:05:26 +0000 (UTC) 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 3486C204D; Sun, 24 Nov 2013 13:05: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 rAOD5QFr093549; Sun, 24 Nov 2013 13:05:26 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAOD5PCm093546; Sun, 24 Nov 2013 13:05:25 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201311241305.rAOD5PCm093546@svn.freebsd.org> From: Alex Kozlov Date: Sun, 24 Nov 2013 13:05:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r334722 - head/games/wesnoth/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-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Nov 2013 13:05:26 -0000 Author: ak Date: Sun Nov 24 13:05:25 2013 New Revision: 334722 URL: http://svnweb.freebsd.org/changeset/ports/334722 Log: - Fix build with clang [1] PR: ports/183627 Reported by: Pavlo Greenberg Submitted by: Oleg Ginzburg [1] Approved by: Rusty Nejdl (maintainer) Added: head/games/wesnoth/files/patch-src-chat_events.hpp (contents, props changed) head/games/wesnoth/files/patch-src-server-metrics.hpp (contents, props changed) head/games/wesnoth/files/patch-src-server-user_handler.cpp (contents, props changed) Added: head/games/wesnoth/files/patch-src-chat_events.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/wesnoth/files/patch-src-chat_events.hpp Sun Nov 24 13:05:25 2013 (r334722) @@ -0,0 +1,10 @@ +--- src/chat_events.hpp.orig 2013-11-09 20:12:59.000000000 +0400 ++++ src/chat_events.hpp 2013-11-09 20:13:07.000000000 +0400 +@@ -20,6 +20,7 @@ + #include "global.hpp" + + #include ++#include + + namespace events { + Added: head/games/wesnoth/files/patch-src-server-metrics.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/wesnoth/files/patch-src-server-metrics.hpp Sun Nov 24 13:05:25 2013 (r334722) @@ -0,0 +1,10 @@ +--- src/server/metrics.hpp.orig 2013-11-09 20:10:45.000000000 +0400 ++++ src/server/metrics.hpp 2013-11-09 20:10:50.000000000 +0400 +@@ -27,6 +27,7 @@ + #endif + + #include "simple_wml.hpp" ++#include + + class metrics + { Added: head/games/wesnoth/files/patch-src-server-user_handler.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/wesnoth/files/patch-src-server-user_handler.cpp Sun Nov 24 13:05:25 2013 (r334722) @@ -0,0 +1,10 @@ +--- src/server/user_handler.cpp.orig 2013-11-09 20:09:08.000000000 +0400 ++++ src/server/user_handler.cpp 2013-11-09 20:09:19.000000000 +0400 +@@ -18,6 +18,7 @@ + #include "serialization/string_utils.hpp" + + #include ++#include + + bool user_handler::send_mail(const std::string& to_user, + const std::string& /*subject*/, const std::string& /*message*/) {