diff --git a/src/examples/ecore/efl_net_ip_address_example.c b/src/examples/ecore/efl_net_ip_address_example.c index 37cbc2f2e5..2392b23c6e 100644 --- a/src/examples/ecore/efl_net_ip_address_example.c +++ b/src/examples/ecore/efl_net_ip_address_example.c @@ -1,10 +1,17 @@ #define EFL_BETA_API_SUPPORT 1 #define EFL_EO_API_SUPPORT 1 +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif #include #include #include -#include -#include +#ifdef HAVE_NETINET_IN_H +# include +#endif +#ifdef HAVE_ARPA_INET_H +# include +#endif static int retval = EXIT_SUCCESS; static Eina_List *resolving = NULL;