diff options
author | fenner <fenner@FreeBSD.org> | 2002-06-21 01:35:37 +0000 |
---|---|---|
committer | fenner <fenner@FreeBSD.org> | 2002-06-21 01:35:37 +0000 |
commit | 71820ddb169f081273a4e230c5a500cd3a8c5fc2 (patch) | |
tree | e9c28ded05aa297cbbfcc7b2348babb947d169b2 /lib/libpcap | |
parent | 8d4e114169ebc81ce6ea35310ea67d9976cdbc13 (diff) | |
download | FreeBSD-src-71820ddb169f081273a4e230c5a500cd3a8c5fc2.zip FreeBSD-src-71820ddb169f081273a4e230c5a500cd3a8c5fc2.tar.gz |
Update for libpcap 0.7.1
Diffstat (limited to 'lib/libpcap')
-rw-r--r-- | lib/libpcap/config.h | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/lib/libpcap/config.h b/lib/libpcap/config.h index 729b4c5..39a80b4 100644 --- a/lib/libpcap/config.h +++ b/lib/libpcap/config.h @@ -10,12 +10,17 @@ /* Define as __inline if that's what the C compiler calls it. */ /* #undef inline */ +/* Long story short: aclocal.m4 depends on autoconf 2.13 + * implementation details wrt "const"; newer versions + * have different implementation details so for now we + * put "const" here. This may cause duplicate definitions + * in config.h but that should be OK since they're the same. + */ +/* #undef const */ + /* Define if you have the ether_hostton function. */ #define HAVE_ETHER_HOSTTON 1 -/* Define if you have the freeifaddrs function. */ -#define HAVE_FREEIFADDRS 1 - /* Define if you have the strerror function. */ #define HAVE_STRERROR 1 @@ -25,12 +30,12 @@ /* Define if you have the <ifaddrs.h> header file. */ #define HAVE_IFADDRS_H 1 +/* Define if you have the <limits.h> header file. */ +#define HAVE_LIMITS_H 1 + /* Define if you have the <netinet/if_ether.h> header file. */ #define HAVE_NETINET_IF_ETHER_H 1 -/* Define if you have the <netpacket/packet.h> header file. */ -/* #undef HAVE_NETPACKET_PACKET_H */ - /* Define if you have the <sys/bufmod.h> header file. */ /* #undef HAVE_SYS_BUFMOD_H */ @@ -65,12 +70,24 @@ /* XXX Handled by Makefile, to handle NOINET6 */ /* #define INET6 1 */ +/* Enable optimizer debugging */ +/* #undef BDEBUG */ + +/* Enable parser debugging */ +/* #undef YYDEBUG */ + /* define if you have a /dev/dlpi */ /* #undef HAVE_DEV_DLPI */ /* /dev/dlpi directory */ /* #undef PCAP_DEV_PREFIX */ +/* if if_packet.h has tpacket_stats defined */ +/* #undef HAVE_TPACKET_STATS */ + +/* define if you have a /proc/net/dev */ +/* #undef HAVE_PROC_NET_DEV */ + /* define on AIX to get certain functions */ /* #undef _SUN */ |