blob: 0020300873180c9512d0f64f949be45414e5e4b3 [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
Martin v. Löwis11437992002-04-12 09:54:03 +000011/* Define for AIX if your compiler is a genuine IBM xlC/xlC_r and you want
12 support for AIX C++ shared extension modules. */
13#undef AIX_GENUINE_CPLUSPLUS
Guido van Rossum91168a81994-01-03 03:59:44 +000014
Mark Dickinsonb08a53a2009-04-16 19:52:09 +000015/* Define if C doubles are 64-bit IEEE 754 binary format, stored in ARM
16 mixed-endian order (byte order 45670123) */
17#undef DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754
18
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
23/* Define if C doubles are 64-bit IEEE 754 binary format, stored with the
24 least significant byte first */
25#undef DOUBLE_IS_LITTLE_ENDIAN_IEEE754
26
Martin v. Löwis01dfdb32001-06-23 16:30:13 +000027/* Define if --enable-ipv6 is specified */
28#undef ENABLE_IPV6
29
Benjamin Petersond8d835b2010-10-15 23:14:46 +000030/* Define if flock needs to be linked with bsd library. */
Antoine Pitroua3000072010-09-07 14:52:42 +000031#undef FLOCK_NEEDS_LIBBSD
32
Martin v. Löwis11437992002-04-12 09:54:03 +000033/* Define if getpgrp() must be called as getpgrp(0). */
34#undef GETPGRP_HAVE_ARG
35
36/* Define if gettimeofday() does not have second (timezone) argument This is
37 the case on Motorola V4 (R40V4.2) */
38#undef GETTIMEOFDAY_NO_TZ
39
Antoine Pitroub1c54962010-10-14 15:05:38 +000040/* Define to 1 if you have the `accept4' function. */
41#undef HAVE_ACCEPT4
42
Christian Heimes9bd667a2008-01-20 15:14:11 +000043/* Define to 1 if you have the `acosh' function. */
44#undef HAVE_ACOSH
45
Martin v. Löwis11437992002-04-12 09:54:03 +000046/* struct addrinfo (netdb.h) */
47#undef HAVE_ADDRINFO
48
49/* Define to 1 if you have the `alarm' function. */
50#undef HAVE_ALARM
51
Christian Heimesf0400ba2013-06-18 13:22:17 +020052/* Define to 1 if you have the <alloca.h> header file. */
53#undef HAVE_ALLOCA_H
54
Martin v. Löwis11437992002-04-12 09:54:03 +000055/* Define this if your time.h defines altzone. */
56#undef HAVE_ALTZONE
57
Christian Heimes9bd667a2008-01-20 15:14:11 +000058/* Define to 1 if you have the `asinh' function. */
59#undef HAVE_ASINH
60
Martin v. Löwis11017b12006-01-14 18:12:57 +000061/* Define to 1 if you have the <asm/types.h> header file. */
62#undef HAVE_ASM_TYPES_H
63
Christian Heimes9bd667a2008-01-20 15:14:11 +000064/* Define to 1 if you have the `atanh' function. */
65#undef HAVE_ATANH
66
Thomas Wouters89f507f2006-12-13 04:49:30 +000067/* Define if GCC supports __attribute__((format(PyArg_ParseTuple, 2, 3))) */
68#undef HAVE_ATTRIBUTE_FORMAT_PARSETUPLE
69
Gustavo Niemeyer7bd33c52004-07-22 18:44:01 +000070/* Define to 1 if you have the `bind_textdomain_codeset' function. */
71#undef HAVE_BIND_TEXTDOMAIN_CODESET
72
Martin v. Löwis12af0482004-01-31 12:34:17 +000073/* Define to 1 if you have the <bluetooth/bluetooth.h> header file. */
74#undef HAVE_BLUETOOTH_BLUETOOTH_H
75
Hye-Shik Chang81268602004-02-02 06:05:24 +000076/* Define to 1 if you have the <bluetooth.h> header file. */
77#undef HAVE_BLUETOOTH_H
78
Mark Dickinson3dc7c6a2009-01-04 15:09:02 +000079/* Define if mbstowcs(NULL, "text", 0) does not return the number of wide
80 chars that would be converted. */
81#undef HAVE_BROKEN_MBSTOWCS
82
Martin v. Löwis11437992002-04-12 09:54:03 +000083/* Define if nice() returns success/failure instead of the new priority. */
84#undef HAVE_BROKEN_NICE
85
Benjamin Petersond8d835b2010-10-15 23:14:46 +000086/* Define if the system reports an invalid PIPE_BUF value. */
87#undef HAVE_BROKEN_PIPE_BUF
88
Nicholas Bastine62c5c82004-03-21 23:45:42 +000089/* Define if poll() sets errno on invalid file descriptors. */
90#undef HAVE_BROKEN_POLL
91
Martin v. Löwisdfc33fd2003-01-21 10:14:41 +000092/* Define if the Posix semaphores do not work on your system */
93#undef HAVE_BROKEN_POSIX_SEMAPHORES
94
Jason Tishlerfac083d2003-07-22 15:20:49 +000095/* Define if pthread_sigmask() does not work on your system. */
96#undef HAVE_BROKEN_PTHREAD_SIGMASK
97
Benjamin Peterson965ce872009-04-05 21:24:58 +000098/* define to 1 if your sem_getvalue is broken. */
99#undef HAVE_BROKEN_SEM_GETVALUE
100
Victor Stinner984890f2011-11-24 13:53:38 +0100101/* Define if `unsetenv` does not return an int. */
102#undef HAVE_BROKEN_UNSETENV
103
Thomas Woutersb2137042007-02-01 18:02:27 +0000104/* Define this if you have the type _Bool. */
105#undef HAVE_C99_BOOL
106
Ned Deily3eb67d52011-06-28 00:00:28 -0700107/* Define to 1 if you have the 'chflags' function. */
Thomas Wouterscf297e42007-02-23 15:07:44 +0000108#undef HAVE_CHFLAGS
109
Martin v. Löwis11437992002-04-12 09:54:03 +0000110/* Define to 1 if you have the `chown' function. */
111#undef HAVE_CHOWN
112
Martin v. Löwisc8ad7cc2002-11-11 13:23:45 +0000113/* Define if you have the 'chroot' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000114#undef HAVE_CHROOT
115
116/* Define to 1 if you have the `clock' function. */
117#undef HAVE_CLOCK
118
Victor Stinnere0be4232011-10-25 13:06:09 +0200119/* Define to 1 if you have the `clock_getres' function. */
120#undef HAVE_CLOCK_GETRES
121
122/* Define to 1 if you have the `clock_gettime' function. */
123#undef HAVE_CLOCK_GETTIME
124
Antoine Pitrou042b1282010-08-13 21:15:58 +0000125/* Define if the C compiler supports computed gotos. */
126#undef HAVE_COMPUTED_GOTOS
127
Martin v. Löwis11437992002-04-12 09:54:03 +0000128/* Define to 1 if you have the `confstr' function. */
129#undef HAVE_CONFSTR
130
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000131/* Define to 1 if you have the <conio.h> header file. */
132#undef HAVE_CONIO_H
133
Christian Heimes99170a52007-12-19 02:07:34 +0000134/* Define to 1 if you have the `copysign' function. */
135#undef HAVE_COPYSIGN
136
Martin v. Löwis11437992002-04-12 09:54:03 +0000137/* Define to 1 if you have the `ctermid' function. */
138#undef HAVE_CTERMID
139
Martin v. Löwisd5843682002-11-21 20:41:28 +0000140/* Define if you have the 'ctermid_r' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000141#undef HAVE_CTERMID_R
142
Martin v. Löwisae2830c2004-09-18 09:54:52 +0000143/* Define to 1 if you have the <curses.h> header file. */
144#undef HAVE_CURSES_H
145
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000146/* Define if you have the 'is_term_resized' function. */
147#undef HAVE_CURSES_IS_TERM_RESIZED
148
149/* Define if you have the 'resizeterm' function. */
150#undef HAVE_CURSES_RESIZETERM
151
152/* Define if you have the 'resize_term' function. */
153#undef HAVE_CURSES_RESIZE_TERM
154
Mark Dickinson3dc7c6a2009-01-04 15:09:02 +0000155/* Define to 1 if you have the declaration of `isfinite', and to 0 if you
156 don't. */
157#undef HAVE_DECL_ISFINITE
158
159/* Define to 1 if you have the declaration of `isinf', and to 0 if you don't.
160 */
161#undef HAVE_DECL_ISINF
162
163/* Define to 1 if you have the declaration of `isnan', and to 0 if you don't.
164 */
165#undef HAVE_DECL_ISNAN
166
Guido van Rossum806c2462007-08-06 23:33:07 +0000167/* Define to 1 if you have the declaration of `tzname', and to 0 if you don't.
168 */
169#undef HAVE_DECL_TZNAME
170
Martin v. Löwisdbe3f762002-10-10 14:27:30 +0000171/* Define to 1 if you have the device macros. */
172#undef HAVE_DEVICE_MACROS
173
doko@ubuntu.comb457b9b2012-06-30 19:28:16 +0200174/* Define to 1 if you have the /dev/ptc device file. */
Neal Norwitz865400f2003-03-21 01:42:58 +0000175#undef HAVE_DEV_PTC
176
doko@ubuntu.comb457b9b2012-06-30 19:28:16 +0200177/* Define to 1 if you have the /dev/ptmx device file. */
Martin v. Löwis24a880b2002-12-31 12:55:15 +0000178#undef HAVE_DEV_PTMX
179
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000180/* Define to 1 if you have the <direct.h> header file. */
181#undef HAVE_DIRECT_H
182
Martin v. Löwis11437992002-04-12 09:54:03 +0000183/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
184 */
185#undef HAVE_DIRENT_H
186
Gregory P. Smithdf300d52012-01-21 18:20:15 -0800187/* Define if you have the 'dirfd' function or macro. */
Gregory P. Smith41884412012-01-16 02:05:23 -0800188#undef HAVE_DIRFD
189
Martin v. Löwis11437992002-04-12 09:54:03 +0000190/* Define to 1 if you have the <dlfcn.h> header file. */
191#undef HAVE_DLFCN_H
192
193/* Define to 1 if you have the `dlopen' function. */
194#undef HAVE_DLOPEN
195
196/* Define to 1 if you have the `dup2' function. */
197#undef HAVE_DUP2
198
199/* Defined when any dynamic module loading is enabled. */
200#undef HAVE_DYNAMIC_LOADING
201
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000202/* Define if you have the 'epoll' functions. */
203#undef HAVE_EPOLL
204
Benjamin Peterson95c16622011-12-27 15:36:32 -0600205/* Define if you have the 'epoll_create1' function. */
206#undef HAVE_EPOLL_CREATE1
207
Mark Dickinson9c113362009-09-05 10:36:23 +0000208/* Define to 1 if you have the `erf' function. */
209#undef HAVE_ERF
210
211/* Define to 1 if you have the `erfc' function. */
212#undef HAVE_ERFC
213
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000214/* Define to 1 if you have the <errno.h> header file. */
215#undef HAVE_ERRNO_H
216
Martin v. Löwis11437992002-04-12 09:54:03 +0000217/* Define to 1 if you have the `execv' function. */
218#undef HAVE_EXECV
219
Christian Heimes9bd667a2008-01-20 15:14:11 +0000220/* Define to 1 if you have the `expm1' function. */
221#undef HAVE_EXPM1
222
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000223/* Define to 1 if you have the `faccessat' function. */
224#undef HAVE_FACCESSAT
225
Martin v. Löwisa64988c2003-09-20 15:30:20 +0000226/* Define if you have the 'fchdir' function. */
Fred Drake6b3cc522002-04-15 19:20:27 +0000227#undef HAVE_FCHDIR
228
Christian Heimes4e30a842007-11-30 22:12:06 +0000229/* Define to 1 if you have the `fchmod' function. */
230#undef HAVE_FCHMOD
231
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000232/* Define to 1 if you have the `fchmodat' function. */
233#undef HAVE_FCHMODAT
234
Christian Heimes4e30a842007-11-30 22:12:06 +0000235/* Define to 1 if you have the `fchown' function. */
236#undef HAVE_FCHOWN
237
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000238/* Define to 1 if you have the `fchownat' function. */
239#undef HAVE_FCHOWNAT
240
Martin v. Löwis11437992002-04-12 09:54:03 +0000241/* Define to 1 if you have the <fcntl.h> header file. */
242#undef HAVE_FCNTL_H
243
Martin v. Löwisa64988c2003-09-20 15:30:20 +0000244/* Define if you have the 'fdatasync' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000245#undef HAVE_FDATASYNC
246
Antoine Pitrou8250e232011-02-25 23:41:16 +0000247/* Define to 1 if you have the `fdopendir' function. */
248#undef HAVE_FDOPENDIR
249
Ross Lagerwall7807c352011-03-17 20:20:30 +0200250/* Define to 1 if you have the `fexecve' function. */
251#undef HAVE_FEXECVE
252
Christian Heimes9bd667a2008-01-20 15:14:11 +0000253/* Define to 1 if you have the `finite' function. */
254#undef HAVE_FINITE
255
Benjamin Petersond8d835b2010-10-15 23:14:46 +0000256/* Define to 1 if you have the `flock' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000257#undef HAVE_FLOCK
258
259/* Define to 1 if you have the `fork' function. */
260#undef HAVE_FORK
261
262/* Define to 1 if you have the `forkpty' function. */
263#undef HAVE_FORKPTY
264
265/* Define to 1 if you have the `fpathconf' function. */
266#undef HAVE_FPATHCONF
267
268/* Define to 1 if you have the `fseek64' function. */
269#undef HAVE_FSEEK64
270
271/* Define to 1 if you have the `fseeko' function. */
272#undef HAVE_FSEEKO
273
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000274/* Define to 1 if you have the `fstatat' function. */
275#undef HAVE_FSTATAT
276
Martin v. Löwis11437992002-04-12 09:54:03 +0000277/* Define to 1 if you have the `fstatvfs' function. */
278#undef HAVE_FSTATVFS
279
Martin v. Löwis49ee14d2003-11-10 06:35:36 +0000280/* Define if you have the 'fsync' function. */
281#undef HAVE_FSYNC
282
Martin v. Löwis11437992002-04-12 09:54:03 +0000283/* Define to 1 if you have the `ftell64' function. */
284#undef HAVE_FTELL64
285
286/* Define to 1 if you have the `ftello' function. */
287#undef HAVE_FTELLO
288
289/* Define to 1 if you have the `ftime' function. */
290#undef HAVE_FTIME
291
292/* Define to 1 if you have the `ftruncate' function. */
293#undef HAVE_FTRUNCATE
294
Ross Lagerwall7807c352011-03-17 20:20:30 +0200295/* Define to 1 if you have the `futimens' function. */
296#undef HAVE_FUTIMENS
297
298/* Define to 1 if you have the `futimes' function. */
299#undef HAVE_FUTIMES
300
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000301/* Define to 1 if you have the `futimesat' function. */
302#undef HAVE_FUTIMESAT
303
Martin v. Löwis11437992002-04-12 09:54:03 +0000304/* Define to 1 if you have the `gai_strerror' function. */
305#undef HAVE_GAI_STRERROR
306
Mark Dickinson9c113362009-09-05 10:36:23 +0000307/* Define to 1 if you have the `gamma' function. */
308#undef HAVE_GAMMA
309
Stefan Krah1919b7e2012-03-21 18:25:23 +0100310/* Define if we can use x64 gcc inline assembler */
311#undef HAVE_GCC_ASM_FOR_X64
312
Mark Dickinsonb08a53a2009-04-16 19:52:09 +0000313/* Define if we can use gcc inline assembler to get and set x87 control word
314 */
315#undef HAVE_GCC_ASM_FOR_X87
316
Stefan Krah1919b7e2012-03-21 18:25:23 +0100317/* Define if your compiler provides __uint128_t */
318#undef HAVE_GCC_UINT128_T
319
Martin v. Löwis11437992002-04-12 09:54:03 +0000320/* Define if you have the getaddrinfo function. */
321#undef HAVE_GETADDRINFO
322
323/* Define to 1 if you have the `getcwd' function. */
324#undef HAVE_GETCWD
325
326/* Define this if you have flockfile(), getc_unlocked(), and funlockfile() */
327#undef HAVE_GETC_UNLOCKED
328
Ross Lagerwallb0ae53d2011-06-10 07:30:30 +0200329/* Define to 1 if you have the `getgrouplist' function. */
330#undef HAVE_GETGROUPLIST
331
Martin v. Löwis11437992002-04-12 09:54:03 +0000332/* Define to 1 if you have the `getgroups' function. */
333#undef HAVE_GETGROUPS
334
335/* Define to 1 if you have the `gethostbyname' function. */
336#undef HAVE_GETHOSTBYNAME
337
Guido van Rossum7152e9b1999-03-22 21:46:06 +0000338/* Define this if you have some version of gethostbyname_r() */
339#undef HAVE_GETHOSTBYNAME_R
340
Martin v. Löwis11437992002-04-12 09:54:03 +0000341/* Define this if you have the 3-arg version of gethostbyname_r(). */
342#undef HAVE_GETHOSTBYNAME_R_3_ARG
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +0000343
Martin v. Löwis11437992002-04-12 09:54:03 +0000344/* Define this if you have the 5-arg version of gethostbyname_r(). */
345#undef HAVE_GETHOSTBYNAME_R_5_ARG
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +0000346
Martin v. Löwis11437992002-04-12 09:54:03 +0000347/* Define this if you have the 6-arg version of gethostbyname_r(). */
348#undef HAVE_GETHOSTBYNAME_R_6_ARG
Guido van Rossum9caf77a1996-08-01 00:52:26 +0000349
Martin v. Löwis823725e2008-03-24 13:39:54 +0000350/* Define to 1 if you have the `getitimer' function. */
351#undef HAVE_GETITIMER
352
Martin v. Löwis438b5342002-12-27 10:16:42 +0000353/* Define to 1 if you have the `getloadavg' function. */
354#undef HAVE_GETLOADAVG
355
Martin v. Löwis11437992002-04-12 09:54:03 +0000356/* Define to 1 if you have the `getlogin' function. */
Fred Drake3bb3e571999-12-14 20:48:17 +0000357#undef HAVE_GETLOGIN
358
Martin v. Löwis11437992002-04-12 09:54:03 +0000359/* Define to 1 if you have the `getnameinfo' function. */
Martin v. Löwis01dfdb32001-06-23 16:30:13 +0000360#undef HAVE_GETNAMEINFO
361
Martin v. Löwisf26d63b2003-03-30 17:23:49 +0000362/* Define if you have the 'getpagesize' function. */
363#undef HAVE_GETPAGESIZE
364
Martin v. Löwis11437992002-04-12 09:54:03 +0000365/* Define to 1 if you have the `getpeername' function. */
Fred Drakef581db11999-12-14 21:11:47 +0000366#undef HAVE_GETPEERNAME
Fred Drake3bb3e571999-12-14 20:48:17 +0000367
Martin v. Löwis606edc12002-06-13 21:09:11 +0000368/* Define to 1 if you have the `getpgid' function. */
369#undef HAVE_GETPGID
370
Martin v. Löwis11437992002-04-12 09:54:03 +0000371/* Define to 1 if you have the `getpgrp' function. */
Guido van Rossum61fe8611994-01-03 14:56:37 +0000372#undef HAVE_GETPGRP
373
Martin v. Löwis11437992002-04-12 09:54:03 +0000374/* Define to 1 if you have the `getpid' function. */
Guido van Rossumf1328521994-05-03 14:43:56 +0000375#undef HAVE_GETPID
376
Martin v. Löwis11437992002-04-12 09:54:03 +0000377/* Define to 1 if you have the `getpriority' function. */
Thomas Woutersc2c12dc2001-07-11 14:45:34 +0000378#undef HAVE_GETPRIORITY
Guido van Rossum353ae582001-07-10 16:45:32 +0000379
Martin v. Löwis11437992002-04-12 09:54:03 +0000380/* Define to 1 if you have the `getpwent' function. */
Guido van Rossum1171ee61997-08-22 20:42:00 +0000381#undef HAVE_GETPWENT
382
Martin v. Löwis7aed61a2009-11-27 14:09:49 +0000383/* Define to 1 if you have the `getresgid' function. */
384#undef HAVE_GETRESGID
385
386/* Define to 1 if you have the `getresuid' function. */
387#undef HAVE_GETRESUID
388
Martin v. Löwis49ee14d2003-11-10 06:35:36 +0000389/* Define to 1 if you have the `getsid' function. */
390#undef HAVE_GETSID
391
Martin v. Löwisc3001752005-01-23 09:27:24 +0000392/* Define to 1 if you have the `getspent' function. */
393#undef HAVE_GETSPENT
394
395/* Define to 1 if you have the `getspnam' function. */
396#undef HAVE_GETSPNAM
397
Martin v. Löwis11437992002-04-12 09:54:03 +0000398/* Define to 1 if you have the `gettimeofday' function. */
Guido van Rossum61fe8611994-01-03 14:56:37 +0000399#undef HAVE_GETTIMEOFDAY
400
Martin v. Löwis11437992002-04-12 09:54:03 +0000401/* Define to 1 if you have the `getwd' function. */
Guido van Rossum61fe8611994-01-03 14:56:37 +0000402#undef HAVE_GETWD
403
Stefan Krah1919b7e2012-03-21 18:25:23 +0100404/* Define if glibc has incorrect _FORTIFY_SOURCE wrappers for memmove and
405 bcopy. */
406#undef HAVE_GLIBC_MEMMOVE_BUG
407
Martin v. Löwis11437992002-04-12 09:54:03 +0000408/* Define to 1 if you have the <grp.h> header file. */
Guido van Rossuma6535fd2001-10-18 19:44:10 +0000409#undef HAVE_GRP_H
410
Martin v. Löwise9416172003-05-03 10:12:45 +0000411/* Define if you have the 'hstrerror' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000412#undef HAVE_HSTRERROR
413
414/* Define to 1 if you have the `hypot' function. */
415#undef HAVE_HYPOT
416
Christian Heimesbbe741d2008-03-28 10:53:29 +0000417/* Define to 1 if you have the <ieeefp.h> header file. */
418#undef HAVE_IEEEFP_H
419
Gregory P. Smith5ed2e772011-05-15 00:26:45 -0700420/* Define to 1 if you have the `if_nameindex' function. */
421#undef HAVE_IF_NAMEINDEX
422
Martin v. Löwise9416172003-05-03 10:12:45 +0000423/* Define if you have the 'inet_aton' function. */
Neal Norwitz10b214c2003-02-13 02:11:10 +0000424#undef HAVE_INET_ATON
425
Martin v. Löwise9416172003-05-03 10:12:45 +0000426/* Define if you have the 'inet_pton' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000427#undef HAVE_INET_PTON
428
Benjamin Peterson05159c42009-12-03 03:01:27 +0000429/* Define to 1 if you have the `initgroups' function. */
430#undef HAVE_INITGROUPS
431
Mark Dickinsonce31f662012-12-02 13:20:22 +0000432/* Define if your compiler provides int32_t. */
433#undef HAVE_INT32_T
434
435/* Define if your compiler provides int64_t. */
436#undef HAVE_INT64_T
437
Martin v. Löwis11437992002-04-12 09:54:03 +0000438/* Define to 1 if you have the <inttypes.h> header file. */
439#undef HAVE_INTTYPES_H
440
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000441/* Define to 1 if you have the <io.h> header file. */
442#undef HAVE_IO_H
443
Stefan Krah1919b7e2012-03-21 18:25:23 +0100444/* Define if gcc has the ipa-pure-const bug. */
445#undef HAVE_IPA_PURE_CONST_BUG
446
Martin v. Löwis11437992002-04-12 09:54:03 +0000447/* Define to 1 if you have the `kill' function. */
448#undef HAVE_KILL
449
450/* Define to 1 if you have the `killpg' function. */
451#undef HAVE_KILLPG
452
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000453/* Define if you have the 'kqueue' functions. */
454#undef HAVE_KQUEUE
455
Martin v. Löwis11437992002-04-12 09:54:03 +0000456/* Define to 1 if you have the <langinfo.h> header file. */
Martin v. Löwis9b75dca2001-08-10 13:58:50 +0000457#undef HAVE_LANGINFO_H
458
Martin v. Löwis11437992002-04-12 09:54:03 +0000459/* Defined to enable large file support when an off_t is bigger than a long
460 and long long is available and at least as big as an off_t. You may need to
461 add some flags for configuration and compilation to enable this mode. (For
462 Solaris and Linux, the necessary defines are already defined.) */
463#undef HAVE_LARGEFILE_SUPPORT
Martin v. Löwis2e64c342002-03-27 18:49:02 +0000464
Ned Deily3eb67d52011-06-28 00:00:28 -0700465/* Define to 1 if you have the 'lchflags' function. */
Thomas Wouterscf297e42007-02-23 15:07:44 +0000466#undef HAVE_LCHFLAGS
467
Christian Heimes4e30a842007-11-30 22:12:06 +0000468/* Define to 1 if you have the `lchmod' function. */
469#undef HAVE_LCHMOD
470
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +0000471/* Define to 1 if you have the `lchown' function. */
472#undef HAVE_LCHOWN
473
Mark Dickinson9c113362009-09-05 10:36:23 +0000474/* Define to 1 if you have the `lgamma' function. */
475#undef HAVE_LGAMMA
476
Martin v. Löwis11437992002-04-12 09:54:03 +0000477/* Define to 1 if you have the `dl' library (-ldl). */
Guido van Rossum61fe8611994-01-03 14:56:37 +0000478#undef HAVE_LIBDL
479
Martin v. Löwis11437992002-04-12 09:54:03 +0000480/* Define to 1 if you have the `dld' library (-ldld). */
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000481#undef HAVE_LIBDLD
Guido van Rossumf1328521994-05-03 14:43:56 +0000482
Martin v. Löwis11437992002-04-12 09:54:03 +0000483/* Define to 1 if you have the `ieee' library (-lieee). */
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000484#undef HAVE_LIBIEEE
Guido van Rossumaef734b2001-01-10 21:09:12 +0000485
Martin v. Löwis11437992002-04-12 09:54:03 +0000486/* Define to 1 if you have the <libintl.h> header file. */
487#undef HAVE_LIBINTL_H
488
Mark Dickinson3dc7c6a2009-01-04 15:09:02 +0000489/* Define if you have the readline library (-lreadline). */
Neal Norwitzfe8e3d92006-01-07 21:07:20 +0000490#undef HAVE_LIBREADLINE
491
Martin v. Löwis95c419b2003-05-03 12:10:48 +0000492/* Define to 1 if you have the `resolv' library (-lresolv). */
493#undef HAVE_LIBRESOLV
494
Antoine Pitrou061cfb52011-02-28 22:25:22 +0000495/* Define to 1 if you have the `sendfile' library (-lsendfile). */
496#undef HAVE_LIBSENDFILE
497
Martin v. Löwis11437992002-04-12 09:54:03 +0000498/* Define to 1 if you have the <libutil.h> header file. */
499#undef HAVE_LIBUTIL_H
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000500
Martin v. Löwisc8ad7cc2002-11-11 13:23:45 +0000501/* Define if you have the 'link' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000502#undef HAVE_LINK
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000503
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000504/* Define to 1 if you have the `linkat' function. */
505#undef HAVE_LINKAT
506
Charles-François Natali47413c12011-10-06 19:47:44 +0200507/* Define to 1 if you have the <linux/can.h> header file. */
508#undef HAVE_LINUX_CAN_H
509
510/* Define to 1 if you have the <linux/can/raw.h> header file. */
511#undef HAVE_LINUX_CAN_RAW_H
512
Martin v. Löwis11017b12006-01-14 18:12:57 +0000513/* Define to 1 if you have the <linux/netlink.h> header file. */
514#undef HAVE_LINUX_NETLINK_H
515
Christian Heimes043d6f62008-01-07 17:19:16 +0000516/* Define to 1 if you have the <linux/tipc.h> header file. */
517#undef HAVE_LINUX_TIPC_H
518
Ross Lagerwall7807c352011-03-17 20:20:30 +0200519/* Define to 1 if you have the `lockf' function. */
520#undef HAVE_LOCKF
521
Christian Heimes9bd667a2008-01-20 15:14:11 +0000522/* Define to 1 if you have the `log1p' function. */
523#undef HAVE_LOG1P
524
Victor Stinner8f9f8d62011-05-09 12:45:41 +0200525/* Define to 1 if you have the `log2' function. */
526#undef HAVE_LOG2
527
Travis E. Oliphant9b307842007-10-12 22:06:37 +0000528/* Define this if you have the type long double. */
529#undef HAVE_LONG_DOUBLE
530
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000531/* Define this if you have the type long long. */
532#undef HAVE_LONG_LONG
533
Martin v. Löwis11437992002-04-12 09:54:03 +0000534/* Define to 1 if you have the `lstat' function. */
535#undef HAVE_LSTAT
536
Ross Lagerwall7807c352011-03-17 20:20:30 +0200537/* Define to 1 if you have the `lutimes' function. */
538#undef HAVE_LUTIMES
539
Neal Norwitz11690112002-07-30 01:08:28 +0000540/* Define this if you have the makedev macro. */
541#undef HAVE_MAKEDEV
542
Martin v. Löwis011e8422009-05-05 04:43:17 +0000543/* Define to 1 if you have the `mbrtowc' function. */
544#undef HAVE_MBRTOWC
545
Martin v. Löwis11437992002-04-12 09:54:03 +0000546/* Define to 1 if you have the `memmove' function. */
547#undef HAVE_MEMMOVE
548
549/* Define to 1 if you have the <memory.h> header file. */
550#undef HAVE_MEMORY_H
551
Antoine Pitrou2c3b2302011-10-11 20:29:21 +0200552/* Define to 1 if you have the `memrchr' function. */
553#undef HAVE_MEMRCHR
554
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000555/* Define to 1 if you have the `mkdirat' function. */
556#undef HAVE_MKDIRAT
557
Martin v. Löwis11437992002-04-12 09:54:03 +0000558/* Define to 1 if you have the `mkfifo' function. */
559#undef HAVE_MKFIFO
560
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000561/* Define to 1 if you have the `mkfifoat' function. */
562#undef HAVE_MKFIFOAT
563
Martin v. Löwis06a83e92002-04-14 10:19:44 +0000564/* Define to 1 if you have the `mknod' function. */
565#undef HAVE_MKNOD
566
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000567/* Define to 1 if you have the `mknodat' function. */
568#undef HAVE_MKNODAT
569
Martin v. Löwis11437992002-04-12 09:54:03 +0000570/* Define to 1 if you have the `mktime' function. */
571#undef HAVE_MKTIME
572
Antoine Pitrouf0effe62011-11-26 01:11:02 +0100573/* Define to 1 if you have the `mmap' function. */
574#undef HAVE_MMAP
575
Martin v. Löwis11437992002-04-12 09:54:03 +0000576/* Define to 1 if you have the `mremap' function. */
577#undef HAVE_MREMAP
578
579/* Define to 1 if you have the <ncurses.h> header file. */
580#undef HAVE_NCURSES_H
581
Martin v. Löwis11437992002-04-12 09:54:03 +0000582/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
583#undef HAVE_NDIR_H
584
585/* Define to 1 if you have the <netpacket/packet.h> header file. */
586#undef HAVE_NETPACKET_PACKET_H
587
Nadeem Vawdad74b5932011-05-15 13:16:22 +0200588/* Define to 1 if you have the <net/if.h> header file. */
589#undef HAVE_NET_IF_H
590
Martin v. Löwis11437992002-04-12 09:54:03 +0000591/* Define to 1 if you have the `nice' function. */
592#undef HAVE_NICE
593
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000594/* Define to 1 if you have the `openat' function. */
595#undef HAVE_OPENAT
596
Martin v. Löwis11437992002-04-12 09:54:03 +0000597/* Define to 1 if you have the `openpty' function. */
598#undef HAVE_OPENPTY
599
Georg Brandl93de2162008-07-16 02:21:06 +0000600/* Define if compiling using MacOS X 10.5 SDK or later. */
601#undef HAVE_OSX105_SDK
602
Martin v. Löwis11437992002-04-12 09:54:03 +0000603/* Define to 1 if you have the `pathconf' function. */
604#undef HAVE_PATHCONF
605
606/* Define to 1 if you have the `pause' function. */
607#undef HAVE_PAUSE
608
Charles-François Natalidaafdd52011-05-29 20:07:40 +0200609/* Define to 1 if you have the `pipe2' function. */
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000610#undef HAVE_PIPE2
611
Martin v. Löwis11437992002-04-12 09:54:03 +0000612/* Define to 1 if you have the `plock' function. */
613#undef HAVE_PLOCK
614
615/* Define to 1 if you have the `poll' function. */
616#undef HAVE_POLL
617
618/* Define to 1 if you have the <poll.h> header file. */
619#undef HAVE_POLL_H
620
Ross Lagerwall7807c352011-03-17 20:20:30 +0200621/* Define to 1 if you have the `posix_fadvise' function. */
622#undef HAVE_POSIX_FADVISE
623
624/* Define to 1 if you have the `posix_fallocate' function. */
625#undef HAVE_POSIX_FALLOCATE
626
627/* Define to 1 if you have the `pread' function. */
628#undef HAVE_PREAD
629
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000630/* Define to 1 if you have the <process.h> header file. */
631#undef HAVE_PROCESS_H
632
Martin v. Löwis11437992002-04-12 09:54:03 +0000633/* Define if your compiler supports function prototype */
634#undef HAVE_PROTOTYPES
635
Christian Heimesf77b4b22013-08-21 13:26:05 +0200636/* Define to 1 if you have the `pthread_atfork' function. */
637#undef HAVE_PTHREAD_ATFORK
638
Martin v. Löwisa7a76d32002-10-04 07:21:24 +0000639/* Defined for Solaris 2.6 bug in pthread header. */
640#undef HAVE_PTHREAD_DESTRUCTOR
641
Martin v. Löwis11437992002-04-12 09:54:03 +0000642/* Define to 1 if you have the <pthread.h> header file. */
643#undef HAVE_PTHREAD_H
644
645/* Define to 1 if you have the `pthread_init' function. */
646#undef HAVE_PTHREAD_INIT
647
Victor Stinnerb3e72192011-05-08 01:46:11 +0200648/* Define to 1 if you have the `pthread_kill' function. */
649#undef HAVE_PTHREAD_KILL
650
Benjamin Peterson316e02b2011-05-10 15:01:56 -0500651/* Define to 1 if you have the `pthread_sigmask' function. */
652#undef HAVE_PTHREAD_SIGMASK
653
Martin v. Löwis11437992002-04-12 09:54:03 +0000654/* Define to 1 if you have the <pty.h> header file. */
655#undef HAVE_PTY_H
656
657/* Define to 1 if you have the `putenv' function. */
658#undef HAVE_PUTENV
659
Ross Lagerwall7807c352011-03-17 20:20:30 +0200660/* Define to 1 if you have the `pwrite' function. */
661#undef HAVE_PWRITE
662
Martin v. Löwis11437992002-04-12 09:54:03 +0000663/* Define to 1 if you have the `readlink' function. */
664#undef HAVE_READLINK
665
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000666/* Define to 1 if you have the `readlinkat' function. */
667#undef HAVE_READLINKAT
668
Ross Lagerwall7807c352011-03-17 20:20:30 +0200669/* Define to 1 if you have the `readv' function. */
670#undef HAVE_READV
671
Guido van Rossum162e38c2003-02-19 15:25:10 +0000672/* Define to 1 if you have the `realpath' function. */
673#undef HAVE_REALPATH
674
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000675/* Define to 1 if you have the `renameat' function. */
676#undef HAVE_RENAMEAT
677
Michael W. Hudson30ea2f22004-07-07 17:44:12 +0000678/* Define if you have readline 2.1 */
679#undef HAVE_RL_CALLBACK
680
681/* Define if you can turn off readline's signal handling. */
682#undef HAVE_RL_CATCH_SIGNAL
683
Guido van Rossumfaf5e4d2002-12-30 16:25:41 +0000684/* Define if you have readline 2.2 */
685#undef HAVE_RL_COMPLETION_APPEND_CHARACTER
686
Thomas Wouters89d996e2007-09-08 17:39:28 +0000687/* Define if you have readline 4.0 */
688#undef HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK
689
Martin v. Löwis11437992002-04-12 09:54:03 +0000690/* Define if you have readline 4.2 */
691#undef HAVE_RL_COMPLETION_MATCHES
692
Antoine Pitroud5131772009-10-26 19:22:14 +0000693/* Define if you have rl_completion_suppress_append */
694#undef HAVE_RL_COMPLETION_SUPPRESS_APPEND
695
Martin v. Löwis11437992002-04-12 09:54:03 +0000696/* Define if you have readline 4.0 */
697#undef HAVE_RL_PRE_INPUT_HOOK
698
Mark Dickinsonf2537862009-04-18 13:58:18 +0000699/* Define to 1 if you have the `round' function. */
700#undef HAVE_ROUND
701
Charles-François Nataliea0d5fc2011-09-06 19:03:35 +0200702/* Define to 1 if you have the `sched_get_priority_max' function. */
703#undef HAVE_SCHED_GET_PRIORITY_MAX
704
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500705/* Define to 1 if you have the <sched.h> header file. */
706#undef HAVE_SCHED_H
707
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -0500708/* Define to 1 if you have the `sched_rr_get_interval' function. */
709#undef HAVE_SCHED_RR_GET_INTERVAL
710
Benjamin Peterson2740af82011-08-02 17:41:34 -0500711/* Define to 1 if you have the `sched_setaffinity' function. */
712#undef HAVE_SCHED_SETAFFINITY
713
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -0500714/* Define to 1 if you have the `sched_setparam' function. */
715#undef HAVE_SCHED_SETPARAM
716
717/* Define to 1 if you have the `sched_setscheduler' function. */
718#undef HAVE_SCHED_SETSCHEDULER
719
Martin v. Löwis11437992002-04-12 09:54:03 +0000720/* Define to 1 if you have the `select' function. */
721#undef HAVE_SELECT
722
Benjamin Peterson965ce872009-04-05 21:24:58 +0000723/* Define to 1 if you have the `sem_getvalue' function. */
724#undef HAVE_SEM_GETVALUE
725
726/* Define to 1 if you have the `sem_open' function. */
727#undef HAVE_SEM_OPEN
728
729/* Define to 1 if you have the `sem_timedwait' function. */
730#undef HAVE_SEM_TIMEDWAIT
731
732/* Define to 1 if you have the `sem_unlink' function. */
733#undef HAVE_SEM_UNLINK
734
Antoine Pitrou061cfb52011-02-28 22:25:22 +0000735/* Define to 1 if you have the `sendfile' function. */
736#undef HAVE_SENDFILE
737
Martin v. Löwis11437992002-04-12 09:54:03 +0000738/* Define to 1 if you have the `setegid' function. */
739#undef HAVE_SETEGID
740
741/* Define to 1 if you have the `seteuid' function. */
742#undef HAVE_SETEUID
743
744/* Define to 1 if you have the `setgid' function. */
745#undef HAVE_SETGID
746
Martin v. Löwisd5843682002-11-21 20:41:28 +0000747/* Define if you have the 'setgroups' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000748#undef HAVE_SETGROUPS
749
Antoine Pitrou061cfb52011-02-28 22:25:22 +0000750/* Define to 1 if you have the `sethostname' function. */
751#undef HAVE_SETHOSTNAME
752
Martin v. Löwis823725e2008-03-24 13:39:54 +0000753/* Define to 1 if you have the `setitimer' function. */
754#undef HAVE_SETITIMER
755
Martin v. Löwis11437992002-04-12 09:54:03 +0000756/* Define to 1 if you have the `setlocale' function. */
757#undef HAVE_SETLOCALE
758
759/* Define to 1 if you have the `setpgid' function. */
760#undef HAVE_SETPGID
761
Martin v. Löwis4daacb12003-03-28 18:37:01 +0000762/* Define to 1 if you have the `setpgrp' function. */
763#undef HAVE_SETPGRP
764
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +0000765/* Define to 1 if you have the `setpriority' function. */
766#undef HAVE_SETPRIORITY
767
Martin v. Löwis11437992002-04-12 09:54:03 +0000768/* Define to 1 if you have the `setregid' function. */
769#undef HAVE_SETREGID
770
Martin v. Löwis7aed61a2009-11-27 14:09:49 +0000771/* Define to 1 if you have the `setresgid' function. */
772#undef HAVE_SETRESGID
773
774/* Define to 1 if you have the `setresuid' function. */
775#undef HAVE_SETRESUID
776
Martin v. Löwis11437992002-04-12 09:54:03 +0000777/* Define to 1 if you have the `setreuid' function. */
778#undef HAVE_SETREUID
779
780/* Define to 1 if you have the `setsid' function. */
781#undef HAVE_SETSID
782
783/* Define to 1 if you have the `setuid' function. */
784#undef HAVE_SETUID
785
786/* Define to 1 if you have the `setvbuf' function. */
787#undef HAVE_SETVBUF
788
Martin v. Löwisc3001752005-01-23 09:27:24 +0000789/* Define to 1 if you have the <shadow.h> header file. */
790#undef HAVE_SHADOW_H
791
Martin v. Löwis11437992002-04-12 09:54:03 +0000792/* Define to 1 if you have the `sigaction' function. */
793#undef HAVE_SIGACTION
794
Victor Stinner024e37a2011-03-31 01:31:06 +0200795/* Define to 1 if you have the `sigaltstack' function. */
796#undef HAVE_SIGALTSTACK
797
Martin v. Löwis11437992002-04-12 09:54:03 +0000798/* Define to 1 if you have the `siginterrupt' function. */
799#undef HAVE_SIGINTERRUPT
800
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000801/* Define to 1 if you have the <signal.h> header file. */
802#undef HAVE_SIGNAL_H
803
Benjamin Peterson316e02b2011-05-10 15:01:56 -0500804/* Define to 1 if you have the `sigpending' function. */
805#undef HAVE_SIGPENDING
806
Martin v. Löwis11437992002-04-12 09:54:03 +0000807/* Define to 1 if you have the `sigrelse' function. */
808#undef HAVE_SIGRELSE
809
Ross Lagerwallbc808222011-06-25 12:13:40 +0200810/* Define to 1 if you have the `sigtimedwait' function. */
811#undef HAVE_SIGTIMEDWAIT
812
Victor Stinnerb3e72192011-05-08 01:46:11 +0200813/* Define to 1 if you have the `sigwait' function. */
814#undef HAVE_SIGWAIT
815
Ross Lagerwallbc808222011-06-25 12:13:40 +0200816/* Define to 1 if you have the `sigwaitinfo' function. */
817#undef HAVE_SIGWAITINFO
818
Martin v. Löwis11437992002-04-12 09:54:03 +0000819/* Define to 1 if you have the `snprintf' function. */
820#undef HAVE_SNPRINTF
821
822/* Define if sockaddr has sa_len member */
823#undef HAVE_SOCKADDR_SA_LEN
824
825/* struct sockaddr_storage (sys/socket.h) */
826#undef HAVE_SOCKADDR_STORAGE
827
Martin v. Löwisd6320502004-08-12 13:45:08 +0000828/* Define if you have the 'socketpair' function. */
829#undef HAVE_SOCKETPAIR
830
Ronald Oussoren755740f2010-02-07 19:56:39 +0000831/* Define to 1 if you have the <spawn.h> header file. */
832#undef HAVE_SPAWN_H
833
Martin v. Löwis18e16552006-02-15 17:27:45 +0000834/* Define if your compiler provides ssize_t */
835#undef HAVE_SSIZE_T
836
Martin v. Löwis11437992002-04-12 09:54:03 +0000837/* Define to 1 if you have the `statvfs' function. */
838#undef HAVE_STATVFS
839
Martin v. Löwis94717ed2002-09-09 14:24:16 +0000840/* Define if you have struct stat.st_mtim.tv_nsec */
841#undef HAVE_STAT_TV_NSEC
842
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +0000843/* Define if you have struct stat.st_mtimensec */
844#undef HAVE_STAT_TV_NSEC2
845
Martin v. Löwis11437992002-04-12 09:54:03 +0000846/* Define if your compiler supports variable length function prototypes (e.g.
847 void fprintf(FILE *, char *, ...);) *and* <stdarg.h> */
848#undef HAVE_STDARG_PROTOTYPES
849
Martin v. Löwis11437992002-04-12 09:54:03 +0000850/* Define to 1 if you have the <stdint.h> header file. */
851#undef HAVE_STDINT_H
852
Nicholas Bastine62c5c82004-03-21 23:45:42 +0000853/* Define to 1 if you have the <stdlib.h> header file. */
854#undef HAVE_STDLIB_H
855
856/* Define to 1 if you have the `strdup' function. */
857#undef HAVE_STRDUP
858
Martin v. Löwis11437992002-04-12 09:54:03 +0000859/* Define to 1 if you have the `strftime' function. */
860#undef HAVE_STRFTIME
861
862/* Define to 1 if you have the <strings.h> header file. */
863#undef HAVE_STRINGS_H
864
Nicholas Bastine62c5c82004-03-21 23:45:42 +0000865/* Define to 1 if you have the <string.h> header file. */
866#undef HAVE_STRING_H
867
Gregory P. Smith6c357262007-09-03 16:44:06 +0000868/* Define to 1 if you have the `strlcpy' function. */
869#undef HAVE_STRLCPY
870
Martin v. Löwis14e73b12003-01-01 09:51:12 +0000871/* Define to 1 if you have the <stropts.h> header file. */
872#undef HAVE_STROPTS_H
873
Matthias Kloseb9621712010-04-24 17:59:49 +0000874/* Define to 1 if `st_birthtime' is a member of `struct stat'. */
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +0000875#undef HAVE_STRUCT_STAT_ST_BIRTHTIME
876
Matthias Kloseb9621712010-04-24 17:59:49 +0000877/* Define to 1 if `st_blksize' is a member of `struct stat'. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000878#undef HAVE_STRUCT_STAT_ST_BLKSIZE
879
Matthias Kloseb9621712010-04-24 17:59:49 +0000880/* Define to 1 if `st_blocks' is a member of `struct stat'. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000881#undef HAVE_STRUCT_STAT_ST_BLOCKS
882
Matthias Kloseb9621712010-04-24 17:59:49 +0000883/* Define to 1 if `st_flags' is a member of `struct stat'. */
Hye-Shik Chang5f937a72005-06-02 13:09:30 +0000884#undef HAVE_STRUCT_STAT_ST_FLAGS
885
Matthias Kloseb9621712010-04-24 17:59:49 +0000886/* Define to 1 if `st_gen' is a member of `struct stat'. */
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +0000887#undef HAVE_STRUCT_STAT_ST_GEN
888
Matthias Kloseb9621712010-04-24 17:59:49 +0000889/* Define to 1 if `st_rdev' is a member of `struct stat'. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000890#undef HAVE_STRUCT_STAT_ST_RDEV
891
Matthias Kloseb9621712010-04-24 17:59:49 +0000892/* Define to 1 if `tm_zone' is a member of `struct tm'. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000893#undef HAVE_STRUCT_TM_TM_ZONE
894
Martin v. Löwis11437992002-04-12 09:54:03 +0000895/* Define to 1 if your `struct stat' has `st_blocks'. Deprecated, use
896 `HAVE_STRUCT_STAT_ST_BLOCKS' instead. */
897#undef HAVE_ST_BLOCKS
898
Martin v. Löwisc8ad7cc2002-11-11 13:23:45 +0000899/* Define if you have the 'symlink' function. */
Martin v. Löwis11437992002-04-12 09:54:03 +0000900#undef HAVE_SYMLINK
901
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000902/* Define to 1 if you have the `symlinkat' function. */
903#undef HAVE_SYMLINKAT
904
Ross Lagerwall7807c352011-03-17 20:20:30 +0200905/* Define to 1 if you have the `sync' function. */
906#undef HAVE_SYNC
907
Martin v. Löwis11437992002-04-12 09:54:03 +0000908/* Define to 1 if you have the `sysconf' function. */
909#undef HAVE_SYSCONF
910
Barry Warsawfe33b792003-01-07 22:42:49 +0000911/* Define to 1 if you have the <sysexits.h> header file. */
912#undef HAVE_SYSEXITS_H
913
Martin v. Löwis11437992002-04-12 09:54:03 +0000914/* Define to 1 if you have the <sys/audioio.h> header file. */
915#undef HAVE_SYS_AUDIOIO_H
916
Neal Norwitz82251032003-05-23 14:35:24 +0000917/* Define to 1 if you have the <sys/bsdtty.h> header file. */
918#undef HAVE_SYS_BSDTTY_H
919
Jesus Cead8b9ae62011-11-14 19:07:41 +0100920/* Define to 1 if you have the <sys/devpoll.h> header file. */
921#undef HAVE_SYS_DEVPOLL_H
922
Martin v. Löwis11437992002-04-12 09:54:03 +0000923/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
924 */
925#undef HAVE_SYS_DIR_H
926
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000927/* Define to 1 if you have the <sys/epoll.h> header file. */
928#undef HAVE_SYS_EPOLL_H
929
930/* Define to 1 if you have the <sys/event.h> header file. */
931#undef HAVE_SYS_EVENT_H
932
Martin v. Löwis11437992002-04-12 09:54:03 +0000933/* Define to 1 if you have the <sys/file.h> header file. */
934#undef HAVE_SYS_FILE_H
935
Antoine Pitroubcf2b592012-02-08 23:28:36 +0100936/* Define to 1 if you have the <sys/ioctl.h> header file. */
937#undef HAVE_SYS_IOCTL_H
938
Martin v. Löwis9d6c6692012-02-03 17:44:58 +0100939/* Define to 1 if you have the <sys/kern_control.h> header file. */
940#undef HAVE_SYS_KERN_CONTROL_H
941
Anthony Baxter8a560de2004-10-13 15:30:56 +0000942/* Define to 1 if you have the <sys/loadavg.h> header file. */
943#undef HAVE_SYS_LOADAVG_H
944
Martin v. Löwis11437992002-04-12 09:54:03 +0000945/* Define to 1 if you have the <sys/lock.h> header file. */
946#undef HAVE_SYS_LOCK_H
947
Neal Norwitz3d949422002-04-20 13:46:43 +0000948/* Define to 1 if you have the <sys/mkdev.h> header file. */
949#undef HAVE_SYS_MKDEV_H
950
Martin v. Löwis11437992002-04-12 09:54:03 +0000951/* Define to 1 if you have the <sys/modem.h> header file. */
952#undef HAVE_SYS_MODEM_H
953
954/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
955 */
956#undef HAVE_SYS_NDIR_H
957
958/* Define to 1 if you have the <sys/param.h> header file. */
959#undef HAVE_SYS_PARAM_H
960
961/* Define to 1 if you have the <sys/poll.h> header file. */
962#undef HAVE_SYS_POLL_H
963
964/* Define to 1 if you have the <sys/resource.h> header file. */
965#undef HAVE_SYS_RESOURCE_H
966
967/* Define to 1 if you have the <sys/select.h> header file. */
968#undef HAVE_SYS_SELECT_H
969
Antoine Pitrou5c2f4642011-02-26 00:22:09 +0000970/* Define to 1 if you have the <sys/sendfile.h> header file. */
971#undef HAVE_SYS_SENDFILE_H
972
Martin v. Löwis11437992002-04-12 09:54:03 +0000973/* Define to 1 if you have the <sys/socket.h> header file. */
974#undef HAVE_SYS_SOCKET_H
975
Thomas Wouters477c8d52006-05-27 19:21:47 +0000976/* Define to 1 if you have the <sys/statvfs.h> header file. */
977#undef HAVE_SYS_STATVFS_H
978
Martin v. Löwis11437992002-04-12 09:54:03 +0000979/* Define to 1 if you have the <sys/stat.h> header file. */
980#undef HAVE_SYS_STAT_H
981
Gregory P. Smith8facece2012-01-21 14:01:08 -0800982/* Define to 1 if you have the <sys/syscall.h> header file. */
983#undef HAVE_SYS_SYSCALL_H
984
Martin v. Löwis9d6c6692012-02-03 17:44:58 +0100985/* Define to 1 if you have the <sys/sys_domain.h> header file. */
986#undef HAVE_SYS_SYS_DOMAIN_H
987
Georg Brandlf78e02b2008-06-10 17:40:04 +0000988/* Define to 1 if you have the <sys/termio.h> header file. */
989#undef HAVE_SYS_TERMIO_H
990
Martin v. Löwis11437992002-04-12 09:54:03 +0000991/* Define to 1 if you have the <sys/times.h> header file. */
992#undef HAVE_SYS_TIMES_H
993
994/* Define to 1 if you have the <sys/time.h> header file. */
995#undef HAVE_SYS_TIME_H
996
997/* Define to 1 if you have the <sys/types.h> header file. */
998#undef HAVE_SYS_TYPES_H
999
Antoine Pitrou061cfb52011-02-28 22:25:22 +00001000/* Define to 1 if you have the <sys/uio.h> header file. */
1001#undef HAVE_SYS_UIO_H
1002
Martin v. Löwis11437992002-04-12 09:54:03 +00001003/* Define to 1 if you have the <sys/un.h> header file. */
1004#undef HAVE_SYS_UN_H
1005
1006/* Define to 1 if you have the <sys/utsname.h> header file. */
1007#undef HAVE_SYS_UTSNAME_H
1008
1009/* Define to 1 if you have the <sys/wait.h> header file. */
1010#undef HAVE_SYS_WAIT_H
1011
Benjamin Petersonb77fe172011-09-13 17:20:47 -04001012/* Define to 1 if you have the <sys/xattr.h> header file. */
1013#undef HAVE_SYS_XATTR_H
1014
Martin v. Löwis11437992002-04-12 09:54:03 +00001015/* Define to 1 if you have the `tcgetpgrp' function. */
1016#undef HAVE_TCGETPGRP
1017
1018/* Define to 1 if you have the `tcsetpgrp' function. */
1019#undef HAVE_TCSETPGRP
1020
1021/* Define to 1 if you have the `tempnam' function. */
1022#undef HAVE_TEMPNAM
1023
1024/* Define to 1 if you have the <termios.h> header file. */
1025#undef HAVE_TERMIOS_H
1026
1027/* Define to 1 if you have the <term.h> header file. */
1028#undef HAVE_TERM_H
1029
Mark Dickinson9c113362009-09-05 10:36:23 +00001030/* Define to 1 if you have the `tgamma' function. */
1031#undef HAVE_TGAMMA
1032
Martin v. Löwis11437992002-04-12 09:54:03 +00001033/* Define to 1 if you have the `timegm' function. */
1034#undef HAVE_TIMEGM
1035
1036/* Define to 1 if you have the `times' function. */
1037#undef HAVE_TIMES
1038
1039/* Define to 1 if you have the `tmpfile' function. */
1040#undef HAVE_TMPFILE
1041
1042/* Define to 1 if you have the `tmpnam' function. */
1043#undef HAVE_TMPNAM
1044
1045/* Define to 1 if you have the `tmpnam_r' function. */
1046#undef HAVE_TMPNAM_R
1047
1048/* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
1049 `HAVE_STRUCT_TM_TM_ZONE' instead. */
1050#undef HAVE_TM_ZONE
1051
1052/* Define to 1 if you have the `truncate' function. */
1053#undef HAVE_TRUNCATE
1054
1055/* Define to 1 if you don't have `tm_zone' but do have the external array
1056 `tzname'. */
1057#undef HAVE_TZNAME
1058
Brett Cannon18367812003-09-19 00:59:16 +00001059/* Define this if you have tcl and TCL_UTF_MAX==6 */
1060#undef HAVE_UCS4_TCL
1061
Mark Dickinsonce31f662012-12-02 13:20:22 +00001062/* Define if your compiler provides uint32_t. */
1063#undef HAVE_UINT32_T
1064
1065/* Define if your compiler provides uint64_t. */
1066#undef HAVE_UINT64_T
1067
Thomas Wouters89f507f2006-12-13 04:49:30 +00001068/* Define to 1 if the system has the type `uintptr_t'. */
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001069#undef HAVE_UINTPTR_T
1070
Martin v. Löwis11437992002-04-12 09:54:03 +00001071/* Define to 1 if you have the `uname' function. */
1072#undef HAVE_UNAME
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001073
Martin v. Löwis11437992002-04-12 09:54:03 +00001074/* Define to 1 if you have the <unistd.h> header file. */
1075#undef HAVE_UNISTD_H
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001076
Antoine Pitrouf65132d2011-02-25 23:25:17 +00001077/* Define to 1 if you have the `unlinkat' function. */
1078#undef HAVE_UNLINKAT
1079
Martin v. Löwis11437992002-04-12 09:54:03 +00001080/* Define to 1 if you have the `unsetenv' function. */
1081#undef HAVE_UNSETENV
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001082
Martin v. Löwis11437992002-04-12 09:54:03 +00001083/* Define if you have a useable wchar_t type defined in wchar.h; useable means
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00001084 wchar_t must be an unsigned type with at least 16 bits. (see
1085 Include/unicodeobject.h). */
Martin v. Löwis11437992002-04-12 09:54:03 +00001086#undef HAVE_USABLE_WCHAR_T
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001087
Ronald Oussoren755740f2010-02-07 19:56:39 +00001088/* Define to 1 if you have the <util.h> header file. */
1089#undef HAVE_UTIL_H
1090
Antoine Pitrouf65132d2011-02-25 23:25:17 +00001091/* Define to 1 if you have the `utimensat' function. */
1092#undef HAVE_UTIMENSAT
1093
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00001094/* Define to 1 if you have the `utimes' function. */
1095#undef HAVE_UTIMES
1096
Martin v. Löwis11437992002-04-12 09:54:03 +00001097/* Define to 1 if you have the <utime.h> header file. */
1098#undef HAVE_UTIME_H
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001099
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001100/* Define to 1 if you have the `wait3' function. */
1101#undef HAVE_WAIT3
1102
1103/* Define to 1 if you have the `wait4' function. */
1104#undef HAVE_WAIT4
1105
Ross Lagerwall7807c352011-03-17 20:20:30 +02001106/* Define to 1 if you have the `waitid' function. */
1107#undef HAVE_WAITID
1108
Martin v. Löwis11437992002-04-12 09:54:03 +00001109/* Define to 1 if you have the `waitpid' function. */
1110#undef HAVE_WAITPID
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001111
Martin v. Löwis11437992002-04-12 09:54:03 +00001112/* Define if the compiler provides a wchar.h header file. */
1113#undef HAVE_WCHAR_H
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001114
Martin v. Löwis9c36c292002-12-21 18:34:06 +00001115/* Define to 1 if you have the `wcscoll' function. */
1116#undef HAVE_WCSCOLL
1117
Martin v. Löwis113a0852009-05-29 17:25:39 +00001118/* Define to 1 if you have the `wcsftime' function. */
1119#undef HAVE_WCSFTIME
1120
Martin v. Löwis92fab752008-03-08 10:40:41 +00001121/* Define to 1 if you have the `wcsxfrm' function. */
1122#undef HAVE_WCSXFRM
1123
Guido van Rossumd11b62e2003-03-14 21:51:36 +00001124/* Define if tzset() actually switches the local timezone in a meaningful way.
1125 */
1126#undef HAVE_WORKING_TZSET
1127
Ross Lagerwall7807c352011-03-17 20:20:30 +02001128/* Define to 1 if you have the `writev' function. */
1129#undef HAVE_WRITEV
1130
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001131/* Define if the zlib library has inflateCopy */
1132#undef HAVE_ZLIB_COPY
1133
Martin v. Löwis11437992002-04-12 09:54:03 +00001134/* Define to 1 if you have the `_getpty' function. */
1135#undef HAVE__GETPTY
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001136
Mark Dickinsonec0d3552010-11-20 10:29:12 +00001137/* Define if log1p(-0.) is 0. rather than -0. */
1138#undef LOG1P_DROPS_ZERO_SIGN
1139
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00001140/* Define to 1 if `major', `minor', and `makedev' are declared in <mkdev.h>.
1141 */
1142#undef MAJOR_IN_MKDEV
1143
1144/* Define to 1 if `major', `minor', and `makedev' are declared in
1145 <sysmacros.h>. */
1146#undef MAJOR_IN_SYSMACROS
1147
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001148/* Define if mvwdelch in curses.h is an expression. */
1149#undef MVWDELCH_IS_EXPRESSION
1150
Martin v. Löwis11437992002-04-12 09:54:03 +00001151/* Define to the address where bug reports for this package should be sent. */
1152#undef PACKAGE_BUGREPORT
1153
1154/* Define to the full name of this package. */
1155#undef PACKAGE_NAME
1156
1157/* Define to the full name and version of this package. */
1158#undef PACKAGE_STRING
1159
1160/* Define to the one symbol short name of this package. */
1161#undef PACKAGE_TARNAME
1162
Matthias Kloseb9621712010-04-24 17:59:49 +00001163/* Define to the home page for this package. */
1164#undef PACKAGE_URL
1165
Martin v. Löwis11437992002-04-12 09:54:03 +00001166/* Define to the version of this package. */
1167#undef PACKAGE_VERSION
1168
Mark Dickinsona614f042009-11-28 12:48:43 +00001169/* Define if POSIX semaphores aren't enabled on your system */
1170#undef POSIX_SEMAPHORES_NOT_ENABLED
1171
Martin v. Löwis11437992002-04-12 09:54:03 +00001172/* Defined if PTHREAD_SCOPE_SYSTEM supported. */
1173#undef PTHREAD_SYSTEM_SCHED_SUPPORTED
1174
Mark Dickinsonbd792642009-03-18 20:06:12 +00001175/* Define as the preferred size in bits of long digits */
1176#undef PYLONG_BITS_IN_DIGIT
1177
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00001178/* Define to printf format modifier for long long type */
1179#undef PY_FORMAT_LONG_LONG
1180
Thomas Wouters477c8d52006-05-27 19:21:47 +00001181/* Define to printf format modifier for Py_ssize_t */
1182#undef PY_FORMAT_SIZE_T
1183
Martin v. Löwis11437992002-04-12 09:54:03 +00001184/* Define if you want to build an interpreter with many run-time checks. */
1185#undef Py_DEBUG
1186
Mark Hammond8235ea12002-07-19 06:55:41 +00001187/* Defined if Python is built as a shared library. */
1188#undef Py_ENABLE_SHARED
1189
Matthias Klosebada4c32010-04-25 21:18:48 +00001190/* assume C89 semantics that RETSIGTYPE is always void */
Martin v. Löwis11437992002-04-12 09:54:03 +00001191#undef RETSIGTYPE
1192
1193/* Define if setpgrp() must be called as setpgrp(0, 0). */
1194#undef SETPGRP_HAVE_ARG
1195
1196/* Define if i>>j for signed int i does not extend the sign bit when i < 0 */
1197#undef SIGNED_RIGHT_SHIFT_ZERO_FILLS
1198
Guido van Rossum806c2462007-08-06 23:33:07 +00001199/* The size of `double', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001200#undef SIZEOF_DOUBLE
1201
Guido van Rossum806c2462007-08-06 23:33:07 +00001202/* The size of `float', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001203#undef SIZEOF_FLOAT
1204
Guido van Rossum806c2462007-08-06 23:33:07 +00001205/* The size of `fpos_t', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001206#undef SIZEOF_FPOS_T
1207
Guido van Rossum806c2462007-08-06 23:33:07 +00001208/* The size of `int', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001209#undef SIZEOF_INT
1210
Guido van Rossum806c2462007-08-06 23:33:07 +00001211/* The size of `long', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001212#undef SIZEOF_LONG
1213
Travis E. Oliphant9b307842007-10-12 22:06:37 +00001214/* The size of `long double', as computed by sizeof. */
1215#undef SIZEOF_LONG_DOUBLE
1216
Guido van Rossum806c2462007-08-06 23:33:07 +00001217/* The size of `long long', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001218#undef SIZEOF_LONG_LONG
1219
Alexandre Vassalottib0a61d72009-07-17 23:19:37 +00001220/* The size of `off_t', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001221#undef SIZEOF_OFF_T
1222
Christian Heimes400adb02008-02-01 08:12:03 +00001223/* The size of `pid_t', as computed by sizeof. */
1224#undef SIZEOF_PID_T
1225
Alexandre Vassalottib0a61d72009-07-17 23:19:37 +00001226/* The size of `pthread_t', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001227#undef SIZEOF_PTHREAD_T
1228
Guido van Rossum806c2462007-08-06 23:33:07 +00001229/* The size of `short', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001230#undef SIZEOF_SHORT
1231
Guido van Rossum806c2462007-08-06 23:33:07 +00001232/* The size of `size_t', as computed by sizeof. */
Martin v. Löwis18e16552006-02-15 17:27:45 +00001233#undef SIZEOF_SIZE_T
1234
Alexandre Vassalottib0a61d72009-07-17 23:19:37 +00001235/* The size of `time_t', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001236#undef SIZEOF_TIME_T
1237
Guido van Rossum806c2462007-08-06 23:33:07 +00001238/* The size of `uintptr_t', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001239#undef SIZEOF_UINTPTR_T
1240
Guido van Rossum806c2462007-08-06 23:33:07 +00001241/* The size of `void *', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001242#undef SIZEOF_VOID_P
1243
Guido van Rossum806c2462007-08-06 23:33:07 +00001244/* The size of `wchar_t', as computed by sizeof. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001245#undef SIZEOF_WCHAR_T
1246
Guido van Rossum806c2462007-08-06 23:33:07 +00001247/* The size of `_Bool', as computed by sizeof. */
Thomas Woutersb2137042007-02-01 18:02:27 +00001248#undef SIZEOF__BOOL
1249
Martin v. Löwis11437992002-04-12 09:54:03 +00001250/* Define to 1 if you have the ANSI C header files. */
1251#undef STDC_HEADERS
1252
1253/* Define if you can safely include both <sys/select.h> and <sys/time.h>
1254 (which you can't on SCO ODT 3.0). */
1255#undef SYS_SELECT_WITH_SYS_TIME
1256
Christian Heimes81ee3ef2008-05-04 22:42:01 +00001257/* Define if tanh(-0.) is -0., or if platform doesn't have signed zeros */
1258#undef TANH_PRESERVES_ZERO_SIGN
1259
Victor Stinnere0be4232011-10-25 13:06:09 +02001260/* Library needed by timemodule.c: librt may be needed for clock_gettime() */
1261#undef TIMEMODULE_LIB
1262
Martin v. Löwis11437992002-04-12 09:54:03 +00001263/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
1264#undef TIME_WITH_SYS_TIME
1265
1266/* Define to 1 if your <sys/time.h> declares `struct tm'. */
1267#undef TM_IN_SYS_TIME
1268
Benjamin Petersond7f73e92010-09-05 00:09:07 +00001269/* Define if you want to use computed gotos in ceval.c. */
Antoine Pitroub52ec782009-01-25 16:34:23 +00001270#undef USE_COMPUTED_GOTOS
1271
Benjamin Petersond7f73e92010-09-05 00:09:07 +00001272/* Define to use the C99 inline keyword. */
Daniel Stutzbacha606faa2010-08-31 19:51:07 +00001273#undef USE_INLINE
1274
Matthias Kloseb9621712010-04-24 17:59:49 +00001275/* Enable extensions on AIX 3, Interix. */
1276#ifndef _ALL_SOURCE
1277# undef _ALL_SOURCE
1278#endif
1279/* Enable GNU extensions on systems that have them. */
1280#ifndef _GNU_SOURCE
1281# undef _GNU_SOURCE
1282#endif
1283/* Enable threading extensions on Solaris. */
1284#ifndef _POSIX_PTHREAD_SEMANTICS
1285# undef _POSIX_PTHREAD_SEMANTICS
1286#endif
1287/* Enable extensions on HP NonStop. */
1288#ifndef _TANDEM_SOURCE
1289# undef _TANDEM_SOURCE
1290#endif
1291/* Enable general extensions on Solaris. */
1292#ifndef __EXTENSIONS__
1293# undef __EXTENSIONS__
1294#endif
1295
1296
Martin v. Löwis11437992002-04-12 09:54:03 +00001297/* Define if a va_list is an array of some kind */
1298#undef VA_LIST_IS_ARRAY
1299
1300/* Define if you want SIGFPE handled (see Include/pyfpe.h). */
1301#undef WANT_SIGFPE_HANDLER
1302
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001303/* Define if WINDOW in curses.h offers a field _flags. */
1304#undef WINDOW_HAS_FLAGS
1305
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +00001306/* Define if you want documentation strings in extension modules */
1307#undef WITH_DOC_STRINGS
1308
Martin v. Löwis11437992002-04-12 09:54:03 +00001309/* Define if you want to use the new-style (Openstep, Rhapsody, MacOS) dynamic
1310 linker (dyld) instead of the old-style (NextStep) dynamic linker (rld).
1311 Dyld is necessary to support frameworks. */
1312#undef WITH_DYLD
1313
Martin v. Löwis19d17342003-06-14 21:03:05 +00001314/* Define to 1 if libintl is needed for locale functions. */
1315#undef WITH_LIBINTL
1316
Martin v. Löwis11437992002-04-12 09:54:03 +00001317/* Define if you want to produce an OpenStep/Rhapsody framework (shared
1318 library plus accessory files). */
1319#undef WITH_NEXT_FRAMEWORK
1320
1321/* Define if you want to compile in Python-specific mallocs */
1322#undef WITH_PYMALLOC
1323
Martin v. Löwis11437992002-04-12 09:54:03 +00001324/* Define if you want to compile in rudimentary thread support */
1325#undef WITH_THREAD
1326
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00001327/* Define to profile with the Pentium timestamp counter */
1328#undef WITH_TSC
1329
Benjamin Peterson05159c42009-12-03 03:01:27 +00001330/* Define if you want pymalloc to be disabled when running under valgrind */
1331#undef WITH_VALGRIND
1332
Matthias Kloseb9621712010-04-24 17:59:49 +00001333/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
1334 significant byte first (like Motorola and SPARC, unlike Intel). */
1335#if defined AC_APPLE_UNIVERSAL_BUILD
1336# if defined __BIG_ENDIAN__
1337# define WORDS_BIGENDIAN 1
1338# endif
1339#else
1340# ifndef WORDS_BIGENDIAN
1341# undef WORDS_BIGENDIAN
1342# endif
1343#endif
Martin v. Löwis11437992002-04-12 09:54:03 +00001344
Mark Dickinson3dc7c6a2009-01-04 15:09:02 +00001345/* Define if arithmetic is subject to x87-style double rounding issue */
1346#undef X87_DOUBLE_ROUNDING
1347
Guido van Rossum806c2462007-08-06 23:33:07 +00001348/* Define on OpenBSD to activate all library features */
1349#undef _BSD_SOURCE
1350
Martin v. Löwisd6320502004-08-12 13:45:08 +00001351/* Define on Irix to enable u_int */
1352#undef _BSD_TYPES
1353
Georg Brandlfcaf9102008-07-16 02:17:56 +00001354/* Define on Darwin to activate all library features */
1355#undef _DARWIN_C_SOURCE
1356
Martin v. Löwis11437992002-04-12 09:54:03 +00001357/* This must be set to 64 on some systems to enable large file support. */
1358#undef _FILE_OFFSET_BITS
1359
Martin v. Löwis6f18a3c2002-07-20 08:51:52 +00001360/* Define on Linux to activate all library features */
1361#undef _GNU_SOURCE
1362
Martin v. Löwis11437992002-04-12 09:54:03 +00001363/* This must be defined on some systems to enable large file support. */
1364#undef _LARGEFILE_SOURCE
1365
Benjamin Peterson83a0efd2011-02-25 14:01:05 +00001366/* This must be defined on AIX systems to enable large file support. */
1367#undef _LARGE_FILES
1368
Matthias Kloseb9621712010-04-24 17:59:49 +00001369/* Define to 1 if on MINIX. */
1370#undef _MINIX
1371
Martin v. Löwisbcd93962003-05-03 10:32:18 +00001372/* Define on NetBSD to activate all library features */
1373#undef _NETBSD_SOURCE
1374
Matthias Kloseb9621712010-04-24 17:59:49 +00001375/* Define to 2 if the system does not provide POSIX.1 features except with
1376 this defined. */
1377#undef _POSIX_1_SOURCE
1378
Benjamin Petersonb77fe172011-09-13 17:20:47 -04001379/* Define to activate features from IEEE Stds 1003.1-2008 */
Martin v. Löwise4826582002-10-26 13:33:00 +00001380#undef _POSIX_C_SOURCE
1381
Matthias Kloseb9621712010-04-24 17:59:49 +00001382/* Define to 1 if you need to in order for `stat' and other things to work. */
1383#undef _POSIX_SOURCE
1384
Martin v. Löwis11437992002-04-12 09:54:03 +00001385/* Define if you have POSIX threads, and your system does not define that. */
1386#undef _POSIX_THREADS
1387
1388/* Define to force use of thread-safe errno, h_errno, and other functions */
1389#undef _REENTRANT
1390
Mark Dickinsonbd792642009-03-18 20:06:12 +00001391/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
Matthias Kloseb9621712010-04-24 17:59:49 +00001392 <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
Mark Dickinsonbd792642009-03-18 20:06:12 +00001393 #define below would cause a syntax error. */
1394#undef _UINT32_T
1395
1396/* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>,
Matthias Kloseb9621712010-04-24 17:59:49 +00001397 <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
Mark Dickinsonbd792642009-03-18 20:06:12 +00001398 #define below would cause a syntax error. */
1399#undef _UINT64_T
1400
Martin v. Löwis678fc1e2002-11-12 06:04:39 +00001401/* Define to the level of X/Open that your system supports */
1402#undef _XOPEN_SOURCE
Martin v. Löwis6f18a3c2002-07-20 08:51:52 +00001403
Martin v. Löwise4826582002-10-26 13:33:00 +00001404/* Define to activate Unix95-and-earlier features */
1405#undef _XOPEN_SOURCE_EXTENDED
1406
Jason Tishlerfac083d2003-07-22 15:20:49 +00001407/* Define on FreeBSD to activate all library features */
1408#undef __BSD_VISIBLE
1409
Martin v. Löwis11437992002-04-12 09:54:03 +00001410/* Define to 1 if type `char' is unsigned and you are not using gcc. */
1411#ifndef __CHAR_UNSIGNED__
1412# undef __CHAR_UNSIGNED__
1413#endif
1414
Martin v. Löwis11437992002-04-12 09:54:03 +00001415/* Define to 'long' if <time.h> doesn't define. */
1416#undef clock_t
1417
1418/* Define to empty if `const' does not conform to ANSI C. */
1419#undef const
1420
1421/* Define to `int' if <sys/types.h> doesn't define. */
1422#undef gid_t
1423
Benjamin Petersond7f73e92010-09-05 00:09:07 +00001424/* Define to `__inline__' or `__inline' if that's what the C compiler
1425 calls it, or to nothing if 'inline' is not supported under any name. */
1426#ifndef __cplusplus
1427#undef inline
1428#endif
1429
Mark Dickinsonbd792642009-03-18 20:06:12 +00001430/* Define to the type of a signed integer type of width exactly 32 bits if
1431 such a type exists and the standard includes do not define it. */
1432#undef int32_t
1433
1434/* Define to the type of a signed integer type of width exactly 64 bits if
1435 such a type exists and the standard includes do not define it. */
1436#undef int64_t
1437
Martin v. Löwis11437992002-04-12 09:54:03 +00001438/* Define to `int' if <sys/types.h> does not define. */
1439#undef mode_t
1440
Guido van Rossum806c2462007-08-06 23:33:07 +00001441/* Define to `long int' if <sys/types.h> does not define. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001442#undef off_t
1443
1444/* Define to `int' if <sys/types.h> does not define. */
1445#undef pid_t
1446
1447/* Define to empty if the keyword does not work. */
1448#undef signed
1449
Guido van Rossum806c2462007-08-06 23:33:07 +00001450/* Define to `unsigned int' if <sys/types.h> does not define. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001451#undef size_t
1452
Martin v. Löwis01c04012002-11-11 14:58:44 +00001453/* Define to `int' if <sys/socket.h> does not define. */
Martin v. Löwis11437992002-04-12 09:54:03 +00001454#undef socklen_t
1455
1456/* Define to `int' if <sys/types.h> doesn't define. */
1457#undef uid_t
1458
Mark Dickinsonbd792642009-03-18 20:06:12 +00001459/* Define to the type of an unsigned integer type of width exactly 32 bits if
1460 such a type exists and the standard includes do not define it. */
1461#undef uint32_t
1462
1463/* Define to the type of an unsigned integer type of width exactly 64 bits if
1464 such a type exists and the standard includes do not define it. */
1465#undef uint64_t
1466
Martin v. Löwis11437992002-04-12 09:54:03 +00001467/* Define to empty if the keyword does not work. */
1468#undef volatile
1469
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001470
Martin v. Löwis28341ce2001-09-05 15:18:00 +00001471/* Define the macros needed if on a UnixWare 7.x system. */
1472#if defined(__USLC__) && defined(__SCO_VERSION__)
Martin v. Löwis28341ce2001-09-05 15:18:00 +00001473#define STRICT_SYSV_CURSES /* Don't use ncurses extensions */
1474#endif
1475
Martin v. Löwisbddf5a52002-11-11 13:37:28 +00001476#endif /*Py_PYCONFIG_H*/
1477