efl: remove checks for sys/select.h, sys/time.h and sys/resource.h

SVN revision: 82584
This commit is contained in:
Lucas De Marchi 2013-01-10 20:25:57 +00:00
parent f1ca8b54d6
commit 90ba30ec7c
4 changed files with 3 additions and 16 deletions

View File

@ -1820,10 +1820,7 @@ AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS([ \
features.h \
sys/time.h \
sys/prctl.h \
sys/resource.h \
sys/select.h \
sys/timerfd.h \
])

View File

@ -79,9 +79,7 @@ const char *version_string = "0.0.0";
#ifndef USG
#include <time.h>
#include <sys/time.h> /* for __DATE__ and __TIME__ */
#ifdef HAVE_SYS_RESOURCE_H
# include <sys/resource.h>
#endif
#include <sys/resource.h>
#else
#include <sys/param.h> /* CYGNUS LOCAL: shebs -noquiet */
#include <sys/times.h>

View File

@ -23,10 +23,7 @@
#include <sys/types.h>
#include <errno.h>
#include <fcntl.h>
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#endif
#include <sys/time.h>
#ifdef _MSC_VER
# include <float.h>
@ -238,9 +235,7 @@ static Eina_Bool win32_handlers_delete_me = EINA_FALSE;
Ecore_Select_Function main_loop_select = _ecore_main_win32_select;
#else
# if !defined EXOTIC_NO_SELECT
# ifdef HAVE_SYS_SELECT_H
# include <sys/select.h>
# endif
Ecore_Select_Function main_loop_select = select;
# else
Ecore_Select_Function main_loop_select = NULL;

View File

@ -3,10 +3,7 @@
#endif
#include <stdlib.h>
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#endif
#include <sys/time.h>
#ifdef HAVE_EVIL
# include <Evil.h>