Ecore_Con: Fix compilation on Solaris

FIONREAD is defined in sys/filio.h
This commit is contained in:
Vincent Torri 2017-03-26 11:49:19 +02:00 committed by Carsten Haitzler (Rasterman)
parent d15faf08fe
commit 02b6ee3ed8
2 changed files with 5 additions and 1 deletions

View File

@ -3115,7 +3115,7 @@ EFL_EVAL_PKGS([ECORE_CON])
### Checks for header files
AC_CHECK_HEADERS([ws2tcpip.h netdb.h])
AC_CHECK_HEADERS([ws2tcpip.h netdb.h sys/filio.h])
if test "x${ac_cv_header_netdb_h}" = "xno" && test "x${have_windows}" = "xno"; then
AC_MSG_ERROR([netdb.h is requested to have Ecore_Con. Exiting...])

View File

@ -30,6 +30,10 @@
# include <sys/ioctl.h>
#endif
#ifdef HAVE_SYS_FILIO_H
# include <sys/filio.h>
#endif
#ifdef HAVE_SYSTEMD
# include <systemd/sd-daemon.h>
#endif