netstar pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=e680ff742631c12b4ce34a53eef32cd27b644c03
commit e680ff742631c12b4ce34a53eef32cd27b644c03 Author: Alastair Poole <[email protected]> Date: Thu Jun 14 14:22:09 2018 +0100 examples: fix build on FreeBSD. Missing header for AF_INET/6. Another small difference between BSD and Linux et al. --- src/examples/ecore/efl_net_ip_address_example.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/examples/ecore/efl_net_ip_address_example.c b/src/examples/ecore/efl_net_ip_address_example.c index 2989efbc00..ee1595b6c3 100644 --- a/src/examples/ecore/efl_net_ip_address_example.c +++ b/src/examples/ecore/efl_net_ip_address_example.c @@ -12,6 +12,9 @@ #ifdef HAVE_ARPA_INET_H # include <arpa/inet.h> #endif +#ifdef HAVE_SYS_SOCKET_H +# include <sys/socket.h> +#endif static int retval = EXIT_SUCCESS; static Eina_List *resolving = NULL; --
