summaryrefslogtreecommitdiffstats
path: root/src/isnormal.h
diff options
context:
space:
mode:
authorJoshua L. Blocher <verbalshadow@gmail.com>2008-07-03 16:14:52 +0000
committerverbalshadow <verbalshadow@users.sourceforge.net>2008-07-03 16:14:52 +0000
commitec4dca43010fdcbaa118e5998c3a7ef1d140d323 (patch)
treecf93bab8f16c22f4e5b8e29d12c90905a366737f /src/isnormal.h
parentTests for svg-affine and svg-length (the latter is not much more than a stub)... (diff)
downloadinkscape-ec4dca43010fdcbaa118e5998c3a7ef1d140d323.tar.gz
inkscape-ec4dca43010fdcbaa118e5998c3a7ef1d140d323.zip
Patch so Inkscape will compile on Solaris 10 from LP https://bugs.launchpad.net/inkscape/+bug/245173
(bzr r6133)
Diffstat (limited to 'src/isnormal.h')
-rw-r--r--src/isnormal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/isnormal.h b/src/isnormal.h
index 6587331c3..d53105926 100644
--- a/src/isnormal.h
+++ b/src/isnormal.h
@@ -5,7 +5,7 @@
* Fix for missing std::isnormal with SOLARIS8/GCC3.2
*/
-#if defined (SOLARIS_2_8) && __GNUC__ == 3 && __GNUC_MINOR__ == 2
+#if defined (SOLARIS)
#include <ieeefp.h>
#define isnormal(x) (fpclass(x) >= FP_NZERO)