Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 9 Jan 2015 17:56:51 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r376628 - head/games/epiar/files
Message-ID:  <201501091756.t09HupW5091007@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: antoine
Date: Fri Jan  9 17:56:50 2015
New Revision: 376628
URL: https://svnweb.freebsd.org/changeset/ports/376628
QAT: https://qat.redports.org/buildarchive/r376628/

Log:
  Allow building with libc++ r224926
  
  PR:		ports/196627
  Submitted by:	dim@

Added:
  head/games/epiar/files/patch-Source_Engine_hud.h   (contents, props changed)

Added: head/games/epiar/files/patch-Source_Engine_hud.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/epiar/files/patch-Source_Engine_hud.h	Fri Jan  9 17:56:50 2015	(r376628)
@@ -0,0 +1,11 @@
+--- Source/Engine/hud.h.orig	2012-10-27 08:18:51 UTC
++++ Source/Engine/hud.h
+@@ -44,7 +44,7 @@ enum HudMap{
+ class AlertMessage {
+ 	public:
+ 		AlertMessage( string message, Uint32 start );
+-		bool operator ==(const AlertMessage& other) {return (start == other.start) && (message == other.message);}
++		bool operator ==(const AlertMessage& other) const {return (start == other.start) && (message == other.message);}
+ 		string message;
+ 		Uint32 start;
+ };



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