pyconfig-osx-arm64.h 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947
  1. /* pyconfig.h. Generated from pyconfig.h.in by configure. */
  2. /* pyconfig.h.in. Generated from configure.ac by autoheader. */
  3. #ifndef Py_PYCONFIG_H
  4. #define Py_PYCONFIG_H
  5. /* Define if building universal (internal helper macro) */
  6. /* #undef AC_APPLE_UNIVERSAL_BUILD */
  7. /* BUILD_GNU_TYPE + AIX_BUILDDATE are used to construct the PEP425 tag of the
  8. build system. */
  9. /* #undef AIX_BUILDDATE */
  10. /* Define for AIX if your compiler is a genuine IBM xlC/xlC_r and you want
  11. support for AIX C++ shared extension modules. */
  12. /* #undef AIX_GENUINE_CPLUSPLUS */
  13. /* The normal alignment of `long', in bytes. */
  14. #define ALIGNOF_LONG 8
  15. /* The normal alignment of `max_align_t', in bytes. */
  16. #define ALIGNOF_MAX_ALIGN_T 8
  17. /* The normal alignment of `size_t', in bytes. */
  18. #define ALIGNOF_SIZE_T 8
  19. /* Alternative SOABI used in debug build to load C extensions built in release
  20. mode */
  21. /* #undef ALT_SOABI */
  22. /* The Android API level. */
  23. /* #undef ANDROID_API_LEVEL */
  24. /* Define if C doubles are 64-bit IEEE 754 binary format, stored in ARM
  25. mixed-endian order (byte order 45670123) */
  26. /* #undef DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754 */
  27. /* Define if C doubles are 64-bit IEEE 754 binary format, stored with the most
  28. significant byte first */
  29. /* #undef DOUBLE_IS_BIG_ENDIAN_IEEE754 */
  30. /* Define if C doubles are 64-bit IEEE 754 binary format, stored with the
  31. least significant byte first */
  32. #define DOUBLE_IS_LITTLE_ENDIAN_IEEE754 1
  33. /* Define if --enable-ipv6 is specified */
  34. #define ENABLE_IPV6 1
  35. /* Define if getpgrp() must be called as getpgrp(0). */
  36. /* #undef GETPGRP_HAVE_ARG */
  37. /* Define if you have the 'accept' function. */
  38. #define HAVE_ACCEPT 1
  39. /* Define to 1 if you have the `accept4' function. */
  40. /* #undef HAVE_ACCEPT4 */
  41. /* Define to 1 if you have the `acosh' function. */
  42. #define HAVE_ACOSH 1
  43. /* struct addrinfo (netdb.h) */
  44. #define HAVE_ADDRINFO 1
  45. /* Define to 1 if you have the `alarm' function. */
  46. #define HAVE_ALARM 1
  47. /* Define if aligned memory access is required */
  48. /* #undef HAVE_ALIGNED_REQUIRED */
  49. /* Define to 1 if you have the <alloca.h> header file. */
  50. #define HAVE_ALLOCA_H 1
  51. /* Define this if your time.h defines altzone. */
  52. /* #undef HAVE_ALTZONE */
  53. /* Define to 1 if you have the `asinh' function. */
  54. #define HAVE_ASINH 1
  55. /* Define to 1 if you have the <asm/types.h> header file. */
  56. /* #undef HAVE_ASM_TYPES_H */
  57. /* Define to 1 if you have the `atanh' function. */
  58. #define HAVE_ATANH 1
  59. /* Define if you have the 'bind' function. */
  60. #define HAVE_BIND 1
  61. /* Define to 1 if you have the `bind_textdomain_codeset' function. */
  62. /* #undef HAVE_BIND_TEXTDOMAIN_CODESET */
  63. /* Define to 1 if you have the <bluetooth/bluetooth.h> header file. */
  64. /* #undef HAVE_BLUETOOTH_BLUETOOTH_H */
  65. /* Define to 1 if you have the <bluetooth.h> header file. */
  66. /* #undef HAVE_BLUETOOTH_H */
  67. /* Define if mbstowcs(NULL, "text", 0) does not return the number of wide
  68. chars that would be converted. */
  69. /* #undef HAVE_BROKEN_MBSTOWCS */
  70. /* Define if nice() returns success/failure instead of the new priority. */
  71. /* #undef HAVE_BROKEN_NICE */
  72. /* Define if the system reports an invalid PIPE_BUF value. */
  73. /* #undef HAVE_BROKEN_PIPE_BUF */
  74. /* Define if poll() sets errno on invalid file descriptors. */
  75. /* #undef HAVE_BROKEN_POLL */
  76. /* Define if the Posix semaphores do not work on your system */
  77. /* #undef HAVE_BROKEN_POSIX_SEMAPHORES */
  78. /* Define if pthread_sigmask() does not work on your system. */
  79. /* #undef HAVE_BROKEN_PTHREAD_SIGMASK */
  80. /* define to 1 if your sem_getvalue is broken. */
  81. #define HAVE_BROKEN_SEM_GETVALUE 1
  82. /* Define if 'unsetenv' does not return an int. */
  83. /* #undef HAVE_BROKEN_UNSETENV */
  84. /* Has builtin __atomic_load_n() and __atomic_store_n() functions */
  85. #define HAVE_BUILTIN_ATOMIC 1
  86. /* Define to 1 if you have the <bzlib.h> header file. */
  87. #define HAVE_BZLIB_H 1
  88. /* Define to 1 if you have the 'chflags' function. */
  89. #define HAVE_CHFLAGS 1
  90. /* Define to 1 if you have the `chmod' function. */
  91. #define HAVE_CHMOD 1
  92. /* Define to 1 if you have the `chown' function. */
  93. #define HAVE_CHOWN 1
  94. /* Define if you have the 'chroot' function. */
  95. #define HAVE_CHROOT 1
  96. /* Define to 1 if you have the `clock' function. */
  97. #define HAVE_CLOCK 1
  98. /* Define to 1 if you have the `clock_getres' function. */
  99. #define HAVE_CLOCK_GETRES 1
  100. /* Define to 1 if you have the `clock_gettime' function. */
  101. #define HAVE_CLOCK_GETTIME 1
  102. /* Define to 1 if you have the `clock_nanosleep' function. */
  103. /* #undef HAVE_CLOCK_NANOSLEEP */
  104. /* Define to 1 if you have the `clock_settime' function. */
  105. #define HAVE_CLOCK_SETTIME 1
  106. /* Define to 1 if you have the `close_range' function. */
  107. /* #undef HAVE_CLOSE_RANGE */
  108. /* Define if the C compiler supports computed gotos. */
  109. #define HAVE_COMPUTED_GOTOS 1
  110. /* Define to 1 if you have the `confstr' function. */
  111. #define HAVE_CONFSTR 1
  112. /* Define to 1 if you have the <conio.h> header file. */
  113. /* #undef HAVE_CONIO_H */
  114. /* Define if you have the 'connect' function. */
  115. #define HAVE_CONNECT 1
  116. /* Define to 1 if you have the `copy_file_range' function. */
  117. /* #undef HAVE_COPY_FILE_RANGE */
  118. /* Define to 1 if you have the <crypt.h> header file. */
  119. /* #undef HAVE_CRYPT_H */
  120. /* Define if you have the crypt_r() function. */
  121. /* #undef HAVE_CRYPT_R */
  122. /* Define to 1 if you have the `ctermid' function. */
  123. #define HAVE_CTERMID 1
  124. /* Define if you have the 'ctermid_r' function. */
  125. #define HAVE_CTERMID_R 1
  126. /* Define if you have the 'filter' function. */
  127. #define HAVE_CURSES_FILTER 1
  128. /* Define to 1 if you have the <curses.h> header file. */
  129. #define HAVE_CURSES_H 1
  130. /* Define if you have the 'has_key' function. */
  131. #define HAVE_CURSES_HAS_KEY 1
  132. /* Define if you have the 'immedok' function. */
  133. #define HAVE_CURSES_IMMEDOK 1
  134. /* Define if you have the 'is_pad' function. */
  135. #define HAVE_CURSES_IS_PAD 1
  136. /* Define if you have the 'is_term_resized' function. */
  137. #define HAVE_CURSES_IS_TERM_RESIZED 1
  138. /* Define if you have the 'resizeterm' function. */
  139. #define HAVE_CURSES_RESIZETERM 1
  140. /* Define if you have the 'resize_term' function. */
  141. #define HAVE_CURSES_RESIZE_TERM 1
  142. /* Define if you have the 'syncok' function. */
  143. #define HAVE_CURSES_SYNCOK 1
  144. /* Define if you have the 'typeahead' function. */
  145. #define HAVE_CURSES_TYPEAHEAD 1
  146. /* Define if you have the 'use_env' function. */
  147. #define HAVE_CURSES_USE_ENV 1
  148. /* Define if you have the 'wchgat' function. */
  149. #define HAVE_CURSES_WCHGAT 1
  150. /* Define to 1 if you have the <db.h> header file. */
  151. #define HAVE_DB_H 1
  152. /* Define to 1 if you have the declaration of `RTLD_DEEPBIND', and to 0 if you
  153. don't. */
  154. #define HAVE_DECL_RTLD_DEEPBIND 0
  155. /* Define to 1 if you have the declaration of `RTLD_GLOBAL', and to 0 if you
  156. don't. */
  157. #define HAVE_DECL_RTLD_GLOBAL 1
  158. /* Define to 1 if you have the declaration of `RTLD_LAZY', and to 0 if you
  159. don't. */
  160. #define HAVE_DECL_RTLD_LAZY 1
  161. /* Define to 1 if you have the declaration of `RTLD_LOCAL', and to 0 if you
  162. don't. */
  163. #define HAVE_DECL_RTLD_LOCAL 1
  164. /* Define to 1 if you have the declaration of `RTLD_MEMBER', and to 0 if you
  165. don't. */
  166. #define HAVE_DECL_RTLD_MEMBER 0
  167. /* Define to 1 if you have the declaration of `RTLD_NODELETE', and to 0 if you
  168. don't. */
  169. #define HAVE_DECL_RTLD_NODELETE 1
  170. /* Define to 1 if you have the declaration of `RTLD_NOLOAD', and to 0 if you
  171. don't. */
  172. #define HAVE_DECL_RTLD_NOLOAD 1
  173. /* Define to 1 if you have the declaration of `RTLD_NOW', and to 0 if you
  174. don't. */
  175. #define HAVE_DECL_RTLD_NOW 1
  176. /* Define to 1 if you have the declaration of `tzname', and to 0 if you don't.
  177. */
  178. /* #undef HAVE_DECL_TZNAME */
  179. /* Define to 1 if you have the device macros. */
  180. #define HAVE_DEVICE_MACROS 1
  181. /* Define to 1 if you have the /dev/ptc device file. */
  182. /* #undef HAVE_DEV_PTC */
  183. /* Define to 1 if you have the /dev/ptmx device file. */
  184. #define HAVE_DEV_PTMX 1
  185. /* Define to 1 if you have the <direct.h> header file. */
  186. /* #undef HAVE_DIRECT_H */
  187. /* Define to 1 if the dirent structure has a d_type field */
  188. #define HAVE_DIRENT_D_TYPE 1
  189. /* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
  190. */
  191. #define HAVE_DIRENT_H 1
  192. /* Define if you have the 'dirfd' function or macro. */
  193. #define HAVE_DIRFD 1
  194. /* Define to 1 if you have the <dlfcn.h> header file. */
  195. #define HAVE_DLFCN_H 1
  196. /* Define to 1 if you have the `dlopen' function. */
  197. #define HAVE_DLOPEN 1
  198. /* Define to 1 if you have the `dup' function. */
  199. #define HAVE_DUP 1
  200. /* Define to 1 if you have the `dup2' function. */
  201. #define HAVE_DUP2 1
  202. /* Define to 1 if you have the `dup3' function. */
  203. /* #undef HAVE_DUP3 */
  204. /* Define if you have the '_dyld_shared_cache_contains_path' function. */
  205. #define HAVE_DYLD_SHARED_CACHE_CONTAINS_PATH 1
  206. /* Defined when any dynamic module loading is enabled. */
  207. #define HAVE_DYNAMIC_LOADING 1
  208. /* Define to 1 if you have the <editline/readline.h> header file. */
  209. /* #undef HAVE_EDITLINE_READLINE_H */
  210. /* Define to 1 if you have the <endian.h> header file. */
  211. /* #undef HAVE_ENDIAN_H */
  212. /* Define if you have the 'epoll_create' function. */
  213. /* #undef HAVE_EPOLL */
  214. /* Define if you have the 'epoll_create1' function. */
  215. /* #undef HAVE_EPOLL_CREATE1 */
  216. /* Define to 1 if you have the `erf' function. */
  217. #define HAVE_ERF 1
  218. /* Define to 1 if you have the `erfc' function. */
  219. #define HAVE_ERFC 1
  220. /* Define to 1 if you have the <errno.h> header file. */
  221. #define HAVE_ERRNO_H 1
  222. /* Define if you have the 'eventfd' function. */
  223. /* #undef HAVE_EVENTFD */
  224. /* Define to 1 if you have the `execv' function. */
  225. #define HAVE_EXECV 1
  226. /* Define to 1 if you have the `explicit_bzero' function. */
  227. /* #undef HAVE_EXPLICIT_BZERO */
  228. /* Define to 1 if you have the `explicit_memset' function. */
  229. /* #undef HAVE_EXPLICIT_MEMSET */
  230. /* Define to 1 if you have the `expm1' function. */
  231. #define HAVE_EXPM1 1
  232. /* Define to 1 if you have the `faccessat' function. */
  233. #define HAVE_FACCESSAT 1
  234. /* Define if you have the 'fchdir' function. */
  235. #define HAVE_FCHDIR 1
  236. /* Define to 1 if you have the `fchmod' function. */
  237. #define HAVE_FCHMOD 1
  238. /* Define to 1 if you have the `fchmodat' function. */
  239. #define HAVE_FCHMODAT 1
  240. /* Define to 1 if you have the `fchown' function. */
  241. #define HAVE_FCHOWN 1
  242. /* Define to 1 if you have the `fchownat' function. */
  243. #define HAVE_FCHOWNAT 1
  244. /* Define to 1 if you have the <fcntl.h> header file. */
  245. #define HAVE_FCNTL_H 1
  246. /* Define if you have the 'fdatasync' function. */
  247. /* #undef HAVE_FDATASYNC */
  248. /* Define to 1 if you have the `fdopendir' function. */
  249. #define HAVE_FDOPENDIR 1
  250. /* Define to 1 if you have the `fdwalk' function. */
  251. /* #undef HAVE_FDWALK */
  252. /* Define to 1 if you have the `fexecve' function. */
  253. /* #undef HAVE_FEXECVE */
  254. /* Define if you have the 'ffi_closure_alloc' function. */
  255. #define HAVE_FFI_CLOSURE_ALLOC 1
  256. /* Define if you have the 'ffi_prep_cif_var' function. */
  257. #define HAVE_FFI_PREP_CIF_VAR 1
  258. /* Define if you have the 'ffi_prep_closure_loc' function. */
  259. #define HAVE_FFI_PREP_CLOSURE_LOC 1
  260. /* Define to 1 if you have the `flock' function. */
  261. #define HAVE_FLOCK 1
  262. /* Define to 1 if you have the `fork' function. */
  263. #define HAVE_FORK 1
  264. /* Define to 1 if you have the `fork1' function. */
  265. /* #undef HAVE_FORK1 */
  266. /* Define to 1 if you have the `forkpty' function. */
  267. #define HAVE_FORKPTY 1
  268. /* Define to 1 if you have the `fpathconf' function. */
  269. #define HAVE_FPATHCONF 1
  270. /* Define to 1 if you have the `fseek64' function. */
  271. /* #undef HAVE_FSEEK64 */
  272. /* Define to 1 if you have the `fseeko' function. */
  273. #define HAVE_FSEEKO 1
  274. /* Define to 1 if you have the `fstatat' function. */
  275. #define HAVE_FSTATAT 1
  276. /* Define to 1 if you have the `fstatvfs' function. */
  277. #define HAVE_FSTATVFS 1
  278. /* Define if you have the 'fsync' function. */
  279. #define HAVE_FSYNC 1
  280. /* Define to 1 if you have the `ftell64' function. */
  281. /* #undef HAVE_FTELL64 */
  282. /* Define to 1 if you have the `ftello' function. */
  283. #define HAVE_FTELLO 1
  284. /* Define to 1 if you have the `ftime' function. */
  285. #define HAVE_FTIME 1
  286. /* Define to 1 if you have the `ftruncate' function. */
  287. #define HAVE_FTRUNCATE 1
  288. /* Define to 1 if you have the `futimens' function. */
  289. #define HAVE_FUTIMENS 1
  290. /* Define to 1 if you have the `futimes' function. */
  291. #define HAVE_FUTIMES 1
  292. /* Define to 1 if you have the `futimesat' function. */
  293. /* #undef HAVE_FUTIMESAT */
  294. /* Define to 1 if you have the `gai_strerror' function. */
  295. #define HAVE_GAI_STRERROR 1
  296. /* Define if we can use gcc inline assembler to get and set mc68881 fpcr */
  297. /* #undef HAVE_GCC_ASM_FOR_MC68881 */
  298. /* Define if we can use x64 gcc inline assembler */
  299. /* #undef HAVE_GCC_ASM_FOR_X64 */
  300. /* Define if we can use gcc inline assembler to get and set x87 control word
  301. */
  302. /* #undef HAVE_GCC_ASM_FOR_X87 */
  303. /* Define if your compiler provides __uint128_t */
  304. #define HAVE_GCC_UINT128_T 1
  305. /* Define to 1 if you have the <gdbm-ndbm.h> header file. */
  306. /* #undef HAVE_GDBM_DASH_NDBM_H */
  307. /* Define to 1 if you have the <gdbm.h> header file. */
  308. /* #undef HAVE_GDBM_H */
  309. /* Define to 1 if you have the <gdbm/ndbm.h> header file. */
  310. /* #undef HAVE_GDBM_NDBM_H */
  311. /* Define if you have the getaddrinfo function. */
  312. #define HAVE_GETADDRINFO 1
  313. /* Define this if you have flockfile(), getc_unlocked(), and funlockfile() */
  314. #define HAVE_GETC_UNLOCKED 1
  315. /* Define to 1 if you have the `getegid' function. */
  316. #define HAVE_GETEGID 1
  317. /* Define to 1 if you have the `getentropy' function. */
  318. #define HAVE_GETENTROPY 1
  319. /* Define to 1 if you have the `geteuid' function. */
  320. #define HAVE_GETEUID 1
  321. /* Define to 1 if you have the `getgid' function. */
  322. #define HAVE_GETGID 1
  323. /* Define to 1 if you have the `getgrgid' function. */
  324. #define HAVE_GETGRGID 1
  325. /* Define to 1 if you have the `getgrgid_r' function. */
  326. #define HAVE_GETGRGID_R 1
  327. /* Define to 1 if you have the `getgrnam_r' function. */
  328. #define HAVE_GETGRNAM_R 1
  329. /* Define to 1 if you have the `getgrouplist' function. */
  330. #define HAVE_GETGROUPLIST 1
  331. /* Define to 1 if you have the `getgroups' function. */
  332. #define HAVE_GETGROUPS 1
  333. /* Define if you have the 'gethostbyaddr' function. */
  334. #define HAVE_GETHOSTBYADDR 1
  335. /* Define to 1 if you have the `gethostbyname' function. */
  336. #define HAVE_GETHOSTBYNAME 1
  337. /* Define this if you have some version of gethostbyname_r() */
  338. /* #undef HAVE_GETHOSTBYNAME_R */
  339. /* Define this if you have the 3-arg version of gethostbyname_r(). */
  340. /* #undef HAVE_GETHOSTBYNAME_R_3_ARG */
  341. /* Define this if you have the 5-arg version of gethostbyname_r(). */
  342. /* #undef HAVE_GETHOSTBYNAME_R_5_ARG */
  343. /* Define this if you have the 6-arg version of gethostbyname_r(). */
  344. /* #undef HAVE_GETHOSTBYNAME_R_6_ARG */
  345. /* Define to 1 if you have the `gethostname' function. */
  346. #define HAVE_GETHOSTNAME 1
  347. /* Define to 1 if you have the `getitimer' function. */
  348. #define HAVE_GETITIMER 1
  349. /* Define to 1 if you have the `getloadavg' function. */
  350. #define HAVE_GETLOADAVG 1
  351. /* Define to 1 if you have the `getlogin' function. */
  352. #define HAVE_GETLOGIN 1
  353. /* Define to 1 if you have the `getnameinfo' function. */
  354. #define HAVE_GETNAMEINFO 1
  355. /* Define if you have the 'getpagesize' function. */
  356. #define HAVE_GETPAGESIZE 1
  357. /* Define if you have the 'getpeername' function. */
  358. #define HAVE_GETPEERNAME 1
  359. /* Define to 1 if you have the `getpgid' function. */
  360. #define HAVE_GETPGID 1
  361. /* Define to 1 if you have the `getpgrp' function. */
  362. #define HAVE_GETPGRP 1
  363. /* Define to 1 if you have the `getpid' function. */
  364. #define HAVE_GETPID 1
  365. /* Define to 1 if you have the `getppid' function. */
  366. #define HAVE_GETPPID 1
  367. /* Define to 1 if you have the `getpriority' function. */
  368. #define HAVE_GETPRIORITY 1
  369. /* Define if you have the 'getprotobyname' function. */
  370. #define HAVE_GETPROTOBYNAME 1
  371. /* Define to 1 if you have the `getpwent' function. */
  372. #define HAVE_GETPWENT 1
  373. /* Define to 1 if you have the `getpwnam_r' function. */
  374. #define HAVE_GETPWNAM_R 1
  375. /* Define to 1 if you have the `getpwuid' function. */
  376. #define HAVE_GETPWUID 1
  377. /* Define to 1 if you have the `getpwuid_r' function. */
  378. #define HAVE_GETPWUID_R 1
  379. /* Define to 1 if the getrandom() function is available */
  380. /* #undef HAVE_GETRANDOM */
  381. /* Define to 1 if the Linux getrandom() syscall is available */
  382. /* #undef HAVE_GETRANDOM_SYSCALL */
  383. /* Define to 1 if you have the `getresgid' function. */
  384. /* #undef HAVE_GETRESGID */
  385. /* Define to 1 if you have the `getresuid' function. */
  386. /* #undef HAVE_GETRESUID */
  387. /* Define to 1 if you have the `getrusage' function. */
  388. #define HAVE_GETRUSAGE 1
  389. /* Define if you have the 'getservbyname' function. */
  390. #define HAVE_GETSERVBYNAME 1
  391. /* Define if you have the 'getservbyport' function. */
  392. #define HAVE_GETSERVBYPORT 1
  393. /* Define to 1 if you have the `getsid' function. */
  394. #define HAVE_GETSID 1
  395. /* Define if you have the 'getsockname' function. */
  396. #define HAVE_GETSOCKNAME 1
  397. /* Define to 1 if you have the `getspent' function. */
  398. /* #undef HAVE_GETSPENT */
  399. /* Define to 1 if you have the `getspnam' function. */
  400. /* #undef HAVE_GETSPNAM */
  401. /* Define to 1 if you have the `getuid' function. */
  402. #define HAVE_GETUID 1
  403. /* Define to 1 if you have the `getwd' function. */
  404. #define HAVE_GETWD 1
  405. /* Define if glibc has incorrect _FORTIFY_SOURCE wrappers for memmove and
  406. bcopy. */
  407. /* #undef HAVE_GLIBC_MEMMOVE_BUG */
  408. /* Define to 1 if you have the <grp.h> header file. */
  409. #define HAVE_GRP_H 1
  410. /* Define if you have the 'hstrerror' function. */
  411. #define HAVE_HSTRERROR 1
  412. /* Define this if you have le64toh() */
  413. /* #undef HAVE_HTOLE64 */
  414. /* Define to 1 if you have the <ieeefp.h> header file. */
  415. /* #undef HAVE_IEEEFP_H */
  416. /* Define to 1 if you have the `if_nameindex' function. */
  417. #define HAVE_IF_NAMEINDEX 1
  418. /* Define if you have the 'inet_aton' function. */
  419. #define HAVE_INET_ATON 1
  420. /* Define if you have the 'inet_ntoa' function. */
  421. #define HAVE_INET_NTOA 1
  422. /* Define if you have the 'inet_pton' function. */
  423. #define HAVE_INET_PTON 1
  424. /* Define to 1 if you have the `initgroups' function. */
  425. #define HAVE_INITGROUPS 1
  426. /* Define to 1 if you have the <inttypes.h> header file. */
  427. #define HAVE_INTTYPES_H 1
  428. /* Define to 1 if you have the <io.h> header file. */
  429. /* #undef HAVE_IO_H */
  430. /* Define if gcc has the ipa-pure-const bug. */
  431. /* #undef HAVE_IPA_PURE_CONST_BUG */
  432. /* Define to 1 if you have the `kill' function. */
  433. #define HAVE_KILL 1
  434. /* Define to 1 if you have the `killpg' function. */
  435. #define HAVE_KILLPG 1
  436. /* Define if you have the 'kqueue' function. */
  437. #define HAVE_KQUEUE 1
  438. /* Define to 1 if you have the <langinfo.h> header file. */
  439. #define HAVE_LANGINFO_H 1
  440. /* Defined to enable large file support when an off_t is bigger than a long
  441. and long long is at least as big as an off_t. You may need to add some
  442. flags for configuration and compilation to enable this mode. (For Solaris
  443. and Linux, the necessary defines are already defined.) */
  444. /* #undef HAVE_LARGEFILE_SUPPORT */
  445. /* Define to 1 if you have the 'lchflags' function. */
  446. #define HAVE_LCHFLAGS 1
  447. /* Define to 1 if you have the `lchmod' function. */
  448. #define HAVE_LCHMOD 1
  449. /* Define to 1 if you have the `lchown' function. */
  450. #define HAVE_LCHOWN 1
  451. /* Define to 1 if you want to build _blake2 module with libb2 */
  452. /* #undef HAVE_LIBB2 */
  453. /* Define to 1 if you have the `db' library (-ldb). */
  454. /* #undef HAVE_LIBDB */
  455. /* Define to 1 if you have the `dl' library (-ldl). */
  456. #define HAVE_LIBDL 1
  457. /* Define to 1 if you have the `dld' library (-ldld). */
  458. /* #undef HAVE_LIBDLD */
  459. /* Define to 1 if you have the `ieee' library (-lieee). */
  460. /* #undef HAVE_LIBIEEE */
  461. /* Define to 1 if you have the <libintl.h> header file. */
  462. /* #undef HAVE_LIBINTL_H */
  463. /* Define to 1 if you have the `resolv' library (-lresolv). */
  464. /* #undef HAVE_LIBRESOLV */
  465. /* Define to 1 if you have the `sendfile' library (-lsendfile). */
  466. /* #undef HAVE_LIBSENDFILE */
  467. /* Define to 1 if you have the `sqlite3' library (-lsqlite3). */
  468. #define HAVE_LIBSQLITE3 1
  469. /* Define to 1 if you have the <libutil.h> header file. */
  470. /* #undef HAVE_LIBUTIL_H */
  471. /* Define if you have the 'link' function. */
  472. #define HAVE_LINK 1
  473. /* Define to 1 if you have the `linkat' function. */
  474. #define HAVE_LINKAT 1
  475. /* Define to 1 if you have the <linux/auxvec.h> header file. */
  476. /* #undef HAVE_LINUX_AUXVEC_H */
  477. /* Define to 1 if you have the <linux/can/bcm.h> header file. */
  478. /* #undef HAVE_LINUX_CAN_BCM_H */
  479. /* Define to 1 if you have the <linux/can.h> header file. */
  480. /* #undef HAVE_LINUX_CAN_H */
  481. /* Define to 1 if you have the <linux/can/j1939.h> header file. */
  482. /* #undef HAVE_LINUX_CAN_J1939_H */
  483. /* Define if compiling using Linux 3.6 or later. */
  484. /* #undef HAVE_LINUX_CAN_RAW_FD_FRAMES */
  485. /* Define to 1 if you have the <linux/can/raw.h> header file. */
  486. /* #undef HAVE_LINUX_CAN_RAW_H */
  487. /* Define if compiling using Linux 4.1 or later. */
  488. /* #undef HAVE_LINUX_CAN_RAW_JOIN_FILTERS */
  489. /* Define to 1 if you have the <linux/fs.h> header file. */
  490. /* #undef HAVE_LINUX_FS_H */
  491. /* Define to 1 if you have the <linux/limits.h> header file. */
  492. /* #undef HAVE_LINUX_LIMITS_H */
  493. /* Define to 1 if you have the <linux/memfd.h> header file. */
  494. /* #undef HAVE_LINUX_MEMFD_H */
  495. /* Define to 1 if you have the <linux/netlink.h> header file. */
  496. /* #undef HAVE_LINUX_NETLINK_H */
  497. /* Define to 1 if you have the <linux/qrtr.h> header file. */
  498. /* #undef HAVE_LINUX_QRTR_H */
  499. /* Define to 1 if you have the <linux/random.h> header file. */
  500. /* #undef HAVE_LINUX_RANDOM_H */
  501. /* Define to 1 if you have the <linux/soundcard.h> header file. */
  502. /* #undef HAVE_LINUX_SOUNDCARD_H */
  503. /* Define to 1 if you have the <linux/tipc.h> header file. */
  504. /* #undef HAVE_LINUX_TIPC_H */
  505. /* Define to 1 if you have the <linux/vm_sockets.h> header file. */
  506. /* #undef HAVE_LINUX_VM_SOCKETS_H */
  507. /* Define to 1 if you have the <linux/wait.h> header file. */
  508. /* #undef HAVE_LINUX_WAIT_H */
  509. /* Define if you have the 'listen' function. */
  510. #define HAVE_LISTEN 1
  511. /* Define to 1 if you have the `lockf' function. */
  512. #define HAVE_LOCKF 1
  513. /* Define to 1 if you have the `log1p' function. */
  514. #define HAVE_LOG1P 1
  515. /* Define to 1 if you have the `log2' function. */
  516. #define HAVE_LOG2 1
  517. /* Define to 1 if you have the `login_tty' function. */
  518. #define HAVE_LOGIN_TTY 1
  519. /* Define to 1 if the system has the type `long double'. */
  520. #define HAVE_LONG_DOUBLE 1
  521. /* Define to 1 if you have the `lstat' function. */
  522. #define HAVE_LSTAT 1
  523. /* Define to 1 if you have the `lutimes' function. */
  524. #define HAVE_LUTIMES 1
  525. /* Define to 1 if you have the <lzma.h> header file. */
  526. /* #undef HAVE_LZMA_H */
  527. /* Define to 1 if you have the `madvise' function. */
  528. #define HAVE_MADVISE 1
  529. /* Define this if you have the makedev macro. */
  530. #define HAVE_MAKEDEV 1
  531. /* Define to 1 if you have the `mbrtowc' function. */
  532. #define HAVE_MBRTOWC 1
  533. /* Define if you have the 'memfd_create' function. */
  534. /* #undef HAVE_MEMFD_CREATE */
  535. /* Define to 1 if you have the `memrchr' function. */
  536. /* #undef HAVE_MEMRCHR */
  537. /* Define to 1 if you have the <minix/config.h> header file. */
  538. /* #undef HAVE_MINIX_CONFIG_H */
  539. /* Define to 1 if you have the `mkdirat' function. */
  540. #define HAVE_MKDIRAT 1
  541. /* Define to 1 if you have the `mkfifo' function. */
  542. #define HAVE_MKFIFO 1
  543. /* Define to 1 if you have the `mkfifoat' function. */
  544. #define HAVE_MKFIFOAT 1
  545. /* Define to 1 if you have the `mknod' function. */
  546. #define HAVE_MKNOD 1
  547. /* Define to 1 if you have the `mknodat' function. */
  548. #define HAVE_MKNODAT 1
  549. /* Define to 1 if you have the `mktime' function. */
  550. #define HAVE_MKTIME 1
  551. /* Define to 1 if you have the `mmap' function. */
  552. #define HAVE_MMAP 1
  553. /* Define to 1 if you have the `mremap' function. */
  554. /* #undef HAVE_MREMAP */
  555. /* Define to 1 if you have the `nanosleep' function. */
  556. #define HAVE_NANOSLEEP 1
  557. /* Define to 1 if you have the `ncursesw' library. */
  558. #define HAVE_NCURSESW 1
  559. /* Define to 1 if you have the <ncurses.h> header file. */
  560. #define HAVE_NCURSES_H 1
  561. /* Define to 1 if you have the <ndbm.h> header file. */
  562. #define HAVE_NDBM_H 1
  563. /* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
  564. /* #undef HAVE_NDIR_H */
  565. /* Define to 1 if you have the <netcan/can.h> header file. */
  566. /* #undef HAVE_NETCAN_CAN_H */
  567. /* Define to 1 if you have the <netdb.h> header file. */
  568. #define HAVE_NETDB_H 1
  569. /* Define to 1 if you have the <netinet/in.h> header file. */
  570. #define HAVE_NETINET_IN_H 1
  571. /* Define to 1 if you have the <netpacket/packet.h> header file. */
  572. /* #undef HAVE_NETPACKET_PACKET_H */
  573. /* Define to 1 if you have the <net/ethernet.h> header file. */
  574. #define HAVE_NET_ETHERNET_H 1
  575. /* Define to 1 if you have the <net/if.h> header file. */
  576. #define HAVE_NET_IF_H 1
  577. /* Define to 1 if you have the `nice' function. */
  578. #define HAVE_NICE 1
  579. /* Define if the internal form of wchar_t in non-Unicode locales is not
  580. Unicode. */
  581. /* #undef HAVE_NON_UNICODE_WCHAR_T_REPRESENTATION */
  582. /* Define to 1 if you have the `openat' function. */
  583. #define HAVE_OPENAT 1
  584. /* Define to 1 if you have the `opendir' function. */
  585. #define HAVE_OPENDIR 1
  586. /* Define to 1 if you have the `openpty' function. */
  587. #define HAVE_OPENPTY 1
  588. /* Define to 1 if you have the <panel.h> header file. */
  589. #define HAVE_PANEL_H 1
  590. /* Define to 1 if you have the `pathconf' function. */
  591. #define HAVE_PATHCONF 1
  592. /* Define to 1 if you have the `pause' function. */
  593. #define HAVE_PAUSE 1
  594. /* Define to 1 if you have the `pipe' function. */
  595. #define HAVE_PIPE 1
  596. /* Define to 1 if you have the `pipe2' function. */
  597. /* #undef HAVE_PIPE2 */
  598. /* Define to 1 if you have the `plock' function. */
  599. /* #undef HAVE_PLOCK */
  600. /* Define to 1 if you have the `poll' function. */
  601. #define HAVE_POLL 1
  602. /* Define to 1 if you have the <poll.h> header file. */
  603. #define HAVE_POLL_H 1
  604. /* Define to 1 if you have the `posix_fadvise' function. */
  605. /* #undef HAVE_POSIX_FADVISE */
  606. /* Define to 1 if you have the `posix_fallocate' function. */
  607. /* #undef HAVE_POSIX_FALLOCATE */
  608. /* Define to 1 if you have the `posix_spawn' function. */
  609. #define HAVE_POSIX_SPAWN 1
  610. /* Define to 1 if you have the `posix_spawnp' function. */
  611. #define HAVE_POSIX_SPAWNP 1
  612. /* Define to 1 if you have the `pread' function. */
  613. #define HAVE_PREAD 1
  614. /* Define to 1 if you have the `preadv' function. */
  615. #define HAVE_PREADV 1
  616. /* Define to 1 if you have the `preadv2' function. */
  617. /* #undef HAVE_PREADV2 */
  618. /* Define if you have the 'prlimit' function. */
  619. /* #undef HAVE_PRLIMIT */
  620. /* Define to 1 if you have the <process.h> header file. */
  621. /* #undef HAVE_PROCESS_H */
  622. /* Define if your compiler supports function prototype */
  623. #define HAVE_PROTOTYPES 1
  624. /* Define to 1 if you have the `pthread_condattr_setclock' function. */
  625. /* #undef HAVE_PTHREAD_CONDATTR_SETCLOCK */
  626. /* Defined for Solaris 2.6 bug in pthread header. */
  627. /* #undef HAVE_PTHREAD_DESTRUCTOR */
  628. /* Define to 1 if you have the `pthread_getcpuclockid' function. */
  629. /* #undef HAVE_PTHREAD_GETCPUCLOCKID */
  630. /* Define to 1 if you have the <pthread.h> header file. */
  631. #define HAVE_PTHREAD_H 1
  632. /* Define to 1 if you have the `pthread_init' function. */
  633. /* #undef HAVE_PTHREAD_INIT */
  634. /* Define to 1 if you have the `pthread_kill' function. */
  635. #define HAVE_PTHREAD_KILL 1
  636. /* Define to 1 if you have the `pthread_sigmask' function. */
  637. #define HAVE_PTHREAD_SIGMASK 1
  638. /* Define if platform requires stubbed pthreads support */
  639. /* #undef HAVE_PTHREAD_STUBS */
  640. /* Define to 1 if you have the <pty.h> header file. */
  641. /* #undef HAVE_PTY_H */
  642. /* Define to 1 if you have the `pwrite' function. */
  643. #define HAVE_PWRITE 1
  644. /* Define to 1 if you have the `pwritev' function. */
  645. #define HAVE_PWRITEV 1
  646. /* Define to 1 if you have the `pwritev2' function. */
  647. /* #undef HAVE_PWRITEV2 */
  648. /* Define to 1 if you have the <readline/readline.h> header file. */
  649. /* #undef HAVE_READLINE_READLINE_H */
  650. /* Define to 1 if you have the `readlink' function. */
  651. #define HAVE_READLINK 1
  652. /* Define to 1 if you have the `readlinkat' function. */
  653. #define HAVE_READLINKAT 1
  654. /* Define to 1 if you have the `readv' function. */
  655. #define HAVE_READV 1
  656. /* Define to 1 if you have the `realpath' function. */
  657. #define HAVE_REALPATH 1
  658. /* Define if you have the 'recvfrom' function. */
  659. #define HAVE_RECVFROM 1
  660. /* Define to 1 if you have the `renameat' function. */
  661. #define HAVE_RENAMEAT 1
  662. /* Define if readline supports append_history */
  663. /* #undef HAVE_RL_APPEND_HISTORY */
  664. /* Define if you can turn off readline's signal handling. */
  665. /* #undef HAVE_RL_CATCH_SIGNAL */
  666. /* Define if readline supports rl_compdisp_func_t */
  667. /* #undef HAVE_RL_COMPDISP_FUNC_T */
  668. /* Define if you have readline 2.2 */
  669. /* #undef HAVE_RL_COMPLETION_APPEND_CHARACTER */
  670. /* Define if you have readline 4.0 */
  671. /* #undef HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK */
  672. /* Define if you have readline 4.2 */
  673. /* #undef HAVE_RL_COMPLETION_MATCHES */
  674. /* Define if you have rl_completion_suppress_append */
  675. /* #undef HAVE_RL_COMPLETION_SUPPRESS_APPEND */
  676. /* Define if you have readline 4.0 */
  677. /* #undef HAVE_RL_PRE_INPUT_HOOK */
  678. /* Define if you have readline 4.0 */
  679. /* #undef HAVE_RL_RESIZE_TERMINAL */
  680. /* Define to 1 if you have the <rpc/rpc.h> header file. */
  681. #define HAVE_RPC_RPC_H 1
  682. /* Define to 1 if you have the `rtpSpawn' function. */
  683. /* #undef HAVE_RTPSPAWN */
  684. /* Define to 1 if you have the `sched_get_priority_max' function. */
  685. #define HAVE_SCHED_GET_PRIORITY_MAX 1
  686. /* Define to 1 if you have the <sched.h> header file. */
  687. #define HAVE_SCHED_H 1
  688. /* Define to 1 if you have the `sched_rr_get_interval' function. */
  689. /* #undef HAVE_SCHED_RR_GET_INTERVAL */
  690. /* Define to 1 if you have the `sched_setaffinity' function. */
  691. /* #undef HAVE_SCHED_SETAFFINITY */
  692. /* Define to 1 if you have the `sched_setparam' function. */
  693. /* #undef HAVE_SCHED_SETPARAM */
  694. /* Define to 1 if you have the `sched_setscheduler' function. */
  695. /* #undef HAVE_SCHED_SETSCHEDULER */
  696. /* Define to 1 if you have the `sem_clockwait' function. */
  697. /* #undef HAVE_SEM_CLOCKWAIT */
  698. /* Define to 1 if you have the `sem_getvalue' function. */
  699. #define HAVE_SEM_GETVALUE 1
  700. /* Define to 1 if you have the `sem_open' function. */
  701. #define HAVE_SEM_OPEN 1
  702. /* Define to 1 if you have the `sem_timedwait' function. */
  703. /* #undef HAVE_SEM_TIMEDWAIT */
  704. /* Define to 1 if you have the `sem_unlink' function. */
  705. #define HAVE_SEM_UNLINK 1
  706. /* Define to 1 if you have the `sendfile' function. */
  707. #define HAVE_SENDFILE 1
  708. /* Define if you have the 'sendto' function. */
  709. #define HAVE_SENDTO 1
  710. /* Define to 1 if you have the `setegid' function. */
  711. #define HAVE_SETEGID 1
  712. /* Define to 1 if you have the `seteuid' function. */
  713. #define HAVE_SETEUID 1
  714. /* Define to 1 if you have the `setgid' function. */
  715. #define HAVE_SETGID 1
  716. /* Define if you have the 'setgroups' function. */
  717. #define HAVE_SETGROUPS 1
  718. /* Define to 1 if you have the `sethostname' function. */
  719. #define HAVE_SETHOSTNAME 1
  720. /* Define to 1 if you have the `setitimer' function. */
  721. #define HAVE_SETITIMER 1
  722. /* Define to 1 if you have the <setjmp.h> header file. */
  723. #define HAVE_SETJMP_H 1
  724. /* Define to 1 if you have the `setlocale' function. */
  725. #define HAVE_SETLOCALE 1
  726. /* Define to 1 if you have the `setns' function. */
  727. /* #undef HAVE_SETNS */
  728. /* Define to 1 if you have the `setpgid' function. */
  729. #define HAVE_SETPGID 1
  730. /* Define to 1 if you have the `setpgrp' function. */
  731. #define HAVE_SETPGRP 1
  732. /* Define to 1 if you have the `setpriority' function. */
  733. #define HAVE_SETPRIORITY 1
  734. /* Define to 1 if you have the `setregid' function. */
  735. #define HAVE_SETREGID 1
  736. /* Define to 1 if you have the `setresgid' function. */
  737. /* #undef HAVE_SETRESGID */
  738. /* Define to 1 if you have the `setresuid' function. */
  739. /* #undef HAVE_SETRESUID */
  740. /* Define to 1 if you have the `setreuid' function. */
  741. #define HAVE_SETREUID 1
  742. /* Define to 1 if you have the `setsid' function. */
  743. #define HAVE_SETSID 1
  744. /* Define if you have the 'setsockopt' function. */
  745. #define HAVE_SETSOCKOPT 1
  746. /* Define to 1 if you have the `setuid' function. */
  747. #define HAVE_SETUID 1
  748. /* Define to 1 if you have the `setvbuf' function. */
  749. #define HAVE_SETVBUF 1
  750. /* Define to 1 if you have the <shadow.h> header file. */
  751. /* #undef HAVE_SHADOW_H */
  752. /* Define to 1 if you have the `shm_open' function. */
  753. #define HAVE_SHM_OPEN 1
  754. /* Define to 1 if you have the `shm_unlink' function. */
  755. #define HAVE_SHM_UNLINK 1
  756. /* Define to 1 if you have the `shutdown' function. */
  757. #define HAVE_SHUTDOWN 1
  758. /* Define to 1 if you have the `sigaction' function. */
  759. #define HAVE_SIGACTION 1
  760. /* Define to 1 if you have the `sigaltstack' function. */
  761. #define HAVE_SIGALTSTACK 1
  762. /* Define to 1 if you have the `sigfillset' function. */
  763. #define HAVE_SIGFILLSET 1
  764. /* Define to 1 if `si_band' is a member of `siginfo_t'. */
  765. #define HAVE_SIGINFO_T_SI_BAND 1
  766. /* Define to 1 if you have the `siginterrupt' function. */
  767. #define HAVE_SIGINTERRUPT 1
  768. /* Define to 1 if you have the <signal.h> header file. */
  769. #define HAVE_SIGNAL_H 1
  770. /* Define to 1 if you have the `sigpending' function. */
  771. #define HAVE_SIGPENDING 1
  772. /* Define to 1 if you have the `sigrelse' function. */
  773. #define HAVE_SIGRELSE 1
  774. /* Define to 1 if you have the `sigtimedwait' function. */
  775. /* #undef HAVE_SIGTIMEDWAIT */
  776. /* Define to 1 if you have the `sigwait' function. */
  777. #define HAVE_SIGWAIT 1
  778. /* Define to 1 if you have the `sigwaitinfo' function. */
  779. /* #undef HAVE_SIGWAITINFO */
  780. /* Define to 1 if you have the `snprintf' function. */
  781. #define HAVE_SNPRINTF 1
  782. /* struct sockaddr_alg (linux/if_alg.h) */
  783. /* #undef HAVE_SOCKADDR_ALG */
  784. /* Define if sockaddr has sa_len member */
  785. #define HAVE_SOCKADDR_SA_LEN 1
  786. /* struct sockaddr_storage (sys/socket.h) */
  787. #define HAVE_SOCKADDR_STORAGE 1
  788. /* Define if you have the 'socket' function. */
  789. #define HAVE_SOCKET 1
  790. /* Define if you have the 'socketpair' function. */
  791. #define HAVE_SOCKETPAIR 1
  792. /* Define to 1 if you have the <spawn.h> header file. */
  793. #define HAVE_SPAWN_H 1
  794. /* Define to 1 if you have the `splice' function. */
  795. /* #undef HAVE_SPLICE */
  796. /* Define if your compiler provides ssize_t */
  797. #define HAVE_SSIZE_T 1
  798. /* Define to 1 if you have the `statvfs' function. */
  799. #define HAVE_STATVFS 1
  800. /* Define if you have struct stat.st_mtim.tv_nsec */
  801. /* #undef HAVE_STAT_TV_NSEC */
  802. /* Define if you have struct stat.st_mtimensec */
  803. #define HAVE_STAT_TV_NSEC2 1
  804. /* Define to 1 if you have the <stdint.h> header file. */
  805. #define HAVE_STDINT_H 1
  806. /* Define to 1 if you have the <stdio.h> header file. */
  807. #define HAVE_STDIO_H 1
  808. /* Define to 1 if you have the <stdlib.h> header file. */
  809. #define HAVE_STDLIB_H 1
  810. /* Has stdatomic.h with atomic_int and atomic_uintptr_t */
  811. #define HAVE_STD_ATOMIC 1
  812. /* Define to 1 if you have the `strftime' function. */
  813. #define HAVE_STRFTIME 1
  814. /* Define to 1 if you have the <strings.h> header file. */
  815. #define HAVE_STRINGS_H 1
  816. /* Define to 1 if you have the <string.h> header file. */
  817. #define HAVE_STRING_H 1
  818. /* Define to 1 if you have the `strlcpy' function. */
  819. #define HAVE_STRLCPY 1
  820. /* Define to 1 if you have the <stropts.h> header file. */
  821. /* #undef HAVE_STROPTS_H */
  822. /* Define to 1 if you have the `strsignal' function. */
  823. #define HAVE_STRSIGNAL 1
  824. /* Define to 1 if `pw_gecos' is a member of `struct passwd'. */
  825. #define HAVE_STRUCT_PASSWD_PW_GECOS 1
  826. /* Define to 1 if `pw_passwd' is a member of `struct passwd'. */
  827. #define HAVE_STRUCT_PASSWD_PW_PASSWD 1
  828. /* Define to 1 if `st_birthtime' is a member of `struct stat'. */
  829. #define HAVE_STRUCT_STAT_ST_BIRTHTIME 1
  830. /* Define to 1 if `st_blksize' is a member of `struct stat'. */
  831. #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
  832. /* Define to 1 if `st_blocks' is a member of `struct stat'. */
  833. #define HAVE_STRUCT_STAT_ST_BLOCKS 1
  834. /* Define to 1 if `st_flags' is a member of `struct stat'. */
  835. #define HAVE_STRUCT_STAT_ST_FLAGS 1
  836. /* Define to 1 if `st_gen' is a member of `struct stat'. */
  837. #define HAVE_STRUCT_STAT_ST_GEN 1
  838. /* Define to 1 if `st_rdev' is a member of `struct stat'. */
  839. #define HAVE_STRUCT_STAT_ST_RDEV 1
  840. /* Define to 1 if `tm_zone' is a member of `struct tm'. */
  841. #define HAVE_STRUCT_TM_TM_ZONE 1
  842. /* Define if you have the 'symlink' function. */
  843. #define HAVE_SYMLINK 1
  844. /* Define to 1 if you have the `symlinkat' function. */
  845. #define HAVE_SYMLINKAT 1
  846. /* Define to 1 if you have the `sync' function. */
  847. #define HAVE_SYNC 1
  848. /* Define to 1 if you have the `sysconf' function. */
  849. #define HAVE_SYSCONF 1
  850. /* Define to 1 if you have the <sysexits.h> header file. */
  851. #define HAVE_SYSEXITS_H 1
  852. /* Define to 1 if you have the <syslog.h> header file. */
  853. #define HAVE_SYSLOG_H 1
  854. /* Define to 1 if you have the `system' function. */
  855. #define HAVE_SYSTEM 1
  856. /* Define to 1 if you have the <sys/audioio.h> header file. */
  857. /* #undef HAVE_SYS_AUDIOIO_H */
  858. /* Define to 1 if you have the <sys/auxv.h> header file. */
  859. /* #undef HAVE_SYS_AUXV_H */
  860. /* Define to 1 if you have the <sys/bsdtty.h> header file. */
  861. /* #undef HAVE_SYS_BSDTTY_H */
  862. /* Define to 1 if you have the <sys/devpoll.h> header file. */
  863. /* #undef HAVE_SYS_DEVPOLL_H */
  864. /* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
  865. */
  866. /* #undef HAVE_SYS_DIR_H */
  867. /* Define to 1 if you have the <sys/endian.h> header file. */
  868. /* #undef HAVE_SYS_ENDIAN_H */
  869. /* Define to 1 if you have the <sys/epoll.h> header file. */
  870. /* #undef HAVE_SYS_EPOLL_H */
  871. /* Define to 1 if you have the <sys/eventfd.h> header file. */
  872. /* #undef HAVE_SYS_EVENTFD_H */
  873. /* Define to 1 if you have the <sys/event.h> header file. */
  874. #define HAVE_SYS_EVENT_H 1
  875. /* Define to 1 if you have the <sys/file.h> header file. */
  876. #define HAVE_SYS_FILE_H 1
  877. /* Define to 1 if you have the <sys/ioctl.h> header file. */
  878. #define HAVE_SYS_IOCTL_H 1
  879. /* Define to 1 if you have the <sys/kern_control.h> header file. */
  880. #define HAVE_SYS_KERN_CONTROL_H 1
  881. /* Define to 1 if you have the <sys/loadavg.h> header file. */
  882. /* #undef HAVE_SYS_LOADAVG_H */
  883. /* Define to 1 if you have the <sys/lock.h> header file. */
  884. #define HAVE_SYS_LOCK_H 1
  885. /* Define to 1 if you have the <sys/memfd.h> header file. */
  886. /* #undef HAVE_SYS_MEMFD_H */
  887. /* Define to 1 if you have the <sys/mkdev.h> header file. */
  888. /* #undef HAVE_SYS_MKDEV_H */
  889. /* Define to 1 if you have the <sys/mman.h> header file. */
  890. #define HAVE_SYS_MMAN_H 1
  891. /* Define to 1 if you have the <sys/modem.h> header file. */
  892. /* #undef HAVE_SYS_MODEM_H */
  893. /* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
  894. */
  895. /* #undef HAVE_SYS_NDIR_H */
  896. /* Define to 1 if you have the <sys/param.h> header file. */
  897. #define HAVE_SYS_PARAM_H 1
  898. /* Define to 1 if you have the <sys/pidfd.h> header file. */
  899. /* #undef HAVE_SYS_PIDFD_H */
  900. /* Define to 1 if you have the <sys/poll.h> header file. */
  901. #define HAVE_SYS_POLL_H 1
  902. /* Define to 1 if you have the <sys/random.h> header file. */
  903. #define HAVE_SYS_RANDOM_H 1
  904. /* Define to 1 if you have the <sys/resource.h> header file. */
  905. #define HAVE_SYS_RESOURCE_H 1
  906. /* Define to 1 if you have the <sys/select.h> header file. */
  907. #define HAVE_SYS_SELECT_H 1
  908. /* Define to 1 if you have the <sys/sendfile.h> header file. */
  909. /* #undef HAVE_SYS_SENDFILE_H */
  910. /* Define to 1 if you have the <sys/socket.h> header file. */
  911. #define HAVE_SYS_SOCKET_H 1
  912. /* Define to 1 if you have the <sys/soundcard.h> header file. */
  913. /* #undef HAVE_SYS_SOUNDCARD_H */
  914. /* Define to 1 if you have the <sys/statvfs.h> header file. */
  915. #define HAVE_SYS_STATVFS_H 1
  916. /* Define to 1 if you have the <sys/stat.h> header file. */
  917. #define HAVE_SYS_STAT_H 1
  918. /* Define to 1 if you have the <sys/syscall.h> header file. */
  919. #define HAVE_SYS_SYSCALL_H 1
  920. /* Define to 1 if you have the <sys/sysmacros.h> header file. */
  921. /* #undef HAVE_SYS_SYSMACROS_H */
  922. /* Define to 1 if you have the <sys/sys_domain.h> header file. */
  923. #define HAVE_SYS_SYS_DOMAIN_H 1
  924. /* Define to 1 if you have the <sys/termio.h> header file. */
  925. /* #undef HAVE_SYS_TERMIO_H */
  926. /* Define to 1 if you have the <sys/times.h> header file. */
  927. #define HAVE_SYS_TIMES_H 1
  928. /* Define to 1 if you have the <sys/time.h> header file. */
  929. #define HAVE_SYS_TIME_H 1
  930. /* Define to 1 if you have the <sys/types.h> header file. */
  931. #define HAVE_SYS_TYPES_H 1
  932. /* Define to 1 if you have the <sys/uio.h> header file. */
  933. #define HAVE_SYS_UIO_H 1
  934. /* Define to 1 if you have the <sys/un.h> header file. */
  935. #define HAVE_SYS_UN_H 1
  936. /* Define to 1 if you have the <sys/utsname.h> header file. */
  937. #define HAVE_SYS_UTSNAME_H 1
  938. /* Define to 1 if you have the <sys/wait.h> header file. */
  939. #define HAVE_SYS_WAIT_H 1
  940. /* Define to 1 if you have the <sys/xattr.h> header file. */
  941. #define HAVE_SYS_XATTR_H 1
  942. /* Define to 1 if you have the `tcgetpgrp' function. */
  943. #define HAVE_TCGETPGRP 1
  944. /* Define to 1 if you have the `tcsetpgrp' function. */
  945. #define HAVE_TCSETPGRP 1
  946. /* Define to 1 if you have the `tempnam' function. */
  947. #define HAVE_TEMPNAM 1
  948. /* Define to 1 if you have the <termios.h> header file. */
  949. #define HAVE_TERMIOS_H 1
  950. /* Define to 1 if you have the <term.h> header file. */
  951. #define HAVE_TERM_H 1
  952. /* Define to 1 if you have the `timegm' function. */
  953. #define HAVE_TIMEGM 1
  954. /* Define to 1 if you have the `times' function. */
  955. #define HAVE_TIMES 1
  956. /* Define to 1 if you have the `tmpfile' function. */
  957. #define HAVE_TMPFILE 1
  958. /* Define to 1 if you have the `tmpnam' function. */
  959. #define HAVE_TMPNAM 1
  960. /* Define to 1 if you have the `tmpnam_r' function. */
  961. /* #undef HAVE_TMPNAM_R */
  962. /* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
  963. `HAVE_STRUCT_TM_TM_ZONE' instead. */
  964. #define HAVE_TM_ZONE 1
  965. /* Define to 1 if you have the `truncate' function. */
  966. #define HAVE_TRUNCATE 1
  967. /* Define to 1 if you have the `ttyname_r' function. */
  968. #define HAVE_TTYNAME_R 1
  969. /* Define to 1 if you don't have `tm_zone' but do have the external array
  970. `tzname'. */
  971. /* #undef HAVE_TZNAME */
  972. /* Define to 1 if you have the `umask' function. */
  973. #define HAVE_UMASK 1
  974. /* Define to 1 if you have the `uname' function. */
  975. #define HAVE_UNAME 1
  976. /* Define to 1 if you have the <unistd.h> header file. */
  977. #define HAVE_UNISTD_H 1
  978. /* Define to 1 if you have the `unlinkat' function. */
  979. #define HAVE_UNLINKAT 1
  980. /* Define to 1 if you have the `unshare' function. */
  981. /* #undef HAVE_UNSHARE */
  982. /* Define if you have a useable wchar_t type defined in wchar.h; useable means
  983. wchar_t must be an unsigned type with at least 16 bits. (see
  984. Include/unicodeobject.h). */
  985. /* #undef HAVE_USABLE_WCHAR_T */
  986. /* Define to 1 if you have the <util.h> header file. */
  987. #define HAVE_UTIL_H 1
  988. /* Define to 1 if you have the `utimensat' function. */
  989. #define HAVE_UTIMENSAT 1
  990. /* Define to 1 if you have the `utimes' function. */
  991. #define HAVE_UTIMES 1
  992. /* Define to 1 if you have the <utime.h> header file. */
  993. #define HAVE_UTIME_H 1
  994. /* Define to 1 if you have the <utmp.h> header file. */
  995. #define HAVE_UTMP_H 1
  996. /* Define to 1 if you have the `uuid_create' function. */
  997. /* #undef HAVE_UUID_CREATE */
  998. /* Define to 1 if you have the `uuid_enc_be' function. */
  999. /* #undef HAVE_UUID_ENC_BE */
  1000. /* Define if uuid_generate_time_safe() exists. */
  1001. /* #undef HAVE_UUID_GENERATE_TIME_SAFE */
  1002. /* Define to 1 if you have the <uuid.h> header file. */
  1003. /* #undef HAVE_UUID_H */
  1004. /* Define to 1 if you have the <uuid/uuid.h> header file. */
  1005. #define HAVE_UUID_UUID_H 1
  1006. /* Define to 1 if you have the `vfork' function. */
  1007. #define HAVE_VFORK 1
  1008. /* Define to 1 if you have the `wait' function. */
  1009. #define HAVE_WAIT 1
  1010. /* Define to 1 if you have the `wait3' function. */
  1011. #define HAVE_WAIT3 1
  1012. /* Define to 1 if you have the `wait4' function. */
  1013. #define HAVE_WAIT4 1
  1014. /* Define to 1 if you have the `waitid' function. */
  1015. #define HAVE_WAITID 1
  1016. /* Define to 1 if you have the `waitpid' function. */
  1017. #define HAVE_WAITPID 1
  1018. /* Define if the compiler provides a wchar.h header file. */
  1019. #define HAVE_WCHAR_H 1
  1020. /* Define to 1 if you have the `wcscoll' function. */
  1021. #define HAVE_WCSCOLL 1
  1022. /* Define to 1 if you have the `wcsftime' function. */
  1023. #define HAVE_WCSFTIME 1
  1024. /* Define to 1 if you have the `wcsxfrm' function. */
  1025. #define HAVE_WCSXFRM 1
  1026. /* Define to 1 if you have the `wmemcmp' function. */
  1027. #define HAVE_WMEMCMP 1
  1028. /* Define if tzset() actually switches the local timezone in a meaningful way.
  1029. */
  1030. #define HAVE_WORKING_TZSET 1
  1031. /* Define to 1 if you have the `writev' function. */
  1032. #define HAVE_WRITEV 1
  1033. /* Define if the zlib library has inflateCopy */
  1034. #define HAVE_ZLIB_COPY 1
  1035. /* Define to 1 if you have the <zlib.h> header file. */
  1036. #define HAVE_ZLIB_H 1
  1037. /* Define to 1 if you have the `_getpty' function. */
  1038. /* #undef HAVE__GETPTY */
  1039. /* Define to 1 if `major', `minor', and `makedev' are declared in <mkdev.h>.
  1040. */
  1041. /* #undef MAJOR_IN_MKDEV */
  1042. /* Define to 1 if `major', `minor', and `makedev' are declared in
  1043. <sysmacros.h>. */
  1044. /* #undef MAJOR_IN_SYSMACROS */
  1045. /* Define if mvwdelch in curses.h is an expression. */
  1046. #define MVWDELCH_IS_EXPRESSION 1
  1047. /* Define to the address where bug reports for this package should be sent. */
  1048. /* #undef PACKAGE_BUGREPORT */
  1049. /* Define to the full name of this package. */
  1050. /* #undef PACKAGE_NAME */
  1051. /* Define to the full name and version of this package. */
  1052. /* #undef PACKAGE_STRING */
  1053. /* Define to the one symbol short name of this package. */
  1054. /* #undef PACKAGE_TARNAME */
  1055. /* Define to the home page for this package. */
  1056. /* #undef PACKAGE_URL */
  1057. /* Define to the version of this package. */
  1058. /* #undef PACKAGE_VERSION */
  1059. /* Define if POSIX semaphores aren't enabled on your system */
  1060. /* #undef POSIX_SEMAPHORES_NOT_ENABLED */
  1061. /* Define if pthread_key_t is compatible with int. */
  1062. /* #undef PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT */
  1063. /* Defined if PTHREAD_SCOPE_SYSTEM supported. */
  1064. #define PTHREAD_SYSTEM_SCHED_SUPPORTED 1
  1065. /* Define as the preferred size in bits of long digits */
  1066. /* #undef PYLONG_BITS_IN_DIGIT */
  1067. /* enabled builtin hash modules */
  1068. #define PY_BUILTIN_HASHLIB_HASHES "md5,sha1,sha2,sha3,blake2"
  1069. /* Define if you want to coerce the C locale to a UTF-8 based locale */
  1070. #define PY_COERCE_C_LOCALE 1
  1071. /* Define to 1 if you have the perf trampoline. */
  1072. /* #undef PY_HAVE_PERF_TRAMPOLINE */
  1073. /* Define to 1 to build the sqlite module with loadable extensions support. */
  1074. #define PY_SQLITE_ENABLE_LOAD_EXTENSION 1
  1075. /* Define if SQLite was compiled with the serialize API */
  1076. #define PY_SQLITE_HAVE_SERIALIZE 1
  1077. /* Default cipher suites list for ssl module. 1: Python's preferred selection,
  1078. 2: leave OpenSSL defaults untouched, 0: custom string */
  1079. #define PY_SSL_DEFAULT_CIPHERS 1
  1080. /* Cipher suite string for PY_SSL_DEFAULT_CIPHERS=0 */
  1081. /* #undef PY_SSL_DEFAULT_CIPHER_STRING */
  1082. /* PEP 11 Support tier (1, 2, 3 or 0 for unsupported) */
  1083. #define PY_SUPPORT_TIER 2
  1084. /* Define if you want to build an interpreter with many run-time checks. */
  1085. #if !defined(NDEBUG) && !defined(Py_LIMITED_API) && !defined(DISABLE_PYDEBUG)
  1086. #define Py_DEBUG
  1087. #define GC_NDEBUG
  1088. #endif
  1089. /* Defined if Python is built as a shared library. */
  1090. /* #undef Py_ENABLE_SHARED */
  1091. /* Define hash algorithm for str, bytes and memoryview. SipHash24: 1, FNV: 2,
  1092. SipHash13: 3, externally defined: 0 */
  1093. /* #undef Py_HASH_ALGORITHM */
  1094. /* Define if you want to enable internal statistics gathering. */
  1095. /* #undef Py_STATS */
  1096. /* The version of SunOS/Solaris as reported by `uname -r' without the dot. */
  1097. /* #undef Py_SUNOS_VERSION */
  1098. /* Define if you want to enable tracing references for debugging purpose */
  1099. /* #undef Py_TRACE_REFS */
  1100. /* assume C89 semantics that RETSIGTYPE is always void */
  1101. #define RETSIGTYPE void
  1102. /* Define if setpgrp() must be called as setpgrp(0, 0). */
  1103. /* #undef SETPGRP_HAVE_ARG */
  1104. /* Define if i>>j for signed int i does not extend the sign bit when i < 0 */
  1105. /* #undef SIGNED_RIGHT_SHIFT_ZERO_FILLS */
  1106. /* The size of `double', as computed by sizeof. */
  1107. #define SIZEOF_DOUBLE 8
  1108. /* The size of `float', as computed by sizeof. */
  1109. #define SIZEOF_FLOAT 4
  1110. /* The size of `fpos_t', as computed by sizeof. */
  1111. #define SIZEOF_FPOS_T 8
  1112. /* The size of `int', as computed by sizeof. */
  1113. #define SIZEOF_INT 4
  1114. /* The size of `long', as computed by sizeof. */
  1115. #define SIZEOF_LONG 8
  1116. /* The size of `long double', as computed by sizeof. */
  1117. #define SIZEOF_LONG_DOUBLE 8
  1118. /* The size of `long long', as computed by sizeof. */
  1119. #define SIZEOF_LONG_LONG 8
  1120. /* The size of `off_t', as computed by sizeof. */
  1121. #define SIZEOF_OFF_T 8
  1122. /* The size of `pid_t', as computed by sizeof. */
  1123. #define SIZEOF_PID_T 4
  1124. /* The size of `pthread_key_t', as computed by sizeof. */
  1125. #define SIZEOF_PTHREAD_KEY_T 8
  1126. /* The size of `pthread_t', as computed by sizeof. */
  1127. #define SIZEOF_PTHREAD_T 8
  1128. /* The size of `short', as computed by sizeof. */
  1129. #define SIZEOF_SHORT 2
  1130. /* The size of `size_t', as computed by sizeof. */
  1131. #if !defined(SIZEOF_SIZE_T)
  1132. #define SIZEOF_SIZE_T 8
  1133. #endif
  1134. /* The size of `time_t', as computed by sizeof. */
  1135. #define SIZEOF_TIME_T 8
  1136. /* The size of `uintptr_t', as computed by sizeof. */
  1137. #define SIZEOF_UINTPTR_T 8
  1138. /* The size of `void *', as computed by sizeof. */
  1139. #define SIZEOF_VOID_P 8
  1140. /* The size of `wchar_t', as computed by sizeof. */
  1141. #define SIZEOF_WCHAR_T 4
  1142. /* The size of `_Bool', as computed by sizeof. */
  1143. #define SIZEOF__BOOL 1
  1144. /* Define to 1 if you have the ANSI C header files. */
  1145. #define STDC_HEADERS 1
  1146. /* Define if you can safely include both <sys/select.h> and <sys/time.h>
  1147. (which you can't on SCO ODT 3.0). */
  1148. #define SYS_SELECT_WITH_SYS_TIME 1
  1149. /* Custom thread stack size depending on chosen sanitizer runtimes. */
  1150. #define THREAD_STACK_SIZE 0x1000000
  1151. /* Library needed by timemodule.c: librt may be needed for clock_gettime() */
  1152. /* #undef TIMEMODULE_LIB */
  1153. /* Define to 1 if your <sys/time.h> declares `struct tm'. */
  1154. /* #undef TM_IN_SYS_TIME */
  1155. /* Define if you want to use computed gotos in ceval.c. */
  1156. /* #undef USE_COMPUTED_GOTOS */
  1157. /* Enable extensions on AIX 3, Interix. */
  1158. #ifndef _ALL_SOURCE
  1159. # define _ALL_SOURCE 1
  1160. #endif
  1161. /* Enable general extensions on macOS. */
  1162. #ifndef _DARWIN_C_SOURCE
  1163. # define _DARWIN_C_SOURCE 1
  1164. #endif
  1165. /* Enable general extensions on Solaris. */
  1166. #ifndef __EXTENSIONS__
  1167. # define __EXTENSIONS__ 1
  1168. #endif
  1169. /* Enable GNU extensions on systems that have them. */
  1170. #ifndef _GNU_SOURCE
  1171. # define _GNU_SOURCE 1
  1172. #endif
  1173. /* Enable X/Open compliant socket functions that do not require linking
  1174. with -lxnet on HP-UX 11.11. */
  1175. #ifndef _HPUX_ALT_XOPEN_SOCKET_API
  1176. # define _HPUX_ALT_XOPEN_SOCKET_API 1
  1177. #endif
  1178. /* Identify the host operating system as Minix.
  1179. This macro does not affect the system headers' behavior.
  1180. A future release of Autoconf may stop defining this macro. */
  1181. #ifndef _MINIX
  1182. /* # undef _MINIX */
  1183. #endif
  1184. /* Enable general extensions on NetBSD.
  1185. Enable NetBSD compatibility extensions on Minix. */
  1186. #ifndef _NETBSD_SOURCE
  1187. # define _NETBSD_SOURCE 1
  1188. #endif
  1189. /* Enable OpenBSD compatibility extensions on NetBSD.
  1190. Oddly enough, this does nothing on OpenBSD. */
  1191. #ifndef _OPENBSD_SOURCE
  1192. # define _OPENBSD_SOURCE 1
  1193. #endif
  1194. /* Define to 1 if needed for POSIX-compatible behavior. */
  1195. #ifndef _POSIX_SOURCE
  1196. /* # undef _POSIX_SOURCE */
  1197. #endif
  1198. /* Define to 2 if needed for POSIX-compatible behavior. */
  1199. #ifndef _POSIX_1_SOURCE
  1200. /* # undef _POSIX_1_SOURCE */
  1201. #endif
  1202. /* Enable POSIX-compatible threading on Solaris. */
  1203. #ifndef _POSIX_PTHREAD_SEMANTICS
  1204. # define _POSIX_PTHREAD_SEMANTICS 1
  1205. #endif
  1206. /* Enable extensions specified by ISO/IEC TS 18661-5:2014. */
  1207. #ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
  1208. # define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1
  1209. #endif
  1210. /* Enable extensions specified by ISO/IEC TS 18661-1:2014. */
  1211. #ifndef __STDC_WANT_IEC_60559_BFP_EXT__
  1212. # define __STDC_WANT_IEC_60559_BFP_EXT__ 1
  1213. #endif
  1214. /* Enable extensions specified by ISO/IEC TS 18661-2:2015. */
  1215. #ifndef __STDC_WANT_IEC_60559_DFP_EXT__
  1216. # define __STDC_WANT_IEC_60559_DFP_EXT__ 1
  1217. #endif
  1218. /* Enable extensions specified by ISO/IEC TS 18661-4:2015. */
  1219. #ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__
  1220. # define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1
  1221. #endif
  1222. /* Enable extensions specified by ISO/IEC TS 18661-3:2015. */
  1223. #ifndef __STDC_WANT_IEC_60559_TYPES_EXT__
  1224. # define __STDC_WANT_IEC_60559_TYPES_EXT__ 1
  1225. #endif
  1226. /* Enable extensions specified by ISO/IEC TR 24731-2:2010. */
  1227. #ifndef __STDC_WANT_LIB_EXT2__
  1228. # define __STDC_WANT_LIB_EXT2__ 1
  1229. #endif
  1230. /* Enable extensions specified by ISO/IEC 24747:2009. */
  1231. #ifndef __STDC_WANT_MATH_SPEC_FUNCS__
  1232. # define __STDC_WANT_MATH_SPEC_FUNCS__ 1
  1233. #endif
  1234. /* Enable extensions on HP NonStop. */
  1235. #ifndef _TANDEM_SOURCE
  1236. # define _TANDEM_SOURCE 1
  1237. #endif
  1238. /* Enable X/Open extensions. Define to 500 only if necessary
  1239. to make mbstate_t available. */
  1240. #ifndef _XOPEN_SOURCE
  1241. /* # undef _XOPEN_SOURCE */
  1242. #endif
  1243. /* Define if WINDOW in curses.h offers a field _flags. */
  1244. #define WINDOW_HAS_FLAGS 1
  1245. /* Define if you want build the _decimal module using a coroutine-local rather
  1246. than a thread-local context */
  1247. #define WITH_DECIMAL_CONTEXTVAR 1
  1248. /* Define if you want documentation strings in extension modules */
  1249. #define WITH_DOC_STRINGS 1
  1250. /* Define if you want to compile in DTrace support */
  1251. /* #undef WITH_DTRACE */
  1252. /* Define if you want to use the new-style (Openstep, Rhapsody, MacOS) dynamic
  1253. linker (dyld) instead of the old-style (NextStep) dynamic linker (rld).
  1254. Dyld is necessary to support frameworks. */
  1255. #define WITH_DYLD 1
  1256. /* Define to build the readline module against libedit. */
  1257. /* #undef WITH_EDITLINE */
  1258. /* Define if you want to compile in object freelists optimization */
  1259. #define WITH_FREELISTS 1
  1260. /* Define to 1 if libintl is needed for locale functions. */
  1261. /* #undef WITH_LIBINTL */
  1262. /* Define if you want to produce an OpenStep/Rhapsody framework (shared
  1263. library plus accessory files). */
  1264. /* #undef WITH_NEXT_FRAMEWORK */
  1265. /* Define if you want to compile in Python-specific mallocs */
  1266. #ifndef address_sanitizer_enabled
  1267. #define WITH_PYMALLOC 1
  1268. #endif
  1269. /* Define if you want pymalloc to be disabled when running under valgrind */
  1270. /* #undef WITH_VALGRIND */
  1271. /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
  1272. significant byte first (like Motorola and SPARC, unlike Intel). */
  1273. #if defined AC_APPLE_UNIVERSAL_BUILD
  1274. # if defined __BIG_ENDIAN__
  1275. # define WORDS_BIGENDIAN 1
  1276. # endif
  1277. #else
  1278. # ifndef WORDS_BIGENDIAN
  1279. /* # undef WORDS_BIGENDIAN */
  1280. # endif
  1281. #endif
  1282. /* Define if arithmetic is subject to x87-style double rounding issue */
  1283. /* #undef X87_DOUBLE_ROUNDING */
  1284. /* Define on OpenBSD to activate all library features */
  1285. /* #undef _BSD_SOURCE */
  1286. /* Define on Darwin to activate all library features */
  1287. #define _DARWIN_C_SOURCE 1
  1288. /* This must be set to 64 on some systems to enable large file support. */
  1289. #define _FILE_OFFSET_BITS 64
  1290. /* Define to include mbstate_t for mbrtowc */
  1291. /* #undef _INCLUDE__STDC_A1_SOURCE */
  1292. /* This must be defined on some systems to enable large file support. */
  1293. #define _LARGEFILE_SOURCE 1
  1294. /* This must be defined on AIX systems to enable large file support. */
  1295. /* #undef _LARGE_FILES */
  1296. /* Define on NetBSD to activate all library features */
  1297. #define _NETBSD_SOURCE 1
  1298. /* Define to activate features from IEEE Stds 1003.1-2008 */
  1299. /* #undef _POSIX_C_SOURCE */
  1300. /* Define if you have POSIX threads, and your system does not define that. */
  1301. /* #undef _POSIX_THREADS */
  1302. /* framework name */
  1303. #define _PYTHONFRAMEWORK ""
  1304. /* Define to force use of thread-safe errno, h_errno, and other functions */
  1305. #define _REENTRANT 1
  1306. /* Define to 1 if you want to emulate getpid() on WASI */
  1307. /* #undef _WASI_EMULATED_GETPID */
  1308. /* Define to 1 if you want to emulate process clocks on WASI */
  1309. /* #undef _WASI_EMULATED_PROCESS_CLOCKS */
  1310. /* Define to 1 if you want to emulate signals on WASI */
  1311. /* #undef _WASI_EMULATED_SIGNAL */
  1312. /* Define to the level of X/Open that your system supports */
  1313. /* #undef _XOPEN_SOURCE */
  1314. /* Define to activate Unix95-and-earlier features */
  1315. /* #undef _XOPEN_SOURCE_EXTENDED */
  1316. /* Define on FreeBSD to activate all library features */
  1317. #define __BSD_VISIBLE 1
  1318. /* Define to 'long' if <time.h> doesn't define. */
  1319. /* #undef clock_t */
  1320. /* Define to empty if `const' does not conform to ANSI C. */
  1321. /* #undef const */
  1322. /* Define to `int' if <sys/types.h> doesn't define. */
  1323. /* #undef gid_t */
  1324. /* Define to `int' if <sys/types.h> does not define. */
  1325. /* #undef mode_t */
  1326. /* Define to `long int' if <sys/types.h> does not define. */
  1327. /* #undef off_t */
  1328. /* Define as a signed integer type capable of holding a process identifier. */
  1329. /* #undef pid_t */
  1330. /* Define to empty if the keyword does not work. */
  1331. /* #undef signed */
  1332. /* Define to `unsigned int' if <sys/types.h> does not define. */
  1333. /* #undef size_t */
  1334. /* Define to `int' if <sys/socket.h> does not define. */
  1335. /* #undef socklen_t */
  1336. /* Define to `int' if <sys/types.h> doesn't define. */
  1337. /* #undef uid_t */
  1338. /* Define the macros needed if on a UnixWare 7.x system. */
  1339. #if defined(__USLC__) && defined(__SCO_VERSION__)
  1340. #define STRICT_SYSV_CURSES /* Don't use ncurses extensions */
  1341. #endif
  1342. #endif /*Py_PYCONFIG_H*/