svn commit: r376628 - head/games/epiar/files

Antoine Brodin antoine at FreeBSD.org
Fri Jan 9 17:56:52 UTC 2015


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;
+ };


More information about the svn-ports-all mailing list