pyconfig-linux.h 55 KB

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