Date: Sun, 15 Sep 2013 21:36:20 +0000 (UTC) From: Rene Ladan <rene@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r327358 - head/astro/boinc-setiathome-enhanced/files Message-ID: <201309152136.r8FLaKZ4065381@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309152136.r8FLaKZ4065381>