diff options
author | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2013-01-10 20:25:57 +0000 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2013-01-10 20:25:57 +0000 |
commit | 90ba30ec7c23a9c0ab22102a25bb899f72a7c89e (patch) | |
tree | 3633346989aca9774ebab1dc0a92ec042044a83a /src/lib/ecore | |
parent | f1ca8b54d6f51d0eab01e29e47c3f28d5056aa60 (diff) |
efl: remove checks for sys/select.h, sys/time.h and sys/resource.h
SVN revision: 82584
Diffstat (limited to 'src/lib/ecore')
-rw-r--r-- | src/lib/ecore/ecore_main.c | 7 | ||||
-rw-r--r-- | src/lib/ecore/ecore_time.c | 5 |
2 files changed, 2 insertions, 10 deletions
diff --git a/src/lib/ecore/ecore_main.c b/src/lib/ecore/ecore_main.c index b6f27a9491..e551ea71e0 100644 --- a/src/lib/ecore/ecore_main.c +++ b/src/lib/ecore/ecore_main.c | |||
@@ -23,10 +23,7 @@ | |||
23 | #include <sys/types.h> | 23 | #include <sys/types.h> |
24 | #include <errno.h> | 24 | #include <errno.h> |
25 | #include <fcntl.h> | 25 | #include <fcntl.h> |
26 | 26 | #include <sys/time.h> | |
27 | #ifdef HAVE_SYS_TIME_H | ||
28 | # include <sys/time.h> | ||
29 | #endif | ||
30 | 27 | ||
31 | #ifdef _MSC_VER | 28 | #ifdef _MSC_VER |
32 | # include <float.h> | 29 | # include <float.h> |
@@ -238,9 +235,7 @@ static Eina_Bool win32_handlers_delete_me = EINA_FALSE; | |||
238 | Ecore_Select_Function main_loop_select = _ecore_main_win32_select; | 235 | Ecore_Select_Function main_loop_select = _ecore_main_win32_select; |
239 | #else | 236 | #else |
240 | # if !defined EXOTIC_NO_SELECT | 237 | # if !defined EXOTIC_NO_SELECT |
241 | # ifdef HAVE_SYS_SELECT_H | ||
242 | # include <sys/select.h> | 238 | # include <sys/select.h> |
243 | # endif | ||
244 | Ecore_Select_Function main_loop_select = select; | 239 | Ecore_Select_Function main_loop_select = select; |
245 | # else | 240 | # else |
246 | Ecore_Select_Function main_loop_select = NULL; | 241 | Ecore_Select_Function main_loop_select = NULL; |
diff --git a/src/lib/ecore/ecore_time.c b/src/lib/ecore/ecore_time.c index 44b1dab81f..d3bac94310 100644 --- a/src/lib/ecore/ecore_time.c +++ b/src/lib/ecore/ecore_time.c | |||
@@ -3,10 +3,7 @@ | |||
3 | #endif | 3 | #endif |
4 | 4 | ||
5 | #include <stdlib.h> | 5 | #include <stdlib.h> |
6 | 6 | #include <sys/time.h> | |
7 | #ifdef HAVE_SYS_TIME_H | ||
8 | # include <sys/time.h> | ||
9 | #endif | ||
10 | 7 | ||
11 | #ifdef HAVE_EVIL | 8 | #ifdef HAVE_EVIL |
12 | # include <Evil.h> | 9 | # include <Evil.h> |