1999-09-08 Gary Houston <ghouston@easynet.co.uk>
[bpt/guile.git] / libguile / scmconfig.h.in
CommitLineData
b1e9e9d1 1/* libguile/scmconfig.h.in. Generated automatically from configure.in by autoheader. */
0f2d19dd
JB
2
3/* Define if on AIX 3.
4 System headers sometimes define this.
5 We just want to avoid a redefinition error message. */
6#ifndef _ALL_SOURCE
7#undef _ALL_SOURCE
8#endif
9
abda0c59
JB
10/* Define if using alloca.c. */
11#undef C_ALLOCA
12
0f2d19dd
JB
13/* Define to empty if the keyword does not work. */
14#undef const
15
abda0c59
JB
16/* Define to one of _getb67, GETB67, getb67 for Cray-2 and Cray-YMP systems.
17 This function is required for alloca.c support on those systems. */
18#undef CRAY_STACKSEG_END
19
0f2d19dd
JB
20/* Define to the type of elements in the array set by `getgroups'.
21 Usually this is either `int' or `gid_t'. */
22#undef GETGROUPS_T
23
24/* Define to `int' if <sys/types.h> doesn't define. */
25#undef gid_t
26
abda0c59
JB
27/* Define if you have alloca, as a function or macro. */
28#undef HAVE_ALLOCA
29
30/* Define if you have <alloca.h> and it should be used (not on Ultrix). */
31#undef HAVE_ALLOCA_H
32
0f2d19dd
JB
33/* Define if your struct stat has st_blksize. */
34#undef HAVE_ST_BLKSIZE
35
36/* Define if your struct stat has st_blocks. */
37#undef HAVE_ST_BLOCKS
38
39/* Define if your struct stat has st_rdev. */
40#undef HAVE_ST_RDEV
41
42/* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
43#undef HAVE_SYS_WAIT_H
44
b9525b92
GH
45/* Define if your struct tm has tm_zone. */
46#undef HAVE_TM_ZONE
47
48/* Define if you don't have tm_zone but do have the external array
49 tzname. */
50#undef HAVE_TZNAME
51
74d977c6
JB
52/* Define as __inline if that's what the C compiler calls it. */
53#undef inline
54
0f2d19dd
JB
55/* Define if on MINIX. */
56#undef _MINIX
57
b09ca643
JB
58/* Define to `int' if <sys/types.h> doesn't define. */
59#undef mode_t
60
0f2d19dd
JB
61/* Define if the system does not provide POSIX.1 features except
62 with this defined. */
63#undef _POSIX_1_SOURCE
64
65/* Define if you need to in order for stat and other things to work. */
66#undef _POSIX_SOURCE
67
68/* Define as the return type of signal handlers (int or void). */
69#undef RETSIGTYPE
70
abda0c59
JB
71/* If using the C implementation of alloca, define if you know the
72 direction of stack growth for your system; otherwise it will be
73 automatically deduced at run-time.
74 STACK_DIRECTION > 0 => grows toward higher addresses
75 STACK_DIRECTION < 0 => grows toward lower addresses
76 STACK_DIRECTION = 0 => direction of growth unknown
77 */
78#undef STACK_DIRECTION
79
0f2d19dd
JB
80/* Define if you have the ANSI C header files. */
81#undef STDC_HEADERS
82
83/* Define if you can safely include both <sys/time.h> and <time.h>. */
84#undef TIME_WITH_SYS_TIME
85
b9525b92
GH
86/* Define if your <sys/time.h> declares struct tm. */
87#undef TM_IN_SYS_TIME
88
0f2d19dd
JB
89/* Define to `int' if <sys/types.h> doesn't define. */
90#undef uid_t
91
8d71b0ce
MD
92/* Define these two if you want support for debugging of Scheme
93 programs. */
94#undef DEBUG_EXTENSIONS
95#undef READER_EXTENSIONS
96
c1c6aa4b
MD
97/* Define this if your system defines S_ISLNK in sys/stat.h */
98#undef HAVE_S_ISLNK
99
b09ca643
JB
100/* Define this if your system defines struct linger, for use with the
101 getsockopt and setsockopt system calls. */
102#undef HAVE_STRUCT_LINGER
103
104/* Define this if floats are the same size as longs. */
105#undef SCM_SINGLES
106
107/* Define this if a callee's stack frame has a higher address than the
108 caller's stack frame. On most machines, this is not the case. */
109#undef SCM_STACK_GROWS_UP
110
2420229d 111/* Define this if <utime.h> doesn't define struct utimbuf unless
3594582b 112 _POSIX_SOURCE is #defined. See GUILE_STRUCT_UTIMBUF in aclocal.m4. */
2420229d
JB
113#undef UTIMBUF_NEEDS_POSIX
114
3594582b
JB
115/* Define this if we should #include <libc.h> when we've already
116 #included <unistd.h>. On some systems, they conflict, and libc.h
117 should be omitted. See GUILE_HEADER_LIBC_WITH_UNISTD in
118 aclocal.m4. */
119#undef LIBC_H_WITH_UNISTD_H
120
280e515a
MD
121/* Define this to include various undocumented functions used to debug
122 the Guile library itself. */
123#undef GUILE_DEBUG
124
b9025808
MD
125/* Define to implement scm_internal_select */
126#undef GUILE_ISELECT
127
72f0e9fc
MD
128/* Define if using cooperative multithreading. */
129#undef USE_COOP_THREADS
130
72f0e9fc
MD
131/* Define if using any sort of threads. */
132#undef USE_THREADS
133
f0cea46d
MV
134/* Define if you want support for dynamic linking. */
135#undef DYNAMIC_LINKING
136
c06768c8
TP
137/* Define if symbol tables on this system use leading underscores. */
138#undef USCORE
139
b9025808
MD
140/* Define if dlsym automatically supplies a leading underscore. */
141#undef DLSYM_ADDS_USCORE
142
e1a191a8
GH
143/* Define if the operating system can restart system calls. */
144#undef HAVE_RESTARTS
145
0e958795
JB
146/* Define if the system supports Unix-domain (file-domain) sockets. */
147#undef HAVE_UNIX_DOMAIN_SOCKETS
148
365d0782
MD
149/* This is included as part of a workaround for a autoheader bug. */
150#undef HAVE_REGCOMP
151
7105a806 152/* Define if the operating system supplies bzero without declaring it. */
4d3bacdd 153#undef MISSING_BZERO_DECL
7105a806 154
b74f4728
JB
155/* Define if the operating system supplies strptime without declaring it. */
156#undef MISSING_STRPTIME_DECL
157
d30a05f7
JB
158/* Define if the operating system supplies sleep without declaring it. */
159#undef MISSING_SLEEP_DECL
160
7105a806 161/* Define if the operating system supplies usleep without declaring it. */
4d3bacdd
JB
162#undef MISSING_USLEEP_DECL
163
b74f4728 164/* Define if the system headers declare usleep to return void. */
0935d604
MD
165#undef USLEEP_RETURNS_VOID
166
3afbf314
MD
167/* Define if the compiler supports long longs. */
168#undef HAVE_LONG_LONGS
169
170/* The number of bytes in a int. */
171#undef SIZEOF_INT
172
173/* The number of bytes in a long. */
174#undef SIZEOF_LONG
175
55861efa
MD
176/* Define if you have the atexit function. */
177#undef HAVE_ATEXIT
178
b9025808
MD
179/* Define if you have the bzero function. */
180#undef HAVE_BZERO
181
4c787b52
MD
182/* Define if you have the connect function. */
183#undef HAVE_CONNECT
184
1fd838af
JB
185/* Define if you have the ctermid function. */
186#undef HAVE_CTERMID
187
4c787b52
MD
188/* Define if you have the dlopen function. */
189#undef HAVE_DLOPEN
190
f4e5b810
GH
191/* Define if you have the endhostent function. */
192#undef HAVE_ENDHOSTENT
193
194/* Define if you have the endnetent function. */
195#undef HAVE_ENDNETENT
196
197/* Define if you have the endprotoent function. */
198#undef HAVE_ENDPROTOENT
199
200/* Define if you have the endservent function. */
201#undef HAVE_ENDSERVENT
202
0f2d19dd
JB
203/* Define if you have the ftime function. */
204#undef HAVE_FTIME
205
206/* Define if you have the getcwd function. */
207#undef HAVE_GETCWD
208
209/* Define if you have the geteuid function. */
210#undef HAVE_GETEUID
211
0e958795
JB
212/* Define if you have the getgroups function. */
213#undef HAVE_GETGROUPS
214
4c787b52
MD
215/* Define if you have the gethostbyname function. */
216#undef HAVE_GETHOSTBYNAME
217
cd34a384
JB
218/* Define if you have the gethostent function. */
219#undef HAVE_GETHOSTENT
220
f4e5b810
GH
221/* Define if you have the getnetbyaddr function. */
222#undef HAVE_GETNETBYADDR
223
224/* Define if you have the getnetbyname function. */
225#undef HAVE_GETNETBYNAME
226
227/* Define if you have the getnetent function. */
228#undef HAVE_GETNETENT
229
230/* Define if you have the getprotoent function. */
231#undef HAVE_GETPROTOENT
232
233/* Define if you have the getservent function. */
234#undef HAVE_GETSERVENT
235
19468eff
GH
236/* Define if you have the gettimeofday function. */
237#undef HAVE_GETTIMEOFDAY
238
733943b9
TT
239/* Define if you have the inet_aton function. */
240#undef HAVE_INET_ATON
241
f4e5b810
GH
242/* Define if you have the inet_lnaof function. */
243#undef HAVE_INET_LNAOF
244
245/* Define if you have the inet_makeaddr function. */
246#undef HAVE_INET_MAKEADDR
247
248/* Define if you have the inet_netof function. */
249#undef HAVE_INET_NETOF
250
0f2d19dd
JB
251/* Define if you have the lstat function. */
252#undef HAVE_LSTAT
253
c1c6aa4b
MD
254/* Define if you have the memmove function. */
255#undef HAVE_MEMMOVE
256
0f2d19dd
JB
257/* Define if you have the mkdir function. */
258#undef HAVE_MKDIR
259
260/* Define if you have the mknod function. */
261#undef HAVE_MKNOD
262
263/* Define if you have the nice function. */
264#undef HAVE_NICE
265
2834977b
MD
266/* Define if you have the on_exit function. */
267#undef HAVE_ON_EXIT
268
0e958795
JB
269/* Define if you have the pause function. */
270#undef HAVE_PAUSE
271
0f2d19dd
JB
272/* Define if you have the putenv function. */
273#undef HAVE_PUTENV
274
275/* Define if you have the readlink function. */
276#undef HAVE_READLINK
277
278/* Define if you have the rename function. */
279#undef HAVE_RENAME
280
281/* Define if you have the rmdir function. */
282#undef HAVE_RMDIR
283
284/* Define if you have the select function. */
285#undef HAVE_SELECT
286
b09ca643
JB
287/* Define if you have the setegid function. */
288#undef HAVE_SETEGID
289
290/* Define if you have the seteuid function. */
291#undef HAVE_SETEUID
292
f4e5b810
GH
293/* Define if you have the sethostent function. */
294#undef HAVE_SETHOSTENT
295
0f2d19dd
JB
296/* Define if you have the setlocale function. */
297#undef HAVE_SETLOCALE
298
f4e5b810
GH
299/* Define if you have the setnetent function. */
300#undef HAVE_SETNETENT
301
1fd838af
JB
302/* Define if you have the setpgid function. */
303#undef HAVE_SETPGID
304
69c60b07
JB
305/* Define if you have the setprotoent function. */
306#undef HAVE_SETPROTOENT
307
0e958795
JB
308/* Define if you have the setpwent function. */
309#undef HAVE_SETPWENT
310
69c60b07
JB
311/* Define if you have the setservent function. */
312#undef HAVE_SETSERVENT
313
1fd838af
JB
314/* Define if you have the setsid function. */
315#undef HAVE_SETSID
316
4c787b52
MD
317/* Define if you have the shl_load function. */
318#undef HAVE_SHL_LOAD
319
e1a191a8
GH
320/* Define if you have the sigaction function. */
321#undef HAVE_SIGACTION
322
0e958795
JB
323/* Define if you have the socketpair function. */
324#undef HAVE_SOCKETPAIR
325
4f654c0e
MD
326/* Define if you have the strdup function. */
327#undef HAVE_STRDUP
328
733943b9
TT
329/* Define if you have the strerror function. */
330#undef HAVE_STRERROR
331
0f2d19dd
JB
332/* Define if you have the strftime function. */
333#undef HAVE_STRFTIME
334
335/* Define if you have the strptime function. */
336#undef HAVE_STRPTIME
337
338/* Define if you have the symlink function. */
339#undef HAVE_SYMLINK
340
341/* Define if you have the sync function. */
342#undef HAVE_SYNC
343
341eaef0
GH
344/* Define if you have the system function. */
345#undef HAVE_SYSTEM
346
1fd838af
JB
347/* Define if you have the tcgetpgrp function. */
348#undef HAVE_TCGETPGRP
349
350/* Define if you have the tcsetpgrp function. */
351#undef HAVE_TCSETPGRP
352
0f2d19dd
JB
353/* Define if you have the times function. */
354#undef HAVE_TIMES
355
0e958795
JB
356/* Define if you have the tzset function. */
357#undef HAVE_TZSET
358
0f2d19dd
JB
359/* Define if you have the uname function. */
360#undef HAVE_UNAME
361
7105a806
MD
362/* Define if you have the usleep function. */
363#undef HAVE_USLEEP
364
1fd838af
JB
365/* Define if you have the waitpid function. */
366#undef HAVE_WAITPID
367
0f2d19dd
JB
368/* Define if you have the <dirent.h> header file. */
369#undef HAVE_DIRENT_H
370
def804a3
JB
371/* Define if you have the <io.h> header file. */
372#undef HAVE_IO_H
373
b09ca643
JB
374/* Define if you have the <libc.h> header file. */
375#undef HAVE_LIBC_H
376
0f2d19dd
JB
377/* Define if you have the <limits.h> header file. */
378#undef HAVE_LIMITS_H
379
380/* Define if you have the <malloc.h> header file. */
381#undef HAVE_MALLOC_H
382
383/* Define if you have the <memory.h> header file. */
384#undef HAVE_MEMORY_H
385
386/* Define if you have the <ndir.h> header file. */
387#undef HAVE_NDIR_H
388
0e958795
JB
389/* Define if you have the <regex.h> header file. */
390#undef HAVE_REGEX_H
391
365d0782
MD
392/* Define if you have the <rx/rxposix.h> header file. */
393#undef HAVE_RX_RXPOSIX_H
394
395/* Define if you have the <rxposix.h> header file. */
396#undef HAVE_RXPOSIX_H
397
0f2d19dd
JB
398/* Define if you have the <string.h> header file. */
399#undef HAVE_STRING_H
400
401/* Define if you have the <sys/dir.h> header file. */
402#undef HAVE_SYS_DIR_H
403
8d71b0ce
MD
404/* Define if you have the <sys/ioctl.h> header file. */
405#undef HAVE_SYS_IOCTL_H
406
0f2d19dd
JB
407/* Define if you have the <sys/ndir.h> header file. */
408#undef HAVE_SYS_NDIR_H
409
410/* Define if you have the <sys/select.h> header file. */
411#undef HAVE_SYS_SELECT_H
412
413/* Define if you have the <sys/time.h> header file. */
414#undef HAVE_SYS_TIME_H
415
416/* Define if you have the <sys/timeb.h> header file. */
417#undef HAVE_SYS_TIMEB_H
418
419/* Define if you have the <sys/times.h> header file. */
420#undef HAVE_SYS_TIMES_H
421
422/* Define if you have the <sys/types.h> header file. */
423#undef HAVE_SYS_TYPES_H
424
2420229d
JB
425/* Define if you have the <sys/utime.h> header file. */
426#undef HAVE_SYS_UTIME_H
427
0f2d19dd
JB
428/* Define if you have the <time.h> header file. */
429#undef HAVE_TIME_H
430
431/* Define if you have the <unistd.h> header file. */
432#undef HAVE_UNISTD_H
2420229d
JB
433
434/* Define if you have the <utime.h> header file. */
435#undef HAVE_UTIME_H
f0cea46d
MV
436
437/* Define if you have the dl library (-ldl). */
438#undef HAVE_LIBDL
439
440/* Define if you have the dld library (-ldld). */
441#undef HAVE_LIBDLD
ee2a8b9b
JB
442
443/* Define if you have the m library (-lm). */
444#undef HAVE_LIBM
445
446/* Define if you have the nsl library (-lnsl). */
447#undef HAVE_LIBNSL
448
4ad1004a
JB
449/* Define if you have the rx library (-lrx). */
450#undef HAVE_LIBRX
451
ee2a8b9b
JB
452/* Define if you have the socket library (-lsocket). */
453#undef HAVE_LIBSOCKET