diff options
author | Cedric BAIL <cedric@osg.samsung.com> | 2017-09-14 09:59:02 -0700 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2017-09-14 09:59:02 -0700 |
commit | 024c6a9fc33c9fc0056f9e6b35dee64fb74cd225 (patch) | |
tree | 2304c6c0fec549cba0ccfad412042c7d3eba6ac4 | |
parent | 6a4bc78eafe6ca637fa7cd332e969753ad9dbe0b (diff) |
efl: silent warnings shown on solaris due to missing header files.
-rw-r--r-- | src/bin/ecore_evas/ecore_evas_convert.c | 2 | ||||
-rw-r--r-- | src/lib/ecore/ecore_exe_posix.c | 1 | ||||
-rw-r--r-- | src/lib/eina/eina_debug.c | 1 | ||||
-rw-r--r-- | src/lib/eina/eina_inarray.c | 1 | ||||
-rw-r--r-- | src/tests/eina/eina_test_abi.c | 1 |
5 files changed, 6 insertions, 0 deletions
diff --git a/src/bin/ecore_evas/ecore_evas_convert.c b/src/bin/ecore_evas/ecore_evas_convert.c index 6012d9a54f..0b87cae39a 100644 --- a/src/bin/ecore_evas/ecore_evas_convert.c +++ b/src/bin/ecore_evas/ecore_evas_convert.c | |||
@@ -14,6 +14,8 @@ | |||
14 | 14 | ||
15 | #if defined(_WIN32) || defined(EXOTIC_NO_SIGNAL) | 15 | #if defined(_WIN32) || defined(EXOTIC_NO_SIGNAL) |
16 | # define NO_SIGNAL | 16 | # define NO_SIGNAL |
17 | #else | ||
18 | # include <signal.h> | ||
17 | #endif | 19 | #endif |
18 | 20 | ||
19 | #undef EINA_LOG_DOMAIN_DEFAULT | 21 | #undef EINA_LOG_DOMAIN_DEFAULT |
diff --git a/src/lib/ecore/ecore_exe_posix.c b/src/lib/ecore/ecore_exe_posix.c index b8baea81fc..2c4862fb80 100644 --- a/src/lib/ecore/ecore_exe_posix.c +++ b/src/lib/ecore/ecore_exe_posix.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <fcntl.h> | 12 | #include <fcntl.h> |
13 | #include <sys/time.h> | 13 | #include <sys/time.h> |
14 | #include <sys/resource.h> | 14 | #include <sys/resource.h> |
15 | #include <signal.h> | ||
15 | 16 | ||
16 | #ifdef HAVE_PRCTL | 17 | #ifdef HAVE_PRCTL |
17 | # include <sys/prctl.h> | 18 | # include <sys/prctl.h> |
diff --git a/src/lib/eina/eina_debug.c b/src/lib/eina/eina_debug.c index 468ca439e5..b042a16e70 100644 --- a/src/lib/eina/eina_debug.c +++ b/src/lib/eina/eina_debug.c | |||
@@ -59,6 +59,7 @@ | |||
59 | # include <Evil.h> | 59 | # include <Evil.h> |
60 | #endif | 60 | #endif |
61 | 61 | ||
62 | #include "eina_alloca.h" | ||
62 | #include "eina_debug.h" | 63 | #include "eina_debug.h" |
63 | #include "eina_cpu.h" | 64 | #include "eina_cpu.h" |
64 | #include "eina_types.h" | 65 | #include "eina_types.h" |
diff --git a/src/lib/eina/eina_inarray.c b/src/lib/eina/eina_inarray.c index a216f0291b..80bb3ea059 100644 --- a/src/lib/eina/eina_inarray.c +++ b/src/lib/eina/eina_inarray.c | |||
@@ -25,6 +25,7 @@ | |||
25 | 25 | ||
26 | #include "eina_config.h" | 26 | #include "eina_config.h" |
27 | #include "eina_private.h" | 27 | #include "eina_private.h" |
28 | #include "eina_alloca.h" | ||
28 | #include "eina_log.h" | 29 | #include "eina_log.h" |
29 | 30 | ||
30 | /* undefs EINA_ARG_NONULL() so NULL checks are not compiled out! */ | 31 | /* undefs EINA_ARG_NONULL() so NULL checks are not compiled out! */ |
diff --git a/src/tests/eina/eina_test_abi.c b/src/tests/eina/eina_test_abi.c index b75ddf9f91..c8b109c9a8 100644 --- a/src/tests/eina/eina_test_abi.c +++ b/src/tests/eina/eina_test_abi.c | |||
@@ -32,6 +32,7 @@ typedef uint32_t Eina_Unicode; | |||
32 | 32 | ||
33 | #include "eina_config.h" | 33 | #include "eina_config.h" |
34 | #include "eina_private.h" | 34 | #include "eina_private.h" |
35 | #include "eina_alloca.h" | ||
35 | #include "eina_main.h" | 36 | #include "eina_main.h" |
36 | #include "eina_safety_checks.h" | 37 | #include "eina_safety_checks.h" |
37 | 38 | ||