mirror of
https://github.com/adulau/ssldump.git
synced 2024-11-07 12:06:27 +00:00
Reorder checks in configure.ac
This commit is contained in:
parent
b61c420636
commit
bcf3dddbf0
1 changed files with 9 additions and 10 deletions
19
configure.ac
19
configure.ac
|
@ -13,12 +13,20 @@ AM_PROG_CC_C_O
|
||||||
AC_PROG_MAKE_SET
|
AC_PROG_MAKE_SET
|
||||||
AC_PROG_INSTALL
|
AC_PROG_INSTALL
|
||||||
|
|
||||||
|
|
||||||
# Checks for header files.
|
# Checks for header files.
|
||||||
AC_CHECK_HEADERS([arpa/inet.h memory.h netdb.h netinet/in.h stdlib.h string.h sys/param.h sys/socket.h sys/time.h unistd.h],,[AC_MSG_ERROR([Missing header.])])
|
AC_CHECK_HEADERS([arpa/inet.h memory.h netdb.h netinet/in.h stdlib.h string.h sys/param.h sys/socket.h sys/time.h unistd.h],,[AC_MSG_ERROR([Missing header.])])
|
||||||
AC_HEADER_STDC
|
AC_HEADER_STDC
|
||||||
AC_HEADER_TIME
|
AC_HEADER_TIME
|
||||||
|
|
||||||
|
# Checks for typedefs, structures, and compiler characteristics.
|
||||||
|
AC_CHECK_SIZEOF([unsigned short])
|
||||||
|
AC_CHECK_SIZEOF([unsigned int])
|
||||||
|
AC_CHECK_SIZEOF([unsigned long])
|
||||||
|
AC_CHECK_SIZEOF([unsigned long long])
|
||||||
|
|
||||||
|
# Checks for library functions.
|
||||||
|
AC_CHECK_FUNCS([malloc realloc gethostbyaddr gettimeofday inet_ntoa isascii memmove memset strchr strdup strstr strtol])
|
||||||
|
|
||||||
have_pcap=no
|
have_pcap=no
|
||||||
AC_SEARCH_LIBS([pcap_create], [pcap], [have_pcap=yes])
|
AC_SEARCH_LIBS([pcap_create], [pcap], [have_pcap=yes])
|
||||||
|
|
||||||
|
@ -65,15 +73,6 @@ fi
|
||||||
|
|
||||||
AC_CHECK_LIB([ssl], [OPENSSL_init_ssl])
|
AC_CHECK_LIB([ssl], [OPENSSL_init_ssl])
|
||||||
|
|
||||||
# Checks for typedefs, structures, and compiler characteristics.
|
|
||||||
AC_CHECK_SIZEOF([unsigned short])
|
|
||||||
AC_CHECK_SIZEOF([unsigned int])
|
|
||||||
AC_CHECK_SIZEOF([unsigned long])
|
|
||||||
AC_CHECK_SIZEOF([unsigned long long])
|
|
||||||
|
|
||||||
# Checks for library functions.
|
|
||||||
AC_CHECK_FUNCS([malloc realloc gethostbyaddr gettimeofday inet_ntoa isascii memmove memset strchr strdup strstr strtol])
|
|
||||||
|
|
||||||
AC_CONFIG_FILES([Makefile
|
AC_CONFIG_FILES([Makefile
|
||||||
common/Makefile
|
common/Makefile
|
||||||
common/lib/Makefile
|
common/lib/Makefile
|
||||||
|
|
Loading…
Reference in a new issue