acconfig.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* Autoheader needs me */
  2. #undef PACKAGE
  3. /* Autoheader needs me */
  4. #undef VERSION
  5. /* Define if builtin ELF support is enabled. */
  6. #undef BUILTIN_ELF
  7. /* Define if ELF core file support is enabled. */
  8. #undef ELFCORE
  9. /* Define if the `long long' type works. */
  10. #undef HAVE_LONG_LONG
  11. /* Define if we have "tm_isdst" in "struct tm". */
  12. #undef HAVE_TM_ISDST
  13. /* Define if we have a global "int" variable "daylight". */
  14. #undef HAVE_DAYLIGHT
  15. /* Define to `unsigned char' if standard headers don't define. */
  16. #undef uint8_t
  17. /* Define to `unsigned short' if standard headers don't define. */
  18. #undef uint16_t
  19. /* Define to `unsigned int' if standard headers don't define. */
  20. #undef uint32_t
  21. /* Define to `unsigned long long', if available, or `unsigned long', if
  22. standard headers don't define. */
  23. #undef uint64_t
  24. /* FIXME: These have to be added manually because autoheader doesn't know
  25. about AC_CHECK_SIZEOF_INCLUDES. */
  26. /* The number of bytes in a uint8_t. */
  27. #define SIZEOF_UINT8_T 0
  28. /* The number of bytes in a uint16_t. */
  29. #define SIZEOF_UINT16_T 0
  30. /* The number of bytes in a uint32_t. */
  31. #define SIZEOF_UINT32_T 0
  32. /* The number of bytes in a uint64_t. */
  33. #define SIZEOF_UINT64_T 0