config.h 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. /* config.h. Generated from config.h.in by configure. */
  2. /* config.h.in. Generated from configure.ac by autoheader. */
  3. /* Define if building universal (internal helper macro) */
  4. /* #undef AC_APPLE_UNIVERSAL_BUILD */
  5. /* Define to 1 if ASAN is enabled */
  6. #define HAVE_ASAN 0
  7. /* Define to 1 if you have check available */
  8. #define HAVE_CHECK 0
  9. /* Define to 1 if you have a compatible version of check available */
  10. #define HAVE_COMPATIBLE_CHECK 0
  11. /* Define to 1 if you have the declaration of `environ', and to 0 if you
  12. don't. */
  13. #define HAVE_DECL_ENVIRON 1
  14. /* Define to 1 if developer mode is enabled */
  15. #define HAVE_DEVMODE 1
  16. /* Define to 1 if you have the <dlfcn.h> header file. */
  17. #define HAVE_DLFCN_H 1
  18. /* Define to 1 if you have git available */
  19. #define HAVE_GIT 0
  20. /* Define to 1 if you have the <inttypes.h> header file. */
  21. #define HAVE_INTTYPES_H 1
  22. /* Define to 1 if you have jq available */
  23. #define HAVE_JQ 0
  24. /* Define to 1 if you have libyaml available */
  25. #define HAVE_LIBYAML 0
  26. /* Define to 1 if you have the <minix/config.h> header file. */
  27. /* #undef HAVE_MINIX_CONFIG_H */
  28. /* Define if you have POSIX threads libraries and header files. */
  29. #define HAVE_PTHREAD 1
  30. /* Have PTHREAD_PRIO_INHERIT. */
  31. #define HAVE_PTHREAD_PRIO_INHERIT 1
  32. /* Define to 1 if you have qsort_r available */
  33. #define HAVE_QSORT_R 1
  34. /* Define to 1 if you have sphinx (and all required packages) available */
  35. #define HAVE_SPHINX 0
  36. /* Define to 1 if the system has the type `ssize_t'. */
  37. #define HAVE_SSIZE_T 1
  38. /* Define to 1 if static linking is available */
  39. #define HAVE_STATIC 0
  40. /* Define to 1 if you have the <stdint.h> header file. */
  41. #define HAVE_STDINT_H 1
  42. /* Define to 1 if you have the <stdio.h> header file. */
  43. #define HAVE_STDIO_H 1
  44. /* Define to 1 if you have the <stdlib.h> header file. */
  45. #define HAVE_STDLIB_H 1
  46. /* Define to 1 if you have the <strings.h> header file. */
  47. #define HAVE_STRINGS_H 1
  48. /* Define to 1 if you have the <string.h> header file. */
  49. #define HAVE_STRING_H 1
  50. /* Define to 1 if you have the <sys/stat.h> header file. */
  51. #define HAVE_SYS_STAT_H 1
  52. /* Define to 1 if you have the <sys/types.h> header file. */
  53. #define HAVE_SYS_TYPES_H 1
  54. /* Define to 1 if you have the <unistd.h> header file. */
  55. #define HAVE_UNISTD_H 1
  56. /* Define to 1 if you have the <wchar.h> header file. */
  57. #define HAVE_WCHAR_H 1
  58. /* Define to the sub-directory where libtool stores uninstalled libraries. */
  59. #define LT_OBJDIR ".libs/"
  60. /* Define if debugging is disabled */
  61. #define NDEBUG 1
  62. /* Name of package */
  63. #define PACKAGE "libfyaml"
  64. /* Define to the address where bug reports for this package should be sent. */
  65. #define PACKAGE_BUGREPORT "pantelis.antoniou@konsulko.com"
  66. /* Define to the full name of this package. */
  67. #define PACKAGE_NAME "libfyaml"
  68. /* Define to the full name and version of this package. */
  69. #define PACKAGE_STRING "libfyaml 0.8"
  70. /* Define to the one symbol short name of this package. */
  71. #define PACKAGE_TARNAME "libfyaml"
  72. /* Define to the home page for this package. */
  73. #define PACKAGE_URL ""
  74. /* Define to the version of this package. */
  75. #define PACKAGE_VERSION "0.8"
  76. /* Define to necessary symbol if this constant uses a non-standard name on
  77. your system. */
  78. /* #undef PTHREAD_CREATE_JOINABLE */
  79. /* Define as the return type of signal handlers (`int' or `void'). */
  80. #define RETSIGTYPE void
  81. /* Define to 1 if all of the C90 standard headers exist (not just the ones
  82. required in a freestanding environment). This macro is provided for
  83. backward compatibility; new code need not use it. */
  84. #define STDC_HEADERS 1
  85. /* Enable extensions on AIX 3, Interix. */
  86. #ifndef _ALL_SOURCE
  87. # define _ALL_SOURCE 1
  88. #endif
  89. /* Enable general extensions on macOS. */
  90. #ifndef _DARWIN_C_SOURCE
  91. # define _DARWIN_C_SOURCE 1
  92. #endif
  93. /* Enable general extensions on Solaris. */
  94. #ifndef __EXTENSIONS__
  95. # define __EXTENSIONS__ 1
  96. #endif
  97. /* Enable GNU extensions on systems that have them. */
  98. #ifndef _GNU_SOURCE
  99. # define _GNU_SOURCE 1
  100. #endif
  101. /* Enable X/Open compliant socket functions that do not require linking
  102. with -lxnet on HP-UX 11.11. */
  103. #ifndef _HPUX_ALT_XOPEN_SOCKET_API
  104. # define _HPUX_ALT_XOPEN_SOCKET_API 1
  105. #endif
  106. /* Identify the host operating system as Minix.
  107. This macro does not affect the system headers' behavior.
  108. A future release of Autoconf may stop defining this macro. */
  109. #ifndef _MINIX
  110. /* # undef _MINIX */
  111. #endif
  112. /* Enable general extensions on NetBSD.
  113. Enable NetBSD compatibility extensions on Minix. */
  114. #ifndef _NETBSD_SOURCE
  115. # define _NETBSD_SOURCE 1
  116. #endif
  117. /* Enable OpenBSD compatibility extensions on NetBSD.
  118. Oddly enough, this does nothing on OpenBSD. */
  119. #ifndef _OPENBSD_SOURCE
  120. # define _OPENBSD_SOURCE 1
  121. #endif
  122. /* Define to 1 if needed for POSIX-compatible behavior. */
  123. #ifndef _POSIX_SOURCE
  124. /* # undef _POSIX_SOURCE */
  125. #endif
  126. /* Define to 2 if needed for POSIX-compatible behavior. */
  127. #ifndef _POSIX_1_SOURCE
  128. /* # undef _POSIX_1_SOURCE */
  129. #endif
  130. /* Enable POSIX-compatible threading on Solaris. */
  131. #ifndef _POSIX_PTHREAD_SEMANTICS
  132. # define _POSIX_PTHREAD_SEMANTICS 1
  133. #endif
  134. /* Enable extensions specified by ISO/IEC TS 18661-5:2014. */
  135. #ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
  136. # define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1
  137. #endif
  138. /* Enable extensions specified by ISO/IEC TS 18661-1:2014. */
  139. #ifndef __STDC_WANT_IEC_60559_BFP_EXT__
  140. # define __STDC_WANT_IEC_60559_BFP_EXT__ 1
  141. #endif
  142. /* Enable extensions specified by ISO/IEC TS 18661-2:2015. */
  143. #ifndef __STDC_WANT_IEC_60559_DFP_EXT__
  144. # define __STDC_WANT_IEC_60559_DFP_EXT__ 1
  145. #endif
  146. /* Enable extensions specified by ISO/IEC TS 18661-4:2015. */
  147. #ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__
  148. # define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1
  149. #endif
  150. /* Enable extensions specified by ISO/IEC TS 18661-3:2015. */
  151. #ifndef __STDC_WANT_IEC_60559_TYPES_EXT__
  152. # define __STDC_WANT_IEC_60559_TYPES_EXT__ 1
  153. #endif
  154. /* Enable extensions specified by ISO/IEC TR 24731-2:2010. */
  155. #ifndef __STDC_WANT_LIB_EXT2__
  156. # define __STDC_WANT_LIB_EXT2__ 1
  157. #endif
  158. /* Enable extensions specified by ISO/IEC 24747:2009. */
  159. #ifndef __STDC_WANT_MATH_SPEC_FUNCS__
  160. # define __STDC_WANT_MATH_SPEC_FUNCS__ 1
  161. #endif
  162. /* Enable extensions on HP NonStop. */
  163. #ifndef _TANDEM_SOURCE
  164. # define _TANDEM_SOURCE 1
  165. #endif
  166. /* Enable X/Open extensions. Define to 500 only if necessary
  167. to make mbstate_t available. */
  168. #ifndef _XOPEN_SOURCE
  169. /* # undef _XOPEN_SOURCE */
  170. #endif
  171. /* Version number of package */
  172. #define VERSION "0.8"
  173. /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
  174. significant byte first (like Motorola and SPARC, unlike Intel). */
  175. #if defined AC_APPLE_UNIVERSAL_BUILD
  176. # if defined __BIG_ENDIAN__
  177. # define WORDS_BIGENDIAN 1
  178. # endif
  179. #else
  180. # ifndef WORDS_BIGENDIAN
  181. /* # undef WORDS_BIGENDIAN */
  182. # endif
  183. #endif
  184. /* Define to empty if `const' does not conform to ANSI C. */
  185. /* #undef const */
  186. /* Define to `int' if <sys/types.h> doesn't define. */
  187. /* #undef gid_t */
  188. /* Define to `long int' if <sys/types.h> does not define. */
  189. /* #undef off_t */
  190. /* Define as a signed integer type capable of holding a process identifier. */
  191. /* #undef pid_t */
  192. /* Define to `unsigned int' if <sys/types.h> does not define. */
  193. /* #undef size_t */
  194. /* Define ssize_t if it is not done by the standard libs. */
  195. /* #undef ssize_t */
  196. /* Define to `int' if <sys/types.h> doesn't define. */
  197. /* #undef uid_t */