Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Nov 2013 13:05:25 +0000 (UTC)
From:      Alex Kozlov <ak@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r334722 - head/games/wesnoth/files
Message-ID:  <201311241305.rAOD5PCm093546@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <dog@virtual.org.ua>
  Submitted by:	Oleg Ginzburg <olevole@olevole.ru> [1]
  Approved by:	Rusty Nejdl <rnejdl@ringofsaturn.com> (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 <string>
++#include <time.h>
+ 
+ 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 <time.h>
+ 
+ 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 <ctime>
++#include <time.h>
+ 
+ bool user_handler::send_mail(const std::string& to_user,
+ 		const std::string& /*subject*/, const std::string& /*message*/) {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311241305.rAOD5PCm093546>