forgot the check for the net includes

This commit is contained in:
TLINDEN
2013-10-29 22:54:07 +01:00
parent bfc9f5cb5f
commit 40a49cd76f
2 changed files with 8 additions and 1 deletions

View File

@@ -27,7 +27,8 @@ AC_CANONICAL_HOST
# Checks for header files. # Checks for header files.
AC_HEADER_STDC AC_HEADER_STDC
AC_CHECK_HEADERS(errno.h err.h stdlib.h string.h unistd.h stdio.h getopt.h\ AC_CHECK_HEADERS(errno.h err.h stdlib.h string.h unistd.h stdio.h getopt.h\
limits.h stddef.h stdint.h sys/types.h sys/stat.h endian.h sys/endian.h termios.h) limits.h stddef.h stdint.h sys/types.h sys/stat.h endian.h \
sys/endian.h termios.h arpa/inet.h netinet/in.h)
AC_TYPE_SIZE_T AC_TYPE_SIZE_T

View File

@@ -3,6 +3,9 @@
/* Define to 1 if you have the `arc4random_buf' function. */ /* Define to 1 if you have the `arc4random_buf' function. */
#undef HAVE_ARC4RANDOM_BUF #undef HAVE_ARC4RANDOM_BUF
/* Define to 1 if you have the <arpa/inet.h> header file. */
#undef HAVE_ARPA_INET_H
/* Define to 1 if you have the `be32toh' function. */ /* Define to 1 if you have the `be32toh' function. */
#undef HAVE_BE32TOH #undef HAVE_BE32TOH
@@ -72,6 +75,9 @@
/* Define to 1 if you have the `memset' function. */ /* Define to 1 if you have the `memset' function. */
#undef HAVE_MEMSET #undef HAVE_MEMSET
/* Define to 1 if you have the <netinet/in.h> header file. */
#undef HAVE_NETINET_IN_H
/* Define to 1 if you have the `perror' function. */ /* Define to 1 if you have the `perror' function. */
#undef HAVE_PERROR #undef HAVE_PERROR