diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2012-11-23 22:44:43 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2012-11-23 22:44:43 +0000 |
commit | 7eed9b718a7db0a3f21da7962a900676039688da (patch) | |
tree | de351d71fad9a39a47051c532706b7d4151b94e5 /legacy/ecore/src/lib/ecore/ecore_pipe.c | |
parent | 47a3d97885b80f1e703b55ecd491aabf287fc1dc (diff) |
Ecore: fix Solaris build
SVN revision: 79614
Diffstat (limited to '')
-rw-r--r-- | legacy/ecore/src/lib/ecore/ecore_pipe.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/legacy/ecore/src/lib/ecore/ecore_pipe.c b/legacy/ecore/src/lib/ecore/ecore_pipe.c index 5da0923f72..7e0e866712 100644 --- a/legacy/ecore/src/lib/ecore/ecore_pipe.c +++ b/legacy/ecore/src/lib/ecore/ecore_pipe.c | |||
@@ -7,6 +7,10 @@ | |||
7 | #include <errno.h> | 7 | #include <errno.h> |
8 | #include <math.h> | 8 | #include <math.h> |
9 | 9 | ||
10 | #ifdef __SUNPRO_C | ||
11 | # include <ieeefp.h> | ||
12 | #endif | ||
13 | |||
10 | #ifdef HAVE_ISFINITE | 14 | #ifdef HAVE_ISFINITE |
11 | # define ECORE_FINITE(t) isfinite(t) | 15 | # define ECORE_FINITE(t) isfinite(t) |
12 | #else | 16 | #else |