svn commit: r413588 - head/games/kuklomenos/files

Kurt Jaeger pi at FreeBSD.org
Mon Apr 18 16:52:27 UTC 2016


Author: pi
Date: Mon Apr 18 16:52:26 2016
New Revision: 413588
URL: https://svnweb.freebsd.org/changeset/ports/413588

Log:
  games/kuklomenos: Fix build with libc++ 3.8.0
  
  PR:		208842
  Submitted by:	dim

Added:
  head/games/kuklomenos/files/
  head/games/kuklomenos/files/patch-node.cc   (contents, props changed)

Added: head/games/kuklomenos/files/patch-node.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/kuklomenos/files/patch-node.cc	Mon Apr 18 16:52:26 2016	(r413588)
@@ -0,0 +1,11 @@
+--- node.cc.orig	2009-10-04 14:01:21 UTC
++++ node.cc
+@@ -175,7 +175,7 @@ Uint32 Node::colour() const
+ 	{
+ 	    intensity = (status == NODEST_NONE ? 0x80 : 0xbf);
+ 	    intensity += int( (0xff - intensity) *
+-		    std::max(0.0, 1 - ( fabs(angleDiff(spin*3, 0)) * 2 )) );
++		    std::max(0.0f, 1 - ( fabsf(angleDiff(spin*3, 0)) * 2 )) );
+ 	}
+     }
+     else


More information about the svn-ports-all mailing list