blob: d9b89cc9b57a2c880603285cf1ac0b838ccf3956 [file] [log] [blame]
Guido van Rossum622cc032001-10-24 20:04:51 +00001/* RISCOS/pyconfig.h: Python configuration for RISC OS */
Guido van Rossum228d8072001-03-02 05:58:11 +00002
Skip Montanaro7befb992004-02-10 16:50:21 +00003#ifndef Py_PYCONFIG_H
4#define Py_PYCONFIG_H
5
Guido van Rossum228d8072001-03-02 05:58:11 +00006/* Define if on AIX 3.
7 System headers sometimes define this.
8 We just want to avoid a redefinition error message. */
9#ifndef _ALL_SOURCE
10#undef _ALL_SOURCE
11#endif
12
13/* Define if type char is unsigned and you are not using gcc. */
Guido van Rossum622cc032001-10-24 20:04:51 +000014#ifndef __CHAR_UNSIGNED__
Guido van Rossum228d8072001-03-02 05:58:11 +000015#undef __CHAR_UNSIGNED__
Guido van Rossum622cc032001-10-24 20:04:51 +000016#endif
Guido van Rossum228d8072001-03-02 05:58:11 +000017
18/* Define to empty if the keyword does not work. */
19#undef const
20
21/* Define to `int' if <sys/types.h> doesn't define. */
Guido van Rossum622cc032001-10-24 20:04:51 +000022#undef gid_t
Guido van Rossum228d8072001-03-02 05:58:11 +000023
24/* Define if your struct tm has tm_zone. */
25#undef HAVE_TM_ZONE
26
27/* Define if you don't have tm_zone but do have the external array
28 tzname. */
29#undef HAVE_TZNAME
30
Guido van Rossum228d8072001-03-02 05:58:11 +000031/* Define to `int' if <sys/types.h> doesn't define. */
Guido van Rossum622cc032001-10-24 20:04:51 +000032#undef mode_t
Guido van Rossum228d8072001-03-02 05:58:11 +000033
34/* Define to `long' if <sys/types.h> doesn't define. */
Guido van Rossum622cc032001-10-24 20:04:51 +000035#undef off_t
Guido van Rossum228d8072001-03-02 05:58:11 +000036
37/* Define to `int' if <sys/types.h> doesn't define. */
Guido van Rossum622cc032001-10-24 20:04:51 +000038#undef pid_t
Guido van Rossum228d8072001-03-02 05:58:11 +000039
40/* Define if the system does not provide POSIX.1 features except
41 with this defined. */
42#undef _POSIX_1_SOURCE
43
44/* Define if you need to in order for stat and other things to work. */
45#undef _POSIX_SOURCE
46
47/* Define as the return type of signal handlers (int or void). */
48#define RETSIGTYPE void
49
50/* Define to `unsigned' if <sys/types.h> doesn't define. */
51#undef size_t
52
53/* Define if you have the ANSI C header files. */
54#define STDC_HEADERS 1
55
56/* Define if you can safely include both <sys/time.h> and <time.h>. */
57#undef TIME_WITH_SYS_TIME
58
59/* Define if your <sys/time.h> declares struct tm. */
60#define TM_IN_SYS_TIME 1
61
62/* Define to `int' if <sys/types.h> doesn't define. */
Guido van Rossum622cc032001-10-24 20:04:51 +000063#undef uid_t
64
65/* Define if your processor stores words with the most significant
66 byte first (like Motorola and SPARC, unlike Intel and VAX). */
67#undef WORDS_BIGENDIAN
68
69/* Define for AIX if your compiler is a genuine IBM xlC/xlC_r
70 and you want support for AIX C++ shared extension modules. */
71#undef AIX_GENUINE_CPLUSPLUS
Guido van Rossum228d8072001-03-02 05:58:11 +000072
Guido van Rossum228d8072001-03-02 05:58:11 +000073/* Define if your compiler botches static forward declarations
74 (as it does on SCI ODT 3.0) */
75#undef BAD_STATIC_FORWARD
76
77/* Define this if you have BeOS threads */
78#undef BEOS_THREADS
79
80/* Define if you have the Mach cthreads package */
81#undef C_THREADS
82
83/* Define to `long' if <time.h> doesn't define. */
84#undef clock_t
85
Guido van Rossum622cc032001-10-24 20:04:51 +000086/* Defined on Solaris to see additional function prototypes. */
87#undef __EXTENSIONS__
88
89/* This must be set to 64 on some systems to enable large file support */
90#undef _FILE_OFFSET_BITS
Guido van Rossum228d8072001-03-02 05:58:11 +000091
92/* Define if getpgrp() must be called as getpgrp(0). */
93#undef GETPGRP_HAVE_ARG
94
95/* Define if gettimeofday() does not have second (timezone) argument
96 This is the case on Motorola V4 (R40V4.2) */
97#undef GETTIMEOFDAY_NO_TZ
98
99/* Define this if your time.h defines altzone */
100#undef HAVE_ALTZONE
101
Guido van Rossum622cc032001-10-24 20:04:51 +0000102/* Define if --enable-ipv6 is specified */
103#undef ENABLE_IPV6
104
105/* Define if sockaddr has sa_len member */
106#undef HAVE_SOCKADDR_SA_LEN
107
108/* struct addrinfo (netdb.h) */
109#undef HAVE_ADDRINFO
110
111/* struct sockaddr_storage (sys/socket.h) */
112#undef HAVE_SOCKADDR_STORAGE
113
114/* Defined when any dynamic module loading is enabled */
115#define HAVE_DYNAMIC_LOADING 1
116
117/* Define this if you have flockfile(), getc_unlocked(), and funlockfile() */
118#undef HAVE_GETC_UNLOCKED
119
Guido van Rossum228d8072001-03-02 05:58:11 +0000120/* Define this if you have some version of gethostbyname_r() */
121#undef HAVE_GETHOSTBYNAME_R
122
123/* Define this if you have the 3-arg version of gethostbyname_r() */
124#undef HAVE_GETHOSTBYNAME_R_3_ARG
125
126/* Define this if you have the 5-arg version of gethostbyname_r() */
127#undef HAVE_GETHOSTBYNAME_R_5_ARG
128
129/* Define this if you have the 6-arg version of gethostbyname_r() */
130#undef HAVE_GETHOSTBYNAME_R_6_ARG
131
Guido van Rossum622cc032001-10-24 20:04:51 +0000132/* Defined to enable large file support when an off_t is bigger than a long
133 and long long is available and at least as big as an off_t. You may need
134 to add some flags for configuration and compilation to enable this mode.
135 E.g, for Solaris 2.7:
136 CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" OPT="-O2 $CFLAGS" \
137 configure
138*/
139#undef HAVE_LARGEFILE_SUPPORT
140
Guido van Rossum228d8072001-03-02 05:58:11 +0000141/* Define this if you have the type long long */
Martin v. Löwisa94568a2003-05-10 07:36:56 +0000142#define HAVE_LONG_LONG
Guido van Rossum228d8072001-03-02 05:58:11 +0000143
Guido van Rossum228d8072001-03-02 05:58:11 +0000144/* Define if your compiler supports function prototypes */
145#define HAVE_PROTOTYPES 1
146
Guido van Rossum622cc032001-10-24 20:04:51 +0000147/* Define if you have GNU PTH threads */
148#undef HAVE_PTH
149
150/* Define if you have readline 4.2 */
151#undef HAVE_RL_COMPLETION_MATCHES
152
Guido van Rossum228d8072001-03-02 05:58:11 +0000153/* Define if your compiler supports variable length function prototypes
154 (e.g. void fprintf(FILE *, char *, ...);) *and* <stdarg.h> */
155#define HAVE_STDARG_PROTOTYPES 1
156
Guido van Rossum622cc032001-10-24 20:04:51 +0000157/* Define this if you have the type uintptr_t */
158#undef HAVE_UINTPTR_T
159
160/* Define if you have a useable wchar_t type defined in wchar.h; useable
161 means wchar_t must be 16-bit unsigned type. (see
162 Include/unicodeobject.h). */
163#undef HAVE_USABLE_WCHAR_T
164
165/* Define if the compiler provides a wchar.h header file. */
166#undef HAVE_WCHAR_H
167
168/* This must be defined on some systems to enable large file support */
169#undef _LARGEFILE_SOURCE
170
Guido van Rossum622cc032001-10-24 20:04:51 +0000171/* Define as the integral type used for Unicode representation. */
172#define PY_UNICODE_TYPE unsigned short
173
174/* Define as the size of the unicode type. */
175#define Py_UNICODE_SIZE 2
176
177/* Define if nice() returns success/failure instead of the new priority. */
178#undef HAVE_BROKEN_NICE
179
Guido van Rossum228d8072001-03-02 05:58:11 +0000180/* Define if you have POSIX threads */
181#undef _POSIX_THREADS
182
Guido van Rossum622cc032001-10-24 20:04:51 +0000183/* Define if you want to build an interpreter with many run-time checks */
184#undef Py_DEBUG
185
Guido van Rossum228d8072001-03-02 05:58:11 +0000186/* Define to force use of thread-safe errno, h_errno, and other functions */
187#undef _REENTRANT
188
189/* Define if setpgrp() must be called as setpgrp(0, 0). */
190#undef SETPGRP_HAVE_ARG
191
192/* Define to empty if the keyword does not work. */
193#undef signed
194
Guido van Rossum622cc032001-10-24 20:04:51 +0000195/* Define if i>>j for signed int i does not extend the sign bit
196 when i < 0
197*/
198#undef SIGNED_RIGHT_SHIFT_ZERO_FILLS
199
200/* The number of bytes in an off_t. */
201#define SIZEOF_OFF_T 4
202
203/* The number of bytes in a time_t. */
204#define SIZEOF_TIME_T 4
205
206/* The number of bytes in a pthread_t. */
207#undef SIZEOF_PTHREAD_T
208
209/* Define to `int' if <sys/types.h> doesn't define. */
210#define socklen_t int
211
Guido van Rossum228d8072001-03-02 05:58:11 +0000212/* Define if you can safely include both <sys/select.h> and <sys/time.h>
213 (which you can't on SCO ODT 3.0). */
214#undef SYS_SELECT_WITH_SYS_TIME
215
216/* Define if a va_list is an array of some kind */
217#define VA_LIST_IS_ARRAY 1
218
219/* Define to empty if the keyword does not work. */
220#undef volatile
221
222/* Define if you want SIGFPE handled (see Include/pyfpe.h). */
223#undef WANT_SIGFPE_HANDLER
224
Guido van Rossum622cc032001-10-24 20:04:51 +0000225/* Define if you want wctype.h functions to be used instead of the
226 one supplied by Python itself. (see Include/unicodectype.h). */
227#undef WANT_WCTYPE_FUNCTIONS
228
Martin v. Löwis2befa482002-06-09 13:41:37 +0000229/* Define if you want documentation strings in extension modules */
230#define WITH_DOC_STRINGS 1
231
Guido van Rossum228d8072001-03-02 05:58:11 +0000232/* Define if you want to use the new-style (Openstep, Rhapsody, MacOS)
233 dynamic linker (dyld) instead of the old-style (NextStep) dynamic
234 linker (rld). Dyld is necessary to support frameworks. */
235#undef WITH_DYLD
236
Guido van Rossum622cc032001-10-24 20:04:51 +0000237/* Define if you want to compile in Python-specific mallocs */
Martin v. Löwisa94568a2003-05-10 07:36:56 +0000238#define WITH_PYMALLOC 1
Guido van Rossum228d8072001-03-02 05:58:11 +0000239
240/* Define if you want to produce an OpenStep/Rhapsody framework
241 (shared library plus accessory files). */
242#undef WITH_NEXT_FRAMEWORK
243
Guido van Rossum622cc032001-10-24 20:04:51 +0000244/* Define if you want to use MacPython modules on MacOSX in unix-Python */
245#undef USE_TOOLBOX_OBJECT_GLUE
Guido van Rossum228d8072001-03-02 05:58:11 +0000246
Guido van Rossum622cc032001-10-24 20:04:51 +0000247/* Define if you want to compile in rudimentary thread support */
248#undef WITH_THREAD
249
250/* The number of bytes in a char. */
251#define SIZEOF_CHAR 1
252
253/* The number of bytes in a double. */
254#define SIZEOF_DOUBLE 8
255
256/* The number of bytes in a float. */
257#define SIZEOF_FLOAT 4
258
259/* The number of bytes in a fpos_t. */
260#undef SIZEOF_FPOS_T
Guido van Rossum228d8072001-03-02 05:58:11 +0000261
262/* The number of bytes in a int. */
263#define SIZEOF_INT 4
264
265/* The number of bytes in a long. */
266#define SIZEOF_LONG 4
267
268/* The number of bytes in a long long. */
Martin v. Löwisa94568a2003-05-10 07:36:56 +0000269#define SIZEOF_LONG_LONG 8
Guido van Rossum228d8072001-03-02 05:58:11 +0000270
Guido van Rossum622cc032001-10-24 20:04:51 +0000271/* The number of bytes in a short. */
272#define SIZEOF_SHORT 2
273
274/* The number of bytes in a uintptr_t. */
275#undef SIZEOF_UINTPTR_T
276
Guido van Rossum228d8072001-03-02 05:58:11 +0000277/* The number of bytes in a void *. */
278#define SIZEOF_VOID_P 4
279
Guido van Rossum622cc032001-10-24 20:04:51 +0000280/* The number of bytes in a wchar_t. */
281#undef SIZEOF_WCHAR_T
282
283/* Define if you have the _getpty function. */
284#undef HAVE__GETPTY
285
Guido van Rossum228d8072001-03-02 05:58:11 +0000286/* Define if you have the alarm function. */
287#undef HAVE_ALARM
288
289/* Define if you have the chown function. */
290#undef HAVE_CHOWN
291
292/* Define if you have the clock function. */
293#define HAVE_CLOCK 1
294
Guido van Rossum622cc032001-10-24 20:04:51 +0000295/* Define if you have the confstr function. */
296#undef HAVE_CONFSTR
297
298/* Define if you have the ctermid function. */
299#undef HAVE_CTERMID
300
301/* Define if you have the ctermid_r function. */
302#undef HAVE_CTERMID_R
303
Guido van Rossum228d8072001-03-02 05:58:11 +0000304/* Define if you have the dlopen function. */
305#undef HAVE_DLOPEN
306
307/* Define if you have the dup2 function. */
308#undef HAVE_DUP2
309
310/* Define if you have the execv function. */
311#undef HAVE_EXECV
312
313/* Define if you have the fdatasync function. */
314#undef HAVE_FDATASYNC
315
316/* Define if you have the flock function. */
317#undef HAVE_FLOCK
318
319/* Define if you have the fork function. */
320#undef HAVE_FORK
321
Guido van Rossum622cc032001-10-24 20:04:51 +0000322/* Define if you have the forkpty function. */
323#undef HAVE_FORKPTY
324
325/* Define if you have the fpathconf function. */
326#undef HAVE_FPATHCONF
327
Guido van Rossum228d8072001-03-02 05:58:11 +0000328/* Define if you have the fseek64 function. */
329#undef HAVE_FSEEK64
330
331/* Define if you have the fseeko function. */
332#undef HAVE_FSEEKO
333
334/* Define if you have the fstatvfs function. */
335#undef HAVE_FSTATVFS
336
337/* Define if you have the fsync function. */
338#undef HAVE_FSYNC
339
340/* Define if you have the ftell64 function. */
341#undef HAVE_FTELL64
342
343/* Define if you have the ftello function. */
344#undef HAVE_FTELLO
345
346/* Define if you have the ftime function. */
347#undef HAVE_FTIME
348
349/* Define if you have the ftruncate function. */
350#undef HAVE_FTRUNCATE
351
Guido van Rossum622cc032001-10-24 20:04:51 +0000352/* Define if you have the gai_strerror function. */
353#undef HAVE_GAI_STRERROR
354
355/* Define if you have the getaddrinfo function. */
356#undef HAVE_GETADDRINFO
357
Guido van Rossum228d8072001-03-02 05:58:11 +0000358/* Define if you have the getcwd function. */
359#undef HAVE_GETCWD
360
Guido van Rossum622cc032001-10-24 20:04:51 +0000361/* Define if you have the getgroups function. */
362#undef HAVE_GETGROUPS
363
364/* Define if you have the gethostbyname function. */
365#undef HAVE_GETHOSTBYNAME
366
367/* Define if you have the getlogin function. */
368#undef HAVE_GETLOGIN
369
370/* Define if you have the getnameinfo function. */
371#undef HAVE_GETNAMEINFO
372
Guido van Rossum228d8072001-03-02 05:58:11 +0000373/* Define if you have the getpeername function. */
Martin v. Löwisa94568a2003-05-10 07:36:56 +0000374#define HAVE_GETPEERNAME
Guido van Rossum228d8072001-03-02 05:58:11 +0000375
Martin v. Löwis606edc12002-06-13 21:09:11 +0000376/* Define if you have the getpgid function. */
377#undef HAVE_GETPGID
378
Guido van Rossum228d8072001-03-02 05:58:11 +0000379/* Define if you have the getpgrp function. */
380#undef HAVE_GETPGRP
381
382/* Define if you have the getpid function. */
383#undef HAVE_GETPID
384
Guido van Rossum622cc032001-10-24 20:04:51 +0000385/* Define if you have the getpriority function. */
386#undef HAVE_GETPRIORITY
387
Guido van Rossum228d8072001-03-02 05:58:11 +0000388/* Define if you have the getpwent function. */
389#undef HAVE_GETPWENT
390
391/* Define if you have the gettimeofday function. */
392#undef HAVE_GETTIMEOFDAY
393
394/* Define if you have the getwd function. */
395#undef HAVE_GETWD
396
Guido van Rossum622cc032001-10-24 20:04:51 +0000397/* Define if you have the hstrerror function. */
398#undef HAVE_HSTRERROR
399
Guido van Rossum228d8072001-03-02 05:58:11 +0000400/* Define if you have the hypot function. */
Martin v. Löwisa94568a2003-05-10 07:36:56 +0000401#define HAVE_HYPOT
Guido van Rossum228d8072001-03-02 05:58:11 +0000402
Guido van Rossum622cc032001-10-24 20:04:51 +0000403/* Define if you have the inet_pton function. */
404#define HAVE_INET_PTON 1
405
Guido van Rossum228d8072001-03-02 05:58:11 +0000406/* Define if you have the kill function. */
407#undef HAVE_KILL
408
409/* Define if you have the link function. */
410#undef HAVE_LINK
411
412/* Define if you have the lstat function. */
413#undef HAVE_LSTAT
414
415/* Define if you have the memmove function. */
416#define HAVE_MEMMOVE 1
417
418/* Define if you have the mkfifo function. */
419#undef HAVE_MKFIFO
420
421/* Define if you have the mktime function. */
422#define HAVE_MKTIME 1
423
Guido van Rossum622cc032001-10-24 20:04:51 +0000424/* Define if you have the mremap function. */
425#undef HAVE_MREMAP
426
Guido van Rossum228d8072001-03-02 05:58:11 +0000427/* Define if you have the nice function. */
428#undef HAVE_NICE
429
Guido van Rossum622cc032001-10-24 20:04:51 +0000430/* Define if you have the openpty function. */
431#undef HAVE_OPENPTY
432
433/* Define if you have the pathconf function. */
434#undef HAVE_PATHCONF
435
Guido van Rossum228d8072001-03-02 05:58:11 +0000436/* Define if you have the pause function. */
437#undef HAVE_PAUSE
438
439/* Define if you have the plock function. */
440#undef HAVE_PLOCK
441
Guido van Rossum622cc032001-10-24 20:04:51 +0000442/* Define if you have the poll function. */
443#undef HAVE_POLL
444
Guido van Rossum228d8072001-03-02 05:58:11 +0000445/* Define if you have the pthread_init function. */
446#undef HAVE_PTHREAD_INIT
447
448/* Define if you have the putenv function. */
449#undef HAVE_PUTENV
450
451/* Define if you have the readlink function. */
452#undef HAVE_READLINK
453
454/* Define if you have the select function. */
455#undef HAVE_SELECT
456
Guido van Rossum622cc032001-10-24 20:04:51 +0000457/* Define if you have the setegid function. */
458#undef HAVE_SETEGID
459
460/* Define if you have the seteuid function. */
461#undef HAVE_SETEUID
462
Guido van Rossum228d8072001-03-02 05:58:11 +0000463/* Define if you have the setgid function. */
464#undef HAVE_SETGID
465
466/* Define if you have the setlocale function. */
Guido van Rossum622cc032001-10-24 20:04:51 +0000467#define HAVE_SETLOCALE 1
Guido van Rossum228d8072001-03-02 05:58:11 +0000468
469/* Define if you have the setpgid function. */
470#undef HAVE_SETPGID
471
472/* Define if you have the setpgrp function. */
473#undef HAVE_SETPGRP
474
Guido van Rossum622cc032001-10-24 20:04:51 +0000475/* Define if you have the setregid function. */
476#undef HAVE_SETREGID
477
478/* Define if you have the setreuid function. */
479#undef HAVE_SETREUID
480
Guido van Rossum228d8072001-03-02 05:58:11 +0000481/* Define if you have the setsid function. */
482#undef HAVE_SETSID
483
484/* Define if you have the setuid function. */
485#undef HAVE_SETUID
486
487/* Define if you have the setvbuf function. */
488#undef HAVE_SETVBUF
489
490/* Define if you have the sigaction function. */
491#undef HAVE_SIGACTION
492
493/* Define if you have the siginterrupt function. */
494#undef HAVE_SIGINTERRUPT
495
496/* Define if you have the sigrelse function. */
497#undef HAVE_SIGRELSE
498
Guido van Rossum622cc032001-10-24 20:04:51 +0000499/* Define if you have the snprintf function. */
500#undef HAVE_SNPRINTF
501
Guido van Rossum228d8072001-03-02 05:58:11 +0000502/* Define if you have the statvfs function. */
503#undef HAVE_STATVFS
504
505/* Define if you have the strdup function. */
Guido van Rossum622cc032001-10-24 20:04:51 +0000506#define HAVE_STRDUP 1
Guido van Rossum228d8072001-03-02 05:58:11 +0000507
508/* Define if you have the strerror function. */
509#define HAVE_STRERROR 1
510
511/* Define if you have the strftime function. */
512#define HAVE_STRFTIME 1
513
Guido van Rossum228d8072001-03-02 05:58:11 +0000514/* Define if you have the symlink function. */
515#undef HAVE_SYMLINK
516
Guido van Rossum622cc032001-10-24 20:04:51 +0000517/* Define if you have the sysconf function. */
518#undef HAVE_SYSCONF
519
Guido van Rossum228d8072001-03-02 05:58:11 +0000520/* Define if you have the tcgetpgrp function. */
521#undef HAVE_TCGETPGRP
522
523/* Define if you have the tcsetpgrp function. */
524#undef HAVE_TCSETPGRP
525
Guido van Rossum622cc032001-10-24 20:04:51 +0000526/* Define if you have the tempnam function. */
527#undef HAVE_TEMPNAM
528
Guido van Rossum228d8072001-03-02 05:58:11 +0000529/* Define if you have the timegm function. */
530#undef HAVE_TIMEGM
531
532/* Define if you have the times function. */
533#undef HAVE_TIMES
534
Guido van Rossum622cc032001-10-24 20:04:51 +0000535/* Define if you have the tmpfile function. */
536#undef HAVE_TMPFILE
537
538/* Define if you have the tmpnam function. */
539#undef HAVE_TMPNAM
540
541/* Define if you have the tmpnam_r function. */
542#undef HAVE_TMPNAM_R
543
Guido van Rossum228d8072001-03-02 05:58:11 +0000544/* Define if you have the truncate function. */
545#undef HAVE_TRUNCATE
546
547/* Define if you have the uname function. */
548#undef HAVE_UNAME
549
550/* Define if you have the waitpid function. */
551#undef HAVE_WAITPID
552
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000553/* Define if you have the <conio.h> header file. */
554#undef HAVE_CONIO_H
555
Guido van Rossum622cc032001-10-24 20:04:51 +0000556/* Define if you have the <db.h> header file. */
557#undef HAVE_DB_H
558
559/* Define if you have the <db1/ndbm.h> header file. */
560#undef HAVE_DB1_NDBM_H
561
562/* Define if you have the <db_185.h> header file. */
563#undef HAVE_DB_185_H
564
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000565/* Define if you have the <direct.h> header file. */
566#undef HAVE_DIRECT_H
567
Guido van Rossum228d8072001-03-02 05:58:11 +0000568/* Define if you have the <dirent.h> header file. */
569#undef HAVE_DIRENT_H
570
571/* Define if you have the <dlfcn.h> header file. */
572#undef HAVE_DLFCN_H
573
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000574/* Define if you have the <errno.h> header file. */
575#define HAVE_ERRNO_H 1
576
Guido van Rossum228d8072001-03-02 05:58:11 +0000577/* Define if you have the <fcntl.h> header file. */
578#undef HAVE_FCNTL_H
579
Guido van Rossum622cc032001-10-24 20:04:51 +0000580/* Define if you have the <gdbm/ndbm.h> header file. */
581#undef HAVE_GDBM_NDBM_H
582
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000583/* Define if you have the <io.h> header file. */
584#undef HAVE_IO_H
585
Guido van Rossum622cc032001-10-24 20:04:51 +0000586/* Define if you have the <langinfo.h> header file. */
587#undef HAVE_LANGINFO_H
588
589/* Define if you have the <libutil.h> header file. */
590#undef HAVE_LIBUTIL_H
591
Guido van Rossum228d8072001-03-02 05:58:11 +0000592/* Define if you have the <ncurses.h> header file. */
593#undef HAVE_NCURSES_H
594
Guido van Rossum622cc032001-10-24 20:04:51 +0000595/* Define if you have the <ndbm.h> header file. */
596#undef HAVE_NDBM_H
597
Guido van Rossum228d8072001-03-02 05:58:11 +0000598/* Define if you have the <ndir.h> header file. */
599#undef HAVE_NDIR_H
600
Guido van Rossum622cc032001-10-24 20:04:51 +0000601/* Define if you have the <netpacket/packet.h> header file. */
602#undef HAVE_NETPACKET_PACKET_H
603
604/* Define if you have the <poll.h> header file. */
605#undef HAVE_POLL_H
606
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000607/* Define if you have the <process.h> header file. */
608#undef HAVE_PROCESS_H
609
Guido van Rossum228d8072001-03-02 05:58:11 +0000610/* Define if you have the <pthread.h> header file. */
611#undef HAVE_PTHREAD_H
612
Guido van Rossum622cc032001-10-24 20:04:51 +0000613/* Define if you have the <pty.h> header file. */
614#undef HAVE_PTY_H
615
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000616/* Define if you have the <signal.h> header file. */
617#define HAVE_SIGNAL_H
618
Guido van Rossum228d8072001-03-02 05:58:11 +0000619/* Define if you have the <sys/audioio.h> header file. */
620#undef HAVE_SYS_AUDIOIO_H
621
622/* Define if you have the <sys/dir.h> header file. */
623#undef HAVE_SYS_DIR_H
624
625/* Define if you have the <sys/file.h> header file. */
626#undef HAVE_SYS_FILE_H
627
628/* Define if you have the <sys/lock.h> header file. */
629#undef HAVE_SYS_LOCK_H
630
Guido van Rossum622cc032001-10-24 20:04:51 +0000631/* Define if you have the <sys/modem.h> header file. */
632#undef HAVE_SYS_MODEM_H
633
Guido van Rossum228d8072001-03-02 05:58:11 +0000634/* Define if you have the <sys/ndir.h> header file. */
635#undef HAVE_SYS_NDIR_H
636
637/* Define if you have the <sys/param.h> header file. */
638#undef HAVE_SYS_PARAM_H
639
Guido van Rossum622cc032001-10-24 20:04:51 +0000640/* Define if you have the <sys/poll.h> header file. */
641#undef HAVE_SYS_POLL_H
642
643/* Define if you have the <sys/resource.h> header file. */
644#undef HAVE_SYS_RESOURCE_H
645
Guido van Rossum228d8072001-03-02 05:58:11 +0000646/* Define if you have the <sys/select.h> header file. */
647#undef HAVE_SYS_SELECT_H
648
Guido van Rossum622cc032001-10-24 20:04:51 +0000649/* Define if you have the <sys/socket.h> header file. */
650#undef HAVE_SYS_SOCKET_H
651
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000652/* Define if you have the <sys/stat.h> header file. */
653#define HAVE_SYS_STAT_H 1
654
Guido van Rossum228d8072001-03-02 05:58:11 +0000655/* Define if you have the <sys/time.h> header file. */
656#undef HAVE_SYS_TIME_H
657
658/* Define if you have the <sys/times.h> header file. */
659#undef HAVE_SYS_TIMES_H
660
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000661/* Define if you have the <sys/types.h> header file. */
662#define HAVE_SYS_TYPES_H 1
663
Guido van Rossum228d8072001-03-02 05:58:11 +0000664/* Define if you have the <sys/un.h> header file. */
665#undef HAVE_SYS_UN_H
666
667/* Define if you have the <sys/utsname.h> header file. */
668#undef HAVE_SYS_UTSNAME_H
669
670/* Define if you have the <sys/wait.h> header file. */
671#undef HAVE_SYS_WAIT_H
672
Guido van Rossum622cc032001-10-24 20:04:51 +0000673/* Define if you have the <termios.h> header file. */
674#undef HAVE_TERMIOS_H
675
Guido van Rossum228d8072001-03-02 05:58:11 +0000676/* Define if you have the <thread.h> header file. */
677#undef HAVE_THREAD_H
678
679/* Define if you have the <unistd.h> header file. */
Guido van Rossum622cc032001-10-24 20:04:51 +0000680#define HAVE_UNISTD_H 1
Guido van Rossum228d8072001-03-02 05:58:11 +0000681
682/* Define if you have the <utime.h> header file. */
683#undef HAVE_UTIME_H
684
685/* Define if you have the dl library (-ldl). */
686#undef HAVE_LIBDL
687
688/* Define if you have the dld library (-ldld). */
689#undef HAVE_LIBDLD
690
691/* Define if you have the ieee library (-lieee). */
692#undef HAVE_LIBIEEE
693
Guido van Rossum622cc032001-10-24 20:04:51 +0000694#ifdef __CYGWIN__
695#ifdef USE_DL_IMPORT
696#define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE
697#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE
698#else
699#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE
700#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE
701#endif
702#endif
703
704/* Define the macros needed if on a UnixWare 7.x system. */
705#if defined(__USLC__) && defined(__SCO_VERSION__)
706#define STRICT_SYSV_CURSES /* Don't use ncurses extensions */
707#endif
708
Guido van Rossum228d8072001-03-02 05:58:11 +0000709
710#define DONT_HAVE_FSTAT 1
711#define DONT_HAVE_STAT 1
Guido van Rossum228d8072001-03-02 05:58:11 +0000712
Guido van Rossum622cc032001-10-24 20:04:51 +0000713#define PLATFORM "riscos"
Skip Montanaro7befb992004-02-10 16:50:21 +0000714
715#endif /* Py_PYCONFIG_H */