diff options
-rw-r--r-- | src/lib/ecore_con/ecore_con_private.h | 4 | ||||
-rw-r--r-- | src/lib/ecore_ipc/ecore_ipc.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/ecore_con/ecore_con_private.h b/src/lib/ecore_con/ecore_con_private.h index 639fb0d17f..34478afeba 100644 --- a/src/lib/ecore_con/ecore_con_private.h +++ b/src/lib/ecore_con/ecore_con_private.h | |||
@@ -12,6 +12,10 @@ | |||
12 | #include <sys/un.h> | 12 | #include <sys/un.h> |
13 | #endif | 13 | #endif |
14 | 14 | ||
15 | #ifdef HAVE_SYS_SOCKET_H | ||
16 | # include <sys/socket.h> | ||
17 | #endif | ||
18 | |||
15 | #ifdef HAVE_NETINET_IN_H | 19 | #ifdef HAVE_NETINET_IN_H |
16 | # include <netinet/in.h> | 20 | # include <netinet/in.h> |
17 | #endif | 21 | #endif |
diff --git a/src/lib/ecore_ipc/ecore_ipc.c b/src/lib/ecore_ipc/ecore_ipc.c index d0cfb7877c..17f77441dc 100644 --- a/src/lib/ecore_ipc/ecore_ipc.c +++ b/src/lib/ecore_ipc/ecore_ipc.c | |||
@@ -5,6 +5,10 @@ | |||
5 | #include <string.h> | 5 | #include <string.h> |
6 | #include <sys/types.h> | 6 | #include <sys/types.h> |
7 | 7 | ||
8 | #ifdef HAVE_ARPA_INET_H | ||
9 | # include <arpa/inet.h> | ||
10 | #endif | ||
11 | |||
8 | #include <Ecore.h> | 12 | #include <Ecore.h> |
9 | #include <ecore_private.h> | 13 | #include <ecore_private.h> |
10 | #include <Ecore_Con.h> | 14 | #include <Ecore_Con.h> |