diff options
author | Jean-Benoit MARTIN <jean-benoit.martin@open.eurogiciel.org> | 2014-11-07 15:44:25 +0100 |
---|---|---|
committer | Jean-Benoit MARTIN <jean-benoit.martin@open.eurogiciel.org> | 2014-11-07 15:44:25 +0100 |
commit | a2db57476cfba84fc739ff1c5d907f03c7058257 (patch) | |
tree | 191a29b1ba93dade032af9edeea1353e54682c38 /config.h.in | |
parent | 9a7f43d7ff4426a843b26762ca48a1a81a89bada (diff) | |
download | libpcap-a2db57476cfba84fc739ff1c5d907f03c7058257.tar.gz libpcap-a2db57476cfba84fc739ff1c5d907f03c7058257.tar.bz2 libpcap-a2db57476cfba84fc739ff1c5d907f03c7058257.zip |
Imported Upstream version 1.6.1upstream/1.6.1
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 32 |
1 files changed, 29 insertions, 3 deletions
diff --git a/config.h.in b/config.h.in index bd5177c..4bbb491 100644 --- a/config.h.in +++ b/config.h.in @@ -58,6 +58,15 @@ /* if libnl exists and is version 2.x */ #undef HAVE_LIBNL_2_x +/* if libnl exists and is version 3.x */ +#undef HAVE_LIBNL_3_x + +/* libnl has NLE_FAILURE */ +#undef HAVE_LIBNL_NLE + +/* libnl has new-style socket api */ +#undef HAVE_LIBNL_SOCKETS + /* Define to 1 if you have the <limits.h> header file. */ #undef HAVE_LIMITS_H @@ -211,6 +220,9 @@ /* path for device for USB sniffing */ #undef LINUX_USB_MON_DEV +/* if we need a pcap_parse wrapper around yyparse */ +#undef NEED_YYPARSE_WRAPPER + /* Define to 1 if netinet/ether.h declares `ether_hostton' */ #undef NETINET_ETHER_H_DECLARES_ETHER_HOSTTON @@ -244,12 +256,18 @@ /* target host supports Bluetooth sniffing */ #undef PCAP_SUPPORT_BT +/* target host supports Bluetooth Monitor */ +#undef PCAP_SUPPORT_BT_MONITOR + /* target host supports CAN sniffing */ #undef PCAP_SUPPORT_CAN /* target host supports canusb */ #undef PCAP_SUPPORT_CANUSB +/* support D-Bus sniffing */ +#undef PCAP_SUPPORT_DBUS + /* target host supports netfilter sniffing */ #undef PCAP_SUPPORT_NETFILTER @@ -259,18 +277,23 @@ /* include ACN support */ #undef SITA +/* if struct sockaddr_hci has hci_channel member */ +#undef SOCKADDR_HCI_HAS_HCI_CHANNEL + /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Enable parser debugging */ #undef YYDEBUG +/* Enable large inode numbers on Mac OS X 10.5. */ +#ifndef _DARWIN_USE_64_BIT_INODE +# define _DARWIN_USE_64_BIT_INODE 1 +#endif + /* Number of bits in a file offset, on hosts where this is settable. */ #undef _FILE_OFFSET_BITS -/* needed on HP-UX */ -#undef _HPUX_SOURCE - /* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */ #undef _LARGEFILE_SOURCE @@ -280,6 +303,9 @@ /* define on AIX to get certain functions */ #undef _SUN +/* define if your compiler allows __attribute__((format)) without a warning */ +#undef __ATTRIBUTE___FORMAT_OK + /* to handle Ultrix compilers that don't support const in prototypes */ #undef const |