blob: b0948e9b9b79d262a00adfe2a3625b531d90762f [file] [log] [blame]
Matthias Klose0f4c16e2012-03-14 23:10:15 +01001/* pyconfig.h.in. Generated from configure.ac by autoheader. */
Guido van Rossum91168a81994-01-03 03:59:44 +00002
Martin v. Löwisbddf5a52002-11-11 13:37:28 +00003
4#ifndef Py_PYCONFIG_H
5#define Py_PYCONFIG_H
6
7
Matthias Kloseb9621712010-04-24 17:59:49 +00008/* Define if building universal (internal helper macro) */
9#undef AC_APPLE_UNIVERSAL_BUILD
10
Michael Felt39afa2d2019-12-15 15:17:53 +010011/* BUILD_GNU_TYPE + AIX_BUILDDATE are used to construct the PEP425 tag of the
12 build system. */
13#undef AIX_BUILDDATE
14
Martin v. Löwis11437992002-04-12 09:54:03 +000015/* Define for AIX if your compiler is a genuine IBM xlC/xlC_r and you want
16 support for AIX C++ shared extension modules. */
17#undef AIX_GENUINE_CPLUSPLUS
Guido van Rossum91168a81994-01-03 03:59:44 +000018
Jessica Clarkedec07572021-03-31 11:12:39 +010019/* The normal alignment of `long', in bytes. */
20#undef ALIGNOF_LONG
21
22/* The normal alignment of `size_t', in bytes. */
23#undef ALIGNOF_SIZE_T
24
Victor Stinner5422e3c2019-04-26 01:40:00 +020025/* Alternative SOABI used in debug build to load C extensions built in release
26 mode */
27#undef ALT_SOABI
28
Xavier de Gaye95750b12016-07-09 11:05:42 +020029/* The Android API level. */
30#undef ANDROID_API_LEVEL
31
Mark Dickinsonb08a53a2009-04-16 19:52:09 +000032/* Define if C doubles are 64-bit IEEE 754 binary format, stored in ARM
33 mixed-endian order (byte order 45670123) */
34#undef DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754
35
36/* Define if C doubles are 64-bit IEEE 754 binary format, stored with the most
37 significant byte first */
38#undef DOUBLE_IS_BIG_ENDIAN_IEEE754
39
40/* Define if C doubles are 64-bit IEEE 754 binary format, stored with the
41 least significant byte first */
42#undef DOUBLE_IS_LITTLE_ENDIAN_IEEE754
43
Martin v. Löwis01dfdb32001-06-23 16:30:13 +000044/* Define if --enable-ipv6 is specified */
45#undef ENABLE_IPV6
46
Victor Stinnerc5fa3642020-05-05 16:41:11 +020047/* Better isolate subinterpreters, experimental build mode. */
48#undef EXPERIMENTAL_ISOLATED_SUBINTERPRETERS
49
Benjamin Petersonb3b8cb42018-09-18 23:49:05 -070050/* Define to 1 if your system stores words within floats with the most
51 significant word first */
52#undef FLOAT_WORDS_BIGENDIAN
53
Benjamin Petersond8d835b2010-10-15 23:14:46 +000054/* Define if flock needs to be linked with bsd library. */
Antoine Pitroua3000072010-09-07 14:52:42 +000055#undef FLOCK_NEEDS_LIBBSD
56
Martin v. Löwis11437992002-04-12 09:54:03 +000057/* Define if getpgrp() must be called as getpgrp(0). */
58#undef GETPGRP_HAVE_ARG
59
Antoine Pitroub1c54962010-10-14 15:05:38 +000060/* Define to 1 if you have the `accept4' function. */
61#undef HAVE_ACCEPT4
62
Christian Heimes9bd667a2008-01-20 15:14:11 +000063/* Define to 1 if you have the `acosh' function. */
64#undef HAVE_ACOSH
65
Martin v. Löwis11437992002-04-12 09:54:03 +000066/* struct addrinfo (netdb.h) */
67#undef HAVE_ADDRINFO
68
69/* Define to 1 if you have the `alarm' function. */
70#undef HAVE_ALARM
71
Christian Heimes985ecdc2013-11-20 11:46:18 +010072/* Define if aligned memory access is required */
73#undef HAVE_ALIGNED_REQUIRED
74
Christian Heimesf0400ba2013-06-18 13:22:17 +020075/* Define to 1 if you have the <alloca.h> header file. */
76#undef HAVE_ALLOCA_H
77
Martin v. Löwis11437992002-04-12 09:54:03 +000078/* Define this if your time.h defines altzone. */
79#undef HAVE_ALTZONE
80
Christian Heimes9bd667a2008-01-20 15:14:11 +000081/* Define to 1 if you have the `asinh' function. */
82#undef HAVE_ASINH
83
Martin v. Löwis11017b12006-01-14 18:12:57 +000084/* Define to 1 if you have the <asm/types.h> header file. */
85#undef HAVE_ASM_TYPES_H
86
Christian Heimes9bd667a2008-01-20 15:14:11 +000087/* Define to 1 if you have the `atanh' function. */
88#undef HAVE_ATANH
89
Gustavo Niemeyer7bd33c52004-07-22 18:44:01 +000090/* Define to 1 if you have the `bind_textdomain_codeset' function. */
91#undef HAVE_BIND_TEXTDOMAIN_CODESET
92
Martin v. Löwis12af0482004-01-31 12:34:17 +000093/* Define to 1 if you have the <bluetooth/bluetooth.h> header file. */
94#undef HAVE_BLUETOOTH_BLUETOOTH_H
95
Hye-Shik Chang81268602004-02-02 06:05:24 +000096/* Define to 1 if you have the <bluetooth.h> header file. */
97#undef HAVE_BLUETOOTH_H
98
Mark Dickinson3dc7c6a2009-01-04 15:09:02 +000099/* Define if mbstowcs(NULL, "text", 0) does not return the number of wide
100 chars that would be converted. */
101#undef HAVE_BROKEN_MBSTOWCS
102
Martin v. Löwis11437992002-04-12 09:54:03 +0000103/* Define if nice() returns success/failure instead of the new priority. */
104#undef HAVE_BROKEN_NICE
105
Benjamin Petersond8d835b2010-10-15 23:14:46 +0000106/* Define if the system reports an invalid PIPE_BUF value. */
107#undef HAVE_BROKEN_PIPE_BUF
108
Nicholas Bastine62c5c82004-03-21 23:45:42 +0000109/* Define if poll() sets errno on invalid file descriptors. */
110#undef HAVE_BROKEN_POLL
111
Martin v. Löwisdfc33fd2003-01-21 10:14:41 +0000112/* Define if the Posix semaphores do not work on your system */
113#undef HAVE_BROKEN_POSIX_SEMAPHORES
114
Jason Tishlerfac083d2003-07-22 15:20:49 +0000115/* Define if pthread_sigmask() does not work on your system. */
116#undef HAVE_BROKEN_PTHREAD_SIGMASK
117
Benjamin Peterson965ce872009-04-05 21:24:58 +0000118/* define to 1 if your sem_getvalue is broken. */
119#undef HAVE_BROKEN_SEM_GETVALUE
120
Victor Stinner984890f2011-11-24 13:53:38 +0100121/* Define if `unsetenv` does not return an int. */
122#undef HAVE_BROKEN_UNSETENV
123
Victor Stinner52a327c2020-12-23 03:41:08 +0100124/* Has builtin __atomic_load_n() and __atomic_store_n() functions */
Victor Stinner4f5366e2015-01-09 02:13:19 +0100125#undef HAVE_BUILTIN_ATOMIC
126
Ned Deily3eb67d52011-06-28 00:00:28 -0700127/* Define to 1 if you have the 'chflags' function. */
Thomas Wouterscf297e42007-02-23 15:07:44 +0000128#undef HAVE_CHFLAGS
129
Martin v. Löwis11437992002-04-12 09:54:03 +0000130/* Define to 1 if you have the `chown' function. */
131#undef HAVE_CHOWN
132
Martin v. Löwisc8ad7cc2002-11-11 13:23:45 +0000133/* Define if you have the 'chroot' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000134#undef HAVE_CHROOT
135
136/* Define to 1 if you have the `clock' function. */
137#undef HAVE_CLOCK
138
Victor Stinnere0be4232011-10-25 13:06:09 +0200139/* Define to 1 if you have the `clock_getres' function. */
140#undef HAVE_CLOCK_GETRES
141
142/* Define to 1 if you have the `clock_gettime' function. */
143#undef HAVE_CLOCK_GETTIME
144
Benjamin Peterson37098cd2016-09-13 22:55:09 -0700145/* Define to 1 if you have the `clock_settime' function. */
146#undef HAVE_CLOCK_SETTIME
147
Kyle Evans1800c602020-10-11 15:18:53 -0500148/* Define to 1 if you have the `close_range' function. */
149#undef HAVE_CLOSE_RANGE
150
Antoine Pitrou042b1282010-08-13 21:15:58 +0000151/* Define if the C compiler supports computed gotos. */
152#undef HAVE_COMPUTED_GOTOS
153
Martin v. Löwis11437992002-04-12 09:54:03 +0000154/* Define to 1 if you have the `confstr' function. */
155#undef HAVE_CONFSTR
156
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000157/* Define to 1 if you have the <conio.h> header file. */
158#undef HAVE_CONIO_H
159
Christian Heimes99170a52007-12-19 02:07:34 +0000160/* Define to 1 if you have the `copysign' function. */
161#undef HAVE_COPYSIGN
162
Pablo Galindoaac4d032019-05-31 19:39:47 +0100163/* Define to 1 if you have the `copy_file_range' function. */
164#undef HAVE_COPY_FILE_RANGE
165
stratakise768c862018-01-23 16:11:24 +0100166/* Define to 1 if you have the <crypt.h> header file. */
167#undef HAVE_CRYPT_H
168
Gregory P. Smith387512c2018-12-30 15:42:32 -0800169/* Define if you have the crypt_r() function. */
170#undef HAVE_CRYPT_R
171
Martin v. Löwis11437992002-04-12 09:54:03 +0000172/* Define to 1 if you have the `ctermid' function. */
173#undef HAVE_CTERMID
174
Martin v. Löwisd5843682002-11-21 20:41:28 +0000175/* Define if you have the 'ctermid_r' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000176#undef HAVE_CTERMID_R
177
Serhiy Storchakabaac01e2017-10-31 13:56:44 +0200178/* Define if you have the 'filter' function. */
179#undef HAVE_CURSES_FILTER
180
Martin v. Löwisae2830c2004-09-18 09:54:52 +0000181/* Define to 1 if you have the <curses.h> header file. */
182#undef HAVE_CURSES_H
183
Serhiy Storchakabaac01e2017-10-31 13:56:44 +0200184/* Define if you have the 'has_key' function. */
185#undef HAVE_CURSES_HAS_KEY
186
187/* Define if you have the 'immedok' function. */
188#undef HAVE_CURSES_IMMEDOK
189
Masayuki Yamamoto8bc7d632017-11-01 21:05:26 +0900190/* Define if you have the 'is_pad' function or macro. */
191#undef HAVE_CURSES_IS_PAD
192
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000193/* Define if you have the 'is_term_resized' function. */
194#undef HAVE_CURSES_IS_TERM_RESIZED
195
196/* Define if you have the 'resizeterm' function. */
197#undef HAVE_CURSES_RESIZETERM
198
199/* Define if you have the 'resize_term' function. */
200#undef HAVE_CURSES_RESIZE_TERM
201
Serhiy Storchakabaac01e2017-10-31 13:56:44 +0200202/* Define if you have the 'syncok' function. */
203#undef HAVE_CURSES_SYNCOK
204
205/* Define if you have the 'typeahead' function. */
206#undef HAVE_CURSES_TYPEAHEAD
207
208/* Define if you have the 'use_env' function. */
209#undef HAVE_CURSES_USE_ENV
210
Serhiy Storchaka894ebd02017-11-01 14:34:20 +0200211/* Define if you have the 'wchgat' function. */
212#undef HAVE_CURSES_WCHGAT
213
Mark Dickinson3dc7c6a2009-01-04 15:09:02 +0000214/* Define to 1 if you have the declaration of `isfinite', and to 0 if you
215 don't. */
216#undef HAVE_DECL_ISFINITE
217
218/* Define to 1 if you have the declaration of `isinf', and to 0 if you don't.
219 */
220#undef HAVE_DECL_ISINF
221
222/* Define to 1 if you have the declaration of `isnan', and to 0 if you don't.
223 */
224#undef HAVE_DECL_ISNAN
225
Serhiy Storchakac2f7d872016-05-04 09:44:44 +0300226/* Define to 1 if you have the declaration of `RTLD_DEEPBIND', and to 0 if you
227 don't. */
228#undef HAVE_DECL_RTLD_DEEPBIND
229
230/* Define to 1 if you have the declaration of `RTLD_GLOBAL', and to 0 if you
231 don't. */
232#undef HAVE_DECL_RTLD_GLOBAL
233
234/* Define to 1 if you have the declaration of `RTLD_LAZY', and to 0 if you
235 don't. */
236#undef HAVE_DECL_RTLD_LAZY
237
238/* Define to 1 if you have the declaration of `RTLD_LOCAL', and to 0 if you
239 don't. */
240#undef HAVE_DECL_RTLD_LOCAL
241
Michael Feltc5ae1692017-12-19 13:58:49 +0100242/* Define to 1 if you have the declaration of `RTLD_MEMBER', and to 0 if you
243 don't. */
244#undef HAVE_DECL_RTLD_MEMBER
245
Serhiy Storchakac2f7d872016-05-04 09:44:44 +0300246/* Define to 1 if you have the declaration of `RTLD_NODELETE', and to 0 if you
247 don't. */
248#undef HAVE_DECL_RTLD_NODELETE
249
250/* Define to 1 if you have the declaration of `RTLD_NOLOAD', and to 0 if you
251 don't. */
252#undef HAVE_DECL_RTLD_NOLOAD
253
254/* Define to 1 if you have the declaration of `RTLD_NOW', and to 0 if you
255 don't. */
256#undef HAVE_DECL_RTLD_NOW
257
Guido van Rossum806c2462007-08-06 23:33:07 +0000258/* Define to 1 if you have the declaration of `tzname', and to 0 if you don't.
259 */
260#undef HAVE_DECL_TZNAME
261
Martin v. Löwisdbe3f762002-10-10 14:27:30 +0000262/* Define to 1 if you have the device macros. */
263#undef HAVE_DEVICE_MACROS
264
doko@ubuntu.comb457b9b2012-06-30 19:28:16 +0200265/* Define to 1 if you have the /dev/ptc device file. */
Neal Norwitz865400f2003-03-21 01:42:58 +0000266#undef HAVE_DEV_PTC
267
doko@ubuntu.comb457b9b2012-06-30 19:28:16 +0200268/* Define to 1 if you have the /dev/ptmx device file. */
Martin v. Löwis24a880b2002-12-31 12:55:15 +0000269#undef HAVE_DEV_PTMX
270
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000271/* Define to 1 if you have the <direct.h> header file. */
272#undef HAVE_DIRECT_H
273
Victor Stinner35a97c02015-03-08 02:59:09 +0100274/* Define to 1 if the dirent structure has a d_type field */
275#undef HAVE_DIRENT_D_TYPE
276
Martin v. Löwis11437992002-04-12 09:54:03 +0000277/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
278 */
279#undef HAVE_DIRENT_H
280
Gregory P. Smithdf300d52012-01-21 18:20:15 -0800281/* Define if you have the 'dirfd' function or macro. */
Gregory P. Smith41884412012-01-16 02:05:23 -0800282#undef HAVE_DIRFD
283
Martin v. Löwis11437992002-04-12 09:54:03 +0000284/* Define to 1 if you have the <dlfcn.h> header file. */
285#undef HAVE_DLFCN_H
286
287/* Define to 1 if you have the `dlopen' function. */
288#undef HAVE_DLOPEN
289
290/* Define to 1 if you have the `dup2' function. */
291#undef HAVE_DUP2
292
Victor Stinnerdaf45552013-08-28 00:53:59 +0200293/* Define to 1 if you have the `dup3' function. */
294#undef HAVE_DUP3
295
Victor Stinner52a327c2020-12-23 03:41:08 +0100296/* Define if you have the '_dyld_shared_cache_contains_path' function. */
297#undef HAVE_DYLD_SHARED_CACHE_CONTAINS_PATH
298
Martin v. Löwis11437992002-04-12 09:54:03 +0000299/* Defined when any dynamic module loading is enabled. */
300#undef HAVE_DYNAMIC_LOADING
301
Christian Heimes985ecdc2013-11-20 11:46:18 +0100302/* Define to 1 if you have the <endian.h> header file. */
303#undef HAVE_ENDIAN_H
304
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000305/* Define if you have the 'epoll' functions. */
306#undef HAVE_EPOLL
307
Benjamin Peterson95c16622011-12-27 15:36:32 -0600308/* Define if you have the 'epoll_create1' function. */
309#undef HAVE_EPOLL_CREATE1
310
Mark Dickinson9c113362009-09-05 10:36:23 +0000311/* Define to 1 if you have the `erf' function. */
312#undef HAVE_ERF
313
314/* Define to 1 if you have the `erfc' function. */
315#undef HAVE_ERFC
316
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000317/* Define to 1 if you have the <errno.h> header file. */
318#undef HAVE_ERRNO_H
319
Christian Heimescd9fed62020-11-13 19:48:52 +0100320/* Define if you have the 'eventfd' function. */
321#undef HAVE_EVENTFD
322
Martin v. Löwis11437992002-04-12 09:54:03 +0000323/* Define to 1 if you have the `execv' function. */
324#undef HAVE_EXECV
325
David Carlier51aa35e2019-05-23 04:32:44 +0000326/* Define to 1 if you have the `explicit_bzero' function. */
327#undef HAVE_EXPLICIT_BZERO
328
329/* Define to 1 if you have the `explicit_memset' function. */
330#undef HAVE_EXPLICIT_MEMSET
331
Christian Heimes9bd667a2008-01-20 15:14:11 +0000332/* Define to 1 if you have the `expm1' function. */
333#undef HAVE_EXPM1
334
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000335/* Define to 1 if you have the `faccessat' function. */
336#undef HAVE_FACCESSAT
337
Martin v. Löwisa64988c2003-09-20 15:30:20 +0000338/* Define if you have the 'fchdir' function. */
Fred Drake6b3cc522002-04-15 19:20:27 +0000339#undef HAVE_FCHDIR
340
Christian Heimes4e30a842007-11-30 22:12:06 +0000341/* Define to 1 if you have the `fchmod' function. */
342#undef HAVE_FCHMOD
343
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000344/* Define to 1 if you have the `fchmodat' function. */
345#undef HAVE_FCHMODAT
346
Christian Heimes4e30a842007-11-30 22:12:06 +0000347/* Define to 1 if you have the `fchown' function. */
348#undef HAVE_FCHOWN
349
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000350/* Define to 1 if you have the `fchownat' function. */
351#undef HAVE_FCHOWNAT
352
Martin v. Löwis11437992002-04-12 09:54:03 +0000353/* Define to 1 if you have the <fcntl.h> header file. */
354#undef HAVE_FCNTL_H
355
Martin v. Löwisa64988c2003-09-20 15:30:20 +0000356/* Define if you have the 'fdatasync' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000357#undef HAVE_FDATASYNC
358
Antoine Pitrou8250e232011-02-25 23:41:16 +0000359/* Define to 1 if you have the `fdopendir' function. */
360#undef HAVE_FDOPENDIR
361
Jakub Kulíke20134f2019-09-11 17:11:57 +0200362/* Define to 1 if you have the `fdwalk' function. */
363#undef HAVE_FDWALK
364
Ross Lagerwall7807c352011-03-17 20:20:30 +0200365/* Define to 1 if you have the `fexecve' function. */
366#undef HAVE_FEXECVE
367
Christian Heimes9bd667a2008-01-20 15:14:11 +0000368/* Define to 1 if you have the `finite' function. */
369#undef HAVE_FINITE
370
Benjamin Petersond8d835b2010-10-15 23:14:46 +0000371/* Define to 1 if you have the `flock' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000372#undef HAVE_FLOCK
373
374/* Define to 1 if you have the `fork' function. */
375#undef HAVE_FORK
376
377/* Define to 1 if you have the `forkpty' function. */
378#undef HAVE_FORKPTY
379
380/* Define to 1 if you have the `fpathconf' function. */
381#undef HAVE_FPATHCONF
382
383/* Define to 1 if you have the `fseek64' function. */
384#undef HAVE_FSEEK64
385
386/* Define to 1 if you have the `fseeko' function. */
387#undef HAVE_FSEEKO
388
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000389/* Define to 1 if you have the `fstatat' function. */
390#undef HAVE_FSTATAT
391
Martin v. Löwis11437992002-04-12 09:54:03 +0000392/* Define to 1 if you have the `fstatvfs' function. */
393#undef HAVE_FSTATVFS
394
Martin v. Löwis49ee14d2003-11-10 06:35:36 +0000395/* Define if you have the 'fsync' function. */
396#undef HAVE_FSYNC
397
Martin v. Löwis11437992002-04-12 09:54:03 +0000398/* Define to 1 if you have the `ftell64' function. */
399#undef HAVE_FTELL64
400
401/* Define to 1 if you have the `ftello' function. */
402#undef HAVE_FTELLO
403
404/* Define to 1 if you have the `ftime' function. */
405#undef HAVE_FTIME
406
407/* Define to 1 if you have the `ftruncate' function. */
408#undef HAVE_FTRUNCATE
409
Ross Lagerwall7807c352011-03-17 20:20:30 +0200410/* Define to 1 if you have the `futimens' function. */
411#undef HAVE_FUTIMENS
412
413/* Define to 1 if you have the `futimes' function. */
414#undef HAVE_FUTIMES
415
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000416/* Define to 1 if you have the `futimesat' function. */
417#undef HAVE_FUTIMESAT
418
Martin v. Löwis11437992002-04-12 09:54:03 +0000419/* Define to 1 if you have the `gai_strerror' function. */
420#undef HAVE_GAI_STRERROR
421
Mark Dickinson9c113362009-09-05 10:36:23 +0000422/* Define to 1 if you have the `gamma' function. */
423#undef HAVE_GAMMA
424
Benjamin Peterson8bdeb162014-04-17 00:00:31 -0400425/* Define if we can use gcc inline assembler to get and set mc68881 fpcr */
426#undef HAVE_GCC_ASM_FOR_MC68881
427
Stefan Krah1919b7e2012-03-21 18:25:23 +0100428/* Define if we can use x64 gcc inline assembler */
429#undef HAVE_GCC_ASM_FOR_X64
430
Mark Dickinsonb08a53a2009-04-16 19:52:09 +0000431/* Define if we can use gcc inline assembler to get and set x87 control word
432 */
433#undef HAVE_GCC_ASM_FOR_X87
434
Stefan Krah1919b7e2012-03-21 18:25:23 +0100435/* Define if your compiler provides __uint128_t */
436#undef HAVE_GCC_UINT128_T
437
Martin v. Löwis11437992002-04-12 09:54:03 +0000438/* Define if you have the getaddrinfo function. */
439#undef HAVE_GETADDRINFO
440
Martin v. Löwis11437992002-04-12 09:54:03 +0000441/* Define this if you have flockfile(), getc_unlocked(), and funlockfile() */
442#undef HAVE_GETC_UNLOCKED
443
Victor Stinner4d6a3d62014-12-21 01:16:38 +0100444/* Define to 1 if you have the `getentropy' function. */
445#undef HAVE_GETENTROPY
446
William Grzybowski23e65b22018-09-07 09:06:15 -0300447/* Define to 1 if you have the `getgrgid_r' function. */
448#undef HAVE_GETGRGID_R
449
450/* Define to 1 if you have the `getgrnam_r' function. */
451#undef HAVE_GETGRNAM_R
452
Ross Lagerwallb0ae53d2011-06-10 07:30:30 +0200453/* Define to 1 if you have the `getgrouplist' function. */
454#undef HAVE_GETGROUPLIST
455
Martin v. Löwis11437992002-04-12 09:54:03 +0000456/* Define to 1 if you have the `getgroups' function. */
457#undef HAVE_GETGROUPS
458
459/* Define to 1 if you have the `gethostbyname' function. */
460#undef HAVE_GETHOSTBYNAME
461
Guido van Rossum7152e9b1999-03-22 21:46:06 +0000462/* Define this if you have some version of gethostbyname_r() */
463#undef HAVE_GETHOSTBYNAME_R
464
Martin v. Löwis11437992002-04-12 09:54:03 +0000465/* Define this if you have the 3-arg version of gethostbyname_r(). */
466#undef HAVE_GETHOSTBYNAME_R_3_ARG
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +0000467
Martin v. Löwis11437992002-04-12 09:54:03 +0000468/* Define this if you have the 5-arg version of gethostbyname_r(). */
469#undef HAVE_GETHOSTBYNAME_R_5_ARG
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +0000470
Martin v. Löwis11437992002-04-12 09:54:03 +0000471/* Define this if you have the 6-arg version of gethostbyname_r(). */
472#undef HAVE_GETHOSTBYNAME_R_6_ARG
Guido van Rossum9caf77a1996-08-01 00:52:26 +0000473
Martin v. Löwis823725e2008-03-24 13:39:54 +0000474/* Define to 1 if you have the `getitimer' function. */
475#undef HAVE_GETITIMER
476
Martin v. Löwis438b5342002-12-27 10:16:42 +0000477/* Define to 1 if you have the `getloadavg' function. */
478#undef HAVE_GETLOADAVG
479
Martin v. Löwis11437992002-04-12 09:54:03 +0000480/* Define to 1 if you have the `getlogin' function. */
Fred Drake3bb3e571999-12-14 20:48:17 +0000481#undef HAVE_GETLOGIN
482
Martin v. Löwis11437992002-04-12 09:54:03 +0000483/* Define to 1 if you have the `getnameinfo' function. */
Martin v. Löwis01dfdb32001-06-23 16:30:13 +0000484#undef HAVE_GETNAMEINFO
485
Martin v. Löwisf26d63b2003-03-30 17:23:49 +0000486/* Define if you have the 'getpagesize' function. */
487#undef HAVE_GETPAGESIZE
488
Martin v. Löwis11437992002-04-12 09:54:03 +0000489/* Define to 1 if you have the `getpeername' function. */
Fred Drakef581db11999-12-14 21:11:47 +0000490#undef HAVE_GETPEERNAME
Fred Drake3bb3e571999-12-14 20:48:17 +0000491
Martin v. Löwis606edc12002-06-13 21:09:11 +0000492/* Define to 1 if you have the `getpgid' function. */
493#undef HAVE_GETPGID
494
Martin v. Löwis11437992002-04-12 09:54:03 +0000495/* Define to 1 if you have the `getpgrp' function. */
Guido van Rossum61fe8611994-01-03 14:56:37 +0000496#undef HAVE_GETPGRP
497
Martin v. Löwis11437992002-04-12 09:54:03 +0000498/* Define to 1 if you have the `getpid' function. */
Guido van Rossumf1328521994-05-03 14:43:56 +0000499#undef HAVE_GETPID
500
Martin v. Löwis11437992002-04-12 09:54:03 +0000501/* Define to 1 if you have the `getpriority' function. */
Thomas Woutersc2c12dc2001-07-11 14:45:34 +0000502#undef HAVE_GETPRIORITY
Guido van Rossum353ae582001-07-10 16:45:32 +0000503
Martin v. Löwis11437992002-04-12 09:54:03 +0000504/* Define to 1 if you have the `getpwent' function. */
Guido van Rossum1171ee61997-08-22 20:42:00 +0000505#undef HAVE_GETPWENT
506
William Grzybowski23e65b22018-09-07 09:06:15 -0300507/* Define to 1 if you have the `getpwnam_r' function. */
508#undef HAVE_GETPWNAM_R
509
510/* Define to 1 if you have the `getpwuid_r' function. */
511#undef HAVE_GETPWUID_R
512
Victor Stinnerbae2d622015-10-01 09:47:30 +0200513/* Define to 1 if the getrandom() function is available */
514#undef HAVE_GETRANDOM
515
Victor Stinner9eb57c52015-03-19 22:21:49 +0100516/* Define to 1 if the Linux getrandom() syscall is available */
517#undef HAVE_GETRANDOM_SYSCALL
518
Martin v. Löwis7aed61a2009-11-27 14:09:49 +0000519/* Define to 1 if you have the `getresgid' function. */
520#undef HAVE_GETRESGID
521
522/* Define to 1 if you have the `getresuid' function. */
523#undef HAVE_GETRESUID
524
Martin v. Löwis49ee14d2003-11-10 06:35:36 +0000525/* Define to 1 if you have the `getsid' function. */
526#undef HAVE_GETSID
527
Martin v. Löwisc3001752005-01-23 09:27:24 +0000528/* Define to 1 if you have the `getspent' function. */
529#undef HAVE_GETSPENT
530
531/* Define to 1 if you have the `getspnam' function. */
532#undef HAVE_GETSPNAM
533
Martin v. Löwis11437992002-04-12 09:54:03 +0000534/* Define to 1 if you have the `getwd' function. */
Guido van Rossum61fe8611994-01-03 14:56:37 +0000535#undef HAVE_GETWD
536
Stefan Krah1919b7e2012-03-21 18:25:23 +0100537/* Define if glibc has incorrect _FORTIFY_SOURCE wrappers for memmove and
538 bcopy. */
539#undef HAVE_GLIBC_MEMMOVE_BUG
540
Martin v. Löwis11437992002-04-12 09:54:03 +0000541/* Define to 1 if you have the <grp.h> header file. */
Guido van Rossuma6535fd2001-10-18 19:44:10 +0000542#undef HAVE_GRP_H
543
Martin v. Löwise9416172003-05-03 10:12:45 +0000544/* Define if you have the 'hstrerror' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000545#undef HAVE_HSTRERROR
546
Christian Heimes985ecdc2013-11-20 11:46:18 +0100547/* Define this if you have le64toh() */
548#undef HAVE_HTOLE64
549
Martin v. Löwis11437992002-04-12 09:54:03 +0000550/* Define to 1 if you have the `hypot' function. */
551#undef HAVE_HYPOT
552
Christian Heimesbbe741d2008-03-28 10:53:29 +0000553/* Define to 1 if you have the <ieeefp.h> header file. */
554#undef HAVE_IEEEFP_H
555
Nathaniel J. Smith735ae8d2018-01-05 23:15:34 -0800556/* Define to 1 if you have the `if_nameindex' function. */
Gregory P. Smith5ed2e772011-05-15 00:26:45 -0700557#undef HAVE_IF_NAMEINDEX
558
Martin v. Löwise9416172003-05-03 10:12:45 +0000559/* Define if you have the 'inet_aton' function. */
Neal Norwitz10b214c2003-02-13 02:11:10 +0000560#undef HAVE_INET_ATON
561
Martin v. Löwise9416172003-05-03 10:12:45 +0000562/* Define if you have the 'inet_pton' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000563#undef HAVE_INET_PTON
564
Benjamin Peterson05159c42009-12-03 03:01:27 +0000565/* Define to 1 if you have the `initgroups' function. */
566#undef HAVE_INITGROUPS
567
Martin v. Löwis11437992002-04-12 09:54:03 +0000568/* Define to 1 if you have the <inttypes.h> header file. */
569#undef HAVE_INTTYPES_H
570
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000571/* Define to 1 if you have the <io.h> header file. */
572#undef HAVE_IO_H
573
Stefan Krah1919b7e2012-03-21 18:25:23 +0100574/* Define if gcc has the ipa-pure-const bug. */
575#undef HAVE_IPA_PURE_CONST_BUG
576
Martin v. Löwis11437992002-04-12 09:54:03 +0000577/* Define to 1 if you have the `kill' function. */
578#undef HAVE_KILL
579
580/* Define to 1 if you have the `killpg' function. */
581#undef HAVE_KILLPG
582
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000583/* Define if you have the 'kqueue' functions. */
584#undef HAVE_KQUEUE
585
Martin v. Löwis11437992002-04-12 09:54:03 +0000586/* Define to 1 if you have the <langinfo.h> header file. */
Martin v. Löwis9b75dca2001-08-10 13:58:50 +0000587#undef HAVE_LANGINFO_H
588
Martin v. Löwis11437992002-04-12 09:54:03 +0000589/* Defined to enable large file support when an off_t is bigger than a long
Sergey Fedoseev52c1a6a2019-08-26 20:12:47 +0500590 and long long is at least as big as an off_t. You may need to add some
591 flags for configuration and compilation to enable this mode. (For Solaris
592 and Linux, the necessary defines are already defined.) */
Martin v. Löwis11437992002-04-12 09:54:03 +0000593#undef HAVE_LARGEFILE_SUPPORT
Martin v. Löwis2e64c342002-03-27 18:49:02 +0000594
Ned Deily3eb67d52011-06-28 00:00:28 -0700595/* Define to 1 if you have the 'lchflags' function. */
Thomas Wouterscf297e42007-02-23 15:07:44 +0000596#undef HAVE_LCHFLAGS
597
Christian Heimes4e30a842007-11-30 22:12:06 +0000598/* Define to 1 if you have the `lchmod' function. */
599#undef HAVE_LCHMOD
600
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +0000601/* Define to 1 if you have the `lchown' function. */
602#undef HAVE_LCHOWN
603
Mark Dickinson9c113362009-09-05 10:36:23 +0000604/* Define to 1 if you have the `lgamma' function. */
605#undef HAVE_LGAMMA
606
Martin v. Löwis11437992002-04-12 09:54:03 +0000607/* Define to 1 if you have the `dl' library (-ldl). */
Guido van Rossum61fe8611994-01-03 14:56:37 +0000608#undef HAVE_LIBDL
609
Martin v. Löwis11437992002-04-12 09:54:03 +0000610/* Define to 1 if you have the `dld' library (-ldld). */
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000611#undef HAVE_LIBDLD
Guido van Rossumf1328521994-05-03 14:43:56 +0000612
Martin v. Löwis11437992002-04-12 09:54:03 +0000613/* Define to 1 if you have the `ieee' library (-lieee). */
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000614#undef HAVE_LIBIEEE
Guido van Rossumaef734b2001-01-10 21:09:12 +0000615
Martin v. Löwis11437992002-04-12 09:54:03 +0000616/* Define to 1 if you have the <libintl.h> header file. */
617#undef HAVE_LIBINTL_H
618
Roland Hiebere1f77692021-02-09 02:05:25 +0100619/* Define to build the readline module. */
Neal Norwitzfe8e3d92006-01-07 21:07:20 +0000620#undef HAVE_LIBREADLINE
621
Martin v. Löwis95c419b2003-05-03 12:10:48 +0000622/* Define to 1 if you have the `resolv' library (-lresolv). */
623#undef HAVE_LIBRESOLV
624
Antoine Pitrou061cfb52011-02-28 22:25:22 +0000625/* Define to 1 if you have the `sendfile' library (-lsendfile). */
626#undef HAVE_LIBSENDFILE
627
Martin v. Löwis11437992002-04-12 09:54:03 +0000628/* Define to 1 if you have the <libutil.h> header file. */
629#undef HAVE_LIBUTIL_H
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000630
Pablo Galindo Salgado8d1a5802021-11-28 21:23:39 +0000631/* Define to 1 if you have the `uuid' library (-luuid). */
Miss Islington (bot)b71bc052021-11-02 04:49:17 -0700632#undef HAVE_LIBUUID
633
Martin v. Löwisc8ad7cc2002-11-11 13:23:45 +0000634/* Define if you have the 'link' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000635#undef HAVE_LINK
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000636
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000637/* Define to 1 if you have the `linkat' function. */
638#undef HAVE_LINKAT
639
Victor Stinner393e2bf2022-03-12 00:04:14 +0100640/* Define to 1 if you have the <linux/auxvec.h> header file. */
641#undef HAVE_LINUX_AUXVEC_H
642
Charles-François Natali773e42d2013-02-05 19:42:01 +0100643/* Define to 1 if you have the <linux/can/bcm.h> header file. */
644#undef HAVE_LINUX_CAN_BCM_H
645
Charles-François Natali47413c12011-10-06 19:47:44 +0200646/* Define to 1 if you have the <linux/can.h> header file. */
647#undef HAVE_LINUX_CAN_H
648
karl ding360371f2020-04-29 15:31:19 -0700649/* Define to 1 if you have the <linux/can/j1939.h> header file. */
650#undef HAVE_LINUX_CAN_J1939_H
651
Larry Hastingsa6cc5512015-04-13 17:48:40 -0400652/* Define if compiling using Linux 3.6 or later. */
653#undef HAVE_LINUX_CAN_RAW_FD_FRAMES
654
Charles-François Natali47413c12011-10-06 19:47:44 +0200655/* Define to 1 if you have the <linux/can/raw.h> header file. */
656#undef HAVE_LINUX_CAN_RAW_H
657
Zackery Spytz97e0de02020-04-09 06:03:49 -0600658/* Define if compiling using Linux 4.1 or later. */
659#undef HAVE_LINUX_CAN_RAW_JOIN_FILTERS
660
Zackery Spytz43fdbd22019-05-29 13:57:07 -0600661/* Define to 1 if you have the <linux/memfd.h> header file. */
662#undef HAVE_LINUX_MEMFD_H
663
Martin v. Löwis11017b12006-01-14 18:12:57 +0000664/* Define to 1 if you have the <linux/netlink.h> header file. */
665#undef HAVE_LINUX_NETLINK_H
666
Bjorn Anderssonbb816512018-09-26 06:47:52 -0700667/* Define to 1 if you have the <linux/qrtr.h> header file. */
668#undef HAVE_LINUX_QRTR_H
669
Victor Stinnerdddf4842016-06-07 11:21:42 +0200670/* Define to 1 if you have the <linux/random.h> header file. */
671#undef HAVE_LINUX_RANDOM_H
672
Benjamin Petersonb8a2f512016-07-06 23:55:15 -0700673/* Define to 1 if you have the <linux/tipc.h> header file. */
674#undef HAVE_LINUX_TIPC_H
675
caaveryeffc12f2017-09-06 18:18:10 -0400676/* Define to 1 if you have the <linux/vm_sockets.h> header file. */
677#undef HAVE_LINUX_VM_SOCKETS_H
678
Benjamin Peterson5c0c3252019-11-05 21:58:31 -0800679/* Define to 1 if you have the <linux/wait.h> header file. */
680#undef HAVE_LINUX_WAIT_H
681
xdegaye5ce10692017-11-23 12:01:36 +0100682/* Define to 1 if you have the `lockf' function. */
Ross Lagerwall7807c352011-03-17 20:20:30 +0200683#undef HAVE_LOCKF
684
Christian Heimes9bd667a2008-01-20 15:14:11 +0000685/* Define to 1 if you have the `log1p' function. */
686#undef HAVE_LOG1P
687
Victor Stinner8f9f8d62011-05-09 12:45:41 +0200688/* Define to 1 if you have the `log2' function. */
689#undef HAVE_LOG2
690
Eitan Adler3055c942018-05-15 22:58:09 -0700691/* Define to 1 if the system has the type `long double'. */
Travis E. Oliphant9b307842007-10-12 22:06:37 +0000692#undef HAVE_LONG_DOUBLE
693
Martin v. Löwis11437992002-04-12 09:54:03 +0000694/* Define to 1 if you have the `lstat' function. */
695#undef HAVE_LSTAT
696
Ross Lagerwall7807c352011-03-17 20:20:30 +0200697/* Define to 1 if you have the `lutimes' function. */
698#undef HAVE_LUTIMES
699
Zackery Spytz02db6962019-05-27 10:48:17 -0600700/* Define to 1 if you have the `madvise' function. */
701#undef HAVE_MADVISE
702
Neal Norwitz11690112002-07-30 01:08:28 +0000703/* Define this if you have the makedev macro. */
704#undef HAVE_MAKEDEV
705
Martin v. Löwis011e8422009-05-05 04:43:17 +0000706/* Define to 1 if you have the `mbrtowc' function. */
707#undef HAVE_MBRTOWC
708
Zackery Spytz43fdbd22019-05-29 13:57:07 -0600709/* Define if you have the 'memfd_create' function. */
710#undef HAVE_MEMFD_CREATE
711
Martin v. Löwis11437992002-04-12 09:54:03 +0000712/* Define to 1 if you have the <memory.h> header file. */
713#undef HAVE_MEMORY_H
714
Antoine Pitrou2c3b2302011-10-11 20:29:21 +0200715/* Define to 1 if you have the `memrchr' function. */
716#undef HAVE_MEMRCHR
717
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000718/* Define to 1 if you have the `mkdirat' function. */
719#undef HAVE_MKDIRAT
720
Martin v. Löwis11437992002-04-12 09:54:03 +0000721/* Define to 1 if you have the `mkfifo' function. */
722#undef HAVE_MKFIFO
723
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000724/* Define to 1 if you have the `mkfifoat' function. */
725#undef HAVE_MKFIFOAT
726
Martin v. Löwis06a83e92002-04-14 10:19:44 +0000727/* Define to 1 if you have the `mknod' function. */
728#undef HAVE_MKNOD
729
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000730/* Define to 1 if you have the `mknodat' function. */
731#undef HAVE_MKNODAT
732
Martin v. Löwis11437992002-04-12 09:54:03 +0000733/* Define to 1 if you have the `mktime' function. */
734#undef HAVE_MKTIME
735
Antoine Pitrouf0effe62011-11-26 01:11:02 +0100736/* Define to 1 if you have the `mmap' function. */
737#undef HAVE_MMAP
738
Martin v. Löwis11437992002-04-12 09:54:03 +0000739/* Define to 1 if you have the `mremap' function. */
740#undef HAVE_MREMAP
741
742/* Define to 1 if you have the <ncurses.h> header file. */
743#undef HAVE_NCURSES_H
744
Martin v. Löwis11437992002-04-12 09:54:03 +0000745/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
746#undef HAVE_NDIR_H
747
748/* Define to 1 if you have the <netpacket/packet.h> header file. */
749#undef HAVE_NETPACKET_PACKET_H
750
Nadeem Vawdad74b5932011-05-15 13:16:22 +0200751/* Define to 1 if you have the <net/if.h> header file. */
752#undef HAVE_NET_IF_H
753
Martin v. Löwis11437992002-04-12 09:54:03 +0000754/* Define to 1 if you have the `nice' function. */
755#undef HAVE_NICE
756
Jakub Kulík9032cf52021-04-30 15:21:42 +0200757/* Define if the internal form of wchar_t in non-Unicode locales is not
758 Unicode. */
759#undef HAVE_NON_UNICODE_WCHAR_T_REPRESENTATION
760
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000761/* Define to 1 if you have the `openat' function. */
762#undef HAVE_OPENAT
763
Martin v. Löwis11437992002-04-12 09:54:03 +0000764/* Define to 1 if you have the `openpty' function. */
765#undef HAVE_OPENPTY
766
767/* Define to 1 if you have the `pathconf' function. */
768#undef HAVE_PATHCONF
769
770/* Define to 1 if you have the `pause' function. */
771#undef HAVE_PAUSE
772
Charles-François Natalidaafdd52011-05-29 20:07:40 +0200773/* Define to 1 if you have the `pipe2' function. */
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000774#undef HAVE_PIPE2
775
Martin v. Löwis11437992002-04-12 09:54:03 +0000776/* Define to 1 if you have the `plock' function. */
777#undef HAVE_PLOCK
778
779/* Define to 1 if you have the `poll' function. */
780#undef HAVE_POLL
781
782/* Define to 1 if you have the <poll.h> header file. */
783#undef HAVE_POLL_H
784
Ross Lagerwall7807c352011-03-17 20:20:30 +0200785/* Define to 1 if you have the `posix_fadvise' function. */
786#undef HAVE_POSIX_FADVISE
787
788/* Define to 1 if you have the `posix_fallocate' function. */
789#undef HAVE_POSIX_FALLOCATE
790
Pablo Galindo6c6ddf92018-01-29 01:56:10 +0000791/* Define to 1 if you have the `posix_spawn' function. */
792#undef HAVE_POSIX_SPAWN
793
Joannah Nanjekye92b83222019-01-16 16:29:26 +0300794/* Define to 1 if you have the `posix_spawnp' function. */
795#undef HAVE_POSIX_SPAWNP
796
Ross Lagerwall7807c352011-03-17 20:20:30 +0200797/* Define to 1 if you have the `pread' function. */
798#undef HAVE_PREAD
799
Pablo Galindo4defba32018-01-27 16:16:37 +0000800/* Define to 1 if you have the `preadv' function. */
801#undef HAVE_PREADV
802
803/* Define to 1 if you have the `preadv2' function. */
804#undef HAVE_PREADV2
805
Christian Heimesb7bd5df2013-10-22 11:21:54 +0200806/* Define if you have the 'prlimit' functions. */
807#undef HAVE_PRLIMIT
808
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000809/* Define to 1 if you have the <process.h> header file. */
810#undef HAVE_PROCESS_H
811
Martin v. Löwis11437992002-04-12 09:54:03 +0000812/* Define if your compiler supports function prototype */
813#undef HAVE_PROTOTYPES
814
Inada Naoki001fee12019-02-20 10:00:09 +0900815/* Define to 1 if you have the `pthread_condattr_setclock' function. */
816#undef HAVE_PTHREAD_CONDATTR_SETCLOCK
817
Martin v. Löwisa7a76d32002-10-04 07:21:24 +0000818/* Defined for Solaris 2.6 bug in pthread header. */
819#undef HAVE_PTHREAD_DESTRUCTOR
820
pdoxe14679c2017-10-05 00:01:56 -0700821/* Define to 1 if you have the `pthread_getcpuclockid' function. */
822#undef HAVE_PTHREAD_GETCPUCLOCKID
823
Martin v. Löwis11437992002-04-12 09:54:03 +0000824/* Define to 1 if you have the <pthread.h> header file. */
825#undef HAVE_PTHREAD_H
826
827/* Define to 1 if you have the `pthread_init' function. */
828#undef HAVE_PTHREAD_INIT
829
Victor Stinnerb3e72192011-05-08 01:46:11 +0200830/* Define to 1 if you have the `pthread_kill' function. */
831#undef HAVE_PTHREAD_KILL
832
Benjamin Peterson316e02b2011-05-10 15:01:56 -0500833/* Define to 1 if you have the `pthread_sigmask' function. */
834#undef HAVE_PTHREAD_SIGMASK
835
Martin v. Löwis11437992002-04-12 09:54:03 +0000836/* Define to 1 if you have the <pty.h> header file. */
837#undef HAVE_PTY_H
838
Ross Lagerwall7807c352011-03-17 20:20:30 +0200839/* Define to 1 if you have the `pwrite' function. */
840#undef HAVE_PWRITE
841
Pablo Galindo4defba32018-01-27 16:16:37 +0000842/* Define to 1 if you have the `pwritev' function. */
843#undef HAVE_PWRITEV
844
845/* Define to 1 if you have the `pwritev2' function. */
846#undef HAVE_PWRITEV2
847
Martin v. Löwis11437992002-04-12 09:54:03 +0000848/* Define to 1 if you have the `readlink' function. */
849#undef HAVE_READLINK
850
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000851/* Define to 1 if you have the `readlinkat' function. */
852#undef HAVE_READLINKAT
853
Ross Lagerwall7807c352011-03-17 20:20:30 +0200854/* Define to 1 if you have the `readv' function. */
855#undef HAVE_READV
856
Guido van Rossum162e38c2003-02-19 15:25:10 +0000857/* Define to 1 if you have the `realpath' function. */
858#undef HAVE_REALPATH
859
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000860/* Define to 1 if you have the `renameat' function. */
861#undef HAVE_RENAMEAT
862
Benjamin Petersond1e22ba2014-11-26 14:35:12 -0600863/* Define if readline supports append_history */
864#undef HAVE_RL_APPEND_HISTORY
865
Michael W. Hudson30ea2f22004-07-07 17:44:12 +0000866/* Define if you can turn off readline's signal handling. */
867#undef HAVE_RL_CATCH_SIGNAL
868
Guido van Rossumfaf5e4d2002-12-30 16:25:41 +0000869/* Define if you have readline 2.2 */
870#undef HAVE_RL_COMPLETION_APPEND_CHARACTER
871
Thomas Wouters89d996e2007-09-08 17:39:28 +0000872/* Define if you have readline 4.0 */
873#undef HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK
874
Martin v. Löwis11437992002-04-12 09:54:03 +0000875/* Define if you have readline 4.2 */
876#undef HAVE_RL_COMPLETION_MATCHES
877
Antoine Pitroud5131772009-10-26 19:22:14 +0000878/* Define if you have rl_completion_suppress_append */
879#undef HAVE_RL_COMPLETION_SUPPRESS_APPEND
880
Martin v. Löwis11437992002-04-12 09:54:03 +0000881/* Define if you have readline 4.0 */
882#undef HAVE_RL_PRE_INPUT_HOOK
883
Martin Panter5dbbf1a2016-04-03 02:54:58 +0000884/* Define if you have readline 4.0 */
885#undef HAVE_RL_RESIZE_TERMINAL
886
Mark Dickinsonf2537862009-04-18 13:58:18 +0000887/* Define to 1 if you have the `round' function. */
888#undef HAVE_ROUND
889
pxinwrf2d7ac72019-05-21 18:46:37 +0800890/* Define to 1 if you have the `rtpSpawn' function. */
891#undef HAVE_RTPSPAWN
892
Charles-François Nataliea0d5fc2011-09-06 19:03:35 +0200893/* Define to 1 if you have the `sched_get_priority_max' function. */
894#undef HAVE_SCHED_GET_PRIORITY_MAX
895
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500896/* Define to 1 if you have the <sched.h> header file. */
897#undef HAVE_SCHED_H
898
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -0500899/* Define to 1 if you have the `sched_rr_get_interval' function. */
900#undef HAVE_SCHED_RR_GET_INTERVAL
901
Benjamin Peterson2740af82011-08-02 17:41:34 -0500902/* Define to 1 if you have the `sched_setaffinity' function. */
903#undef HAVE_SCHED_SETAFFINITY
904
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -0500905/* Define to 1 if you have the `sched_setparam' function. */
906#undef HAVE_SCHED_SETPARAM
907
908/* Define to 1 if you have the `sched_setscheduler' function. */
909#undef HAVE_SCHED_SETSCHEDULER
910
Victor Stinner6df8c322021-10-01 18:22:49 +0200911/* Define to 1 if you have the `sem_clockwait' function. */
912#undef HAVE_SEM_CLOCKWAIT
913
Benjamin Peterson965ce872009-04-05 21:24:58 +0000914/* Define to 1 if you have the `sem_getvalue' function. */
915#undef HAVE_SEM_GETVALUE
916
917/* Define to 1 if you have the `sem_open' function. */
918#undef HAVE_SEM_OPEN
919
920/* Define to 1 if you have the `sem_timedwait' function. */
921#undef HAVE_SEM_TIMEDWAIT
922
923/* Define to 1 if you have the `sem_unlink' function. */
924#undef HAVE_SEM_UNLINK
925
Antoine Pitrou061cfb52011-02-28 22:25:22 +0000926/* Define to 1 if you have the `sendfile' function. */
927#undef HAVE_SENDFILE
928
Martin v. Löwis11437992002-04-12 09:54:03 +0000929/* Define to 1 if you have the `setegid' function. */
930#undef HAVE_SETEGID
931
932/* Define to 1 if you have the `seteuid' function. */
933#undef HAVE_SETEUID
934
935/* Define to 1 if you have the `setgid' function. */
936#undef HAVE_SETGID
937
Martin v. Löwisd5843682002-11-21 20:41:28 +0000938/* Define if you have the 'setgroups' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000939#undef HAVE_SETGROUPS
940
Antoine Pitrou061cfb52011-02-28 22:25:22 +0000941/* Define to 1 if you have the `sethostname' function. */
942#undef HAVE_SETHOSTNAME
943
Martin v. Löwis823725e2008-03-24 13:39:54 +0000944/* Define to 1 if you have the `setitimer' function. */
945#undef HAVE_SETITIMER
946
Martin v. Löwis11437992002-04-12 09:54:03 +0000947/* Define to 1 if you have the `setlocale' function. */
948#undef HAVE_SETLOCALE
949
950/* Define to 1 if you have the `setpgid' function. */
951#undef HAVE_SETPGID
952
Martin v. Löwis4daacb12003-03-28 18:37:01 +0000953/* Define to 1 if you have the `setpgrp' function. */
954#undef HAVE_SETPGRP
955
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +0000956/* Define to 1 if you have the `setpriority' function. */
957#undef HAVE_SETPRIORITY
958
Martin v. Löwis11437992002-04-12 09:54:03 +0000959/* Define to 1 if you have the `setregid' function. */
960#undef HAVE_SETREGID
961
Martin v. Löwis7aed61a2009-11-27 14:09:49 +0000962/* Define to 1 if you have the `setresgid' function. */
963#undef HAVE_SETRESGID
964
965/* Define to 1 if you have the `setresuid' function. */
966#undef HAVE_SETRESUID
967
Martin v. Löwis11437992002-04-12 09:54:03 +0000968/* Define to 1 if you have the `setreuid' function. */
969#undef HAVE_SETREUID
970
971/* Define to 1 if you have the `setsid' function. */
972#undef HAVE_SETSID
973
974/* Define to 1 if you have the `setuid' function. */
975#undef HAVE_SETUID
976
977/* Define to 1 if you have the `setvbuf' function. */
978#undef HAVE_SETVBUF
979
Martin v. Löwisc3001752005-01-23 09:27:24 +0000980/* Define to 1 if you have the <shadow.h> header file. */
981#undef HAVE_SHADOW_H
982
Benjamin Petersonb84df2d2019-02-25 21:37:59 -0800983/* Define to 1 if you have the `shm_open' function. */
984#undef HAVE_SHM_OPEN
985
986/* Define to 1 if you have the `shm_unlink' function. */
987#undef HAVE_SHM_UNLINK
988
Martin v. Löwis11437992002-04-12 09:54:03 +0000989/* Define to 1 if you have the `sigaction' function. */
990#undef HAVE_SIGACTION
991
Victor Stinner024e37a2011-03-31 01:31:06 +0200992/* Define to 1 if you have the `sigaltstack' function. */
993#undef HAVE_SIGALTSTACK
994
Antoine Pitrou9d3627e2018-05-04 13:00:50 +0200995/* Define to 1 if you have the `sigfillset' function. */
996#undef HAVE_SIGFILLSET
997
Zachary Ware6a6967e2016-10-01 00:47:27 -0500998/* Define to 1 if `si_band' is a member of `siginfo_t'. */
999#undef HAVE_SIGINFO_T_SI_BAND
1000
Martin v. Löwis11437992002-04-12 09:54:03 +00001001/* Define to 1 if you have the `siginterrupt' function. */
1002#undef HAVE_SIGINTERRUPT
1003
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001004/* Define to 1 if you have the <signal.h> header file. */
1005#undef HAVE_SIGNAL_H
1006
Benjamin Peterson316e02b2011-05-10 15:01:56 -05001007/* Define to 1 if you have the `sigpending' function. */
1008#undef HAVE_SIGPENDING
1009
Martin v. Löwis11437992002-04-12 09:54:03 +00001010/* Define to 1 if you have the `sigrelse' function. */
1011#undef HAVE_SIGRELSE
1012
Ross Lagerwallbc808222011-06-25 12:13:40 +02001013/* Define to 1 if you have the `sigtimedwait' function. */
1014#undef HAVE_SIGTIMEDWAIT
1015
Victor Stinnerb3e72192011-05-08 01:46:11 +02001016/* Define to 1 if you have the `sigwait' function. */
1017#undef HAVE_SIGWAIT
1018
Ross Lagerwallbc808222011-06-25 12:13:40 +02001019/* Define to 1 if you have the `sigwaitinfo' function. */
1020#undef HAVE_SIGWAITINFO
1021
Martin v. Löwis11437992002-04-12 09:54:03 +00001022/* Define to 1 if you have the `snprintf' function. */
1023#undef HAVE_SNPRINTF
1024
Christian Heimesdffa3942016-09-05 23:54:41 +02001025/* struct sockaddr_alg (linux/if_alg.h) */
1026#undef HAVE_SOCKADDR_ALG
1027
Martin v. Löwis11437992002-04-12 09:54:03 +00001028/* Define if sockaddr has sa_len member */
1029#undef HAVE_SOCKADDR_SA_LEN
1030
1031/* struct sockaddr_storage (sys/socket.h) */
1032#undef HAVE_SOCKADDR_STORAGE
1033
Martin v. Löwisd6320502004-08-12 13:45:08 +00001034/* Define if you have the 'socketpair' function. */
1035#undef HAVE_SOCKETPAIR
1036
Ronald Oussoren755740f2010-02-07 19:56:39 +00001037/* Define to 1 if you have the <spawn.h> header file. */
1038#undef HAVE_SPAWN_H
1039
Pablo Galindoa57b3d32020-11-17 00:00:38 +00001040/* Define to 1 if you have the `splice' function. */
1041#undef HAVE_SPLICE
1042
Martin v. Löwis18e16552006-02-15 17:27:45 +00001043/* Define if your compiler provides ssize_t */
1044#undef HAVE_SSIZE_T
1045
Martin v. Löwis11437992002-04-12 09:54:03 +00001046/* Define to 1 if you have the `statvfs' function. */
1047#undef HAVE_STATVFS
1048
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001049/* Define if you have struct stat.st_mtim.tv_nsec */
1050#undef HAVE_STAT_TV_NSEC
1051
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001052/* Define if you have struct stat.st_mtimensec */
1053#undef HAVE_STAT_TV_NSEC2
1054
Martin v. Löwis11437992002-04-12 09:54:03 +00001055/* Define if your compiler supports variable length function prototypes (e.g.
1056 void fprintf(FILE *, char *, ...);) *and* <stdarg.h> */
1057#undef HAVE_STDARG_PROTOTYPES
1058
Martin v. Löwis11437992002-04-12 09:54:03 +00001059/* Define to 1 if you have the <stdint.h> header file. */
1060#undef HAVE_STDINT_H
1061
Nicholas Bastine62c5c82004-03-21 23:45:42 +00001062/* Define to 1 if you have the <stdlib.h> header file. */
1063#undef HAVE_STDLIB_H
1064
Victor Stinner028f7342019-10-22 21:53:50 +02001065/* Has stdatomic.h with atomic_int and atomic_uintptr_t */
Victor Stinner4f5366e2015-01-09 02:13:19 +01001066#undef HAVE_STD_ATOMIC
1067
Martin v. Löwis11437992002-04-12 09:54:03 +00001068/* Define to 1 if you have the `strftime' function. */
1069#undef HAVE_STRFTIME
1070
1071/* Define to 1 if you have the <strings.h> header file. */
1072#undef HAVE_STRINGS_H
1073
Nicholas Bastine62c5c82004-03-21 23:45:42 +00001074/* Define to 1 if you have the <string.h> header file. */
1075#undef HAVE_STRING_H
1076
Gregory P. Smith6c357262007-09-03 16:44:06 +00001077/* Define to 1 if you have the `strlcpy' function. */
1078#undef HAVE_STRLCPY
1079
Martin v. Löwis14e73b12003-01-01 09:51:12 +00001080/* Define to 1 if you have the <stropts.h> header file. */
1081#undef HAVE_STROPTS_H
1082
Michael Osipov48ce4892018-08-23 15:27:19 +02001083/* Define to 1 if you have the `strsignal' function. */
1084#undef HAVE_STRSIGNAL
1085
Stefan Krah267b6392016-04-26 01:09:18 +02001086/* Define to 1 if `pw_gecos' is a member of `struct passwd'. */
1087#undef HAVE_STRUCT_PASSWD_PW_GECOS
1088
1089/* Define to 1 if `pw_passwd' is a member of `struct passwd'. */
1090#undef HAVE_STRUCT_PASSWD_PW_PASSWD
1091
Matthias Kloseb9621712010-04-24 17:59:49 +00001092/* Define to 1 if `st_birthtime' is a member of `struct stat'. */
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001093#undef HAVE_STRUCT_STAT_ST_BIRTHTIME
1094
Matthias Kloseb9621712010-04-24 17:59:49 +00001095/* Define to 1 if `st_blksize' is a member of `struct stat'. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001096#undef HAVE_STRUCT_STAT_ST_BLKSIZE
1097
Matthias Kloseb9621712010-04-24 17:59:49 +00001098/* Define to 1 if `st_blocks' is a member of `struct stat'. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001099#undef HAVE_STRUCT_STAT_ST_BLOCKS
1100
Matthias Kloseb9621712010-04-24 17:59:49 +00001101/* Define to 1 if `st_flags' is a member of `struct stat'. */
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001102#undef HAVE_STRUCT_STAT_ST_FLAGS
1103
Matthias Kloseb9621712010-04-24 17:59:49 +00001104/* Define to 1 if `st_gen' is a member of `struct stat'. */
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001105#undef HAVE_STRUCT_STAT_ST_GEN
1106
Matthias Kloseb9621712010-04-24 17:59:49 +00001107/* Define to 1 if `st_rdev' is a member of `struct stat'. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001108#undef HAVE_STRUCT_STAT_ST_RDEV
1109
Matthias Kloseb9621712010-04-24 17:59:49 +00001110/* Define to 1 if `tm_zone' is a member of `struct tm'. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001111#undef HAVE_STRUCT_TM_TM_ZONE
1112
Martin v. Löwisc8ad7cc2002-11-11 13:23:45 +00001113/* Define if you have the 'symlink' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001114#undef HAVE_SYMLINK
1115
Antoine Pitrouf65132d2011-02-25 23:25:17 +00001116/* Define to 1 if you have the `symlinkat' function. */
1117#undef HAVE_SYMLINKAT
1118
Ross Lagerwall7807c352011-03-17 20:20:30 +02001119/* Define to 1 if you have the `sync' function. */
1120#undef HAVE_SYNC
1121
Martin v. Löwis11437992002-04-12 09:54:03 +00001122/* Define to 1 if you have the `sysconf' function. */
1123#undef HAVE_SYSCONF
1124
Barry Warsawfe33b792003-01-07 22:42:49 +00001125/* Define to 1 if you have the <sysexits.h> header file. */
1126#undef HAVE_SYSEXITS_H
1127
Martin v. Löwis11437992002-04-12 09:54:03 +00001128/* Define to 1 if you have the <sys/audioio.h> header file. */
1129#undef HAVE_SYS_AUDIOIO_H
1130
Neal Norwitz82251032003-05-23 14:35:24 +00001131/* Define to 1 if you have the <sys/bsdtty.h> header file. */
1132#undef HAVE_SYS_BSDTTY_H
1133
Jesus Cead8b9ae62011-11-14 19:07:41 +01001134/* Define to 1 if you have the <sys/devpoll.h> header file. */
1135#undef HAVE_SYS_DEVPOLL_H
1136
Martin v. Löwis11437992002-04-12 09:54:03 +00001137/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
1138 */
1139#undef HAVE_SYS_DIR_H
1140
Christian Heimes985ecdc2013-11-20 11:46:18 +01001141/* Define to 1 if you have the <sys/endian.h> header file. */
1142#undef HAVE_SYS_ENDIAN_H
1143
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001144/* Define to 1 if you have the <sys/epoll.h> header file. */
1145#undef HAVE_SYS_EPOLL_H
1146
Christian Heimescd9fed62020-11-13 19:48:52 +01001147/* Define to 1 if you have the <sys/eventfd.h> header file. */
1148#undef HAVE_SYS_EVENTFD_H
1149
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001150/* Define to 1 if you have the <sys/event.h> header file. */
1151#undef HAVE_SYS_EVENT_H
1152
Martin v. Löwis11437992002-04-12 09:54:03 +00001153/* Define to 1 if you have the <sys/file.h> header file. */
1154#undef HAVE_SYS_FILE_H
1155
Antoine Pitroubcf2b592012-02-08 23:28:36 +01001156/* Define to 1 if you have the <sys/ioctl.h> header file. */
1157#undef HAVE_SYS_IOCTL_H
1158
Martin v. Löwis9d6c6692012-02-03 17:44:58 +01001159/* Define to 1 if you have the <sys/kern_control.h> header file. */
1160#undef HAVE_SYS_KERN_CONTROL_H
1161
Anthony Baxter8a560de2004-10-13 15:30:56 +00001162/* Define to 1 if you have the <sys/loadavg.h> header file. */
1163#undef HAVE_SYS_LOADAVG_H
1164
Martin v. Löwis11437992002-04-12 09:54:03 +00001165/* Define to 1 if you have the <sys/lock.h> header file. */
1166#undef HAVE_SYS_LOCK_H
1167
Zackery Spytz43fdbd22019-05-29 13:57:07 -06001168/* Define to 1 if you have the <sys/memfd.h> header file. */
1169#undef HAVE_SYS_MEMFD_H
1170
Neal Norwitz3d949422002-04-20 13:46:43 +00001171/* Define to 1 if you have the <sys/mkdev.h> header file. */
1172#undef HAVE_SYS_MKDEV_H
1173
Benjamin Petersonb84df2d2019-02-25 21:37:59 -08001174/* Define to 1 if you have the <sys/mman.h> header file. */
1175#undef HAVE_SYS_MMAN_H
1176
Martin v. Löwis11437992002-04-12 09:54:03 +00001177/* Define to 1 if you have the <sys/modem.h> header file. */
1178#undef HAVE_SYS_MODEM_H
1179
1180/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
1181 */
1182#undef HAVE_SYS_NDIR_H
1183
1184/* Define to 1 if you have the <sys/param.h> header file. */
1185#undef HAVE_SYS_PARAM_H
1186
1187/* Define to 1 if you have the <sys/poll.h> header file. */
1188#undef HAVE_SYS_POLL_H
1189
Benjamin Petersonfb2ae152016-12-19 23:54:25 -08001190/* Define to 1 if you have the <sys/random.h> header file. */
1191#undef HAVE_SYS_RANDOM_H
1192
Martin v. Löwis11437992002-04-12 09:54:03 +00001193/* Define to 1 if you have the <sys/resource.h> header file. */
1194#undef HAVE_SYS_RESOURCE_H
1195
1196/* Define to 1 if you have the <sys/select.h> header file. */
1197#undef HAVE_SYS_SELECT_H
1198
Antoine Pitrou5c2f4642011-02-26 00:22:09 +00001199/* Define to 1 if you have the <sys/sendfile.h> header file. */
1200#undef HAVE_SYS_SENDFILE_H
1201
Martin v. Löwis11437992002-04-12 09:54:03 +00001202/* Define to 1 if you have the <sys/socket.h> header file. */
1203#undef HAVE_SYS_SOCKET_H
1204
Thomas Wouters477c8d52006-05-27 19:21:47 +00001205/* Define to 1 if you have the <sys/statvfs.h> header file. */
1206#undef HAVE_SYS_STATVFS_H
1207
Martin v. Löwis11437992002-04-12 09:54:03 +00001208/* Define to 1 if you have the <sys/stat.h> header file. */
1209#undef HAVE_SYS_STAT_H
1210
Gregory P. Smith8facece2012-01-21 14:01:08 -08001211/* Define to 1 if you have the <sys/syscall.h> header file. */
1212#undef HAVE_SYS_SYSCALL_H
1213
Christian Heimes75b96182017-09-05 15:53:09 +02001214/* Define to 1 if you have the <sys/sysmacros.h> header file. */
1215#undef HAVE_SYS_SYSMACROS_H
1216
Martin v. Löwis9d6c6692012-02-03 17:44:58 +01001217/* Define to 1 if you have the <sys/sys_domain.h> header file. */
1218#undef HAVE_SYS_SYS_DOMAIN_H
1219
Georg Brandlf78e02b2008-06-10 17:40:04 +00001220/* Define to 1 if you have the <sys/termio.h> header file. */
1221#undef HAVE_SYS_TERMIO_H
1222
Martin v. Löwis11437992002-04-12 09:54:03 +00001223/* Define to 1 if you have the <sys/times.h> header file. */
1224#undef HAVE_SYS_TIMES_H
1225
1226/* Define to 1 if you have the <sys/time.h> header file. */
1227#undef HAVE_SYS_TIME_H
1228
1229/* Define to 1 if you have the <sys/types.h> header file. */
1230#undef HAVE_SYS_TYPES_H
1231
Antoine Pitrou061cfb52011-02-28 22:25:22 +00001232/* Define to 1 if you have the <sys/uio.h> header file. */
1233#undef HAVE_SYS_UIO_H
1234
Martin v. Löwis11437992002-04-12 09:54:03 +00001235/* Define to 1 if you have the <sys/un.h> header file. */
1236#undef HAVE_SYS_UN_H
1237
1238/* Define to 1 if you have the <sys/utsname.h> header file. */
1239#undef HAVE_SYS_UTSNAME_H
1240
1241/* Define to 1 if you have the <sys/wait.h> header file. */
1242#undef HAVE_SYS_WAIT_H
1243
Benjamin Petersonb77fe172011-09-13 17:20:47 -04001244/* Define to 1 if you have the <sys/xattr.h> header file. */
1245#undef HAVE_SYS_XATTR_H
1246
Martin v. Löwis11437992002-04-12 09:54:03 +00001247/* Define to 1 if you have the `tcgetpgrp' function. */
1248#undef HAVE_TCGETPGRP
1249
1250/* Define to 1 if you have the `tcsetpgrp' function. */
1251#undef HAVE_TCSETPGRP
1252
1253/* Define to 1 if you have the `tempnam' function. */
1254#undef HAVE_TEMPNAM
1255
1256/* Define to 1 if you have the <termios.h> header file. */
1257#undef HAVE_TERMIOS_H
1258
1259/* Define to 1 if you have the <term.h> header file. */
1260#undef HAVE_TERM_H
1261
Mark Dickinson9c113362009-09-05 10:36:23 +00001262/* Define to 1 if you have the `tgamma' function. */
1263#undef HAVE_TGAMMA
1264
Martin v. Löwis11437992002-04-12 09:54:03 +00001265/* Define to 1 if you have the `timegm' function. */
1266#undef HAVE_TIMEGM
1267
1268/* Define to 1 if you have the `times' function. */
1269#undef HAVE_TIMES
1270
1271/* Define to 1 if you have the `tmpfile' function. */
1272#undef HAVE_TMPFILE
1273
1274/* Define to 1 if you have the `tmpnam' function. */
1275#undef HAVE_TMPNAM
1276
1277/* Define to 1 if you have the `tmpnam_r' function. */
1278#undef HAVE_TMPNAM_R
1279
1280/* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
1281 `HAVE_STRUCT_TM_TM_ZONE' instead. */
1282#undef HAVE_TM_ZONE
1283
1284/* Define to 1 if you have the `truncate' function. */
1285#undef HAVE_TRUNCATE
1286
1287/* Define to 1 if you don't have `tm_zone' but do have the external array
1288 `tzname'. */
1289#undef HAVE_TZNAME
1290
Brett Cannon18367812003-09-19 00:59:16 +00001291/* Define this if you have tcl and TCL_UTF_MAX==6 */
1292#undef HAVE_UCS4_TCL
1293
Martin v. Löwis11437992002-04-12 09:54:03 +00001294/* Define to 1 if you have the `uname' function. */
1295#undef HAVE_UNAME
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001296
Martin v. Löwis11437992002-04-12 09:54:03 +00001297/* Define to 1 if you have the <unistd.h> header file. */
1298#undef HAVE_UNISTD_H
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001299
Antoine Pitrouf65132d2011-02-25 23:25:17 +00001300/* Define to 1 if you have the `unlinkat' function. */
1301#undef HAVE_UNLINKAT
1302
Martin v. Löwis11437992002-04-12 09:54:03 +00001303/* Define if you have a useable wchar_t type defined in wchar.h; useable means
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00001304 wchar_t must be an unsigned type with at least 16 bits. (see
1305 Include/unicodeobject.h). */
Martin v. Löwis11437992002-04-12 09:54:03 +00001306#undef HAVE_USABLE_WCHAR_T
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001307
Ronald Oussoren755740f2010-02-07 19:56:39 +00001308/* Define to 1 if you have the <util.h> header file. */
1309#undef HAVE_UTIL_H
1310
Antoine Pitrouf65132d2011-02-25 23:25:17 +00001311/* Define to 1 if you have the `utimensat' function. */
1312#undef HAVE_UTIMENSAT
1313
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00001314/* Define to 1 if you have the `utimes' function. */
1315#undef HAVE_UTIMES
1316
Martin v. Löwis11437992002-04-12 09:54:03 +00001317/* Define to 1 if you have the <utime.h> header file. */
1318#undef HAVE_UTIME_H
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001319
David Carlierb4ebaa72018-01-09 19:38:07 +00001320/* Define if uuid_create() exists. */
Michael Felt0d3ccb42017-12-30 22:39:20 +01001321#undef HAVE_UUID_CREATE
1322
Serhiy Storchaka17d88302018-05-25 01:45:09 +03001323/* Define if uuid_enc_be() exists. */
1324#undef HAVE_UUID_ENC_BE
1325
Berker Peksag9a10ff42017-11-08 23:09:16 +03001326/* Define if uuid_generate_time_safe() exists. */
1327#undef HAVE_UUID_GENERATE_TIME_SAFE
1328
Michael Felt0d3ccb42017-12-30 22:39:20 +01001329/* Define to 1 if you have the <uuid.h> header file. */
1330#undef HAVE_UUID_H
1331
1332/* Define to 1 if you have the <uuid/uuid.h> header file. */
1333#undef HAVE_UUID_UUID_H
1334
Alexey Izbyshev976da902020-10-24 03:47:01 +03001335/* Define to 1 if you have the `vfork' function. */
1336#undef HAVE_VFORK
1337
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001338/* Define to 1 if you have the `wait3' function. */
1339#undef HAVE_WAIT3
1340
1341/* Define to 1 if you have the `wait4' function. */
1342#undef HAVE_WAIT4
1343
Ross Lagerwall7807c352011-03-17 20:20:30 +02001344/* Define to 1 if you have the `waitid' function. */
1345#undef HAVE_WAITID
1346
Martin v. Löwis11437992002-04-12 09:54:03 +00001347/* Define to 1 if you have the `waitpid' function. */
1348#undef HAVE_WAITPID
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001349
Martin v. Löwis11437992002-04-12 09:54:03 +00001350/* Define if the compiler provides a wchar.h header file. */
1351#undef HAVE_WCHAR_H
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001352
Martin v. Löwis9c36c292002-12-21 18:34:06 +00001353/* Define to 1 if you have the `wcscoll' function. */
1354#undef HAVE_WCSCOLL
1355
Martin v. Löwis113a0852009-05-29 17:25:39 +00001356/* Define to 1 if you have the `wcsftime' function. */
1357#undef HAVE_WCSFTIME
1358
Martin v. Löwis92fab752008-03-08 10:40:41 +00001359/* Define to 1 if you have the `wcsxfrm' function. */
1360#undef HAVE_WCSXFRM
1361
Victor Stinnercd777ea2013-04-08 22:43:44 +02001362/* Define to 1 if you have the `wmemcmp' function. */
1363#undef HAVE_WMEMCMP
1364
Guido van Rossumd11b62e2003-03-14 21:51:36 +00001365/* Define if tzset() actually switches the local timezone in a meaningful way.
1366 */
1367#undef HAVE_WORKING_TZSET
1368
Ross Lagerwall7807c352011-03-17 20:20:30 +02001369/* Define to 1 if you have the `writev' function. */
1370#undef HAVE_WRITEV
1371
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001372/* Define if the zlib library has inflateCopy */
1373#undef HAVE_ZLIB_COPY
1374
Martin v. Löwis11437992002-04-12 09:54:03 +00001375/* Define to 1 if you have the `_getpty' function. */
1376#undef HAVE__GETPTY
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001377
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00001378/* Define to 1 if `major', `minor', and `makedev' are declared in <mkdev.h>.
1379 */
1380#undef MAJOR_IN_MKDEV
1381
1382/* Define to 1 if `major', `minor', and `makedev' are declared in
1383 <sysmacros.h>. */
1384#undef MAJOR_IN_SYSMACROS
1385
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001386/* Define if mvwdelch in curses.h is an expression. */
1387#undef MVWDELCH_IS_EXPRESSION
1388
Martin v. Löwis11437992002-04-12 09:54:03 +00001389/* Define to the address where bug reports for this package should be sent. */
1390#undef PACKAGE_BUGREPORT
1391
1392/* Define to the full name of this package. */
1393#undef PACKAGE_NAME
1394
1395/* Define to the full name and version of this package. */
1396#undef PACKAGE_STRING
1397
1398/* Define to the one symbol short name of this package. */
1399#undef PACKAGE_TARNAME
1400
Matthias Kloseb9621712010-04-24 17:59:49 +00001401/* Define to the home page for this package. */
1402#undef PACKAGE_URL
1403
Martin v. Löwis11437992002-04-12 09:54:03 +00001404/* Define to the version of this package. */
1405#undef PACKAGE_VERSION
1406
Mark Dickinsona614f042009-11-28 12:48:43 +00001407/* Define if POSIX semaphores aren't enabled on your system */
1408#undef POSIX_SEMAPHORES_NOT_ENABLED
1409
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001410/* Define if pthread_key_t is compatible with int. */
1411#undef PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT
1412
Martin v. Löwis11437992002-04-12 09:54:03 +00001413/* Defined if PTHREAD_SCOPE_SYSTEM supported. */
1414#undef PTHREAD_SYSTEM_SCHED_SUPPORTED
1415
Mark Dickinsonbd792642009-03-18 20:06:12 +00001416/* Define as the preferred size in bits of long digits */
1417#undef PYLONG_BITS_IN_DIGIT
1418
Christian Heimes9b60e552020-05-15 23:54:53 +02001419/* enabled builtin hash modules */
1420#undef PY_BUILTIN_HASHLIB_HASHES
1421
Nick Coghlan6ea41862017-06-11 13:16:15 +10001422/* Define if you want to coerce the C locale to a UTF-8 based locale */
1423#undef PY_COERCE_C_LOCALE
1424
Thomas Wouters477c8d52006-05-27 19:21:47 +00001425/* Define to printf format modifier for Py_ssize_t */
1426#undef PY_FORMAT_SIZE_T
1427
Christian Heimes892d66e2018-01-29 14:10:18 +01001428/* Default cipher suites list for ssl module. 1: Python's preferred selection,
1429 2: leave OpenSSL defaults untouched, 0: custom string */
1430#undef PY_SSL_DEFAULT_CIPHERS
1431
1432/* Cipher suite string for PY_SSL_DEFAULT_CIPHERS=0 */
1433#undef PY_SSL_DEFAULT_CIPHER_STRING
1434
Martin v. Löwis11437992002-04-12 09:54:03 +00001435/* Define if you want to build an interpreter with many run-time checks. */
1436#undef Py_DEBUG
1437
Mark Hammond8235ea12002-07-19 06:55:41 +00001438/* Defined if Python is built as a shared library. */
1439#undef Py_ENABLE_SHARED
1440
Christian Heimes985ecdc2013-11-20 11:46:18 +01001441/* Define hash algorithm for str, bytes and memoryview. SipHash24: 1, FNV: 2,
1442 externally defined: 0 */
1443#undef Py_HASH_ALGORITHM
1444
Victor Stinnerf4e47032019-04-25 00:56:28 +02001445/* Define if you want to enable tracing references for debugging purpose */
1446#undef Py_TRACE_REFS
1447
Matthias Klosebada4c32010-04-25 21:18:48 +00001448/* assume C89 semantics that RETSIGTYPE is always void */
Martin v. Löwis11437992002-04-12 09:54:03 +00001449#undef RETSIGTYPE
1450
1451/* Define if setpgrp() must be called as setpgrp(0, 0). */
1452#undef SETPGRP_HAVE_ARG
1453
Benjamin Petersonb84df2d2019-02-25 21:37:59 -08001454/* Define to 1 if you must link with -lrt for shm_open(). */
1455#undef SHM_NEEDS_LIBRT
1456
Martin v. Löwis11437992002-04-12 09:54:03 +00001457/* Define if i>>j for signed int i does not extend the sign bit when i < 0 */
1458#undef SIGNED_RIGHT_SHIFT_ZERO_FILLS
1459
Guido van Rossum806c2462007-08-06 23:33:07 +00001460/* The size of `double', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001461#undef SIZEOF_DOUBLE
1462
Guido van Rossum806c2462007-08-06 23:33:07 +00001463/* The size of `float', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001464#undef SIZEOF_FLOAT
1465
Guido van Rossum806c2462007-08-06 23:33:07 +00001466/* The size of `fpos_t', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001467#undef SIZEOF_FPOS_T
1468
Guido van Rossum806c2462007-08-06 23:33:07 +00001469/* The size of `int', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001470#undef SIZEOF_INT
1471
Guido van Rossum806c2462007-08-06 23:33:07 +00001472/* The size of `long', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001473#undef SIZEOF_LONG
1474
Travis E. Oliphant9b307842007-10-12 22:06:37 +00001475/* The size of `long double', as computed by sizeof. */
1476#undef SIZEOF_LONG_DOUBLE
1477
Guido van Rossum806c2462007-08-06 23:33:07 +00001478/* The size of `long long', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001479#undef SIZEOF_LONG_LONG
1480
Alexandre Vassalottib0a61d72009-07-17 23:19:37 +00001481/* The size of `off_t', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001482#undef SIZEOF_OFF_T
1483
Christian Heimes400adb02008-02-01 08:12:03 +00001484/* The size of `pid_t', as computed by sizeof. */
1485#undef SIZEOF_PID_T
1486
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001487/* The size of `pthread_key_t', as computed by sizeof. */
1488#undef SIZEOF_PTHREAD_KEY_T
1489
Alexandre Vassalottib0a61d72009-07-17 23:19:37 +00001490/* The size of `pthread_t', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001491#undef SIZEOF_PTHREAD_T
1492
Guido van Rossum806c2462007-08-06 23:33:07 +00001493/* The size of `short', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001494#undef SIZEOF_SHORT
1495
Guido van Rossum806c2462007-08-06 23:33:07 +00001496/* The size of `size_t', as computed by sizeof. */
Martin v. Löwis18e16552006-02-15 17:27:45 +00001497#undef SIZEOF_SIZE_T
1498
Alexandre Vassalottib0a61d72009-07-17 23:19:37 +00001499/* The size of `time_t', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001500#undef SIZEOF_TIME_T
1501
Benjamin Petersondf6ff7b2016-09-06 13:53:14 -07001502/* The size of `uintptr_t', as computed by sizeof. */
1503#undef SIZEOF_UINTPTR_T
1504
Guido van Rossum806c2462007-08-06 23:33:07 +00001505/* The size of `void *', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001506#undef SIZEOF_VOID_P
1507
Guido van Rossum806c2462007-08-06 23:33:07 +00001508/* The size of `wchar_t', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001509#undef SIZEOF_WCHAR_T
1510
Guido van Rossum806c2462007-08-06 23:33:07 +00001511/* The size of `_Bool', as computed by sizeof. */
Thomas Woutersb2137042007-02-01 18:02:27 +00001512#undef SIZEOF__BOOL
1513
Martin v. Löwis11437992002-04-12 09:54:03 +00001514/* Define to 1 if you have the ANSI C header files. */
1515#undef STDC_HEADERS
1516
1517/* Define if you can safely include both <sys/select.h> and <sys/time.h>
1518 (which you can't on SCO ODT 3.0). */
1519#undef SYS_SELECT_WITH_SYS_TIME
1520
Łukasz Langa2563dd22021-09-15 20:34:57 +02001521/* Custom thread stack size depending on chosen sanitizer runtimes. */
1522#undef THREAD_STACK_SIZE
1523
Victor Stinnere0be4232011-10-25 13:06:09 +02001524/* Library needed by timemodule.c: librt may be needed for clock_gettime() */
1525#undef TIMEMODULE_LIB
1526
Martin v. Löwis11437992002-04-12 09:54:03 +00001527/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
1528#undef TIME_WITH_SYS_TIME
1529
1530/* Define to 1 if your <sys/time.h> declares `struct tm'. */
1531#undef TM_IN_SYS_TIME
1532
Benjamin Petersond7f73e92010-09-05 00:09:07 +00001533/* Define if you want to use computed gotos in ceval.c. */
Antoine Pitroub52ec782009-01-25 16:34:23 +00001534#undef USE_COMPUTED_GOTOS
1535
Matthias Kloseb9621712010-04-24 17:59:49 +00001536/* Enable extensions on AIX 3, Interix. */
1537#ifndef _ALL_SOURCE
1538# undef _ALL_SOURCE
1539#endif
1540/* Enable GNU extensions on systems that have them. */
1541#ifndef _GNU_SOURCE
1542# undef _GNU_SOURCE
1543#endif
1544/* Enable threading extensions on Solaris. */
1545#ifndef _POSIX_PTHREAD_SEMANTICS
1546# undef _POSIX_PTHREAD_SEMANTICS
1547#endif
1548/* Enable extensions on HP NonStop. */
1549#ifndef _TANDEM_SOURCE
1550# undef _TANDEM_SOURCE
1551#endif
1552/* Enable general extensions on Solaris. */
1553#ifndef __EXTENSIONS__
1554# undef __EXTENSIONS__
1555#endif
1556
1557
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001558/* Define if WINDOW in curses.h offers a field _flags. */
1559#undef WINDOW_HAS_FLAGS
1560
Stefan Krah815280e2020-02-29 19:43:42 +01001561/* Define if you want build the _decimal module using a coroutine-local rather
1562 than a thread-local context */
1563#undef WITH_DECIMAL_CONTEXTVAR
1564
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +00001565/* Define if you want documentation strings in extension modules */
1566#undef WITH_DOC_STRINGS
1567
Łukasz Langaa785c872016-09-09 17:37:37 -07001568/* Define if you want to compile in DTrace support */
1569#undef WITH_DTRACE
1570
Martin v. Löwis11437992002-04-12 09:54:03 +00001571/* Define if you want to use the new-style (Openstep, Rhapsody, MacOS) dynamic
1572 linker (dyld) instead of the old-style (NextStep) dynamic linker (rld).
1573 Dyld is necessary to support frameworks. */
1574#undef WITH_DYLD
1575
Roland Hiebere1f77692021-02-09 02:05:25 +01001576/* Define to build the readline module against Editline. */
1577#undef WITH_EDITLINE
1578
Martin v. Löwis19d17342003-06-14 21:03:05 +00001579/* Define to 1 if libintl is needed for locale functions. */
1580#undef WITH_LIBINTL
1581
Martin v. Löwis11437992002-04-12 09:54:03 +00001582/* Define if you want to produce an OpenStep/Rhapsody framework (shared
1583 library plus accessory files). */
1584#undef WITH_NEXT_FRAMEWORK
1585
1586/* Define if you want to compile in Python-specific mallocs */
1587#undef WITH_PYMALLOC
1588
Benjamin Peterson05159c42009-12-03 03:01:27 +00001589/* Define if you want pymalloc to be disabled when running under valgrind */
1590#undef WITH_VALGRIND
1591
Matthias Kloseb9621712010-04-24 17:59:49 +00001592/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
1593 significant byte first (like Motorola and SPARC, unlike Intel). */
1594#if defined AC_APPLE_UNIVERSAL_BUILD
1595# if defined __BIG_ENDIAN__
1596# define WORDS_BIGENDIAN 1
1597# endif
1598#else
1599# ifndef WORDS_BIGENDIAN
1600# undef WORDS_BIGENDIAN
1601# endif
1602#endif
Martin v. Löwis11437992002-04-12 09:54:03 +00001603
Mark Dickinson3dc7c6a2009-01-04 15:09:02 +00001604/* Define if arithmetic is subject to x87-style double rounding issue */
1605#undef X87_DOUBLE_ROUNDING
1606
Guido van Rossum806c2462007-08-06 23:33:07 +00001607/* Define on OpenBSD to activate all library features */
1608#undef _BSD_SOURCE
1609
Georg Brandlfcaf9102008-07-16 02:17:56 +00001610/* Define on Darwin to activate all library features */
1611#undef _DARWIN_C_SOURCE
1612
Martin v. Löwis11437992002-04-12 09:54:03 +00001613/* This must be set to 64 on some systems to enable large file support. */
1614#undef _FILE_OFFSET_BITS
1615
Martin v. Löwis6f18a3c2002-07-20 08:51:52 +00001616/* Define on Linux to activate all library features */
1617#undef _GNU_SOURCE
1618
Christian Heimes647cd872013-12-07 23:39:33 +01001619/* Define to include mbstate_t for mbrtowc */
1620#undef _INCLUDE__STDC_A1_SOURCE
1621
Martin v. Löwis11437992002-04-12 09:54:03 +00001622/* This must be defined on some systems to enable large file support. */
1623#undef _LARGEFILE_SOURCE
1624
Benjamin Peterson83a0efd2011-02-25 14:01:05 +00001625/* This must be defined on AIX systems to enable large file support. */
1626#undef _LARGE_FILES
1627
Matthias Kloseb9621712010-04-24 17:59:49 +00001628/* Define to 1 if on MINIX. */
1629#undef _MINIX
1630
Martin v. Löwisbcd93962003-05-03 10:32:18 +00001631/* Define on NetBSD to activate all library features */
1632#undef _NETBSD_SOURCE
1633
Matthias Kloseb9621712010-04-24 17:59:49 +00001634/* Define to 2 if the system does not provide POSIX.1 features except with
1635 this defined. */
1636#undef _POSIX_1_SOURCE
1637
Benjamin Petersonb77fe172011-09-13 17:20:47 -04001638/* Define to activate features from IEEE Stds 1003.1-2008 */
Martin v. Löwise4826582002-10-26 13:33:00 +00001639#undef _POSIX_C_SOURCE
1640
Matthias Kloseb9621712010-04-24 17:59:49 +00001641/* Define to 1 if you need to in order for `stat' and other things to work. */
1642#undef _POSIX_SOURCE
1643
Martin v. Löwis11437992002-04-12 09:54:03 +00001644/* Define if you have POSIX threads, and your system does not define that. */
1645#undef _POSIX_THREADS
1646
INADA Naoki6b42eb12017-06-29 15:31:38 +09001647/* framework name */
1648#undef _PYTHONFRAMEWORK
1649
Martin v. Löwis11437992002-04-12 09:54:03 +00001650/* Define to force use of thread-safe errno, h_errno, and other functions */
1651#undef _REENTRANT
1652
Martin v. Löwis678fc1e2002-11-12 06:04:39 +00001653/* Define to the level of X/Open that your system supports */
1654#undef _XOPEN_SOURCE
Martin v. Löwis6f18a3c2002-07-20 08:51:52 +00001655
Martin v. Löwise4826582002-10-26 13:33:00 +00001656/* Define to activate Unix95-and-earlier features */
1657#undef _XOPEN_SOURCE_EXTENDED
1658
Jason Tishlerfac083d2003-07-22 15:20:49 +00001659/* Define on FreeBSD to activate all library features */
1660#undef __BSD_VISIBLE
1661
Martin v. Löwis11437992002-04-12 09:54:03 +00001662/* Define to 'long' if <time.h> doesn't define. */
1663#undef clock_t
1664
1665/* Define to empty if `const' does not conform to ANSI C. */
1666#undef const
1667
1668/* Define to `int' if <sys/types.h> doesn't define. */
1669#undef gid_t
1670
1671/* Define to `int' if <sys/types.h> does not define. */
1672#undef mode_t
1673
Guido van Rossum806c2462007-08-06 23:33:07 +00001674/* Define to `long int' if <sys/types.h> does not define. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001675#undef off_t
1676
1677/* Define to `int' if <sys/types.h> does not define. */
1678#undef pid_t
1679
1680/* Define to empty if the keyword does not work. */
1681#undef signed
1682
Guido van Rossum806c2462007-08-06 23:33:07 +00001683/* Define to `unsigned int' if <sys/types.h> does not define. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001684#undef size_t
1685
Martin v. Löwis01c04012002-11-11 14:58:44 +00001686/* Define to `int' if <sys/socket.h> does not define. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001687#undef socklen_t
1688
1689/* Define to `int' if <sys/types.h> doesn't define. */
1690#undef uid_t
1691
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001692
Martin v. Löwis28341ce2001-09-05 15:18:00 +00001693/* Define the macros needed if on a UnixWare 7.x system. */
1694#if defined(__USLC__) && defined(__SCO_VERSION__)
Martin v. Löwis28341ce2001-09-05 15:18:00 +00001695#define STRICT_SYSV_CURSES /* Don't use ncurses extensions */
1696#endif
1697
Martin v. Löwisbddf5a52002-11-11 13:37:28 +00001698#endif /*Py_PYCONFIG_H*/
1699