blob: 5b6fa0a5bb4fba3114d7e75640f0bf06613f08c9 [file] [log] [blame]
Jack Jansen42218ce1997-01-31 16:15:11 +00001/***********************************************************
2Copyright 1991-1997 by Stichting Mathematisch Centrum, Amsterdam,
3The Netherlands.
4
5 All Rights Reserved
6
7Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
9provided that the above copyright notice appear in all copies and that
10both that copyright notice and this permission notice appear in
11supporting documentation, and that the names of Stichting Mathematisch
12Centrum or CWI not be used in advertising or publicity pertaining to
13distribution of the software without specific, written prior permission.
14
15STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
16THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
18FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
21OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22
23******************************************************************/
24
Jack Jansen7e124ea1996-08-19 11:38:54 +000025/* config.h for Macintosh.
Jack Jansen5c214202000-04-07 09:10:35 +000026 Valid only for CodeWarrior.
Jack Jansen7e124ea1996-08-19 11:38:54 +000027 There's no point in giving exact version numbers of the compilers
28 since we don't update this file as each compiler comes out;
29 with CodeWarrior, we generally use the most recent version.
30*/
31
32#define USE_STACKCHECK
Guido van Rossum739267b1994-08-29 08:42:37 +000033
Jack Jansen48d071d1995-01-18 13:56:20 +000034/* Define if on Macintosh (THINK_C, MPW or __MWERKS__ should also be defined) */
Guido van Rossumeabdbff1995-02-18 14:56:51 +000035#ifndef macintosh
Guido van Rossumce9739b1994-01-05 16:17:15 +000036#define macintosh
Guido van Rossumeabdbff1995-02-18 14:56:51 +000037#endif
Guido van Rossumce9739b1994-01-05 16:17:15 +000038
Jack Jansen5c214202000-04-07 09:10:35 +000039/* Define if you have the fopenRF function. */
Guido van Rossum6a5df901995-01-18 23:59:06 +000040#ifdef THINK_C
41#define HAVE_FOPENRF
42#endif
Jack Jansenc743c8d1996-02-14 16:02:30 +000043
Jack Jansen5c214202000-04-07 09:10:35 +000044/* Define to case-check imported modules (why is this here?) */
Jack Jansen64da1691998-02-20 15:50:23 +000045#define CHECK_IMPORT_CASE
Jack Jansenae178ea1996-10-23 15:42:01 +000046
Jack Jansen5c214202000-04-07 09:10:35 +000047#if defined(USE_GUSI1) || defined(USE_GUSI2)
48#define USE_GUSI
Guido van Rossume71d8531995-02-19 15:49:39 +000049#endif
50
Guido van Rossumce9739b1994-01-05 16:17:15 +000051/* Define if on AIX 3.
52 System headers sometimes define this.
53 We just want to avoid a redefinition error message. */
54#ifndef _ALL_SOURCE
Jack Jansen5c214202000-04-07 09:10:35 +000055#undef _ALL_SOURCE
Guido van Rossumce9739b1994-01-05 16:17:15 +000056#endif
57
Guido van Rossumd4d77281994-08-19 10:51:31 +000058/* Define if type char is unsigned and you are not using gcc. */
Jack Jansen5c214202000-04-07 09:10:35 +000059#ifndef __CHAR_UNSIGNED__
60#undef __CHAR_UNSIGNED__
61#endif
Guido van Rossumd4d77281994-08-19 10:51:31 +000062
Guido van Rossumce9739b1994-01-05 16:17:15 +000063/* Define to empty if the keyword does not work. */
Jack Jansen5c214202000-04-07 09:10:35 +000064#undef const
Guido van Rossumce9739b1994-01-05 16:17:15 +000065
66/* Define to `int' if <sys/types.h> doesn't define. */
Jack Jansen5c214202000-04-07 09:10:35 +000067#undef gid_t
Guido van Rossumce9739b1994-01-05 16:17:15 +000068
69/* Define if your struct tm has tm_zone. */
Jack Jansen5c214202000-04-07 09:10:35 +000070#undef HAVE_TM_ZONE
Guido van Rossumce9739b1994-01-05 16:17:15 +000071
72/* Define if you don't have tm_zone but do have the external array
73 tzname. */
Jack Jansen5c214202000-04-07 09:10:35 +000074#undef HAVE_TZNAME
75
76/* Define as __inline if that's what the C compiler calls it. */
77#undef inline
Guido van Rossumce9739b1994-01-05 16:17:15 +000078
79/* Define if on MINIX. */
Jack Jansen5c214202000-04-07 09:10:35 +000080#undef _MINIX
Guido van Rossumce9739b1994-01-05 16:17:15 +000081
82/* Define to `int' if <sys/types.h> doesn't define. */
Jack Jansen5c214202000-04-07 09:10:35 +000083#undef mode_t
Guido van Rossumce9739b1994-01-05 16:17:15 +000084
85/* Define to `long' if <sys/types.h> doesn't define. */
Jack Jansen5c214202000-04-07 09:10:35 +000086#undef off_t
Guido van Rossumce9739b1994-01-05 16:17:15 +000087
88/* Define to `int' if <sys/types.h> doesn't define. */
Jack Jansen5c214202000-04-07 09:10:35 +000089#undef pid_t
Guido van Rossumce9739b1994-01-05 16:17:15 +000090
91/* Define if the system does not provide POSIX.1 features except
92 with this defined. */
Jack Jansen5c214202000-04-07 09:10:35 +000093#undef _POSIX_1_SOURCE
Guido van Rossumce9739b1994-01-05 16:17:15 +000094
95/* Define if you need to in order for stat and other things to work. */
Jack Jansen5c214202000-04-07 09:10:35 +000096#undef _POSIX_SOURCE
Guido van Rossumce9739b1994-01-05 16:17:15 +000097
98/* Define as the return type of signal handlers (int or void). */
99#define RETSIGTYPE void
100
101/* Define to `unsigned' if <sys/types.h> doesn't define. */
Jack Jansen5c214202000-04-07 09:10:35 +0000102#undef size_t
Guido van Rossumce9739b1994-01-05 16:17:15 +0000103
104/* Define if you have the ANSI C header files. */
Jack Jansen6a474c51998-08-20 14:49:33 +0000105#define STDC_HEADERS 1
Guido van Rossumce9739b1994-01-05 16:17:15 +0000106
Guido van Rossumce9739b1994-01-05 16:17:15 +0000107/* Define if you can safely include both <sys/time.h> and <time.h>. */
Jack Jansen5c214202000-04-07 09:10:35 +0000108#undef TIME_WITH_SYS_TIME
Guido van Rossumce9739b1994-01-05 16:17:15 +0000109
110/* Define if your <sys/time.h> declares struct tm. */
Jack Jansen5c214202000-04-07 09:10:35 +0000111#undef TM_IN_SYS_TIME
Guido van Rossumce9739b1994-01-05 16:17:15 +0000112
113/* Define to `int' if <sys/types.h> doesn't define. */
Jack Jansen5c214202000-04-07 09:10:35 +0000114#undef uid_t
Guido van Rossumce9739b1994-01-05 16:17:15 +0000115
Jack Jansen5c214202000-04-07 09:10:35 +0000116/* Define if your processor stores words with the most significant
117 byte first (like Motorola and SPARC, unlike Intel and VAX). */
118#define WORDS_BIGENDIAN 1
Guido van Rossumce9739b1994-01-05 16:17:15 +0000119
120/* Define if your <unistd.h> contains bad prototypes for exec*()
121 (as it does on SGI IRIX 4.x) */
Jack Jansen5c214202000-04-07 09:10:35 +0000122#undef BAD_EXEC_PROTOTYPES
Guido van Rossumce9739b1994-01-05 16:17:15 +0000123
Guido van Rossumeabdbff1995-02-18 14:56:51 +0000124/* Define if your compiler botches static forward declarations */
Jack Jansenfea75331994-12-14 13:38:13 +0000125#define BAD_STATIC_FORWARD
Jack Jansen5c214202000-04-07 09:10:35 +0000126
127/* Define for AIX if your compiler is a genuine IBM xlC/xlC_r
128 and you want support for AIX C++ shared extension modules. */
129#undef AIX_GENUINE_CPLUSPLUS
130
131/* Define this if you have BeOS threads */
132#undef BEOS_THREADS
133
134/* Define if you have the Mach cthreads package */
135#undef C_THREADS
Guido van Rossumd4d77281994-08-19 10:51:31 +0000136
137/* Define to `long' if <time.h> doesn't define. */
Jack Jansen5c214202000-04-07 09:10:35 +0000138#undef clock_t
Guido van Rossumd4d77281994-08-19 10:51:31 +0000139
Jack Jansen5c214202000-04-07 09:10:35 +0000140/* Used for BeOS configuration */
141#undef DL_EXPORT_HEADER
142#ifdef DL_EXPORT_HEADER
143#include DL_EXPORT_HEADER
144#endif
145
146/* Define if getpgrp() must be called as getpgrp(0). */
147#undef GETPGRP_HAVE_ARG
148
149/* Define if gettimeofday() does not have second (timezone) argument
150 This is the case on Motorola V4 (R40V4.2) */
151#undef GETTIMEOFDAY_NO_TZ
Guido van Rossumd4d77281994-08-19 10:51:31 +0000152
153/* Define this if your time.h defines altzone */
Jack Jansen5c214202000-04-07 09:10:35 +0000154#undef HAVE_ALTZONE
155
156/* Define this if you have gethostbyname() */
157#undef HAVE_GETHOSTBYNAME
158
159/* Define this if you have some version of gethostbyname_r() */
160#undef HAVE_GETHOSTBYNAME_R
161
162/* Define this if you have the 3-arg version of gethostbyname_r() */
163#undef HAVE_GETHOSTBYNAME_R_3_ARG
164
165/* Define this if you have the 5-arg version of gethostbyname_r() */
166#undef HAVE_GETHOSTBYNAME_R_5_ARG
167
168/* Define this if you have the 6-arg version of gethostbyname_r() */
169#undef HAVE_GETHOSTBYNAME_R_6_ARG
170
171/* Define this if you have the type long long */
172#undef HAVE_LONG_LONG
173
174/* Define this if you have a K&R style C preprocessor */
175#undef HAVE_OLD_CPP
Guido van Rossumce9739b1994-01-05 16:17:15 +0000176
177/* Define if your compiler supports function prototypes */
Jack Jansen6a474c51998-08-20 14:49:33 +0000178#define HAVE_PROTOTYPES 1
Guido van Rossumce9739b1994-01-05 16:17:15 +0000179
Guido van Rossumd4d77281994-08-19 10:51:31 +0000180/* Define if your compiler supports variable length function prototypes
181 (e.g. void fprintf(FILE *, char *, ...);) *and* <stdarg.h> */
182#define HAVE_STDARG_PROTOTYPES
183
Jack Jansen5c214202000-04-07 09:10:35 +0000184/* Define if malloc(0) returns a NULL pointer */
185#undef MALLOC_ZERO_RETURNS_NULL
186
Guido van Rossumd4d77281994-08-19 10:51:31 +0000187/* Define if you have POSIX threads */
Jack Jansen5c214202000-04-07 09:10:35 +0000188#ifdef USE_GUSI2
189#define _POSIX_THREADS
190#endif
191
192/* Define to force use of thread-safe errno, h_errno, and other functions */
193#undef _REENTRANT
194
195/* Define if setpgrp() must be called as setpgrp(0, 0). */
196#undef SETPGRP_HAVE_ARG
Guido van Rossumd4d77281994-08-19 10:51:31 +0000197
198/* Define to empty if the keyword does not work. */
Jack Jansen5c214202000-04-07 09:10:35 +0000199#undef signed
Guido van Rossumd4d77281994-08-19 10:51:31 +0000200
Guido van Rossumce9739b1994-01-05 16:17:15 +0000201/* Define if you can safely include both <sys/select.h> and <sys/time.h>
202 (which you can't on SCO ODT 3.0). */
Jack Jansen5c214202000-04-07 09:10:35 +0000203#undef SYS_SELECT_WITH_SYS_TIME
204
205/* Define if a va_list is an array of some kind */
206#undef VA_LIST_IS_ARRAY
207
208/* Define to empty if the keyword does not work. */
209#undef volatile
210
211/* Define if you want SIGFPE handled (see Include/pyfpe.h). */
212#undef WANT_SIGFPE_HANDLER
213
214/* Define if the compiler provides a wchar.h header file. */
215#undef HAVE_WCHAR_H
216
217/* Define if you have a useable wchar_t type defined in wchar.h; useable
218 means wchar_t must be 16-bit unsigned type. (see
219 Include/unicodeobject.h). */
220#undef HAVE_USABLE_WCHAR_T
221
222/* Define if you want wctype.h functions to be used instead of the
223 one supplied by Python itself. (see Include/unicodectype.h). */
224#undef WANT_WCTYPE_FUNCTIONS
Guido van Rossumce9739b1994-01-05 16:17:15 +0000225
Guido van Rossumd4d77281994-08-19 10:51:31 +0000226/* Define if you want to use SGI (IRIX 4) dynamic linking.
227 This requires the "dl" library by Jack Jansen,
228 ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z.
229 Don't bother on IRIX 5, it already has dynamic linking using SunOS
230 style shared libraries */
Jack Jansen5c214202000-04-07 09:10:35 +0000231#undef WITH_SGI_DL
Guido van Rossumd4d77281994-08-19 10:51:31 +0000232
233/* Define if you want to emulate SGI (IRIX 4) dynamic linking.
234 This is rumoured to work on VAX (Ultrix), Sun3 (SunOS 3.4),
235 Sequent Symmetry (Dynix), and Atari ST.
236 This requires the "dl-dld" library,
237 ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z,
238 as well as the "GNU dld" library,
239 ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z.
240 Don't bother on SunOS 4 or 5, they already have dynamic linking using
241 shared libraries */
Jack Jansen5c214202000-04-07 09:10:35 +0000242#undef WITH_DL_DLD
243
244/* Define if you want to use the new-style (Openstep, Rhapsody, MacOS)
245 dynamic linker (dyld) instead of the old-style (NextStep) dynamic
246 linker (rld). Dyld is necessary to support frameworks. */
247#undef WITH_DYLD
Guido van Rossumd4d77281994-08-19 10:51:31 +0000248
Guido van Rossumce9739b1994-01-05 16:17:15 +0000249/* Define if you want to compile in rudimentary thread support */
Jack Jansen5c214202000-04-07 09:10:35 +0000250/* On the Mac this is optionally defined the the mwerks_*_config.h file */
Guido van Rossumeabdbff1995-02-18 14:56:51 +0000251/* #undef WITH_THREAD */
Guido van Rossumce9739b1994-01-05 16:17:15 +0000252
Jack Jansen5c214202000-04-07 09:10:35 +0000253/* Define if you want to produce an OpenStep/Rhapsody framework
254 (shared library plus accessory files). */
255#undef WITH_NEXT_FRAMEWORK
Guido van Rossumce9739b1994-01-05 16:17:15 +0000256
Jack Jansen5c214202000-04-07 09:10:35 +0000257/* The number of bytes in an off_t. */
258#undef SIZEOF_OFF_T
259
260/* Defined to enable large file support when an off_t is bigger than a long
261 and long long is available and at least as big as an off_t. You may need
262 to add some flags for configuration and compilation to enable this mode.
263 E.g, for Solaris 2.7:
264 CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" OPT="-O2 $CFLAGS" \
265 configure
266*/
267#undef HAVE_LARGEFILE_SUPPORT
268
269/* Defined when any dynamic module loading is enabled */
270#ifndef HAVE_DYNAMIC_LOADING
271#undef HAVE_DYNAMIC_LOADING
272#endif
273
274/* The number of bytes in a char. */
275#define SIZEOF_CHAR 1
276
277/* The number of bytes in a double. */
278#define SIZEOF_DOUBLE 8
279
280/* The number of bytes in a float. */
281#define SIZEOF_FLOAT 4
282
283/* The number of bytes in a int. */
284#define SIZEOF_INT 4
285
286/* The number of bytes in a long. */
287#define SIZEOF_LONG 4
288
289/* The number of bytes in a long long. */
290#undef SIZEOF_LONG_LONG
291
292/* The number of bytes in a short. */
293#define SIZEOF_SHORT 2
294
295/* The number of bytes in a void *. */
296#define SIZEOF_VOID_P 4
297
298/* Define if you have the alarm function. */
299#undef HAVE_ALARM
300
301/* Define if you have the chown function. */
302#undef HAVE_CHOWN
Guido van Rossumd4d77281994-08-19 10:51:31 +0000303
Guido van Rossumce9739b1994-01-05 16:17:15 +0000304/* Define if you have clock. */
Guido van Rossumd4d77281994-08-19 10:51:31 +0000305#define HAVE_CLOCK
306
Jack Jansen5c214202000-04-07 09:10:35 +0000307/* Define if you have the confstr function. */
308#undef HAVE_CONFSTR
Guido van Rossumce9739b1994-01-05 16:17:15 +0000309
Jack Jansen5c214202000-04-07 09:10:35 +0000310/* Define if you have the ctermid function. */
311#undef HAVE_CTERMID
Guido van Rossumce9739b1994-01-05 16:17:15 +0000312
Jack Jansen5c214202000-04-07 09:10:35 +0000313/* Define if you have the ctermid_r function. */
314#undef HAVE_CTERMID_R
315
316/* Define if you have the dlopen function. */
317#undef HAVE_DLOPEN
318
319/* Define if you have the dup2 function. */
320#undef HAVE_DUP2
321
322/* Define if you have the execv function. */
323#undef HAVE_EXECV
324
325/* Define if you have the fdatasync function. */
326#undef HAVE_FDATASYNC
327
328/* Define if you have the flock function. */
329#undef HAVE_FLOCK
330
331/* Define if you have the fork function. */
332#undef HAVE_FORK
333
334/* Define if you have the fpathconf function. */
335#undef HAVE_FPATHCONF
336
337/* Define if you have the fseek64 function. */
338#undef HAVE_FSEEK64
339
340/* Define if you have the fseeko function. */
341#undef HAVE_FSEEKO
342
343/* Define if you have the fstatvfs function. */
344#undef HAVE_FSTATVFS
345
346/* Define if you have the fsync function. */
347#define HAVE_FSYNC
348
349/* Define if you have the ftell64 function. */
350#undef HAVE_FTELL64
351
352/* Define if you have the ftello function. */
353#undef HAVE_FTELLO
354
355/* Define if you have the ftime function. */
356#undef HAVE_FTIME
357
358/* Define if you have the ftruncate function. */
359#ifdef USE_GUSI
360#define HAVE_FTRUNCATE
361#endif
362
363/* Define if you have the getcwd function. */
364#define HAVE_GETCWD
365
366/* Define if you have the getgroups function. */
367#undef HAVE_GETGROUPS
368
369/* Define if you have the getlogin function. */
370#undef HAVE_GETLOGIN
371
372/* Define if you have the getpeername function. */
373#ifdef USE_GUSI
374#define HAVE_GETPEERNAME
375#endif
Guido van Rossumce9739b1994-01-05 16:17:15 +0000376
377/* Define if you have getpgrp. */
Jack Jansen5c214202000-04-07 09:10:35 +0000378#undef HAVE_GETPGRP
Guido van Rossumce9739b1994-01-05 16:17:15 +0000379
Jack Jansen5c214202000-04-07 09:10:35 +0000380/* Define if you have the getpid function. */
381#undef HAVE_GETPID
Guido van Rossumd4d77281994-08-19 10:51:31 +0000382
Jack Jansen5c214202000-04-07 09:10:35 +0000383/* Define if you have the getpwent function. */
384#undef HAVE_GETPWENT
Guido van Rossumce9739b1994-01-05 16:17:15 +0000385
Jack Jansen5c214202000-04-07 09:10:35 +0000386/* Define if you have the gettimeofday function. */
387#define HAVE_GETTIMEOFDAY
Guido van Rossumce9739b1994-01-05 16:17:15 +0000388
Jack Jansen5c214202000-04-07 09:10:35 +0000389/* Define if you have the getwd function. */
390#undef HAVE_GETWD
Guido van Rossumd4d77281994-08-19 10:51:31 +0000391
Jack Jansen5c214202000-04-07 09:10:35 +0000392/* Define if you have the hypot function. */
393#ifndef __MC68K__
394/* 68K hypot definition (and implementation) are unuseable
395** because they use 10-byte floats.
396*/
397#define HAVE_HYPOT
398#endif
Guido van Rossumce9739b1994-01-05 16:17:15 +0000399
Jack Jansen5c214202000-04-07 09:10:35 +0000400/* Define if you have the kill function. */
401#undef HAVE_KILL
Guido van Rossumce9739b1994-01-05 16:17:15 +0000402
Jack Jansen5c214202000-04-07 09:10:35 +0000403/* Define if you have the link function. */
404#undef HAVE_LINK
Guido van Rossumce9739b1994-01-05 16:17:15 +0000405
Jack Jansen5c214202000-04-07 09:10:35 +0000406/* Define if you have the lstat function. */
407#undef HAVE_LSTAT
Guido van Rossumce9739b1994-01-05 16:17:15 +0000408
Jack Jansen5c214202000-04-07 09:10:35 +0000409/* Define if you have the memmove function. */
410#define HAVE_MEMMOVE
Guido van Rossumd4d77281994-08-19 10:51:31 +0000411
Jack Jansen5c214202000-04-07 09:10:35 +0000412/* Define if you have the mkfifo function. */
413#undef HAVE_MKFIFO
Guido van Rossumce9739b1994-01-05 16:17:15 +0000414
Jack Jansen5c214202000-04-07 09:10:35 +0000415/* Define if you have the mktime function. */
416#define HAVE_MKTIME
Guido van Rossumce9739b1994-01-05 16:17:15 +0000417
Jack Jansen5c214202000-04-07 09:10:35 +0000418/* Define if you have the nice function. */
419#undef HAVE_NICE
Guido van Rossumce9739b1994-01-05 16:17:15 +0000420
Jack Jansen5c214202000-04-07 09:10:35 +0000421/* Define if you have the pathconf function. */
422#undef HAVE_PATHCONF
Guido van Rossumd4d77281994-08-19 10:51:31 +0000423
Jack Jansen5c214202000-04-07 09:10:35 +0000424/* Define if you have the pause function. */
425#undef HAVE_PAUSE
426
427/* Define if you have the plock function. */
428/* XXXX GUSI threads* */
429#undef HAVE_PLOCK
430
431/* Define if you have the pthread_init function. */
432/* XXXX GUSI threads* */
433#undef HAVE_PTHREAD_INIT
434
435/* Define if you have the putenv function. */
436#undef HAVE_PUTENV
437
438/* Define if you have the readlink function. */
439#undef HAVE_READLINK
440
441/* Define if you have the select function. */
442#ifdef USE_GUSI
443#define HAVE_SELECT
444#endif
445
446/* Define if you have the setgid function. */
447#undef HAVE_SETGID
448
449/* Define if you have the setlocale function. */
450#undef HAVE_SETLOCALE
451
452/* Define if you have the setpgid function. */
453#undef HAVE_SETPGID
454
455/* Define if you have the setpgrp function. */
456#undef HAVE_SETPGRP
457
458/* Define if you have the setsid function. */
459#undef HAVE_SETSID
460
461/* Define if you have the setuid function. */
462#undef HAVE_SETUID
463
464/* Define if you have the setvbuf function. */
Guido van Rossumd4d77281994-08-19 10:51:31 +0000465#define HAVE_SETVBUF
Guido van Rossumfe16cc01994-05-06 14:16:30 +0000466
Jack Jansen5c214202000-04-07 09:10:35 +0000467/* Define if you have the sigaction function. */
468#undef HAVE_SIGACTION
Guido van Rossumce9739b1994-01-05 16:17:15 +0000469
Jack Jansen5c214202000-04-07 09:10:35 +0000470/* Define if you have the siginterrupt function. */
471#undef HAVE_SIGINTERRUPT
Guido van Rossumce9739b1994-01-05 16:17:15 +0000472
Jack Jansen5c214202000-04-07 09:10:35 +0000473/* Define if you have the sigrelse function. */
474#undef HAVE_SIGRELSE
Guido van Rossumce9739b1994-01-05 16:17:15 +0000475
Jack Jansen5c214202000-04-07 09:10:35 +0000476/* Define if you have the statvfs function. */
477#undef HAVE_STATVFS
Guido van Rossumce9739b1994-01-05 16:17:15 +0000478
Jack Jansen5c214202000-04-07 09:10:35 +0000479/* Define if you have the strdup function. */
480#undef HAVE_STRDUP
Guido van Rossumce9739b1994-01-05 16:17:15 +0000481
Jack Jansen5c214202000-04-07 09:10:35 +0000482/* Define if you have the strerror function. */
483#define HAVE_STRERROR
Guido van Rossumce9739b1994-01-05 16:17:15 +0000484
Jack Jansen5c214202000-04-07 09:10:35 +0000485/* Define if you have the strftime function. */
486#define HAVE_STRFTIME
487
488/* Define if you have the strptime function. */
489#undef HAVE_STRPTIME
490
491/* Define if you have the symlink function. */
492#undef HAVE_SYMLINK
493
494/* Define if you have the sysconf function. */
495#undef HAVE_SYSCONF
496
497/* Define if you have the tcgetpgrp function. */
498#undef HAVE_TCGETPGRP
499
500/* Define if you have the tcsetpgrp function. */
501#undef HAVE_TCSETPGRP
502
503/* Define if you have the tempnam function. */
504#undef HAVE_TEMPNAM
505
506/* Define if you have the timegm function. */
507#undef HAVE_TIMEGM
508
509/* Define if you have the times function. */
510#undef HAVE_TIMES
511
512/* Define if you have the tmpfile function. */
513#define HAVE_TMPFILE
514
515/* Define if you have the tmpnam function. */
516#define HAVE_TMPNAM
517
518/* Define if you have the tmpnam_r function. */
519#undef HAVE_TMPNAM_R
520
521/* Define if you have the truncate function. */
522#define HAVE_TRUNCATE
523
524/* Define if you have the uname function. */
525#undef HAVE_UNAME
526
527/* Define if you have the waitpid function. */
528#undef HAVE_WAITPID
529
530/* Define if you have the <dirent.h> header file. */
531#ifdef USE_GUSI
532#define HAVE_DIRENT_H
533#endif
Guido van Rossumce9739b1994-01-05 16:17:15 +0000534
535/* Define if you have the <dlfcn.h> header file. */
Jack Jansen5c214202000-04-07 09:10:35 +0000536#undef HAVE_DLFCN_H
Guido van Rossumce9739b1994-01-05 16:17:15 +0000537
Guido van Rossumd4d77281994-08-19 10:51:31 +0000538/* Define if you have the <fcntl.h> header file. */
Jack Jansen5c214202000-04-07 09:10:35 +0000539#define HAVE_FCNTL_H
540
541/* Define if you have the <limits.h> header file. */
542#define HAVE_LIMITS_H
543
544/* Define if you have the <locale.h> header file. */
545#define HAVE_LOCALE_H
546
547/* Define if you have the <ncurses.h> header file. */
548#undef HAVE_NCURSES_H
549
550/* Define if you have the <ndir.h> header file. */
551#undef HAVE_NDIR_H
552
553/* Define if you have the <pthread.h> header file. */
554#ifdef USE_GUSI2
555#define HAVE_PTHREAD_H
556#endif
Guido van Rossumd4d77281994-08-19 10:51:31 +0000557
Guido van Rossumce9739b1994-01-05 16:17:15 +0000558/* Define if you have the <signal.h> header file. */
Guido van Rossumd4d77281994-08-19 10:51:31 +0000559#define HAVE_SIGNAL_H
Guido van Rossumce9739b1994-01-05 16:17:15 +0000560
561/* Define if you have the <stdarg.h> header file. */
Guido van Rossumd4d77281994-08-19 10:51:31 +0000562#define HAVE_STDARG_H
Guido van Rossumce9739b1994-01-05 16:17:15 +0000563
Jack Jansen5c214202000-04-07 09:10:35 +0000564/* Define if you have the <stddef.h> header file. */
565#define HAVE_STDDEF_H
566
Guido van Rossumce9739b1994-01-05 16:17:15 +0000567/* Define if you have the <stdlib.h> header file. */
Guido van Rossumd4d77281994-08-19 10:51:31 +0000568#define HAVE_STDLIB_H
Guido van Rossumce9739b1994-01-05 16:17:15 +0000569
570/* Define if you have the <sys/audioio.h> header file. */
Jack Jansen5c214202000-04-07 09:10:35 +0000571#undef HAVE_SYS_AUDIOIO_H
572
573/* Define if you have the <sys/dir.h> header file. */
574#undef HAVE_SYS_DIR_H
575
576/* Define if you have the <sys/file.h> header file. */
577#undef HAVE_SYS_FILE_H
578
579/* Define if you have the <sys/lock.h> header file. */
580#undef HAVE_SYS_LOCK_H
581
582/* Define if you have the <sys/ndir.h> header file. */
583#undef HAVE_SYS_NDIR_H
Guido van Rossumce9739b1994-01-05 16:17:15 +0000584
585/* Define if you have the <sys/param.h> header file. */
Jack Jansen5c214202000-04-07 09:10:35 +0000586#undef HAVE_SYS_PARAM_H
Guido van Rossumce9739b1994-01-05 16:17:15 +0000587
588/* Define if you have the <sys/select.h> header file. */
Jack Jansen5c214202000-04-07 09:10:35 +0000589#undef HAVE_SYS_SELECT_H
Guido van Rossumce9739b1994-01-05 16:17:15 +0000590
Guido van Rossumd4d77281994-08-19 10:51:31 +0000591/* Define if you have the <sys/time.h> header file. */
Jack Jansen5c214202000-04-07 09:10:35 +0000592#ifdef USE_GUSI
593#define HAVE_SYS_TIME_H
594#endif
Guido van Rossumd4d77281994-08-19 10:51:31 +0000595
Guido van Rossumce9739b1994-01-05 16:17:15 +0000596/* Define if you have the <sys/times.h> header file. */
Jack Jansen5c214202000-04-07 09:10:35 +0000597#undef HAVE_SYS_TIMES_H
Guido van Rossumce9739b1994-01-05 16:17:15 +0000598
599/* Define if you have the <sys/un.h> header file. */
Jack Jansen5c214202000-04-07 09:10:35 +0000600#undef HAVE_SYS_UN_H
Guido van Rossumce9739b1994-01-05 16:17:15 +0000601
602/* Define if you have the <sys/utsname.h> header file. */
Jack Jansen5c214202000-04-07 09:10:35 +0000603#undef HAVE_SYS_UTSNAME_H
604
605/* Define if you have the <sys/wait.h> header file. */
606#undef HAVE_SYS_WAIT_H
Guido van Rossumce9739b1994-01-05 16:17:15 +0000607
608/* Define if you have the <thread.h> header file. */
Jack Jansen5c214202000-04-07 09:10:35 +0000609#undef HAVE_THREAD_H
Guido van Rossumce9739b1994-01-05 16:17:15 +0000610
611/* Define if you have the <unistd.h> header file. */
Jack Jansen5c214202000-04-07 09:10:35 +0000612#define HAVE_UNISTD_H
Guido van Rossumce9739b1994-01-05 16:17:15 +0000613
614/* Define if you have the <utime.h> header file. */
Jack Jansen5c214202000-04-07 09:10:35 +0000615#define HAVE_UTIME_H
Guido van Rossumce9739b1994-01-05 16:17:15 +0000616
617/* Define if you have the dl library (-ldl). */
Jack Jansen5c214202000-04-07 09:10:35 +0000618#undef HAVE_LIBDL
Guido van Rossumce9739b1994-01-05 16:17:15 +0000619
Jack Jansen5c214202000-04-07 09:10:35 +0000620/* Define if you have the dld library (-ldld). */
621#undef HAVE_LIBDLD
Guido van Rossumd4d77281994-08-19 10:51:31 +0000622
Jack Jansen5c214202000-04-07 09:10:35 +0000623/* Define if you have the ieee library (-lieee). */
624#undef HAVE_LIBIEEE