From: jiho-sf Date: Mon, 7 May 2007 07:07:08 +0000 (+0000) Subject: committed patch #1713558 by John Faith. adds the definition of isinf for Mac OS 10... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=793c9302d4ddce7d4ad8ac0a03e5677f809651de;p=inkscape.git committed patch #1713558 by John Faith. adds the definition of isinf for Mac OS 10.3. Should only affect this platform --- diff --git a/src/isinf.h b/src/isinf.h index 5893393f0..92c885701 100644 --- a/src/isinf.h +++ b/src/isinf.h @@ -10,6 +10,8 @@ #include #define isinf(x) ((fpclass(x) == FP_NINF) || (fpclass(x) == FP_PINF)) +#elif defined(__APPLE__) && __GNUC__ == 3 +#define isinf(x) __isinf(x) #endif #endif /* __ISINF_H__ */