/* === H E A D E R S ======================================================= */
-#ifndef SYNFIG_NO_ANGLE
-# include "angle.h"
-#endif
//#include <cmath>
#include <math.h>
#include <OpenEXR/half.h>
#endif
-/* === M A C R O S ========================================================= */
+#ifndef SYNFIG_NO_ANGLE
+# include "angle.h"
+#endif
-#ifndef isnan
+/* === M A C R O S ========================================================= */
#ifdef WIN32
#include <float.h>
#endif
#endif
-#ifdef __APPLE__
-#define isnan __isnanf
+// For some reason isnan() isn't working on macosx any more.
+// This is a quick fix.
+#if defined(__APPLE__) && !defined(SYNFIG_ISNAN_FIX)
+#ifdef isnan
+#undef isnan
#endif
-
+inline bool isnan(double x) { return x != x; }
+inline bool isnan(float x) { return x != x; }
+#define SYNFIG_ISNAN_FIX 1
#endif
namespace synfig {
#include <ctype.h>
#include <math.h>
-#ifndef isnan
#ifdef WIN32
#include <float.h>
#endif
#endif
-#ifdef __APPLE__
-#define isnan __isnanf
+// For some reason isnan() isn't working on macosx any more.
+// This is a quick fix.
+#if defined(__APPLE__) && !defined(SYNFIG_ISNAN_FIX)
+#ifdef isnan
+#undef isnan
#endif
-
+inline bool isnan(double x) { return x != x; }
+inline bool isnan(float x) { return x != x; }
+#define SYNFIG_ISNAN_FIX 1
#endif
+
#endif
/* === U S I N G =========================================================== */
/* === H E A D E R S ======================================================= */
#include "real.h"
-#include <cmath>
+#include <math.h>
/* === M A C R O S ========================================================= */
-#ifndef isnan
#ifdef WIN32
#include <float.h>
#endif
#endif
-#ifdef __APPLE__
-#define isnan __isnanf
+// For some reason isnan() isn't working on macosx any more.
+// This is a quick fix.
+#if defined(__APPLE__) && !defined(SYNFIG_ISNAN_FIX)
+#ifdef isnan
+#undef isnan
#endif
-
+inline bool isnan(double x) { return x != x; }
+inline bool isnan(float x) { return x != x; }
+#define SYNFIG_ISNAN_FIX 1
#endif
+
/* === T Y P E D E F S ===================================================== */
/* === C L A S S E S & S T R U C T S ======================================= */