config.h.cmake.in 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /* A form that will not confuse apibuild.py */
  2. #cmakedefine ATTRIBUTE_DESTRUCTOR @ATTRIBUTE_DESTRUCTOR@
  3. /* Define to 1 if you have the <arpa/inet.h> header file. */
  4. #cmakedefine HAVE_ARPA_INET_H 1
  5. /* Define if __attribute__((destructor)) is accepted */
  6. #cmakedefine HAVE_ATTRIBUTE_DESTRUCTOR 1
  7. /* Define to 1 if you have the <dlfcn.h> header file. */
  8. #cmakedefine HAVE_DLFCN_H 1
  9. /* Have dlopen based dso */
  10. #cmakedefine HAVE_DLOPEN 1
  11. /* Define to 1 if you have the <dl.h> header file. */
  12. #cmakedefine HAVE_DL_H 1
  13. /* Define to 1 if you have the <fcntl.h> header file. */
  14. #cmakedefine HAVE_FCNTL_H 1
  15. /* Define to 1 if you have the `ftime' function. */
  16. #cmakedefine HAVE_FTIME 1
  17. /* Define to 1 if you have the `gettimeofday' function. */
  18. #cmakedefine HAVE_GETTIMEOFDAY 1
  19. /* Define to 1 if you have the <inttypes.h> header file. */
  20. #cmakedefine HAVE_INTTYPES_H 1
  21. /* Define to 1 if you have the `isascii' function. */
  22. #cmakedefine HAVE_ISASCII 1
  23. /* Define if history library is there (-lhistory) */
  24. #cmakedefine HAVE_LIBHISTORY 1
  25. /* Define if readline library is there (-lreadline) */
  26. #cmakedefine HAVE_LIBREADLINE 1
  27. /* Define to 1 if you have the `mmap' function. */
  28. #cmakedefine HAVE_MMAP 1
  29. /* Define to 1 if you have the `munmap' function. */
  30. #cmakedefine HAVE_MUNMAP 1
  31. /* mmap() is no good without munmap() */
  32. #if defined(HAVE_MMAP) && !defined(HAVE_MUNMAP)
  33. # undef /**/ HAVE_MMAP
  34. #endif
  35. /* Define to 1 if you have the <netdb.h> header file. */
  36. #cmakedefine HAVE_NETDB_H 1
  37. /* Define to 1 if you have the <netinet/in.h> header file. */
  38. #cmakedefine HAVE_NETINET_IN_H 1
  39. /* Define to 1 if you have the <poll.h> header file. */
  40. #cmakedefine HAVE_POLL_H 1
  41. /* Define to 1 if you have the <pthread.h> header file. */
  42. #cmakedefine HAVE_PTHREAD_H 1
  43. /* Have shl_load based dso */
  44. #cmakedefine HAVE_SHLLOAD 1
  45. /* Define to 1 if you have the `stat' function. */
  46. #cmakedefine HAVE_STAT 1
  47. /* Define to 1 if you have the <stdint.h> header file. */
  48. #cmakedefine HAVE_STDINT_H 1
  49. /* Define to 1 if you have the <sys/mman.h> header file. */
  50. #cmakedefine HAVE_SYS_MMAN_H 1
  51. /* Define to 1 if you have the <sys/select.h> header file. */
  52. #cmakedefine HAVE_SYS_SELECT_H 1
  53. /* Define to 1 if you have the <sys/socket.h> header file. */
  54. #cmakedefine HAVE_SYS_SOCKET_H 1
  55. /* Define to 1 if you have the <sys/stat.h> header file. */
  56. #cmakedefine HAVE_SYS_STAT_H 1
  57. /* Define to 1 if you have the <sys/timeb.h> header file. */
  58. #cmakedefine HAVE_SYS_TIMEB_H 1
  59. /* Define to 1 if you have the <sys/time.h> header file. */
  60. #cmakedefine HAVE_SYS_TIME_H 1
  61. /* Define to 1 if you have the <unistd.h> header file. */
  62. #cmakedefine HAVE_UNISTD_H 1
  63. /* Whether va_copy() is available */
  64. #cmakedefine HAVE_VA_COPY 1
  65. /* Define to 1 if you have the <zlib.h> header file. */
  66. #cmakedefine HAVE_ZLIB_H 1
  67. /* Whether __va_copy() is available */
  68. #cmakedefine HAVE___VA_COPY 1
  69. /* Support for IPv6 */
  70. #cmakedefine SUPPORT_IP6 1
  71. /* Define if va_list is an array type */
  72. #cmakedefine VA_LIST_IS_ARRAY 1
  73. /* Version number of package */
  74. #cmakedefine VERSION "@VERSION@"
  75. /* Determine what socket length (socklen_t) data type is */
  76. #cmakedefine XML_SOCKLEN_T @XML_SOCKLEN_T@
  77. /* TLS specifier */
  78. #cmakedefine XML_THREAD_LOCAL @XML_THREAD_LOCAL@
  79. /* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
  80. <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
  81. #define below would cause a syntax error. */
  82. #cmakedefine _UINT32_T @_UINT32_T@
  83. /* Define to the type of an unsigned integer type of width exactly 32 bits if
  84. such a type exists and the standard includes do not define it. */
  85. #cmakedefine uint32_t @uint32_t@