E17: define htonl correctly

SVN revision: 79960
This commit is contained in:
Vincent Torri 2012-12-01 07:19:18 +00:00
parent f4a5f7a832
commit 688aa066a1
3 changed files with 17 additions and 2 deletions

View File

@ -76,7 +76,7 @@ AC_CHECK_FUNCS(unsetenv)
efl_version="1.7.0"
AC_CHECK_HEADERS([sys/timerfd.h sys/ptrace.h])
AC_CHECK_HEADERS([sys/timerfd.h sys/ptrace.h arpa/inet.h netinet/in.h])
dnl AC_CHECK_HEADERS(X11/extensions/shape.h,, AC_MSG_ERROR([Cannot find X11/extensions/shape.h. Make sure your CFLAGS environment variable contains include lines for the location of this file]))

View File

@ -1,6 +1,13 @@
#include "e_sha1.h"
#include <string.h>
#include <arpa/inet.h>
#ifdef HAVE_ARPA_INET_H
# include <arpa/inet.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
/* externally accessible functions */

View File

@ -5,6 +5,14 @@
# include "config.h"
#endif
#ifdef HAVE_ARPA_INET_H
# include <arpa/inet.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#include <Ecore.h>
#include <Ecore_Con.h>
#include <inttypes.h>