pyconfig.h 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287
  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. /* Define for AIX if your compiler is a genuine IBM xlC/xlC_r and you want
  8. support for AIX C++ shared extension modules. */
  9. /* #undef AIX_GENUINE_CPLUSPLUS */
  10. /* Define this if you have AtheOS threads. */
  11. /* #undef ATHEOS_THREADS */
  12. /* Define this if you have BeOS threads. */
  13. /* #undef BEOS_THREADS */
  14. /* Define if you have the Mach cthreads package */
  15. /* #undef C_THREADS */
  16. /* Define if C doubles are 64-bit IEEE 754 binary format, stored in ARM
  17. mixed-endian order (byte order 45670123) */
  18. /* #undef DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754 */
  19. /* Define if C doubles are 64-bit IEEE 754 binary format, stored with the most
  20. significant byte first */
  21. /* #undef DOUBLE_IS_BIG_ENDIAN_IEEE754 */
  22. /* Define if C doubles are 64-bit IEEE 754 binary format, stored with the
  23. least significant byte first */
  24. /* #undef DOUBLE_IS_LITTLE_ENDIAN_IEEE754 */
  25. /* Define if --enable-ipv6 is specified */
  26. #define ENABLE_IPV6 1
  27. /* Define if flock needs to be linked with bsd library. */
  28. /* #undef FLOCK_NEEDS_LIBBSD */
  29. /* Define if getpgrp() must be called as getpgrp(0). */
  30. /* #undef GETPGRP_HAVE_ARG */
  31. /* Define if gettimeofday() does not have second (timezone) argument This is
  32. the case on Motorola V4 (R40V4.2) */
  33. /* #undef GETTIMEOFDAY_NO_TZ */
  34. /* Define to 1 if you have the `acosh' function. */
  35. #define HAVE_ACOSH 1
  36. /* struct addrinfo (netdb.h) */
  37. #define HAVE_ADDRINFO 1
  38. /* Define to 1 if you have the `alarm' function. */
  39. #define HAVE_ALARM 1
  40. /* Define to 1 if you have the <alloca.h> header file. */
  41. #define HAVE_ALLOCA_H 1
  42. /* Define this if your time.h defines altzone. */
  43. /* #undef HAVE_ALTZONE */
  44. /* Define to 1 if you have the `asinh' function. */
  45. #define HAVE_ASINH 1
  46. /* Define to 1 if you have the <asm/types.h> header file. */
  47. #define HAVE_ASM_TYPES_H 1
  48. /* Define to 1 if you have the `atanh' function. */
  49. #define HAVE_ATANH 1
  50. /* Define if GCC supports __attribute__((format(PyArg_ParseTuple, 2, 3))) */
  51. /* #undef HAVE_ATTRIBUTE_FORMAT_PARSETUPLE */
  52. /* Define to 1 if you have the `bind_textdomain_codeset' function. */
  53. #define HAVE_BIND_TEXTDOMAIN_CODESET 1
  54. /* Define to 1 if you have the <bluetooth/bluetooth.h> header file. */
  55. /* #undef HAVE_BLUETOOTH_BLUETOOTH_H */
  56. /* Define to 1 if you have the <bluetooth.h> header file. */
  57. /* #undef HAVE_BLUETOOTH_H */
  58. /* Define if nice() returns success/failure instead of the new priority. */
  59. /* #undef HAVE_BROKEN_NICE */
  60. /* Define if the system reports an invalid PIPE_BUF value. */
  61. /* #undef HAVE_BROKEN_PIPE_BUF */
  62. /* Define if poll() sets errno on invalid file descriptors. */
  63. /* #undef HAVE_BROKEN_POLL */
  64. /* Define if the Posix semaphores do not work on your system */
  65. /* #undef HAVE_BROKEN_POSIX_SEMAPHORES */
  66. /* Define if pthread_sigmask() does not work on your system. */
  67. /* #undef HAVE_BROKEN_PTHREAD_SIGMASK */
  68. /* define to 1 if your sem_getvalue is broken. */
  69. #define HAVE_BROKEN_SEM_GETVALUE 1
  70. /* Define if `unsetenv` does not return an int. */
  71. /* #undef HAVE_BROKEN_UNSETENV */
  72. /* Define this if you have the type _Bool. */
  73. #define HAVE_C99_BOOL 1
  74. /* Define to 1 if you have the 'chflags' function. */
  75. /* #undef HAVE_CHFLAGS */
  76. /* Define to 1 if you have the `chown' function. */
  77. #define HAVE_CHOWN 1
  78. /* Define if you have the 'chroot' function. */
  79. #define HAVE_CHROOT 1
  80. /* Define to 1 if you have the `clock' function. */
  81. #define HAVE_CLOCK 1
  82. /* Define if the C compiler supports computed gotos. */
  83. /* #undef HAVE_COMPUTED_GOTOS */
  84. /* Define to 1 if you have the `confstr' function. */
  85. #define HAVE_CONFSTR 1
  86. /* Define to 1 if you have the <conio.h> header file. */
  87. /* #undef HAVE_CONIO_H */
  88. /* Define to 1 if you have the `copysign' function. */
  89. #define HAVE_COPYSIGN 1
  90. /* Define to 1 if you have the `ctermid' function. */
  91. #define HAVE_CTERMID 1
  92. /* Define if you have the 'ctermid_r' function. */
  93. /* #undef HAVE_CTERMID_R */
  94. /* Define to 1 if you have the <curses.h> header file. */
  95. #define HAVE_CURSES_H 1
  96. /* Define if you have the 'is_term_resized' function. */
  97. #define HAVE_CURSES_IS_TERM_RESIZED 1
  98. /* Define if you have the 'resizeterm' function. */
  99. #define HAVE_CURSES_RESIZETERM 1
  100. /* Define if you have the 'resize_term' function. */
  101. #define HAVE_CURSES_RESIZE_TERM 1
  102. /* Define to 1 if you have the declaration of `isfinite', and to 0 if you
  103. don't. */
  104. #define HAVE_DECL_ISFINITE 1
  105. /* Define to 1 if you have the declaration of `isinf', and to 0 if you don't.
  106. */
  107. #define HAVE_DECL_ISINF 1
  108. /* Define to 1 if you have the declaration of `isnan', and to 0 if you don't.
  109. */
  110. #define HAVE_DECL_ISNAN 1
  111. /* Define to 1 if you have the declaration of `tzname', and to 0 if you don't.
  112. */
  113. /* #undef HAVE_DECL_TZNAME */
  114. /* Define to 1 if you have the device macros. */
  115. #define HAVE_DEVICE_MACROS 1
  116. /* Define to 1 if you have the /dev/ptc device file. */
  117. /* #undef HAVE_DEV_PTC */
  118. /* Define to 1 if you have the /dev/ptmx device file. */
  119. #define HAVE_DEV_PTMX 1
  120. /* Define to 1 if you have the <direct.h> header file. */
  121. /* #undef HAVE_DIRECT_H */
  122. /* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
  123. */
  124. #define HAVE_DIRENT_H 1
  125. /* Define to 1 if you have the <dlfcn.h> header file. */
  126. #define HAVE_DLFCN_H 1
  127. /* Define to 1 if you have the `dlopen' function. */
  128. #define HAVE_DLOPEN 1
  129. /* Define to 1 if you have the `dup2' function. */
  130. #define HAVE_DUP2 1
  131. /* Defined when any dynamic module loading is enabled. */
  132. #define HAVE_DYNAMIC_LOADING 1
  133. /* Define if you have the 'epoll' functions. */
  134. #define HAVE_EPOLL 1
  135. /* Define to 1 if you have the `erf' function. */
  136. #define HAVE_ERF 1
  137. /* Define to 1 if you have the `erfc' function. */
  138. #define HAVE_ERFC 1
  139. /* Define to 1 if you have the <errno.h> header file. */
  140. #define HAVE_ERRNO_H 1
  141. /* Define to 1 if you have the `execv' function. */
  142. #define HAVE_EXECV 1
  143. /* Define to 1 if you have the `expm1' function. */
  144. #define HAVE_EXPM1 1
  145. /* Define if you have the 'fchdir' function. */
  146. #define HAVE_FCHDIR 1
  147. /* Define to 1 if you have the `fchmod' function. */
  148. #define HAVE_FCHMOD 1
  149. /* Define to 1 if you have the `fchown' function. */
  150. #define HAVE_FCHOWN 1
  151. /* Define to 1 if you have the <fcntl.h> header file. */
  152. #define HAVE_FCNTL_H 1
  153. /* Define if you have the 'fdatasync' function. */
  154. #define HAVE_FDATASYNC 1
  155. /* Define to 1 if you have the `finite' function. */
  156. #define HAVE_FINITE 1
  157. /* Define to 1 if you have the `flock' function. */
  158. #define HAVE_FLOCK 1
  159. /* Define to 1 if you have the `fork' function. */
  160. #define HAVE_FORK 1
  161. /* Define to 1 if you have the `forkpty' function. */
  162. #define HAVE_FORKPTY 1
  163. /* Define to 1 if you have the `fpathconf' function. */
  164. #define HAVE_FPATHCONF 1
  165. /* Define to 1 if you have the `fseek64' function. */
  166. /* #undef HAVE_FSEEK64 */
  167. /* Define to 1 if you have the `fseeko' function. */
  168. #define HAVE_FSEEKO 1
  169. /* Define to 1 if you have the `fstatvfs' function. */
  170. #define HAVE_FSTATVFS 1
  171. /* Define if you have the 'fsync' function. */
  172. #define HAVE_FSYNC 1
  173. /* Define to 1 if you have the `ftell64' function. */
  174. /* #undef HAVE_FTELL64 */
  175. /* Define to 1 if you have the `ftello' function. */
  176. #define HAVE_FTELLO 1
  177. /* Define to 1 if you have the `ftime' function. */
  178. #define HAVE_FTIME 1
  179. /* Define to 1 if you have the `ftruncate' function. */
  180. #define HAVE_FTRUNCATE 1
  181. /* Define to 1 if you have the `gai_strerror' function. */
  182. #define HAVE_GAI_STRERROR 1
  183. /* Define to 1 if you have the `gamma' function. */
  184. #define HAVE_GAMMA 1
  185. /* Define if we can use gcc inline assembler to get and set x87 control word
  186. */
  187. #define HAVE_GCC_ASM_FOR_X87 1
  188. /* Define if you have the getaddrinfo function. */
  189. #define HAVE_GETADDRINFO 1
  190. /* Define to 1 if you have the `getcwd' function. */
  191. #define HAVE_GETCWD 1
  192. /* Define this if you have flockfile(), getc_unlocked(), and funlockfile() */
  193. #define HAVE_GETC_UNLOCKED 1
  194. /* Define to 1 if you have the `getentropy' function. */
  195. /* #undef HAVE_GETENTROPY */
  196. /* Define to 1 if you have the `getgroups' function. */
  197. #define HAVE_GETGROUPS 1
  198. /* Define to 1 if you have the `gethostbyname' function. */
  199. /* #undef HAVE_GETHOSTBYNAME */
  200. /* Define this if you have some version of gethostbyname_r() */
  201. #define HAVE_GETHOSTBYNAME_R 1
  202. /* Define this if you have the 3-arg version of gethostbyname_r(). */
  203. /* #undef HAVE_GETHOSTBYNAME_R_3_ARG */
  204. /* Define this if you have the 5-arg version of gethostbyname_r(). */
  205. /* #undef HAVE_GETHOSTBYNAME_R_5_ARG */
  206. /* Define this if you have the 6-arg version of gethostbyname_r(). */
  207. #define HAVE_GETHOSTBYNAME_R_6_ARG 1
  208. /* Define to 1 if you have the `getitimer' function. */
  209. #define HAVE_GETITIMER 1
  210. /* Define to 1 if you have the `getloadavg' function. */
  211. #define HAVE_GETLOADAVG 1
  212. /* Define to 1 if you have the `getlogin' function. */
  213. #define HAVE_GETLOGIN 1
  214. /* Define to 1 if you have the `getnameinfo' function. */
  215. #define HAVE_GETNAMEINFO 1
  216. /* Define if you have the 'getpagesize' function. */
  217. #define HAVE_GETPAGESIZE 1
  218. /* Define to 1 if you have the `getpeername' function. */
  219. #define HAVE_GETPEERNAME 1
  220. /* Define to 1 if you have the `getpgid' function. */
  221. #define HAVE_GETPGID 1
  222. /* Define to 1 if you have the `getpgrp' function. */
  223. #define HAVE_GETPGRP 1
  224. /* Define to 1 if you have the `getpid' function. */
  225. #define HAVE_GETPID 1
  226. /* Define to 1 if you have the `getpriority' function. */
  227. #define HAVE_GETPRIORITY 1
  228. /* Define to 1 if you have the `getpwent' function. */
  229. #define HAVE_GETPWENT 1
  230. /* Define to 1 if you have the `getresgid' function. */
  231. #define HAVE_GETRESGID 1
  232. /* Define to 1 if you have the `getresuid' function. */
  233. #define HAVE_GETRESUID 1
  234. /* Define to 1 if you have the `getsid' function. */
  235. #define HAVE_GETSID 1
  236. /* Define to 1 if you have the `getspent' function. */
  237. #define HAVE_GETSPENT 1
  238. /* Define to 1 if you have the `getspnam' function. */
  239. #define HAVE_GETSPNAM 1
  240. /* Define to 1 if you have the `gettimeofday' function. */
  241. #define HAVE_GETTIMEOFDAY 1
  242. /* Define to 1 if you have the `getwd' function. */
  243. #define HAVE_GETWD 1
  244. /* Define to 1 if you have the <grp.h> header file. */
  245. #define HAVE_GRP_H 1
  246. /* Define if you have the 'hstrerror' function. */
  247. #define HAVE_HSTRERROR 1
  248. /* Define to 1 if you have the `hypot' function. */
  249. #define HAVE_HYPOT 1
  250. /* Define to 1 if you have the <ieeefp.h> header file. */
  251. /* #undef HAVE_IEEEFP_H */
  252. /* Define if you have the 'inet_aton' function. */
  253. #define HAVE_INET_ATON 1
  254. /* Define if you have the 'inet_pton' function. */
  255. #define HAVE_INET_PTON 1
  256. /* Define to 1 if you have the `initgroups' function. */
  257. #define HAVE_INITGROUPS 1
  258. /* Define if your compiler provides int32_t. */
  259. #define HAVE_INT32_T 1
  260. /* Define if your compiler provides int64_t. */
  261. #define HAVE_INT64_T 1
  262. /* Define to 1 if you have the <inttypes.h> header file. */
  263. #define HAVE_INTTYPES_H 1
  264. /* Define to 1 if you have the <io.h> header file. */
  265. /* #undef HAVE_IO_H */
  266. /* Define to 1 if you have the `kill' function. */
  267. #define HAVE_KILL 1
  268. /* Define to 1 if you have the `killpg' function. */
  269. #define HAVE_KILLPG 1
  270. /* Define if you have the 'kqueue' functions. */
  271. /* #undef HAVE_KQUEUE */
  272. /* Define to 1 if you have the <langinfo.h> header file. */
  273. #define HAVE_LANGINFO_H 1
  274. /* Defined to enable large file support when an off_t is bigger than a long
  275. and long long is available and at least as big as an off_t. You may need to
  276. add some flags for configuration and compilation to enable this mode. (For
  277. Solaris and Linux, the necessary defines are already defined.) */
  278. /* #undef HAVE_LARGEFILE_SUPPORT */
  279. /* Define to 1 if you have the 'lchflags' function. */
  280. /* #undef HAVE_LCHFLAGS */
  281. /* Define to 1 if you have the `lchmod' function. */
  282. /* #undef HAVE_LCHMOD */
  283. /* Define to 1 if you have the `lchown' function. */
  284. #define HAVE_LCHOWN 1
  285. /* Define to 1 if you have the `lgamma' function. */
  286. #define HAVE_LGAMMA 1
  287. /* Define to 1 if you have the `dl' library (-ldl). */
  288. #define HAVE_LIBDL 1
  289. /* Define to 1 if you have the `dld' library (-ldld). */
  290. /* #undef HAVE_LIBDLD */
  291. /* Define to 1 if you have the `ieee' library (-lieee). */
  292. /* #undef HAVE_LIBIEEE */
  293. /* Define to 1 if you have the <libintl.h> header file. */
  294. #define HAVE_LIBINTL_H 1
  295. /* Define if you have the readline library (-lreadline). */
  296. #define HAVE_LIBREADLINE 1
  297. /* Define to 1 if you have the `resolv' library (-lresolv). */
  298. /* #undef HAVE_LIBRESOLV */
  299. /* Define to 1 if you have the <libutil.h> header file. */
  300. /* #undef HAVE_LIBUTIL_H */
  301. /* Define if you have the 'link' function. */
  302. #define HAVE_LINK 1
  303. /* Define to 1 if you have the <linux/netlink.h> header file. */
  304. #define HAVE_LINUX_NETLINK_H 1
  305. /* Define to 1 if you have the <linux/tipc.h> header file. */
  306. #define HAVE_LINUX_TIPC_H 1
  307. /* Define to 1 if you have the `log1p' function. */
  308. #define HAVE_LOG1P 1
  309. /* Define this if you have the type long double. */
  310. #define HAVE_LONG_DOUBLE 1
  311. /* Define this if you have the type long long. */
  312. #define HAVE_LONG_LONG 1
  313. /* Define to 1 if you have the `lstat' function. */
  314. #define HAVE_LSTAT 1
  315. /* Define this if you have the makedev macro. */
  316. #define HAVE_MAKEDEV 1
  317. /* Define to 1 if you have the `memmove' function. */
  318. #define HAVE_MEMMOVE 1
  319. /* Define to 1 if you have the <memory.h> header file. */
  320. #define HAVE_MEMORY_H 1
  321. /* Define to 1 if you have the `mkfifo' function. */
  322. #define HAVE_MKFIFO 1
  323. /* Define to 1 if you have the `mknod' function. */
  324. #define HAVE_MKNOD 1
  325. /* Define to 1 if you have the `mktime' function. */
  326. #define HAVE_MKTIME 1
  327. /* Define to 1 if you have the `mmap' function. */
  328. #define HAVE_MMAP 1
  329. /* Define to 1 if you have the `mremap' function. */
  330. #define HAVE_MREMAP 1
  331. /* Define to 1 if you have the <ncurses.h> header file. */
  332. #define HAVE_NCURSES_H 1
  333. /* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
  334. /* #undef HAVE_NDIR_H */
  335. /* Define to 1 if you have the <netpacket/packet.h> header file. */
  336. #define HAVE_NETPACKET_PACKET_H 1
  337. /* Define to 1 if you have the `nice' function. */
  338. #define HAVE_NICE 1
  339. /* Define to 1 if you have the `openpty' function. */
  340. #define HAVE_OPENPTY 1
  341. /* Define if compiling using MacOS X 10.5 SDK or later. */
  342. /* #undef HAVE_OSX105_SDK */
  343. /* Define to 1 if you have the `pathconf' function. */
  344. #define HAVE_PATHCONF 1
  345. /* Define to 1 if you have the `pause' function. */
  346. #define HAVE_PAUSE 1
  347. /* Define to 1 if you have the `plock' function. */
  348. /* #undef HAVE_PLOCK */
  349. /* Define to 1 if you have the `poll' function. */
  350. #define HAVE_POLL 1
  351. /* Define to 1 if you have the <poll.h> header file. */
  352. #define HAVE_POLL_H 1
  353. /* Define to 1 if you have the <process.h> header file. */
  354. /* #undef HAVE_PROCESS_H */
  355. /* Define if your compiler supports function prototype */
  356. #define HAVE_PROTOTYPES 1
  357. /* Define if you have GNU PTH threads. */
  358. /* #undef HAVE_PTH */
  359. /* Define to 1 if you have the `pthread_atfork' function. */
  360. #define HAVE_PTHREAD_ATFORK 1
  361. /* Defined for Solaris 2.6 bug in pthread header. */
  362. /* #undef HAVE_PTHREAD_DESTRUCTOR */
  363. /* Define to 1 if you have the <pthread.h> header file. */
  364. #define HAVE_PTHREAD_H 1
  365. /* Define to 1 if you have the `pthread_init' function. */
  366. /* #undef HAVE_PTHREAD_INIT */
  367. /* Define to 1 if you have the `pthread_sigmask' function. */
  368. #define HAVE_PTHREAD_SIGMASK 1
  369. /* Define to 1 if you have the <pty.h> header file. */
  370. #define HAVE_PTY_H 1
  371. /* Define to 1 if you have the `putenv' function. */
  372. #define HAVE_PUTENV 1
  373. /* Define if the libcrypto has RAND_egd */
  374. #define HAVE_RAND_EGD 1
  375. /* Define to 1 if you have the `readlink' function. */
  376. #define HAVE_READLINK 1
  377. /* Define to 1 if you have the `realpath' function. */
  378. #define HAVE_REALPATH 1
  379. /* Define if you have readline 2.1 */
  380. #define HAVE_RL_CALLBACK 1
  381. /* Define if you can turn off readline's signal handling. */
  382. #define HAVE_RL_CATCH_SIGNAL 1
  383. /* Define if you have readline 2.2 */
  384. #define HAVE_RL_COMPLETION_APPEND_CHARACTER 1
  385. /* Define if you have readline 4.0 */
  386. #define HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK 1
  387. /* Define if you have readline 4.2 */
  388. #define HAVE_RL_COMPLETION_MATCHES 1
  389. /* Define if you have rl_completion_suppress_append */
  390. #define HAVE_RL_COMPLETION_SUPPRESS_APPEND 1
  391. /* Define if you have readline 4.0 */
  392. #define HAVE_RL_PRE_INPUT_HOOK 1
  393. /* Define if you have readline 4.0 */
  394. #define HAVE_RL_RESIZE_TERMINAL 1
  395. /* Define to 1 if you have the `round' function. */
  396. #define HAVE_ROUND 1
  397. /* Define to 1 if you have the `select' function. */
  398. #define HAVE_SELECT 1
  399. /* Define to 1 if you have the `sem_getvalue' function. */
  400. #define HAVE_SEM_GETVALUE 1
  401. /* Define to 1 if you have the `sem_open' function. */
  402. #define HAVE_SEM_OPEN 1
  403. /* Define to 1 if you have the `sem_timedwait' function. */
  404. #define HAVE_SEM_TIMEDWAIT 1
  405. /* Define to 1 if you have the `sem_unlink' function. */
  406. #define HAVE_SEM_UNLINK 1
  407. /* Define to 1 if you have the `setegid' function. */
  408. #define HAVE_SETEGID 1
  409. /* Define to 1 if you have the `seteuid' function. */
  410. #define HAVE_SETEUID 1
  411. /* Define to 1 if you have the `setgid' function. */
  412. #define HAVE_SETGID 1
  413. /* Define if you have the 'setgroups' function. */
  414. #define HAVE_SETGROUPS 1
  415. /* Define to 1 if you have the `setitimer' function. */
  416. #define HAVE_SETITIMER 1
  417. /* Define to 1 if you have the `setlocale' function. */
  418. #define HAVE_SETLOCALE 1
  419. /* Define to 1 if you have the `setpgid' function. */
  420. #define HAVE_SETPGID 1
  421. /* Define to 1 if you have the `setpgrp' function. */
  422. #define HAVE_SETPGRP 1
  423. /* Define to 1 if you have the `setregid' function. */
  424. #define HAVE_SETREGID 1
  425. /* Define to 1 if you have the `setresgid' function. */
  426. #define HAVE_SETRESGID 1
  427. /* Define to 1 if you have the `setresuid' function. */
  428. #define HAVE_SETRESUID 1
  429. /* Define to 1 if you have the `setreuid' function. */
  430. #define HAVE_SETREUID 1
  431. /* Define to 1 if you have the `setsid' function. */
  432. #define HAVE_SETSID 1
  433. /* Define to 1 if you have the `setuid' function. */
  434. #define HAVE_SETUID 1
  435. /* Define to 1 if you have the `setvbuf' function. */
  436. #define HAVE_SETVBUF 1
  437. /* Define to 1 if you have the <shadow.h> header file. */
  438. #define HAVE_SHADOW_H 1
  439. /* Define to 1 if you have the `sigaction' function. */
  440. #define HAVE_SIGACTION 1
  441. /* Define to 1 if you have the `siginterrupt' function. */
  442. #define HAVE_SIGINTERRUPT 1
  443. /* Define to 1 if you have the <signal.h> header file. */
  444. #define HAVE_SIGNAL_H 1
  445. /* Define to 1 if you have the `sigrelse' function. */
  446. #define HAVE_SIGRELSE 1
  447. /* Define to 1 if you have the `snprintf' function. */
  448. #define HAVE_SNPRINTF 1
  449. /* Define if sockaddr has sa_len member */
  450. /* #undef HAVE_SOCKADDR_SA_LEN */
  451. /* struct sockaddr_storage (sys/socket.h) */
  452. #define HAVE_SOCKADDR_STORAGE 1
  453. /* Define if you have the 'socketpair' function. */
  454. #define HAVE_SOCKETPAIR 1
  455. /* Define to 1 if you have the <spawn.h> header file. */
  456. #define HAVE_SPAWN_H 1
  457. /* Define if your compiler provides ssize_t */
  458. #define HAVE_SSIZE_T 1
  459. /* Define to 1 if you have the `statvfs' function. */
  460. #define HAVE_STATVFS 1
  461. /* Define if you have struct stat.st_mtim.tv_nsec */
  462. #define HAVE_STAT_TV_NSEC 1
  463. /* Define if you have struct stat.st_mtimensec */
  464. /* #undef HAVE_STAT_TV_NSEC2 */
  465. /* Define if your compiler supports variable length function prototypes (e.g.
  466. void fprintf(FILE *, char *, ...);) *and* <stdarg.h> */
  467. #define HAVE_STDARG_PROTOTYPES 1
  468. /* Define to 1 if you have the <stdint.h> header file. */
  469. #define HAVE_STDINT_H 1
  470. /* Define to 1 if you have the <stdlib.h> header file. */
  471. #define HAVE_STDLIB_H 1
  472. /* Define to 1 if you have the `strdup' function. */
  473. #define HAVE_STRDUP 1
  474. /* Define to 1 if you have the `strftime' function. */
  475. #define HAVE_STRFTIME 1
  476. /* Define to 1 if you have the <strings.h> header file. */
  477. #define HAVE_STRINGS_H 1
  478. /* Define to 1 if you have the <string.h> header file. */
  479. #define HAVE_STRING_H 1
  480. /* Define to 1 if you have the <stropts.h> header file. */
  481. #define HAVE_STROPTS_H 1
  482. /* Define to 1 if `st_birthtime' is a member of `struct stat'. */
  483. /* #undef HAVE_STRUCT_STAT_ST_BIRTHTIME */
  484. /* Define to 1 if `st_blksize' is a member of `struct stat'. */
  485. #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
  486. /* Define to 1 if `st_blocks' is a member of `struct stat'. */
  487. #define HAVE_STRUCT_STAT_ST_BLOCKS 1
  488. /* Define to 1 if `st_flags' is a member of `struct stat'. */
  489. /* #undef HAVE_STRUCT_STAT_ST_FLAGS */
  490. /* Define to 1 if `st_gen' is a member of `struct stat'. */
  491. /* #undef HAVE_STRUCT_STAT_ST_GEN */
  492. /* Define to 1 if `st_rdev' is a member of `struct stat'. */
  493. #define HAVE_STRUCT_STAT_ST_RDEV 1
  494. /* Define to 1 if `tm_zone' is a member of `struct tm'. */
  495. #define HAVE_STRUCT_TM_TM_ZONE 1
  496. /* Define if you have the 'symlink' function. */
  497. #define HAVE_SYMLINK 1
  498. /* Define to 1 if you have the `sysconf' function. */
  499. #define HAVE_SYSCONF 1
  500. /* Define to 1 if you have the <sysexits.h> header file. */
  501. #define HAVE_SYSEXITS_H 1
  502. /* Define to 1 if you have the <sys/audioio.h> header file. */
  503. /* #undef HAVE_SYS_AUDIOIO_H */
  504. /* Define to 1 if you have the <sys/bsdtty.h> header file. */
  505. /* #undef HAVE_SYS_BSDTTY_H */
  506. /* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
  507. */
  508. /* #undef HAVE_SYS_DIR_H */
  509. /* Define to 1 if you have the <sys/epoll.h> header file. */
  510. #define HAVE_SYS_EPOLL_H 1
  511. /* Define to 1 if you have the <sys/event.h> header file. */
  512. /* #undef HAVE_SYS_EVENT_H */
  513. /* Define to 1 if you have the <sys/file.h> header file. */
  514. #define HAVE_SYS_FILE_H 1
  515. /* Define to 1 if you have the <sys/loadavg.h> header file. */
  516. /* #undef HAVE_SYS_LOADAVG_H */
  517. /* Define to 1 if you have the <sys/lock.h> header file. */
  518. /* #undef HAVE_SYS_LOCK_H */
  519. /* Define to 1 if you have the <sys/mkdev.h> header file. */
  520. /* #undef HAVE_SYS_MKDEV_H */
  521. /* Define to 1 if you have the <sys/modem.h> header file. */
  522. /* #undef HAVE_SYS_MODEM_H */
  523. /* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
  524. */
  525. /* #undef HAVE_SYS_NDIR_H */
  526. /* Define to 1 if you have the <sys/param.h> header file. */
  527. #define HAVE_SYS_PARAM_H 1
  528. /* Define to 1 if you have the <sys/poll.h> header file. */
  529. #define HAVE_SYS_POLL_H 1
  530. /* Define to 1 if you have the <sys/resource.h> header file. */
  531. #define HAVE_SYS_RESOURCE_H 1
  532. /* Define to 1 if you have the <sys/select.h> header file. */
  533. #define HAVE_SYS_SELECT_H 1
  534. /* Define to 1 if you have the <sys/socket.h> header file. */
  535. #define HAVE_SYS_SOCKET_H 1
  536. /* Define to 1 if you have the <sys/statvfs.h> header file. */
  537. #define HAVE_SYS_STATVFS_H 1
  538. /* Define to 1 if you have the <sys/stat.h> header file. */
  539. #define HAVE_SYS_STAT_H 1
  540. /* Define to 1 if you have the <sys/termio.h> header file. */
  541. /* #undef HAVE_SYS_TERMIO_H */
  542. /* Define to 1 if you have the <sys/times.h> header file. */
  543. #define HAVE_SYS_TIMES_H 1
  544. /* Define to 1 if you have the <sys/time.h> header file. */
  545. #define HAVE_SYS_TIME_H 1
  546. /* Define to 1 if you have the <sys/types.h> header file. */
  547. #define HAVE_SYS_TYPES_H 1
  548. /* Define to 1 if you have the <sys/un.h> header file. */
  549. #define HAVE_SYS_UN_H 1
  550. /* Define to 1 if you have the <sys/utsname.h> header file. */
  551. #define HAVE_SYS_UTSNAME_H 1
  552. /* Define to 1 if you have the <sys/wait.h> header file. */
  553. #define HAVE_SYS_WAIT_H 1
  554. /* Define to 1 if you have the `tcgetpgrp' function. */
  555. #define HAVE_TCGETPGRP 1
  556. /* Define to 1 if you have the `tcsetpgrp' function. */
  557. #define HAVE_TCSETPGRP 1
  558. /* Define to 1 if you have the `tempnam' function. */
  559. #define HAVE_TEMPNAM 1
  560. /* Define to 1 if you have the <termios.h> header file. */
  561. #define HAVE_TERMIOS_H 1
  562. /* Define to 1 if you have the <term.h> header file. */
  563. #define HAVE_TERM_H 1
  564. /* Define to 1 if you have the `tgamma' function. */
  565. #define HAVE_TGAMMA 1
  566. /* Define to 1 if you have the <thread.h> header file. */
  567. /* #undef HAVE_THREAD_H */
  568. /* Define to 1 if you have the `timegm' function. */
  569. #define HAVE_TIMEGM 1
  570. /* Define to 1 if you have the `times' function. */
  571. #define HAVE_TIMES 1
  572. /* Define to 1 if you have the `tmpfile' function. */
  573. #define HAVE_TMPFILE 1
  574. /* Define to 1 if you have the `tmpnam' function. */
  575. #define HAVE_TMPNAM 1
  576. /* Define to 1 if you have the `tmpnam_r' function. */
  577. #define HAVE_TMPNAM_R 1
  578. /* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
  579. `HAVE_STRUCT_TM_TM_ZONE' instead. */
  580. #define HAVE_TM_ZONE 1
  581. /* Define to 1 if you have the `truncate' function. */
  582. #define HAVE_TRUNCATE 1
  583. /* Define to 1 if you don't have `tm_zone' but do have the external array
  584. `tzname'. */
  585. /* #undef HAVE_TZNAME */
  586. /* Define this if you have tcl and TCL_UTF_MAX==6 */
  587. /* #undef HAVE_UCS4_TCL */
  588. /* Define if your compiler provides uint32_t. */
  589. #define HAVE_UINT32_T 1
  590. /* Define if your compiler provides uint64_t. */
  591. #define HAVE_UINT64_T 1
  592. /* Define to 1 if the system has the type `uintptr_t'. */
  593. #define HAVE_UINTPTR_T 1
  594. /* Define to 1 if you have the `uname' function. */
  595. #define HAVE_UNAME 1
  596. /* Define to 1 if you have the <unistd.h> header file. */
  597. #define HAVE_UNISTD_H 1
  598. /* Define to 1 if you have the `unsetenv' function. */
  599. #define HAVE_UNSETENV 1
  600. /* Define if you have a useable wchar_t type defined in wchar.h; useable means
  601. wchar_t must be an unsigned type with at least 16 bits. (see
  602. Include/unicodeobject.h). */
  603. /* #undef HAVE_USABLE_WCHAR_T */
  604. /* Define to 1 if you have the <util.h> header file. */
  605. /* #undef HAVE_UTIL_H */
  606. /* Define to 1 if you have the `utimes' function. */
  607. #define HAVE_UTIMES 1
  608. /* Define to 1 if you have the <utime.h> header file. */
  609. #define HAVE_UTIME_H 1
  610. /* Define to 1 if you have the `wait3' function. */
  611. #define HAVE_WAIT3 1
  612. /* Define to 1 if you have the `wait4' function. */
  613. #define HAVE_WAIT4 1
  614. /* Define to 1 if you have the `waitpid' function. */
  615. #define HAVE_WAITPID 1
  616. /* Define if the compiler provides a wchar.h header file. */
  617. #define HAVE_WCHAR_H 1
  618. /* Define to 1 if you have the `wcscoll' function. */
  619. #define HAVE_WCSCOLL 1
  620. /* Define if tzset() actually switches the local timezone in a meaningful way.
  621. */
  622. /* #undef HAVE_WORKING_TZSET */
  623. /* Define if the zlib library has inflateCopy */
  624. #define HAVE_ZLIB_COPY 1
  625. /* Define to 1 if you have the `_getpty' function. */
  626. /* #undef HAVE__GETPTY */
  627. /* Define if you are using Mach cthreads directly under /include */
  628. /* #undef HURD_C_THREADS */
  629. /* Define if you are using Mach cthreads under mach / */
  630. /* #undef MACH_C_THREADS */
  631. /* Define to 1 if `major', `minor', and `makedev' are declared in <mkdev.h>.
  632. */
  633. /* #undef MAJOR_IN_MKDEV */
  634. /* Define to 1 if `major', `minor', and `makedev' are declared in
  635. <sysmacros.h>. */
  636. /* #undef MAJOR_IN_SYSMACROS */
  637. /* Define if mvwdelch in curses.h is an expression. */
  638. #define MVWDELCH_IS_EXPRESSION 1
  639. /* Define to the address where bug reports for this package should be sent. */
  640. /* #undef PACKAGE_BUGREPORT */
  641. /* Define to the full name of this package. */
  642. /* #undef PACKAGE_NAME */
  643. /* Define to the full name and version of this package. */
  644. /* #undef PACKAGE_STRING */
  645. /* Define to the one symbol short name of this package. */
  646. /* #undef PACKAGE_TARNAME */
  647. /* Define to the home page for this package. */
  648. /* #undef PACKAGE_URL */
  649. /* Define to the version of this package. */
  650. /* #undef PACKAGE_VERSION */
  651. /* Define if POSIX semaphores aren't enabled on your system */
  652. /* #undef POSIX_SEMAPHORES_NOT_ENABLED */
  653. /* Defined if PTHREAD_SCOPE_SYSTEM supported. */
  654. /* #undef PTHREAD_SYSTEM_SCHED_SUPPORTED */
  655. /* Define as the preferred size in bits of long digits */
  656. /* #undef PYLONG_BITS_IN_DIGIT */
  657. /* Define to printf format modifier for long long type */
  658. #define PY_FORMAT_LONG_LONG "ll"
  659. /* Define to printf format modifier for Py_ssize_t */
  660. #define PY_FORMAT_SIZE_T "z"
  661. /* Define as the integral type used for Unicode representation. */
  662. #define PY_UNICODE_TYPE unsigned short
  663. /* Define if you want to build an interpreter with many run-time checks. */
  664. /* #undef Py_DEBUG */
  665. /* Defined if Python is built as a shared library. */
  666. #define Py_ENABLE_SHARED 1
  667. /* Define as the size of the unicode type. */
  668. #define Py_UNICODE_SIZE 2
  669. /* Define if you want to have a Unicode type. */
  670. #define Py_USING_UNICODE 1
  671. /* assume C89 semantics that RETSIGTYPE is always void */
  672. #define RETSIGTYPE void
  673. /* Define if setpgrp() must be called as setpgrp(0, 0). */
  674. /* #undef SETPGRP_HAVE_ARG */
  675. /* Define this to be extension of shared libraries (including the dot!). */
  676. #define SHLIB_EXT ".so"
  677. /* Define if i>>j for signed int i does not extend the sign bit when i < 0 */
  678. /* #undef SIGNED_RIGHT_SHIFT_ZERO_FILLS */
  679. /* The size of `double', as computed by sizeof. */
  680. #define SIZEOF_DOUBLE 8
  681. /* The size of `float', as computed by sizeof. */
  682. #define SIZEOF_FLOAT 4
  683. /* The size of `fpos_t', as computed by sizeof. */
  684. #define SIZEOF_FPOS_T 16
  685. /* The size of `int', as computed by sizeof. */
  686. #define SIZEOF_INT 4
  687. /* The size of `long', as computed by sizeof. */
  688. #define SIZEOF_LONG 8
  689. /* The size of `long double', as computed by sizeof. */
  690. #define SIZEOF_LONG_DOUBLE 16
  691. /* The size of `long long', as computed by sizeof. */
  692. #define SIZEOF_LONG_LONG 8
  693. /* The size of `off_t', as computed by sizeof. */
  694. #define SIZEOF_OFF_T 8
  695. /* The size of `pid_t', as computed by sizeof. */
  696. #define SIZEOF_PID_T 4
  697. /* The size of `pthread_t', as computed by sizeof. */
  698. #define SIZEOF_PTHREAD_T 8
  699. /* The size of `short', as computed by sizeof. */
  700. #define SIZEOF_SHORT 2
  701. /* The size of `size_t', as computed by sizeof. */
  702. #define SIZEOF_SIZE_T 8
  703. /* The size of `time_t', as computed by sizeof. */
  704. #define SIZEOF_TIME_T 8
  705. /* The size of `uintptr_t', as computed by sizeof. */
  706. #define SIZEOF_UINTPTR_T 8
  707. /* The size of `void *', as computed by sizeof. */
  708. #define SIZEOF_VOID_P 8
  709. /* The size of `wchar_t', as computed by sizeof. */
  710. #define SIZEOF_WCHAR_T 4
  711. /* The size of `_Bool', as computed by sizeof. */
  712. #define SIZEOF__BOOL 1
  713. /* Define to 1 if you have the ANSI C header files. */
  714. #define STDC_HEADERS 1
  715. /* Define if you can safely include both <sys/select.h> and <sys/time.h>
  716. (which you can't on SCO ODT 3.0). */
  717. #define SYS_SELECT_WITH_SYS_TIME 1
  718. /* Define if tanh(-0.) is -0., or if platform doesn't have signed zeros */
  719. /* #undef TANH_PRESERVES_ZERO_SIGN */
  720. /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
  721. #define TIME_WITH_SYS_TIME 1
  722. /* Define to 1 if your <sys/time.h> declares `struct tm'. */
  723. /* #undef TM_IN_SYS_TIME */
  724. /* Define if you want to use computed gotos in ceval.c. */
  725. /* #undef USE_COMPUTED_GOTOS */
  726. /* Enable extensions on AIX 3, Interix. */
  727. #ifndef _ALL_SOURCE
  728. # define _ALL_SOURCE 1
  729. #endif
  730. /* Enable GNU extensions on systems that have them. */
  731. #ifndef _GNU_SOURCE
  732. # define _GNU_SOURCE 1
  733. #endif
  734. /* Enable threading extensions on Solaris. */
  735. #ifndef _POSIX_PTHREAD_SEMANTICS
  736. # define _POSIX_PTHREAD_SEMANTICS 1
  737. #endif
  738. /* Enable extensions on HP NonStop. */
  739. #ifndef _TANDEM_SOURCE
  740. # define _TANDEM_SOURCE 1
  741. #endif
  742. /* Enable general extensions on Solaris. */
  743. #ifndef __EXTENSIONS__
  744. # define __EXTENSIONS__ 1
  745. #endif
  746. /* Define if you want to use MacPython modules on MacOSX in unix-Python. */
  747. /* #undef USE_TOOLBOX_OBJECT_GLUE */
  748. /* Define if a va_list is an array of some kind */
  749. #define VA_LIST_IS_ARRAY 1
  750. /* Define if you want SIGFPE handled (see Include/pyfpe.h). */
  751. /* #undef WANT_SIGFPE_HANDLER */
  752. /* Define if you want wctype.h functions to be used instead of the one
  753. supplied by Python itself. (see Include/unicodectype.h). */
  754. /* #undef WANT_WCTYPE_FUNCTIONS */
  755. /* Define if WINDOW in curses.h offers a field _flags. */
  756. #define WINDOW_HAS_FLAGS 1
  757. /* Define if you want documentation strings in extension modules */
  758. #define WITH_DOC_STRINGS 1
  759. /* Define if you want to use the new-style (Openstep, Rhapsody, MacOS) dynamic
  760. linker (dyld) instead of the old-style (NextStep) dynamic linker (rld).
  761. Dyld is necessary to support frameworks. */
  762. /* #undef WITH_DYLD */
  763. /* Define to 1 if libintl is needed for locale functions. */
  764. /* #undef WITH_LIBINTL */
  765. /* Define if you want to produce an OpenStep/Rhapsody framework (shared
  766. library plus accessory files). */
  767. /* #undef WITH_NEXT_FRAMEWORK */
  768. /* Define if you want to compile in Python-specific mallocs */
  769. #define WITH_PYMALLOC 1
  770. /* Define if you want to compile in rudimentary thread support */
  771. #define WITH_THREAD 1
  772. /* Define to profile with the Pentium timestamp counter */
  773. /* #undef WITH_TSC */
  774. /* Define if you want pymalloc to be disabled when running under valgrind */
  775. /* #undef WITH_VALGRIND */
  776. /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
  777. significant byte first (like Motorola and SPARC, unlike Intel). */
  778. #if defined AC_APPLE_UNIVERSAL_BUILD
  779. # if defined __BIG_ENDIAN__
  780. # define WORDS_BIGENDIAN 1
  781. # endif
  782. #else
  783. # ifndef WORDS_BIGENDIAN
  784. /* # undef WORDS_BIGENDIAN */
  785. # endif
  786. #endif
  787. /* Define if arithmetic is subject to x87-style double rounding issue */
  788. /* #undef X87_DOUBLE_ROUNDING */
  789. /* Define on OpenBSD to activate all library features */
  790. /* #undef _BSD_SOURCE */
  791. /* Define on Irix to enable u_int */
  792. #define _BSD_TYPES 1
  793. /* Define on Darwin to activate all library features */
  794. #define _DARWIN_C_SOURCE 1
  795. /* This must be set to 64 on some systems to enable large file support. */
  796. #define _FILE_OFFSET_BITS 64
  797. /* Define on Linux to activate all library features */
  798. #define _GNU_SOURCE 1
  799. /* This must be defined on some systems to enable large file support. */
  800. #define _LARGEFILE_SOURCE 1
  801. /* This must be defined on AIX systems to enable large file support. */
  802. /* #undef _LARGE_FILES */
  803. /* Define to 1 if on MINIX. */
  804. /* #undef _MINIX */
  805. /* Define on NetBSD to activate all library features */
  806. #define _NETBSD_SOURCE 1
  807. /* Define _OSF_SOURCE to get the makedev macro. */
  808. /* #undef _OSF_SOURCE */
  809. /* Define to 2 if the system does not provide POSIX.1 features except with
  810. this defined. */
  811. /* #undef _POSIX_1_SOURCE */
  812. /* Define to activate features from IEEE Stds 1003.1-2001 */
  813. #define _POSIX_C_SOURCE 200112L
  814. /* Define to 1 if you need to in order for `stat' and other things to work. */
  815. /* #undef _POSIX_SOURCE */
  816. /* Define if you have POSIX threads, and your system does not define that. */
  817. /* #undef _POSIX_THREADS */
  818. /* Define to force use of thread-safe errno, h_errno, and other functions */
  819. #define _REENTRANT 1
  820. /* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
  821. <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
  822. #define below would cause a syntax error. */
  823. /* #undef _UINT32_T */
  824. /* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>,
  825. <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
  826. #define below would cause a syntax error. */
  827. /* #undef _UINT64_T */
  828. /* Define to the level of X/Open that your system supports */
  829. #define _XOPEN_SOURCE 600
  830. /* Define to activate Unix95-and-earlier features */
  831. #define _XOPEN_SOURCE_EXTENDED 1
  832. /* Define on FreeBSD to activate all library features */
  833. #define __BSD_VISIBLE 1
  834. /* Define to 1 if type `char' is unsigned and you are not using gcc. */
  835. #ifndef __CHAR_UNSIGNED__
  836. /* # undef __CHAR_UNSIGNED__ */
  837. #endif
  838. /* Defined on Solaris to see additional function prototypes. */
  839. #define __EXTENSIONS__ 1
  840. /* Define to 'long' if <time.h> doesn't define. */
  841. /* #undef clock_t */
  842. /* Define to empty if `const' does not conform to ANSI C. */
  843. /* #undef const */
  844. /* Define to `int' if <sys/types.h> doesn't define. */
  845. /* #undef gid_t */
  846. /* Define to the type of a signed integer type of width exactly 32 bits if
  847. such a type exists and the standard includes do not define it. */
  848. /* #undef int32_t */
  849. /* Define to the type of a signed integer type of width exactly 64 bits if
  850. such a type exists and the standard includes do not define it. */
  851. /* #undef int64_t */
  852. /* Define to `int' if <sys/types.h> does not define. */
  853. /* #undef mode_t */
  854. /* Define to `long int' if <sys/types.h> does not define. */
  855. /* #undef off_t */
  856. /* Define to `int' if <sys/types.h> does not define. */
  857. /* #undef pid_t */
  858. /* Define to empty if the keyword does not work. */
  859. /* #undef signed */
  860. /* Define to `unsigned int' if <sys/types.h> does not define. */
  861. /* #undef size_t */
  862. /* Define to `int' if <sys/socket.h> does not define. */
  863. /* #undef socklen_t */
  864. /* Define to `int' if <sys/types.h> doesn't define. */
  865. /* #undef uid_t */
  866. /* Define to the type of an unsigned integer type of width exactly 32 bits if
  867. such a type exists and the standard includes do not define it. */
  868. /* #undef uint32_t */
  869. /* Define to the type of an unsigned integer type of width exactly 64 bits if
  870. such a type exists and the standard includes do not define it. */
  871. /* #undef uint64_t */
  872. /* Define to empty if the keyword does not work. */
  873. /* #undef volatile */
  874. /* Define the macros needed if on a UnixWare 7.x system. */
  875. #if defined(__USLC__) && defined(__SCO_VERSION__)
  876. #define STRICT_SYSV_CURSES /* Don't use ncurses extensions */
  877. #endif
  878. #endif /*Py_PYCONFIG_H*/