summaryrefslogtreecommitdiff
path: root/math/fityk/patches/patch-src_common.h
blob: dee6fbf22ae8a603cd4d518a0cd51cfc83273446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$NetBSD: patch-src_common.h,v 1.1 2014/02/24 12:35:10 wiedi Exp $

needs ieeefp.h for finite()
--- src/common.h.orig	2011-01-09 18:43:38.000000000 +0000
+++ src/common.h
@@ -19,6 +19,9 @@
 #include <math.h>
 #include <assert.h>
 #include <float.h> // DBL_MAX
+#if defined(__sun)
+#include <ieeefp.h>
+#endif
 
 #include "fityk.h" //ExecuteError
 using fityk::ExecuteError;