diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-04-25 20:51:39 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-04-25 20:51:39 +0200 |
commit | 3aa8e5d131d058c33a50230d7c4c0a2f1008e19d (patch) | |
tree | bec2ade9ecd3af24138f87f954ae55ae0be9be46 /configure.ac | |
parent | 087cc3026522d080e322b5ba4431d1cc90a084ea (diff) |
added `--list-libpcap-devices' to list al available pcap devices, output WinPCAP specific information at startup
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 9e92922..5a6af52 100644 --- a/configure.ac +++ b/configure.ac @@ -113,6 +113,10 @@ struct foo { dnl Check for std functions. AC_CHECK_FUNCS([malloc calloc free memcpy memset printf sprintf vsnprintf strerror strlen strncmp strstr strtol strtoul fopen fprintf gettimeofday close fclose exit getopt_long],, [AC_MSG_ERROR([Missing essential std functions.])]) +if test x"${use_msw}" = x; then +AC_CHECK_FUNCS([inet_ntoa],, + [AC_MSG_ERROR([Missing essential std functions.])]) +fi dnl `--disable-pcap`: Enabled if found. AC_ARG_ENABLE([pcap], @@ -150,14 +154,14 @@ AC_MSG_RESULT([${with_rngdev}]) AC_DEFINE_UNQUOTED([RNGDEV], ["${with_rngdev}"], [set the path to the random device you want to use for pt_random]) -dnl Check libcap headers/functions. +dnl Check libpcap headers/functions. if test x"${pcap_enabled}" != x -a \ x"${use_msw}" != xyes; then AC_CHECK_HEADERS([pcap.h],, [pcap_enabled=]) AC_SEARCH_LIBS([pcap_lookupnet], [pcap],, [pcap_enabled=],) - AC_CHECK_FUNCS([pcap_compile pcap_close pcap_setfilter pcap_dispatch],, + AC_CHECK_FUNCS([pcap_compile pcap_close pcap_setfilter pcap_dispatch pcap_findalldevs pcap_freealldevs],, [pcap_enabled=]) fi |