12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #ifndef __CONFIG_H__
- #define __CONFIG_H__
- /* Our code version */
- #undef VERSION
- /* Version of libpcapnav we were compiled against */
- #undef PCAPNAV_VERSION
- /* Are we big endian? */
- #undef WORDS_BIGENDIAN
- /* Define to 'uint8_t' if <sys/types.h> doesn't define. */
- #undef u_int8_t
- /* Define to 'uint16_t' if <sys/types.h> doesn't define. */
- #undef u_int16_t
- /* Define to 'uint32_t' if <sys/types.h> doesn't define. */
- #undef u_int32_t
- /* Define to 'uint64_t' if <sys/types.h> doesn't define. */
- #undef u_int64_t
- /* Define to enable debugging code and -d flag */
- #undef DEBUG
- /* Do we have the new inet_aton ? */
- #undef INET_ATON
- /* do we have the old inet_addr ? */
- #undef INET_ADDR
- /* do we have to force strict byte alignment? */
- #undef FORCE_ALIGN
- /* Large file support */
- #ifndef _FILE_OFFSET_BITS
- #undef _FILE_OFFSET_BITS
- #endif
- #undef _LARGE_FILES
- #undef _LARGEFILE_SOURCE
- /* Various functions */
- #undef HAVE_FSEEKO
- #undef HAVE_STRNCPY
- /* We need fakepoll if poll.h and sys/poll.h don't exist */
- #undef HAVE_POLL_H
- #undef HAVE_SYS_POLL_H
- #undef HAVE_UNISTD_H
- #undef HAVE_STRING_H
- /* Is libpcapnav available? */
- #undef HAVE_PCAPNAV
- /* Is tcpdump available? */
- #undef HAVE_TCPDUMP
- /* if so, where is it located? */
- #undef TCPDUMP_BINARY
- /* does libpcap come with pcap_datalink_val_to_description() */
- #undef HAVE_DLT_VAL_TO_DESC
- #endif /* __CONFIG_H__ */
|