Ecore: fix Solaris build

SVN revision: 79614
devs/devilhorns/wayland_egl
Vincent Torri 11 years ago
parent 47a3d97885
commit 7eed9b718a
  1. 1
      legacy/ecore/ChangeLog
  2. 4
      legacy/ecore/src/lib/ecore/ecore_pipe.c
  3. 2
      legacy/ecore/src/lib/ecore_con/dns.c

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

@ -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

@ -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;

Loading…
Cancel
Save