Ecore: fix Solaris build

SVN revision: 79614
This commit is contained in:
Vincent Torri 2012-11-23 22:44:43 +00:00
parent 47a3d97885
commit 7eed9b718a
3 changed files with 6 additions and 1 deletions

View File

@ -1026,3 +1026,4 @@
2012-11-23 Sebastian Dransfeld
* Correctly define alloca
* Fix ieeefp.h inclusion on Solaris

View File

@ -7,6 +7,10 @@
#include <errno.h>
#include <math.h>
#ifdef __SUNPRO_C
# include <ieeefp.h>
#endif
#ifdef HAVE_ISFINITE
# define ECORE_FINITE(t) isfinite(t)
#else

View File

@ -678,7 +678,7 @@ size_t dns_strlcat(char *dst, const char *src, size_t lim) {
} /* dns_strlcat() */
#if _WIN32
#if defined(_WIN32) || defined(__SUNPRO_C)
static char *dns_strsep(char **sp, const char *delim) {
char *p;