svn commit: r327358 - head/astro/boinc-setiathome-enhanced/files

Rene Ladan rene at FreeBSD.org
Sun Sep 15 21:36:20 UTC 2013


Author: rene
Date: Sun Sep 15 21:36:19 2013
New Revision: 327358
URL: http://svnweb.freebsd.org/changeset/ports/327358

Log:
  Fix build with libc++

Modified:
  head/astro/boinc-setiathome-enhanced/files/patch-client__vector__analyzeFuncs_vector.cpp   (contents, props changed)

Modified: head/astro/boinc-setiathome-enhanced/files/patch-client__vector__analyzeFuncs_vector.cpp
==============================================================================
--- head/astro/boinc-setiathome-enhanced/files/patch-client__vector__analyzeFuncs_vector.cpp	Sun Sep 15 19:27:13 2013	(r327357)
+++ head/astro/boinc-setiathome-enhanced/files/patch-client__vector__analyzeFuncs_vector.cpp	Sun Sep 15 21:36:19 2013	(r327358)
@@ -1,5 +1,5 @@
 --- client/vector/analyzeFuncs_vector.cpp.orig	2009-07-14 21:02:10.000000000 +0200
-+++ client/vector/analyzeFuncs_vector.cpp	2011-02-27 15:56:58.000000000 +0100
++++ client/vector/analyzeFuncs_vector.cpp	2013-09-12 17:02:12.000000000 +0200
 @@ -87,12 +87,10 @@
  #endif
  
@@ -11,7 +11,7 @@
  #define isnotnan(x) (!_isnan(x))
  #elif defined(HAVE_ISNAN)
 -#define isnotnam(x) (!isnan(x))
-+#define isnotnan(x) (!isnan(x))
++#define isnotnan(x) (!std::isnan(x))
  #else
  #define isnotnan(x) ((x) == (x))
  #endif


More information about the svn-ports-all mailing list