diff options
Diffstat (limited to 'contrib/libpcap/config.h.in')
-rw-r--r-- | contrib/libpcap/config.h.in | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/contrib/libpcap/config.h.in b/contrib/libpcap/config.h.in index 06dbf8200c99..4bbb491ec168 100644 --- a/contrib/libpcap/config.h.in +++ b/contrib/libpcap/config.h.in @@ -244,6 +244,9 @@ /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME +/* Define to the home page for this package. */ +#undef PACKAGE_URL + /* Define to the version of this package. */ #undef PACKAGE_VERSION @@ -253,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 @@ -277,12 +286,14 @@ /* 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 @@ -292,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 |