config.h.in 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #ifndef __CONFIG_H__
  2. #define __CONFIG_H__
  3. /* Our code version */
  4. #undef VERSION
  5. /* Version of libpcapnav we were compiled against */
  6. #undef PCAPNAV_VERSION
  7. /* Are we big endian? */
  8. #undef WORDS_BIGENDIAN
  9. /* Define to 'uint8_t' if <sys/types.h> doesn't define. */
  10. #undef u_int8_t
  11. /* Define to 'uint16_t' if <sys/types.h> doesn't define. */
  12. #undef u_int16_t
  13. /* Define to 'uint32_t' if <sys/types.h> doesn't define. */
  14. #undef u_int32_t
  15. /* Define to 'uint64_t' if <sys/types.h> doesn't define. */
  16. #undef u_int64_t
  17. /* Define to enable debugging code and -d flag */
  18. #undef DEBUG
  19. /* Do we have the new inet_aton ? */
  20. #undef INET_ATON
  21. /* do we have the old inet_addr ? */
  22. #undef INET_ADDR
  23. /* do we have to force strict byte alignment? */
  24. #undef FORCE_ALIGN
  25. /* Large file support */
  26. #ifndef _FILE_OFFSET_BITS
  27. #undef _FILE_OFFSET_BITS
  28. #endif
  29. #undef _LARGE_FILES
  30. #undef _LARGEFILE_SOURCE
  31. /* Various functions */
  32. #undef HAVE_FSEEKO
  33. #undef HAVE_STRNCPY
  34. /* We need fakepoll if poll.h and sys/poll.h don't exist */
  35. #undef HAVE_POLL_H
  36. #undef HAVE_SYS_POLL_H
  37. #undef HAVE_UNISTD_H
  38. #undef HAVE_STRING_H
  39. /* Is libpcapnav available? */
  40. #undef HAVE_PCAPNAV
  41. /* Is tcpdump available? */
  42. #undef HAVE_TCPDUMP
  43. /* if so, where is it located? */
  44. #undef TCPDUMP_BINARY
  45. /* does libpcap come with pcap_datalink_val_to_description() */
  46. #undef HAVE_DLT_VAL_TO_DESC
  47. #endif /* __CONFIG_H__ */