aboutsummaryrefslogtreecommitdiff
path: root/astro
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2013-09-15 21:36:19 +0000
committerRene Ladan <rene@FreeBSD.org>2013-09-15 21:36:19 +0000
commit0a0e3bb700d6f61baa36c297476e9c2e928a3672 (patch)
treef69b1c03476463a167660f1c1f52fc3ad684cbaa /astro
parent434eb6f2cb044d96fce03ec45f0cb646475bfb7e (diff)
Fix build with libc++
Notes
Notes: svn path=/head/; revision=327358
Diffstat (limited to 'astro')
-rw-r--r--astro/boinc-setiathome-enhanced/files/patch-client__vector__analyzeFuncs_vector.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/astro/boinc-setiathome-enhanced/files/patch-client__vector__analyzeFuncs_vector.cpp b/astro/boinc-setiathome-enhanced/files/patch-client__vector__analyzeFuncs_vector.cpp
index 947c43c291a9..a14286429b41 100644
--- a/astro/boinc-setiathome-enhanced/files/patch-client__vector__analyzeFuncs_vector.cpp
+++ b/astro/boinc-setiathome-enhanced/files/patch-client__vector__analyzeFuncs_vector.cpp
@@ -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