This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
ignore const for the purposes of typemaps (from Hugo van der Sanden)
[perl5.git] / win32 / config_H.gc
CommitLineData
a835ef8a
NIS
1/*
2 * This file was produced by running the config_h.SH script, which
3 * gets its values from config.sh, which is generally produced by
4 * running Configure.
5 *
6 * Feel free to modify any of this as the need arises. Note, however,
7 * that running config_h.SH again will wipe out any changes you've made.
8 * For a more permanent change edit config.sh and rerun config_h.SH.
9 *
924b3ec4 10 * $Id: Config_h.U,v 3.0.1.5 1997/02/28 14:57:43 ram Exp $
a835ef8a
NIS
11 */
12
924b3ec4
GS
13/*
14 * Package name : perl5
07ba5892 15 * Source directory :
4ea817c6 16 * Configuration time: Sun Mar 5 22:28:31 2000
924b3ec4
GS
17 * Configured by : gsar
18 * Target system :
a835ef8a
NIS
19 */
20
21#ifndef _config_h_
22#define _config_h_
23
924b3ec4
GS
24/* LOC_SED:
25 * This symbol holds the complete pathname to the sed program.
a835ef8a 26 */
924b3ec4 27#define LOC_SED "" /**/
a835ef8a 28
a835ef8a
NIS
29/* HAS_ALARM:
30 * This symbol, if defined, indicates that the alarm routine is
31 * available.
32 */
33/*#define HAS_ALARM /**/
34
35/* HASATTRIBUTE:
36 * This symbol indicates the C compiler can check for function attributes,
37 * such as printf formats. This is normally only supported by GNU cc.
38 */
39#define HASATTRIBUTE /**/
40#ifndef HASATTRIBUTE
41#define __attribute__(_arg_)
42#endif
43
44/* HAS_BCMP:
45 * This symbol is defined if the bcmp() routine is available to
46 * compare blocks of memory.
47 */
48/*#define HAS_BCMP /**/
49
50/* HAS_BCOPY:
51 * This symbol is defined if the bcopy() routine is available to
52 * copy blocks of memory.
53 */
54/*#define HAS_BCOPY /**/
55
56/* HAS_BZERO:
57 * This symbol is defined if the bzero() routine is available to
58 * set a memory block to 0.
59 */
60/*#define HAS_BZERO /**/
61
a835ef8a
NIS
62/* HAS_CHOWN:
63 * This symbol, if defined, indicates that the chown routine is
64 * available.
65 */
66/*#define HAS_CHOWN /**/
67
68/* HAS_CHROOT:
69 * This symbol, if defined, indicates that the chroot routine is
70 * available.
71 */
72/*#define HAS_CHROOT /**/
73
74/* HAS_CHSIZE:
75 * This symbol, if defined, indicates that the chsize routine is available
76 * to truncate files. You might need a -lx to get this routine.
77 */
78#define HAS_CHSIZE /**/
79
a835ef8a
NIS
80/* HASCONST:
81 * This symbol, if defined, indicates that this C compiler knows about
82 * the const type. There is no need to actually test for that symbol
83 * within your programs. The mere use of the "const" keyword will
84 * trigger the necessary tests.
85 */
86#define HASCONST /**/
87#ifndef HASCONST
88#define const
89#endif
90
91/* HAS_CRYPT:
92 * This symbol, if defined, indicates that the crypt routine is available
93 * to encrypt passwords and the like.
94 */
95/*#define HAS_CRYPT /**/
96
97/* HAS_CUSERID:
98 * This symbol, if defined, indicates that the cuserid routine is
99 * available to get character login names.
100 */
101/*#define HAS_CUSERID /**/
102
103/* HAS_DBL_DIG:
104 * This symbol, if defined, indicates that this system's <float.h>
105 * or <limits.h> defines the symbol DBL_DIG, which is the number
106 * of significant digits in a double precision number. If this
107 * symbol is not defined, a guess of 15 is usually pretty good.
108 */
109#define HAS_DBL_DIG /**/
110
111/* HAS_DIFFTIME:
112 * This symbol, if defined, indicates that the difftime routine is
113 * available.
114 */
115#define HAS_DIFFTIME /**/
116
117/* HAS_DLERROR:
118 * This symbol, if defined, indicates that the dlerror routine is
119 * available to return a string describing the last error that
120 * occurred from a call to dlopen(), dlclose() or dlsym().
121 */
122#define HAS_DLERROR /**/
123
924b3ec4
GS
124/* SETUID_SCRIPTS_ARE_SECURE_NOW:
125 * This symbol, if defined, indicates that the bug that prevents
126 * setuid scripts from being secure is not present in this kernel.
127 */
128/* DOSUID:
129 * This symbol, if defined, indicates that the C program should
130 * check the script that it is executing for setuid/setgid bits, and
131 * attempt to emulate setuid/setgid on systems that have disabled
132 * setuid #! scripts because the kernel can't do it securely.
133 * It is up to the package designer to make sure that this emulation
134 * is done securely. Among other things, it should do an fstat on
135 * the script it just opened to make sure it really is a setuid/setgid
136 * script, it should make sure the arguments passed correspond exactly
137 * to the argument on the #! line, and it should not trust any
138 * subprocesses to which it must pass the filename rather than the
139 * file descriptor of the script to be executed.
140 */
141/*#define SETUID_SCRIPTS_ARE_SECURE_NOW /**/
142/*#define DOSUID /**/
143
a835ef8a
NIS
144/* HAS_DUP2:
145 * This symbol, if defined, indicates that the dup2 routine is
146 * available to duplicate file descriptors.
147 */
148#define HAS_DUP2 /**/
149
150/* HAS_FCHMOD:
151 * This symbol, if defined, indicates that the fchmod routine is available
152 * to change mode of opened files. If unavailable, use chmod().
153 */
154/*#define HAS_FCHMOD /**/
155
156/* HAS_FCHOWN:
157 * This symbol, if defined, indicates that the fchown routine is available
158 * to change ownership of opened files. If unavailable, use chown().
159 */
160/*#define HAS_FCHOWN /**/
161
162/* HAS_FCNTL:
163 * This symbol, if defined, indicates to the C program that
164 * the fcntl() function exists.
165 */
166/*#define HAS_FCNTL /**/
167
168/* HAS_FGETPOS:
169 * This symbol, if defined, indicates that the fgetpos routine is
170 * available to get the file position indicator, similar to ftell().
171 */
172#define HAS_FGETPOS /**/
173
174/* FLEXFILENAMES:
175 * This symbol, if defined, indicates that the system supports filenames
176 * longer than 14 characters.
177 */
178#define FLEXFILENAMES /**/
179
180/* HAS_FLOCK:
181 * This symbol, if defined, indicates that the flock routine is
182 * available to do file locking.
183 */
184#define HAS_FLOCK /**/
185
186/* HAS_FORK:
187 * This symbol, if defined, indicates that the fork routine is
188 * available.
189 */
190/*#define HAS_FORK /**/
191
192/* HAS_FSETPOS:
193 * This symbol, if defined, indicates that the fsetpos routine is
194 * available to set the file position indicator, similar to fseek().
195 */
196#define HAS_FSETPOS /**/
197
198/* HAS_GETTIMEOFDAY:
199 * This symbol, if defined, indicates that the gettimeofday() system
200 * call is available for a sub-second accuracy clock. Usually, the file
201 * <sys/resource.h> needs to be included (see I_SYS_RESOURCE).
202 * The type "Timeval" should be used to refer to "struct timeval".
203 */
204/*#define HAS_GETTIMEOFDAY /**/
205#ifdef HAS_GETTIMEOFDAY
206#define Timeval struct timeval /* Structure used by gettimeofday() */
207#endif
208
209/* HAS_GETGROUPS:
210 * This symbol, if defined, indicates that the getgroups() routine is
211 * available to get the list of process groups. If unavailable, multiple
212 * groups are probably not supported.
213 */
a835ef8a 214/*#define HAS_GETGROUPS /**/
a835ef8a 215
a835ef8a
NIS
216/* HAS_GETLOGIN:
217 * This symbol, if defined, indicates that the getlogin routine is
218 * available to get the login name.
219 */
e34ffe5a 220#define HAS_GETLOGIN /**/
a835ef8a 221
924b3ec4
GS
222/* HAS_GETPGID:
223 * This symbol, if defined, indicates to the C program that
224 * the getpgid(pid) function is available to get the
225 * process group id.
226 */
227/*#define HAS_GETPGID /**/
228
229/* HAS_GETPGRP:
230 * This symbol, if defined, indicates that the getpgrp routine is
231 * available to get the current process group.
232 */
233/* USE_BSD_GETPGRP:
234 * This symbol, if defined, indicates that getpgrp needs one
235 * arguments whereas USG one needs none.
236 */
237/*#define HAS_GETPGRP /**/
238/*#define USE_BSD_GETPGRP /**/
239
a835ef8a
NIS
240/* HAS_GETPGRP2:
241 * This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
242 * routine is available to get the current process group.
243 */
244/*#define HAS_GETPGRP2 /**/
245
246/* HAS_GETPPID:
247 * This symbol, if defined, indicates that the getppid routine is
248 * available to get the parent process ID.
249 */
250/*#define HAS_GETPPID /**/
251
252/* HAS_GETPRIORITY:
253 * This symbol, if defined, indicates that the getpriority routine is
254 * available to get a process's priority.
255 */
256/*#define HAS_GETPRIORITY /**/
257
924b3ec4
GS
258/* HAS_INET_ATON:
259 * This symbol, if defined, indicates to the C program that the
260 * inet_aton() function is available to parse IP address "dotted-quad"
261 * strings.
a835ef8a 262 */
924b3ec4 263/*#define HAS_INET_ATON /**/
a835ef8a
NIS
264
265/* HAS_KILLPG:
266 * This symbol, if defined, indicates that the killpg routine is available
267 * to kill process groups. If unavailable, you probably should use kill
268 * with a negative process number.
269 */
270/*#define HAS_KILLPG /**/
271
272/* HAS_LINK:
273 * This symbol, if defined, indicates that the link routine is
274 * available to create hard links.
275 */
6b980173 276#define HAS_LINK /**/
a835ef8a
NIS
277
278/* HAS_LOCALECONV:
279 * This symbol, if defined, indicates that the localeconv routine is
280 * available for numeric and monetary formatting conventions.
281 */
282#define HAS_LOCALECONV /**/
283
284/* HAS_LOCKF:
285 * This symbol, if defined, indicates that the lockf routine is
286 * available to do file locking.
287 */
288/*#define HAS_LOCKF /**/
289
290/* HAS_LSTAT:
291 * This symbol, if defined, indicates that the lstat routine is
292 * available to do file stats on symbolic links.
293 */
294/*#define HAS_LSTAT /**/
295
296/* HAS_MBLEN:
297 * This symbol, if defined, indicates that the mblen routine is available
298 * to find the number of bytes in a multibye character.
299 */
300#define HAS_MBLEN /**/
301
302/* HAS_MBSTOWCS:
303 * This symbol, if defined, indicates that the mbstowcs routine is
304 * available to covert a multibyte string into a wide character string.
305 */
306#define HAS_MBSTOWCS /**/
307
308/* HAS_MBTOWC:
309 * This symbol, if defined, indicates that the mbtowc routine is available
310 * to covert a multibyte to a wide character.
311 */
312#define HAS_MBTOWC /**/
313
314/* HAS_MEMCMP:
315 * This symbol, if defined, indicates that the memcmp routine is available
316 * to compare blocks of memory.
317 */
318#define HAS_MEMCMP /**/
319
320/* HAS_MEMCPY:
321 * This symbol, if defined, indicates that the memcpy routine is available
322 * to copy blocks of memory.
323 */
324#define HAS_MEMCPY /**/
325
326/* HAS_MEMMOVE:
327 * This symbol, if defined, indicates that the memmove routine is available
328 * to copy potentially overlapping blocks of memory. This should be used
329 * only when HAS_SAFE_BCOPY is not defined. If neither is there, roll your
330 * own version.
331 */
332#define HAS_MEMMOVE /**/
333
334/* HAS_MEMSET:
335 * This symbol, if defined, indicates that the memset routine is available
336 * to set blocks of memory.
337 */
338#define HAS_MEMSET /**/
339
340/* HAS_MKDIR:
341 * This symbol, if defined, indicates that the mkdir routine is available
342 * to create directories. Otherwise you should fork off a new process to
343 * exec /bin/mkdir.
344 */
345#define HAS_MKDIR /**/
346
347/* HAS_MKFIFO:
348 * This symbol, if defined, indicates that the mkfifo routine is
349 * available to create FIFOs. Otherwise, mknod should be able to
350 * do it for you. However, if mkfifo is there, mknod might require
351 * super-user privileges which mkfifo will not.
352 */
353/*#define HAS_MKFIFO /**/
354
355/* HAS_MKTIME:
356 * This symbol, if defined, indicates that the mktime routine is
357 * available.
358 */
359#define HAS_MKTIME /**/
360
ac135a7c
GS
361/* HAS_MSYNC:
362 * This symbol, if defined, indicates that the msync system call is
363 * available to synchronize a mapped file.
364 */
365/*#define HAS_MSYNC /**/
366
367/* HAS_MUNMAP:
368 * This symbol, if defined, indicates that the munmap system call is
369 * available to unmap a region, usually mapped by mmap().
370 */
371/*#define HAS_MUNMAP /**/
372
a835ef8a
NIS
373/* HAS_NICE:
374 * This symbol, if defined, indicates that the nice routine is
375 * available.
376 */
377/*#define HAS_NICE /**/
378
a835ef8a
NIS
379/* HAS_PATHCONF:
380 * This symbol, if defined, indicates that pathconf() is available
381 * to determine file-system related limits and options associated
382 * with a given filename.
383 */
384/* HAS_FPATHCONF:
385 * This symbol, if defined, indicates that pathconf() is available
386 * to determine file-system related limits and options associated
387 * with a given open file descriptor.
388 */
389/*#define HAS_PATHCONF /**/
390/*#define HAS_FPATHCONF /**/
391
392/* HAS_PAUSE:
393 * This symbol, if defined, indicates that the pause routine is
394 * available to suspend a process until a signal is received.
395 */
396#define HAS_PAUSE /**/
397
398/* HAS_PIPE:
399 * This symbol, if defined, indicates that the pipe routine is
400 * available to create an inter-process channel.
401 */
402#define HAS_PIPE /**/
403
404/* HAS_POLL:
405 * This symbol, if defined, indicates that the poll routine is
924b3ec4
GS
406 * available to poll active file descriptors. You may safely
407 * include <poll.h> when this symbol is defined.
a835ef8a
NIS
408 */
409/*#define HAS_POLL /**/
410
411/* HAS_READDIR:
412 * This symbol, if defined, indicates that the readdir routine is
413 * available to read directory entries. You may have to include
414 * <dirent.h>. See I_DIRENT.
415 */
416#define HAS_READDIR /**/
417
418/* HAS_SEEKDIR:
419 * This symbol, if defined, indicates that the seekdir routine is
420 * available. You may have to include <dirent.h>. See I_DIRENT.
421 */
422#define HAS_SEEKDIR /**/
423
424/* HAS_TELLDIR:
425 * This symbol, if defined, indicates that the telldir routine is
426 * available. You may have to include <dirent.h>. See I_DIRENT.
427 */
428#define HAS_TELLDIR /**/
429
430/* HAS_REWINDDIR:
431 * This symbol, if defined, indicates that the rewinddir routine is
432 * available. You may have to include <dirent.h>. See I_DIRENT.
433 */
434#define HAS_REWINDDIR /**/
435
436/* HAS_READLINK:
437 * This symbol, if defined, indicates that the readlink routine is
438 * available to read the value of a symbolic link.
439 */
440/*#define HAS_READLINK /**/
441
442/* HAS_RENAME:
443 * This symbol, if defined, indicates that the rename routine is available
444 * to rename files. Otherwise you should do the unlink(), link(), unlink()
445 * trick.
446 */
447#define HAS_RENAME /**/
448
449/* HAS_RMDIR:
450 * This symbol, if defined, indicates that the rmdir routine is
451 * available to remove directories. Otherwise you should fork off a
452 * new process to exec /bin/rmdir.
453 */
454#define HAS_RMDIR /**/
455
a835ef8a
NIS
456/* HAS_SELECT:
457 * This symbol, if defined, indicates that the select routine is
458 * available to select active file descriptors. If the timeout field
459 * is used, <sys/time.h> may need to be included.
460 */
461#define HAS_SELECT /**/
462
a835ef8a
NIS
463/* HAS_SETEGID:
464 * This symbol, if defined, indicates that the setegid routine is available
465 * to change the effective gid of the current program.
466 */
467/*#define HAS_SETEGID /**/
468
469/* HAS_SETEUID:
470 * This symbol, if defined, indicates that the seteuid routine is available
471 * to change the effective uid of the current program.
472 */
473/*#define HAS_SETEUID /**/
474
475/* HAS_SETLINEBUF:
476 * This symbol, if defined, indicates that the setlinebuf routine is
477 * available to change stderr or stdout from block-buffered or unbuffered
478 * to a line-buffered mode.
479 */
480/*#define HAS_SETLINEBUF /**/
481
482/* HAS_SETLOCALE:
483 * This symbol, if defined, indicates that the setlocale routine is
484 * available to handle locale-specific ctype implementations.
485 */
486#define HAS_SETLOCALE /**/
487
924b3ec4
GS
488/* HAS_SETPGID:
489 * This symbol, if defined, indicates that the setpgid(pid, gpid)
490 * routine is available to set process group ID.
491 */
492/*#define HAS_SETPGID /**/
493
494/* HAS_SETPGRP:
495 * This symbol, if defined, indicates that the setpgrp routine is
496 * available to set the current process group.
497 */
498/* USE_BSD_SETPGRP:
499 * This symbol, if defined, indicates that setpgrp needs two
500 * arguments whereas USG one needs none. See also HAS_SETPGID
501 * for a POSIX interface.
502 */
503/*#define HAS_SETPGRP /**/
504/*#define USE_BSD_SETPGRP /**/
505
a835ef8a
NIS
506/* HAS_SETPGRP2:
507 * This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
508 * routine is available to set the current process group.
509 */
510/*#define HAS_SETPGRP2 /**/
511
512/* HAS_SETPRIORITY:
513 * This symbol, if defined, indicates that the setpriority routine is
514 * available to set a process's priority.
515 */
516/*#define HAS_SETPRIORITY /**/
517
518/* HAS_SETREGID:
519 * This symbol, if defined, indicates that the setregid routine is
520 * available to change the real and effective gid of the current
521 * process.
522 */
523/* HAS_SETRESGID:
524 * This symbol, if defined, indicates that the setresgid routine is
525 * available to change the real, effective and saved gid of the current
526 * process.
527 */
528/*#define HAS_SETREGID /**/
529/*#define HAS_SETRESGID /**/
530
531/* HAS_SETREUID:
532 * This symbol, if defined, indicates that the setreuid routine is
533 * available to change the real and effective uid of the current
534 * process.
535 */
536/* HAS_SETRESUID:
537 * This symbol, if defined, indicates that the setresuid routine is
538 * available to change the real, effective and saved uid of the current
539 * process.
540 */
541/*#define HAS_SETREUID /**/
542/*#define HAS_SETRESUID /**/
543
544/* HAS_SETRGID:
545 * This symbol, if defined, indicates that the setrgid routine is available
546 * to change the real gid of the current program.
547 */
548/*#define HAS_SETRGID /**/
549
550/* HAS_SETRUID:
551 * This symbol, if defined, indicates that the setruid routine is available
552 * to change the real uid of the current program.
553 */
554/*#define HAS_SETRUID /**/
555
556/* HAS_SETSID:
557 * This symbol, if defined, indicates that the setsid routine is
558 * available to set the process group ID.
559 */
560/*#define HAS_SETSID /**/
561
a835ef8a
NIS
562/* Shmat_t:
563 * This symbol holds the return type of the shmat() system call.
564 * Usually set to 'void *' or 'char *'.
565 */
566/* HAS_SHMAT_PROTOTYPE:
567 * This symbol, if defined, indicates that the sys/shm.h includes
568 * a prototype for shmat(). Otherwise, it is up to the program to
82839a9d 569 * guess one. Shmat_t shmat _((int, Shmat_t, int)) is a good guess,
a835ef8a
NIS
570 * but not always right so it should be emitted by the program only
571 * when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
572 */
573#define Shmat_t void * /**/
574/*#define HAS_SHMAT_PROTOTYPE /**/
575
924b3ec4
GS
576/* HAS_STRCHR:
577 * This symbol is defined to indicate that the strchr()/strrchr()
578 * functions are available for string searching. If not, try the
579 * index()/rindex() pair.
a835ef8a 580 */
924b3ec4
GS
581/* HAS_INDEX:
582 * This symbol is defined to indicate that the index()/rindex()
583 * functions are available for string searching.
a835ef8a 584 */
924b3ec4
GS
585#define HAS_STRCHR /**/
586/*#define HAS_INDEX /**/
587
588/* HAS_STRCOLL:
589 * This symbol, if defined, indicates that the strcoll routine is
590 * available to compare strings using collating information.
a835ef8a 591 */
924b3ec4
GS
592#define HAS_STRCOLL /**/
593
594/* USE_STRUCT_COPY:
595 * This symbol, if defined, indicates that this C compiler knows how
596 * to copy structures. If undefined, you'll need to use a block copy
597 * routine of some sort instead.
a835ef8a 598 */
924b3ec4 599#define USE_STRUCT_COPY /**/
a835ef8a 600
a835ef8a
NIS
601/* HAS_STRTOD:
602 * This symbol, if defined, indicates that the strtod routine is
603 * available to provide better numeric string conversion than atof().
604 */
605#define HAS_STRTOD /**/
606
607/* HAS_STRTOL:
608 * This symbol, if defined, indicates that the strtol routine is available
609 * to provide better numeric string conversion than atoi() and friends.
610 */
611#define HAS_STRTOL /**/
612
613/* HAS_STRTOUL:
614 * This symbol, if defined, indicates that the strtoul routine is
615 * available to provide conversion of strings to unsigned long.
616 */
617#define HAS_STRTOUL /**/
618
619/* HAS_STRXFRM:
620 * This symbol, if defined, indicates that the strxfrm() routine is
621 * available to transform strings.
622 */
623#define HAS_STRXFRM /**/
624
625/* HAS_SYMLINK:
626 * This symbol, if defined, indicates that the symlink routine is available
627 * to create symbolic links.
628 */
629/*#define HAS_SYMLINK /**/
630
631/* HAS_SYSCALL:
632 * This symbol, if defined, indicates that the syscall routine is
633 * available to call arbitrary system calls. If undefined, that's tough.
634 */
635/*#define HAS_SYSCALL /**/
636
637/* HAS_SYSCONF:
638 * This symbol, if defined, indicates that sysconf() is available
639 * to determine system related limits and options.
640 */
641/*#define HAS_SYSCONF /**/
642
643/* HAS_SYSTEM:
644 * This symbol, if defined, indicates that the system routine is
645 * available to issue a shell command.
646 */
647#define HAS_SYSTEM /**/
648
649/* HAS_TCGETPGRP:
650 * This symbol, if defined, indicates that the tcgetpgrp routine is
651 * available to get foreground process group ID.
652 */
653/*#define HAS_TCGETPGRP /**/
654
655/* HAS_TCSETPGRP:
656 * This symbol, if defined, indicates that the tcsetpgrp routine is
657 * available to set foreground process group ID.
658 */
659/*#define HAS_TCSETPGRP /**/
660
a835ef8a
NIS
661/* HAS_TRUNCATE:
662 * This symbol, if defined, indicates that the truncate routine is
663 * available to truncate files.
664 */
665/*#define HAS_TRUNCATE /**/
666
667/* HAS_TZNAME:
668 * This symbol, if defined, indicates that the tzname[] array is
669 * available to access timezone names.
670 */
bbda9c9d 671#define HAS_TZNAME /**/
a835ef8a
NIS
672
673/* HAS_UMASK:
674 * This symbol, if defined, indicates that the umask routine is
675 * available to set and get the value of the file creation mask.
676 */
677#define HAS_UMASK /**/
678
a835ef8a
NIS
679/* HASVOLATILE:
680 * This symbol, if defined, indicates that this C compiler knows about
681 * the volatile declaration.
682 */
683#define HASVOLATILE /**/
684#ifndef HASVOLATILE
685#define volatile
686#endif
687
a835ef8a
NIS
688/* HAS_WAIT4:
689 * This symbol, if defined, indicates that wait4() exists.
690 */
691/*#define HAS_WAIT4 /**/
692
693/* HAS_WAITPID:
694 * This symbol, if defined, indicates that the waitpid routine is
695 * available to wait for child process.
696 */
f55ee38a 697#define HAS_WAITPID /**/
a835ef8a
NIS
698
699/* HAS_WCSTOMBS:
700 * This symbol, if defined, indicates that the wcstombs routine is
701 * available to convert wide character strings to multibyte strings.
702 */
703#define HAS_WCSTOMBS /**/
704
705/* HAS_WCTOMB:
706 * This symbol, if defined, indicates that the wctomb routine is available
707 * to covert a wide character to a multibyte.
708 */
709#define HAS_WCTOMB /**/
710
28e8609d 711/* I_ARPA_INET:
327c3667
GS
712 * This symbol, if defined, indicates to the C program that it should
713 * include <arpa/inet.h> to get inet_addr and friends declarations.
28e8609d 714 */
327c3667 715#define I_ARPA_INET /**/
28e8609d 716
924b3ec4
GS
717/* I_DBM:
718 * This symbol, if defined, indicates that <dbm.h> exists and should
719 * be included.
a835ef8a 720 */
924b3ec4
GS
721/* I_RPCSVC_DBM:
722 * This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
723 * should be included.
a835ef8a 724 */
924b3ec4
GS
725/*#define I_DBM /**/
726#define I_RPCSVC_DBM /**/
a835ef8a
NIS
727
728/* I_DIRENT:
729 * This symbol, if defined, indicates to the C program that it should
730 * include <dirent.h>. Using this symbol also triggers the definition
731 * of the Direntry_t define which ends up being 'struct dirent' or
732 * 'struct direct' depending on the availability of <dirent.h>.
733 */
734/* DIRNAMLEN:
735 * This symbol, if defined, indicates to the C program that the length
736 * of directory entry names is provided by a d_namlen field. Otherwise
737 * you need to do strlen() on the d_name field.
738 */
739/* Direntry_t:
740 * This symbol is set to 'struct direct' or 'struct dirent' depending on
741 * whether dirent is available or not. You should use this pseudo type to
742 * portably declare your directory entries.
743 */
744#define I_DIRENT /**/
745#define DIRNAMLEN /**/
746#define Direntry_t struct direct
747
748/* I_DLFCN:
749 * This symbol, if defined, indicates that <dlfcn.h> exists and should
750 * be included.
751 */
752#define I_DLFCN /**/
753
754/* I_FCNTL:
755 * This manifest constant tells the C program to include <fcntl.h>.
756 */
757#define I_FCNTL /**/
758
759/* I_FLOAT:
760 * This symbol, if defined, indicates to the C program that it should
761 * include <float.h> to get definition of symbols like DBL_MAX or
762 * DBL_MIN, i.e. machine dependent floating point values.
763 */
764#define I_FLOAT /**/
765
a835ef8a
NIS
766/* I_LIMITS:
767 * This symbol, if defined, indicates to the C program that it should
768 * include <limits.h> to get definition of symbols like WORD_BIT or
769 * LONG_MAX, i.e. machine dependant limitations.
770 */
771#define I_LIMITS /**/
772
924b3ec4
GS
773/* I_LOCALE:
774 * This symbol, if defined, indicates to the C program that it should
775 * include <locale.h>.
776 */
777#define I_LOCALE /**/
778
a835ef8a
NIS
779/* I_MATH:
780 * This symbol, if defined, indicates to the C program that it should
781 * include <math.h>.
782 */
783#define I_MATH /**/
784
785/* I_MEMORY:
786 * This symbol, if defined, indicates to the C program that it should
787 * include <memory.h>.
788 */
789/*#define I_MEMORY /**/
790
791/* I_NDBM:
792 * This symbol, if defined, indicates that <ndbm.h> exists and should
793 * be included.
794 */
795/*#define I_NDBM /**/
796
797/* I_NET_ERRNO:
798 * This symbol, if defined, indicates that <net/errno.h> exists and
799 * should be included.
800 */
801/*#define I_NET_ERRNO /**/
802
803/* I_NETINET_IN:
804 * This symbol, if defined, indicates to the C program that it should
805 * include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
806 */
807/*#define I_NETINET_IN /**/
808
924b3ec4
GS
809/* I_SFIO:
810 * This symbol, if defined, indicates to the C program that it should
811 * include <sfio.h>.
812 */
813/*#define I_SFIO /**/
814
a835ef8a
NIS
815/* I_STDDEF:
816 * This symbol, if defined, indicates that <stddef.h> exists and should
817 * be included.
818 */
819#define I_STDDEF /**/
820
821/* I_STDLIB:
822 * This symbol, if defined, indicates that <stdlib.h> exists and should
823 * be included.
824 */
825#define I_STDLIB /**/
826
827/* I_STRING:
828 * This symbol, if defined, indicates to the C program that it should
829 * include <string.h> (USG systems) instead of <strings.h> (BSD systems).
830 */
831#define I_STRING /**/
832
833/* I_SYS_DIR:
834 * This symbol, if defined, indicates to the C program that it should
835 * include <sys/dir.h>.
836 */
837/*#define I_SYS_DIR /**/
838
839/* I_SYS_FILE:
840 * This symbol, if defined, indicates to the C program that it should
841 * include <sys/file.h> to get definition of R_OK and friends.
842 */
843/*#define I_SYS_FILE /**/
844
845/* I_SYS_IOCTL:
846 * This symbol, if defined, indicates that <sys/ioctl.h> exists and should
847 * be included. Otherwise, include <sgtty.h> or <termio.h>.
848 */
849/*#define I_SYS_IOCTL /**/
850
851/* I_SYS_NDIR:
852 * This symbol, if defined, indicates to the C program that it should
853 * include <sys/ndir.h>.
854 */
855/*#define I_SYS_NDIR /**/
856
857/* I_SYS_PARAM:
858 * This symbol, if defined, indicates to the C program that it should
859 * include <sys/param.h>.
860 */
861/*#define I_SYS_PARAM /**/
862
863/* I_SYS_RESOURCE:
864 * This symbol, if defined, indicates to the C program that it should
865 * include <sys/resource.h>.
866 */
867/*#define I_SYS_RESOURCE /**/
868
869/* I_SYS_SELECT:
870 * This symbol, if defined, indicates to the C program that it should
871 * include <sys/select.h> in order to get definition of struct timeval.
872 */
873/*#define I_SYS_SELECT /**/
874
924b3ec4
GS
875/* I_SYS_STAT:
876 * This symbol, if defined, indicates to the C program that it should
877 * include <sys/stat.h>.
878 */
879#define I_SYS_STAT /**/
880
a835ef8a
NIS
881/* I_SYS_TIMES:
882 * This symbol, if defined, indicates to the C program that it should
883 * include <sys/times.h>.
884 */
885/*#define I_SYS_TIMES /**/
886
be44fb0e
GS
887/* I_SYS_TYPES:
888 * This symbol, if defined, indicates to the C program that it should
889 * include <sys/types.h>.
890 */
891#define I_SYS_TYPES /**/
892
a835ef8a
NIS
893/* I_SYS_UN:
894 * This symbol, if defined, indicates to the C program that it should
895 * include <sys/un.h> to get UNIX domain socket definitions.
896 */
897/*#define I_SYS_UN /**/
898
899/* I_SYS_WAIT:
900 * This symbol, if defined, indicates to the C program that it should
901 * include <sys/wait.h>.
902 */
903/*#define I_SYS_WAIT /**/
904
905/* I_TERMIO:
906 * This symbol, if defined, indicates that the program should include
907 * <termio.h> rather than <sgtty.h>. There are also differences in
908 * the ioctl() calls that depend on the value of this symbol.
909 */
910/* I_TERMIOS:
911 * This symbol, if defined, indicates that the program should include
912 * the POSIX termios.h rather than sgtty.h or termio.h.
913 * There are also differences in the ioctl() calls that depend on the
914 * value of this symbol.
915 */
916/* I_SGTTY:
917 * This symbol, if defined, indicates that the program should include
918 * <sgtty.h> rather than <termio.h>. There are also differences in
919 * the ioctl() calls that depend on the value of this symbol.
920 */
921/*#define I_TERMIO /**/
922/*#define I_TERMIOS /**/
923/*#define I_SGTTY /**/
924
a835ef8a
NIS
925/* I_UNISTD:
926 * This symbol, if defined, indicates to the C program that it should
927 * include <unistd.h>.
928 */
929/*#define I_UNISTD /**/
930
931/* I_UTIME:
932 * This symbol, if defined, indicates to the C program that it should
933 * include <utime.h>.
934 */
935#define I_UTIME /**/
936
924b3ec4
GS
937/* I_VALUES:
938 * This symbol, if defined, indicates to the C program that it should
939 * include <values.h> to get definition of symbols like MINFLOAT or
940 * MAXLONG, i.e. machine dependant limitations. Probably, you
941 * should use <limits.h> instead, if it is available.
942 */
943/*#define I_VALUES /**/
944
a835ef8a
NIS
945/* I_STDARG:
946 * This symbol, if defined, indicates that <stdarg.h> exists and should
947 * be included.
948 */
949/* I_VARARGS:
950 * This symbol, if defined, indicates to the C program that it should
951 * include <varargs.h>.
952 */
953#define I_STDARG /**/
954/*#define I_VARARGS /**/
955
956/* I_VFORK:
957 * This symbol, if defined, indicates to the C program that it should
958 * include vfork.h.
959 */
960/*#define I_VFORK /**/
961
a835ef8a
NIS
962/* CAN_PROTOTYPE:
963 * If defined, this macro indicates that the C compiler can handle
964 * function prototypes.
965 */
966/* _:
967 * This macro is used to declare function parameters for folks who want
968 * to make declarations with prototypes using a different style than
969 * the above macros. Use double parentheses. For example:
970 *
971 * int main _((int argc, char *argv[]));
972 */
973#define CAN_PROTOTYPE /**/
974#ifdef CAN_PROTOTYPE
975#define _(args) args
976#else
977#define _(args) ()
978#endif
979
924b3ec4
GS
980/* SH_PATH:
981 * This symbol contains the full pathname to the shell used on this
982 * on this system to execute Bourne shell scripts. Usually, this will be
983 * /bin/sh, though it's possible that some systems will have /bin/ksh,
984 * /bin/pdksh, /bin/ash, /bin/bash, or even something such as
985 * D:/bin/sh.exe.
a835ef8a 986 */
924b3ec4 987#define SH_PATH "cmd /x /c" /**/
a835ef8a 988
a835ef8a
NIS
989/* STDCHAR:
990 * This symbol is defined to be the type of char used in stdio.h.
991 * It has the values "unsigned char" or "char".
992 */
993#define STDCHAR char /**/
994
9423c6fc
GS
995/* CROSSCOMPILE:
996 * This symbol, if defined, signifies that we our
997 * build process is a cross-compilation.
998 */
999/*#define CROSSCOMPILE /**/
1000
1001/* INTSIZE:
1002 * This symbol contains the value of sizeof(int) so that the C
1003 * preprocessor can make decisions based on it.
1004 */
1005/* LONGSIZE:
1006 * This symbol contains the value of sizeof(long) so that the C
1007 * preprocessor can make decisions based on it.
1008 */
1009/* SHORTSIZE:
1010 * This symbol contains the value of sizeof(short) so that the C
1011 * preprocessor can make decisions based on it.
1012 */
1013#define INTSIZE 4 /**/
1014#define LONGSIZE 4 /**/
1015#define SHORTSIZE 2 /**/
1016
1017/* MULTIARCH:
1018 * This symbol, if defined, signifies that the build
1019 * process will produce some binary files that are going to be
1020 * used in a cross-platform environment. This is the case for
1021 * example with the NeXT "fat" binaries that contain executables
1022 * for several CPUs.
1023 */
1024/*#define MULTIARCH /**/
1025
bbda9c9d
GS
1026/* HAS_QUAD:
1027 * This symbol, if defined, tells that there's a 64-bit integer type,
1028 * Quad_t, and its unsigned counterpar, Uquad_t. QUADKIND will be one
1029 * of QUAD_IS_INT, QUAD_IS_LONG, QUAD_IS_LONG_LONG, or QUAD_IS_INT64_T.
1030 */
1031/*#define HAS_QUAD /**/
1032#ifdef HAS_QUAD
1033# define Quad_t long long /**/
1034# define Uquad_t unsigned long long /**/
ac135a7c 1035# define QUADKIND 5 /**/
bbda9c9d
GS
1036# define QUAD_IS_INT 1
1037# define QUAD_IS_LONG 2
1038# define QUAD_IS_LONG_LONG 3
1039# define QUAD_IS_INT64_T 4
1040#endif
1041
1042/* HAS_ACCESSX:
1043 * This symbol, if defined, indicates that the accessx routine is
1044 * available to do extended access checks.
1045 */
1046/*#define HAS_ACCESSX /**/
1047
1048/* HAS_EACCESS:
1049 * This symbol, if defined, indicates that the eaccess routine is
1050 * available to do extended access checks.
1051 */
1052/*#define HAS_EACCESS /**/
1053
1054/* I_SYS_ACCESS:
1055 * This symbol, if defined, indicates to the C program that it should
1056 * include <sys/access.h>.
1057 */
1058/*#define I_SYS_ACCESS /**/
1059
1060/* I_SYS_SECURITY:
1061 * This symbol, if defined, indicates to the C program that it should
1062 * include <sys/security.h>.
1063 */
1064/*#define I_SYS_SECURITY /**/
1065
3635cd84
GS
1066/* OSNAME:
1067 * This symbol contains the name of the operating system, as determined
1068 * by Configure. You shouldn't rely on it too much; the specific
1069 * feature tests from Configure are generally more reliable.
1070 */
1071#define OSNAME "MSWin32" /**/
1072
924b3ec4 1073/* MEM_ALIGNBYTES:
9423c6fc 1074 * This symbol contains the number of bytes required to align a
ac135a7c
GS
1075 * double, or a long double when applicable. Usual values are 2,
1076 * 4 and 8. The default is eight, for safety.
a835ef8a 1077 */
9423c6fc
GS
1078#if defined(CROSSCOMPILE) || defined(MULTIARCH)
1079# define MEM_ALIGNBYTES 8
1080#else
1081#define MEM_ALIGNBYTES 8
1082#endif
a835ef8a 1083
3635cd84
GS
1084/* ARCHLIB:
1085 * This variable, if defined, holds the name of the directory in
1086 * which the user wants to put architecture-dependent public
1087 * library files for perl5. It is most often a local directory
1088 * such as /usr/local/lib. Programs using this variable must be
1089 * prepared to deal with filename expansion. If ARCHLIB is the
1090 * same as PRIVLIB, it is not defined, since presumably the
1091 * program already searches PRIVLIB.
1092 */
1093/* ARCHLIB_EXP:
1094 * This symbol contains the ~name expanded version of ARCHLIB, to be used
1095 * in programs that are not prepared to deal with ~ expansion at run-time.
1096 */
e5a4bac5 1097#define ARCHLIB "c:\\perl\\5.6.0\\lib\\MSWin32-x86" /**/
3635cd84
GS
1098/*#define ARCHLIB_EXP "" /**/
1099
1100/* ARCHNAME:
1101 * This symbol holds a string representing the architecture name.
1102 * It may be used to construct an architecture-dependant pathname
1103 * where library files may be held under a private library, for
1104 * instance.
1105 */
1106#define ARCHNAME "MSWin32-x86" /**/
1107
1108/* HAS_ATOLF:
1109 * This symbol, if defined, indicates that the atolf routine is
1110 * available to convert strings into long doubles.
1111 */
1112/*#define HAS_ATOLF /**/
1113
1114/* HAS_ATOLL:
1115 * This symbol, if defined, indicates that the atoll routine is
1116 * available to convert strings into long longs.
1117 */
1118/*#define HAS_ATOLL /**/
1119
1120/* BIN:
1121 * This symbol holds the path of the bin directory where the package will
1122 * be installed. Program must be prepared to deal with ~name substitution.
1123 */
1124/* BIN_EXP:
1125 * This symbol is the filename expanded version of the BIN symbol, for
1126 * programs that do not want to deal with that at run-time.
1127 */
e5a4bac5
GS
1128#define BIN "c:\\perl\\5.6.0\\bin\\MSWin32-x86" /**/
1129#define BIN_EXP "c:\\perl\\5.6.0\\bin\\MSWin32-x86" /**/
3635cd84
GS
1130
1131/* PERL_BINCOMPAT_5005:
1132 * This symbol, if defined, indicates that Perl 5.006 should be
1133 * binary-compatible with Perl 5.005. This is impossible for builds
1134 * that use features like threads and multiplicity it is always undef
1135 * for those versions.
1136 */
1137/*#define PERL_BINCOMPAT_5005 /**/
1138
a835ef8a
NIS
1139/* BYTEORDER:
1140 * This symbol holds the hexadecimal constant defined in byteorder,
1141 * i.e. 0x1234 or 0x4321, etc...
9423c6fc
GS
1142 * If the compiler supports cross-compiling or multiple-architecture
1143 * binaries (eg. on NeXT systems), use compiler-defined macros to
1144 * determine the byte order.
a835ef8a
NIS
1145 * On NeXT 3.2 (and greater), you can build "Fat" Multiple Architecture
1146 * Binaries (MAB) on either big endian or little endian machines.
1147 * The endian-ness is available at compile-time. This only matters
1148 * for perl, where the config.h can be generated and installed on
1149 * one system, and used by a different architecture to build an
1150 * extension. Older versions of NeXT that might not have
1151 * defined either *_ENDIAN__ were all on Motorola 680x0 series,
1152 * so the default case (for NeXT) is big endian to catch them.
1153 * This might matter for NeXT 3.0.
1154 */
9423c6fc
GS
1155#if defined(CROSSCOMPILE) || defined(MULTIARCH)
1156# ifdef __LITTLE_ENDIAN__
1157# if LONGSIZE == 4
1158# define BYTEORDER 0x1234
1159# else
1160# if LONGSIZE == 8
1161# define BYTEORDER 0x12345678
1162# endif
1163# endif
1164# else
1165# ifdef __BIG_ENDIAN__
1166# if LONGSIZE == 4
1167# define BYTEORDER 0x4321
1168# else
1169# if LONGSIZE == 8
1170# define BYTEORDER 0x87654321
1171# endif
1172# endif
1173# endif
1174# endif
1175# if !defined(BYTEORDER) && (defined(NeXT) || defined(__NeXT__))
1176# define BYTEORDER 0x4321
1177# endif
1178#else
a835ef8a 1179#define BYTEORDER 0x1234 /* large digits for MSB */
a835ef8a
NIS
1180#endif /* NeXT */
1181
3635cd84
GS
1182/* CAT2:
1183 * This macro catenates 2 tokens together.
1184 */
1185/* STRINGIFY:
1186 * This macro surrounds its token with double quotes.
1187 */
1188#if 42 == 1
e5a4bac5
GS
1189# define CAT2(a,b) a/**/b
1190# define STRINGIFY(a) "a"
3635cd84
GS
1191 /* If you can get stringification with catify, tell me how! */
1192#endif
1193#if 42 == 42
e5a4bac5
GS
1194# define PeRl_CaTiFy(a, b) a ## b
1195# define PeRl_StGiFy(a) #a
1196/* the additional level of indirection enables these macros to be
1197 * used as arguments to other macros. See K&R 2nd ed., page 231. */
1198# define CAT2(a,b) PeRl_CaTiFy(a,b)
1199# define StGiFy(a) PeRl_StGiFy(a)
1200# define STRINGIFY(a) PeRl_StGiFy(a)
3635cd84
GS
1201#endif
1202#if 42 != 1 && 42 != 42
1203#include "Bletch: How does this C preprocessor catenate tokens?"
1204#endif
1205
1206/* CPPSTDIN:
1207 * This symbol contains the first part of the string which will invoke
1208 * the C preprocessor on the standard input and produce to standard
1209 * output. Typical value of "cc -E" or "/lib/cpp", but it can also
1210 * call a wrapper. See CPPRUN.
1211 */
1212/* CPPMINUS:
1213 * This symbol contains the second part of the string which will invoke
1214 * the C preprocessor on the standard input and produce to standard
1215 * output. This symbol will have the value "-" if CPPSTDIN needs a minus
1216 * to specify standard input, otherwise the value is "".
1217 */
1218/* CPPRUN:
1219 * This symbol contains the string which will invoke a C preprocessor on
1220 * the standard input and produce to standard output. It needs to end
1221 * with CPPLAST, after all other preprocessor flags have been specified.
1222 * The main difference with CPPSTDIN is that this program will never be a
1223 * pointer to a shell wrapper, i.e. it will be empty if no preprocessor is
1224 * available directly to the user. Note that it may well be different from
1225 * the preprocessor used to compile the C program.
1226 */
ac135a7c
GS
1227/* CPPLAST:
1228 * This symbol is intended to be used along with CPPRUN in the same manner
1229 * symbol CPPMINUS is used with CPPSTDIN. It contains either "-" or "".
1230 */
3635cd84
GS
1231#define CPPSTDIN "gcc -E"
1232#define CPPMINUS "-"
1233#define CPPRUN "gcc -E"
ac135a7c 1234#define CPPLAST ""
3635cd84
GS
1235
1236/* HAS_ACCESS:
1237 * This manifest constant lets the C program know that the access()
1238 * system call is available to check for accessibility using real UID/GID.
1239 * (always present on UNIX.)
1240 */
1241#define HAS_ACCESS /**/
1242
924b3ec4
GS
1243/* CASTI32:
1244 * This symbol is defined if the C compiler can cast negative
1245 * or large floating point numbers to 32-bit ints.
a835ef8a 1246 */
924b3ec4 1247#define CASTI32 /**/
a835ef8a 1248
924b3ec4
GS
1249/* CASTNEGFLOAT:
1250 * This symbol is defined if the C compiler can cast negative
1251 * numbers to unsigned longs, ints and shorts.
a835ef8a 1252 */
924b3ec4
GS
1253/* CASTFLAGS:
1254 * This symbol contains flags that say what difficulties the compiler
1255 * has casting odd floating values to unsigned long:
1256 * 0 = ok
1257 * 1 = couldn't cast < 0
1258 * 2 = couldn't cast >= 0x80000000
1259 * 4 = couldn't cast in argument expression list
a835ef8a 1260 */
924b3ec4
GS
1261#define CASTNEGFLOAT /**/
1262#define CASTFLAGS 0 /**/
1263
1264/* VOID_CLOSEDIR:
1265 * This symbol, if defined, indicates that the closedir() routine
1266 * does not return a value.
a835ef8a 1267 */
924b3ec4 1268/*#define VOID_CLOSEDIR /**/
a835ef8a 1269
3635cd84
GS
1270/* HAS_CSH:
1271 * This symbol, if defined, indicates that the C-shell exists.
1272 */
1273/* CSH:
1274 * This symbol, if defined, contains the full pathname of csh.
1275 */
1276/*#define HAS_CSH /**/
1277#ifdef HAS_CSH
1278#define CSH "" /**/
1279#endif
1280
1281/* DLSYM_NEEDS_UNDERSCORE:
1282 * This symbol, if defined, indicates that we need to prepend an
1283 * underscore to the symbol name before calling dlsym(). This only
1284 * makes sense if you *have* dlsym, which we will presume is the
1285 * case if you're using dl_dlopen.xs.
1286 */
1287/*#define DLSYM_NEEDS_UNDERSCORE /**/
1288
1289/* HAS_DRAND48_PROTO:
1290 * This symbol, if defined, indicates that the system provides
1291 * a prototype for the drand48() function. Otherwise, it is up
1292 * to the program to supply one. A good guess is
1293 * extern double drand48 _((void));
1294 */
1295/*#define HAS_DRAND48_PROTO /**/
1296
1297/* HAS_ENDGRENT:
1298 * This symbol, if defined, indicates that the getgrent routine is
1299 * available for finalizing sequential access of the group database.
1300 */
1301/*#define HAS_ENDGRENT /**/
1302
1303/* HAS_ENDHOSTENT:
1304 * This symbol, if defined, indicates that the endhostent() routine is
1305 * available to close whatever was being used for host queries.
1306 */
1307/*#define HAS_ENDHOSTENT /**/
1308
1309/* HAS_ENDNETENT:
1310 * This symbol, if defined, indicates that the endnetent() routine is
1311 * available to close whatever was being used for network queries.
1312 */
1313/*#define HAS_ENDNETENT /**/
1314
1315/* HAS_ENDPROTOENT:
1316 * This symbol, if defined, indicates that the endprotoent() routine is
1317 * available to close whatever was being used for protocol queries.
1318 */
1319/*#define HAS_ENDPROTOENT /**/
1320
1321/* HAS_ENDPWENT:
1322 * This symbol, if defined, indicates that the getgrent routine is
1323 * available for finalizing sequential access of the passwd database.
1324 */
1325/*#define HAS_ENDPWENT /**/
1326
1327/* HAS_ENDSERVENT:
1328 * This symbol, if defined, indicates that the endservent() routine is
1329 * available to close whatever was being used for service queries.
1330 */
1331/*#define HAS_ENDSERVENT /**/
1332
1333/* HAS_ENDSPENT:
1334 * This symbol, if defined, indicates that the endspent system call is
1335 * available to finalize the scan of SysV shadow password entries.
1336 */
1337/*#define HAS_ENDSPENT /**/
1338
c4d53692
GS
1339/* HAS_FD_SET:
1340 * This symbol, when defined, indicates presence of the fd_set typedef
1341 * in <sys/types.h>
1342 */
1343#define HAS_FD_SET /**/
1344
ac135a7c
GS
1345/* HAS_FPOS64_T:
1346 * This symbol will be defined if the C compiler supports fpos64_t.
1347 */
1348/*#define HAS_FPOS64_T /**/
1349
3635cd84
GS
1350/* HAS_STRUCT_FS_DATA:
1351 * This symbol, if defined, indicates that the struct fs_data
1352 * to do statfs() is supported.
1353 */
1354/*#define HAS_STRUCT_FS_DATA /**/
1355
1356/* HAS_FSEEKO:
1357 * This symbol, if defined, indicates that the fseeko routine is
1358 * available to fseek beyond 32 bits (useful for ILP32 hosts).
1359 */
1360/*#define HAS_FSEEKO /**/
1361
1362/* HAS_FSTATFS:
1363 * This symbol, if defined, indicates that the fstatfs routine is
1364 * available to stat filesystems by file descriptors.
1365 */
1366/*#define HAS_FSTATFS /**/
c890dc6c 1367
3635cd84
GS
1368/* HAS_FTELLO:
1369 * This symbol, if defined, indicates that the ftello routine is
1370 * available to ftell beyond 32 bits (useful for ILP32 hosts).
1371 */
1372/*#define HAS_FTELLO /**/
1373
a835ef8a
NIS
1374/* Gconvert:
1375 * This preprocessor macro is defined to convert a floating point
1376 * number to a string without a trailing decimal point. This
1377 * emulates the behavior of sprintf("%g"), but is sometimes much more
1378 * efficient. If gconvert() is not available, but gcvt() drops the
1379 * trailing decimal point, then gcvt() is used. If all else fails,
1380 * a macro using sprintf("%g") is used. Arguments for the Gconvert
1381 * macro are: value, number of digits, whether trailing zeros should
1382 * be retained, and the output buffer.
1383 * Possible values are:
1384 * d_Gconvert='gconvert((x),(n),(t),(b))'
1385 * d_Gconvert='gcvt((x),(n),(b))'
1386 * d_Gconvert='sprintf((b),"%.*g",(n),(x))'
1387 * The last two assume trailing zeros should not be kept.
1388 */
1389#define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
1390
fe749a9f
JH
1391/* HAS_GETCWD:
1392 * This symbol, if defined, indicates that the getcwd routine is
1393 * available to get the current working directory.
1394 */
1395/*#define HAS_GETCWD /**/
c890dc6c 1396
3635cd84
GS
1397/* HAS_GETGRENT:
1398 * This symbol, if defined, indicates that the getgrent routine is
1399 * available for sequential access of the group database.
a835ef8a 1400 */
3635cd84 1401/*#define HAS_GETGRENT /**/
a835ef8a 1402
3635cd84
GS
1403/* HAS_GETHOSTBYADDR:
1404 * This symbol, if defined, indicates that the gethostbyaddr() routine is
1405 * available to look up hosts by their IP addresses.
be44fb0e 1406 */
3635cd84 1407#define HAS_GETHOSTBYADDR /**/
be44fb0e 1408
3635cd84
GS
1409/* HAS_GETHOSTBYNAME:
1410 * This symbol, if defined, indicates that the gethostbyname() routine is
1411 * available to look up host names in some data base or other.
a835ef8a 1412 */
3635cd84 1413#define HAS_GETHOSTBYNAME /**/
a835ef8a 1414
3635cd84
GS
1415/* HAS_GETHOSTENT:
1416 * This symbol, if defined, indicates that the gethostent() routine is
1417 * available to look up host names in some data base or another.
a835ef8a 1418 */
3635cd84 1419/*#define HAS_GETHOSTENT /**/
a835ef8a 1420
3635cd84
GS
1421/* HAS_GETHOSTNAME:
1422 * This symbol, if defined, indicates that the C program may use the
1423 * gethostname() routine to derive the host name. See also HAS_UNAME
1424 * and PHOSTNAME.
a835ef8a 1425 */
3635cd84
GS
1426/* HAS_UNAME:
1427 * This symbol, if defined, indicates that the C program may use the
1428 * uname() routine to derive the host name. See also HAS_GETHOSTNAME
1429 * and PHOSTNAME.
a835ef8a 1430 */
3635cd84
GS
1431/* PHOSTNAME:
1432 * This symbol, if defined, indicates the command to feed to the
1433 * popen() routine to derive the host name. See also HAS_GETHOSTNAME
1434 * and HAS_UNAME. Note that the command uses a fully qualified path,
1435 * so that it is safe even if used by a process with super-user
1436 * privileges.
1437 */
ac135a7c
GS
1438/* HAS_PHOSTNAME:
1439 * This symbol, if defined, indicates that the C program may use the
1440 * contents of PHOSTNAME as a command to feed to the popen() routine
1441 * to derive the host name.
1442 */
3635cd84
GS
1443#define HAS_GETHOSTNAME /**/
1444#define HAS_UNAME /**/
ac135a7c 1445/*#define HAS_PHOSTNAME /**/
3635cd84
GS
1446#ifdef HAS_PHOSTNAME
1447#define PHOSTNAME "" /* How to get the host name */
1448#endif
a835ef8a 1449
3635cd84
GS
1450/* HAS_GETHOST_PROTOS:
1451 * This symbol, if defined, indicates that <netdb.h> includes
1452 * prototypes for gethostent(), gethostbyname(), and
1453 * gethostbyaddr(). Otherwise, it is up to the program to guess
1454 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
fea7140c 1455 */
3635cd84 1456#define HAS_GETHOST_PROTOS /**/
fea7140c 1457
3635cd84
GS
1458/* HAS_GETMNT:
1459 * This symbol, if defined, indicates that the getmnt routine is
1460 * available to get filesystem mount info by filename.
c4d53692 1461 */
3635cd84
GS
1462/*#define HAS_GETMNT /**/
1463
1464/* HAS_GETMNTENT:
1465 * This symbol, if defined, indicates that the getmntent routine is
1466 * available to iterate through mounted file systems to get their info.
a835ef8a 1467 */
3635cd84
GS
1468/*#define HAS_GETMNTENT /**/
1469
1470/* HAS_GETNETBYADDR:
1471 * This symbol, if defined, indicates that the getnetbyaddr() routine is
1472 * available to look up networks by their IP addresses.
a835ef8a 1473 */
3635cd84
GS
1474/*#define HAS_GETNETBYADDR /**/
1475
1476/* HAS_GETNETBYNAME:
1477 * This symbol, if defined, indicates that the getnetbyname() routine is
1478 * available to look up networks by their names.
a835ef8a 1479 */
3635cd84 1480/*#define HAS_GETNETBYNAME /**/
a835ef8a 1481
3635cd84
GS
1482/* HAS_GETNETENT:
1483 * This symbol, if defined, indicates that the getnetent() routine is
1484 * available to look up network names in some data base or another.
a835ef8a 1485 */
3635cd84
GS
1486/*#define HAS_GETNETENT /**/
1487
1488/* HAS_GETNET_PROTOS:
1489 * This symbol, if defined, indicates that <netdb.h> includes
1490 * prototypes for getnetent(), getnetbyname(), and
1491 * getnetbyaddr(). Otherwise, it is up to the program to guess
1492 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
924b3ec4 1493 */
3635cd84
GS
1494/*#define HAS_GETNET_PROTOS /**/
1495
1496/* HAS_GETPROTOENT:
1497 * This symbol, if defined, indicates that the getprotoent() routine is
1498 * available to look up protocols in some data base or another.
924b3ec4 1499 */
3635cd84
GS
1500/*#define HAS_GETPROTOENT /**/
1501
1502/* HAS_GETPROTOBYNAME:
1503 * This symbol, if defined, indicates that the getprotobyname()
1504 * routine is available to look up protocols by their name.
924b3ec4 1505 */
3635cd84
GS
1506/* HAS_GETPROTOBYNUMBER:
1507 * This symbol, if defined, indicates that the getprotobynumber()
1508 * routine is available to look up protocols by their number.
924b3ec4 1509 */
3635cd84
GS
1510#define HAS_GETPROTOBYNAME /**/
1511#define HAS_GETPROTOBYNUMBER /**/
a835ef8a 1512
3635cd84
GS
1513/* HAS_GETPROTO_PROTOS:
1514 * This symbol, if defined, indicates that <netdb.h> includes
1515 * prototypes for getprotoent(), getprotobyname(), and
1516 * getprotobyaddr(). Otherwise, it is up to the program to guess
1517 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
a835ef8a 1518 */
3635cd84
GS
1519#define HAS_GETPROTO_PROTOS /**/
1520
1521/* HAS_GETPWENT:
1522 * This symbol, if defined, indicates that the getpwent routine is
1523 * available for sequential access of the passwd database.
1524 * If this is not available, the older getpw() function may be available.
924b3ec4 1525 */
3635cd84 1526/*#define HAS_GETPWENT /**/
a835ef8a 1527
3635cd84
GS
1528/* HAS_GETSERVENT:
1529 * This symbol, if defined, indicates that the getservent() routine is
1530 * available to look up network services in some data base or another.
a835ef8a 1531 */
3635cd84
GS
1532/*#define HAS_GETSERVENT /**/
1533
1534/* HAS_GETSERV_PROTOS:
1535 * This symbol, if defined, indicates that <netdb.h> includes
1536 * prototypes for getservent(), getservbyname(), and
1537 * getservbyaddr(). Otherwise, it is up to the program to guess
1538 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
924b3ec4 1539 */
3635cd84 1540#define HAS_GETSERV_PROTOS /**/
a835ef8a 1541
3635cd84
GS
1542/* HAS_GETSPENT:
1543 * This symbol, if defined, indicates that the getspent system call is
1544 * available to retrieve SysV shadow password entries sequentially.
07ba5892 1545 */
3635cd84 1546/*#define HAS_GETSPENT /**/
07ba5892 1547
3635cd84
GS
1548/* HAS_GETSPNAM:
1549 * This symbol, if defined, indicates that the getspnam system call is
1550 * available to retrieve SysV shadow password entries by name.
a835ef8a 1551 */
3635cd84
GS
1552/*#define HAS_GETSPNAM /**/
1553
1554/* HAS_GETSERVBYNAME:
1555 * This symbol, if defined, indicates that the getservbyname()
1556 * routine is available to look up services by their name.
a835ef8a 1557 */
3635cd84
GS
1558/* HAS_GETSERVBYPORT:
1559 * This symbol, if defined, indicates that the getservbyport()
1560 * routine is available to look up services by their port.
a835ef8a 1561 */
3635cd84
GS
1562#define HAS_GETSERVBYNAME /**/
1563#define HAS_GETSERVBYPORT /**/
a835ef8a 1564
3635cd84
GS
1565/* HAS_GNULIBC:
1566 * This symbol, if defined, indicates to the C program that
1567 * the GNU C library is being used.
a835ef8a 1568 */
3635cd84 1569/*#define HAS_GNULIBC /**/
ac135a7c
GS
1570#if defined(HAS_GNULIBC) && !defined(_GNU_SOURCE)
1571# define _GNU_SOURCE
1572#endif
3635cd84
GS
1573/* HAS_HASMNTOPT:
1574 * This symbol, if defined, indicates that the hasmntopt routine is
1575 * available to query the mount options of file systems.
924b3ec4 1576 */
3635cd84
GS
1577/*#define HAS_HASMNTOPT /**/
1578
1579/* HAS_HTONL:
1580 * This symbol, if defined, indicates that the htonl() routine (and
1581 * friends htons() ntohl() ntohs()) are available to do network
1582 * order byte swapping.
924b3ec4 1583 */
3635cd84
GS
1584/* HAS_HTONS:
1585 * This symbol, if defined, indicates that the htons() routine (and
1586 * friends htonl() ntohl() ntohs()) are available to do network
1587 * order byte swapping.
924b3ec4 1588 */
3635cd84
GS
1589/* HAS_NTOHL:
1590 * This symbol, if defined, indicates that the ntohl() routine (and
1591 * friends htonl() htons() ntohs()) are available to do network
1592 * order byte swapping.
1593 */
1594/* HAS_NTOHS:
1595 * This symbol, if defined, indicates that the ntohs() routine (and
1596 * friends htonl() htons() ntohl()) are available to do network
1597 * order byte swapping.
1598 */
1599#define HAS_HTONL /**/
1600#define HAS_HTONS /**/
1601#define HAS_NTOHL /**/
1602#define HAS_NTOHS /**/
924b3ec4 1603
ac135a7c
GS
1604/* HAS_ICONV:
1605 * This symbol, if defined, indicates that the iconv routine is
1606 * available to do character set conversions.
1607 */
1608/*#define HAS_ICONV /**/
1609
1610/* HAS_INT64_T:
1611 * This symbol will defined if the C compiler supports int64_t.
1612 * Usually the <inttypes.h> needs to be included, but sometimes
1613 * <sys/types.h> is enough.
1614 */
1615/*#define HAS_INT64_T /**/
1616
3635cd84
GS
1617/* HAS_ISASCII:
1618 * This manifest constant lets the C program know that isascii
1619 * is available.
07ba5892 1620 */
3635cd84 1621#define HAS_ISASCII /**/
07ba5892 1622
3635cd84
GS
1623/* HAS_LCHOWN:
1624 * This symbol, if defined, indicates that the lchown routine is
1625 * available to operate on a symbolic link (instead of following the
1626 * link).
104f9d64 1627 */
3635cd84
GS
1628/*#define HAS_LCHOWN /**/
1629
1630/* HAS_LDBL_DIG:
1631 * This symbol, if defined, indicates that this system's <float.h>
1632 * or <limits.h> defines the symbol LDBL_DIG, which is the number
1633 * of significant digits in a long double precision number. Unlike
1634 * for DBL_DIG, there's no good guess for LDBL_DIG if it is undefined.
104f9d64 1635 */
3635cd84
GS
1636#define HAS_LDBL_DIG /**/
1637
1638/* HAS_LONG_DOUBLE:
1639 * This symbol will be defined if the C compiler supports long
1640 * doubles.
104f9d64 1641 */
3635cd84
GS
1642/* LONG_DOUBLESIZE:
1643 * This symbol contains the size of a long double, so that the
1644 * C preprocessor can make decisions based on it. It is only
1645 * defined if the system supports long doubles.
924b3ec4 1646 */
3635cd84
GS
1647#define HAS_LONG_DOUBLE /**/
1648#ifdef HAS_LONG_DOUBLE
1649#define LONG_DOUBLESIZE 12 /**/
1650#endif
924b3ec4 1651
3635cd84
GS
1652/* HAS_LONG_LONG:
1653 * This symbol will be defined if the C compiler supports long long.
924b3ec4 1654 */
3635cd84
GS
1655/* LONGLONGSIZE:
1656 * This symbol contains the size of a long long, so that the
1657 * C preprocessor can make decisions based on it. It is only
1658 * defined if the system supports long long.
327c3667 1659 */
3635cd84
GS
1660/*#define HAS_LONG_LONG /**/
1661#ifdef HAS_LONG_LONG
1662#define LONGLONGSIZE 8 /**/
1663#endif
327c3667 1664
ac135a7c
GS
1665/* HAS_MADVISE:
1666 * This symbol, if defined, indicates that the madvise system call is
1667 * available to map a file into memory.
c890dc6c 1668 */
ac135a7c 1669/*#define HAS_MADVISE /**/
c890dc6c 1670
3635cd84
GS
1671/* HAS_MEMCHR:
1672 * This symbol, if defined, indicates that the memchr routine is available
1673 * to locate characters within a C string.
82839a9d 1674 */
3635cd84
GS
1675#define HAS_MEMCHR /**/
1676
ac135a7c
GS
1677/* HAS_MKDTEMP:
1678 * This symbol, if defined, indicates that the mkdtemp routine is
1679 * available to exclusively create a uniquely named temporary directory.
1680 */
1681/*#define HAS_MKDTEMP /**/
1682
1683/* HAS_MKSTEMP:
1684 * This symbol, if defined, indicates that the mkstemp routine is
1685 * available to exclusively create and open a uniquely named
1686 * temporary file.
1687 */
1688/*#define HAS_MKSTEMP /**/
1689
1690/* HAS_MKSTEMPS:
1691 * This symbol, if defined, indicates that the mkstemps routine is
1692 * available to excluslvely create and open a uniquely named
1693 * (with a suffix) temporary file.
1694 */
1695/*#define HAS_MKSTEMPS /**/
1696
1697/* HAS_MMAP:
1698 * This symbol, if defined, indicates that the mmap system call is
1699 * available to map a file into memory.
1700 */
1701/* Mmap_t:
1702 * This symbol holds the return type of the mmap() system call
1703 * (and simultaneously the type of the first argument).
1704 * Usually set to 'void *' or 'cadd_t'.
1705 */
1706/*#define HAS_MMAP /**/
1707#define Mmap_t void * /**/
1708
1709/* HAS_MPROTECT:
1710 * This symbol, if defined, indicates that the mprotect system call is
1711 * available to modify the access protection of a memory mapped file.
1712 */
1713/*#define HAS_MPROTECT /**/
1714
3635cd84
GS
1715/* HAS_MSG:
1716 * This symbol, if defined, indicates that the entire msg*(2) library is
1717 * supported (IPC mechanism based on message queues).
82839a9d 1718 */
3635cd84 1719/*#define HAS_MSG /**/
82839a9d 1720
ac135a7c
GS
1721/* HAS_OFF64_T:
1722 * This symbol will be defined if the C compiler supports off64_t.
1723 */
1724/*#define HAS_OFF64_T /**/
1725
3635cd84
GS
1726/* HAS_OPEN3:
1727 * This manifest constant lets the C program know that the three
1728 * argument form of open(2) is available.
82839a9d 1729 */
3635cd84
GS
1730/*#define HAS_OPEN3 /**/
1731
1732/* OLD_PTHREAD_CREATE_JOINABLE:
1733 * This symbol, if defined, indicates how to create pthread
1734 * in joinable (aka undetached) state. NOTE: not defined
1735 * if pthread.h already has defined PTHREAD_CREATE_JOINABLE
1736 * (the new version of the constant).
1737 * If defined, known values are PTHREAD_CREATE_UNDETACHED
1738 * and __UNDETACHED.
82839a9d 1739 */
3635cd84 1740/*#define OLD_PTHREAD_CREATE_JOINABLE /**/
82839a9d 1741
3635cd84
GS
1742/* HAS_PTHREAD_YIELD:
1743 * This symbol, if defined, indicates that the pthread_yield
1744 * routine is available to yield the execution of the current
1745 * thread. sched_yield is preferable to pthread_yield.
1746 */
1747/* SCHED_YIELD:
1748 * This symbol defines the way to yield the execution of
1749 * the current thread. Known ways are sched_yield,
1750 * pthread_yield, and pthread_yield with NULL.
1751 */
1752/* HAS_SCHED_YIELD:
1753 * This symbol, if defined, indicates that the sched_yield
1754 * routine is available to yield the execution of the current
1755 * thread. sched_yield is preferable to pthread_yield.
82839a9d 1756 */
3635cd84
GS
1757/*#define HAS_PTHREAD_YIELD /**/
1758#define SCHED_YIELD /**/
1759/*#define HAS_SCHED_YIELD /**/
82839a9d 1760
3635cd84
GS
1761/* HAS_SAFE_BCOPY:
1762 * This symbol, if defined, indicates that the bcopy routine is available
1763 * to copy potentially overlapping memory blocks. Otherwise you should
1764 * probably use memmove() or memcpy(). If neither is defined, roll your
1765 * own version.
82839a9d 1766 */
3635cd84
GS
1767/*#define HAS_SAFE_BCOPY /**/
1768
1769/* HAS_SAFE_MEMCPY:
1770 * This symbol, if defined, indicates that the memcpy routine is available
1771 * to copy potentially overlapping memory blocks. Otherwise you should
1772 * probably use memmove() or memcpy(). If neither is defined, roll your
1773 * own version.
82839a9d 1774 */
3635cd84 1775/*#define HAS_SAFE_MEMCPY /**/
82839a9d 1776
3635cd84
GS
1777/* HAS_SANE_MEMCMP:
1778 * This symbol, if defined, indicates that the memcmp routine is available
1779 * and can be used to compare relative magnitudes of chars with their high
1780 * bits set. If it is not defined, roll your own version.
82839a9d 1781 */
3635cd84
GS
1782#define HAS_SANE_MEMCMP /**/
1783
1784/* HAS_SEM:
1785 * This symbol, if defined, indicates that the entire sem*(2) library is
1786 * supported.
82839a9d 1787 */
3635cd84 1788/*#define HAS_SEM /**/
82839a9d 1789
3635cd84
GS
1790/* HAS_SETGRENT:
1791 * This symbol, if defined, indicates that the setgrent routine is
1792 * available for initializing sequential access of the group database.
82839a9d 1793 */
3635cd84
GS
1794/*#define HAS_SETGRENT /**/
1795
1796/* HAS_SETGROUPS:
1797 * This symbol, if defined, indicates that the setgroups() routine is
1798 * available to set the list of process groups. If unavailable, multiple
1799 * groups are probably not supported.
82839a9d 1800 */
3635cd84 1801/*#define HAS_SETGROUPS /**/
82839a9d 1802
3635cd84
GS
1803/* HAS_SETHOSTENT:
1804 * This symbol, if defined, indicates that the sethostent() routine is
1805 * available.
82839a9d 1806 */
3635cd84 1807/*#define HAS_SETHOSTENT /**/
82839a9d 1808
3635cd84
GS
1809/* HAS_SETNETENT:
1810 * This symbol, if defined, indicates that the setnetent() routine is
1811 * available.
924b3ec4 1812 */
3635cd84 1813/*#define HAS_SETNETENT /**/
924b3ec4 1814
3635cd84
GS
1815/* HAS_SETPROTOENT:
1816 * This symbol, if defined, indicates that the setprotoent() routine is
1817 * available.
924b3ec4 1818 */
3635cd84
GS
1819/*#define HAS_SETPROTOENT /**/
1820
1821/* HAS_SETPWENT:
1822 * This symbol, if defined, indicates that the setpwent routine is
1823 * available for initializing sequential access of the passwd database.
924b3ec4 1824 */
3635cd84 1825/*#define HAS_SETPWENT /**/
924b3ec4 1826
3635cd84
GS
1827/* HAS_SETSERVENT:
1828 * This symbol, if defined, indicates that the setservent() routine is
1829 * available.
e1f15930 1830 */
3635cd84 1831/*#define HAS_SETSERVENT /**/
104f9d64 1832
3635cd84
GS
1833/* HAS_SETSPENT:
1834 * This symbol, if defined, indicates that the setspent system call is
1835 * available to initialize the scan of SysV shadow password entries.
327c3667 1836 */
3635cd84 1837/*#define HAS_SETSPENT /**/
327c3667 1838
3635cd84
GS
1839/* HAS_SETVBUF:
1840 * This symbol, if defined, indicates that the setvbuf routine is
1841 * available to change buffering on an open stdio stream.
1842 * to a line-buffered mode.
a835ef8a 1843 */
3635cd84 1844#define HAS_SETVBUF /**/
0cd52aa3 1845
3635cd84
GS
1846/* USE_SFIO:
1847 * This symbol, if defined, indicates that sfio should
1848 * be used.
327c3667 1849 */
3635cd84 1850/*#define USE_SFIO /**/
327c3667 1851
3635cd84
GS
1852/* HAS_SHM:
1853 * This symbol, if defined, indicates that the entire shm*(2) library is
1854 * supported.
0cd52aa3 1855 */
3635cd84 1856/*#define HAS_SHM /**/
0cd52aa3 1857
3635cd84
GS
1858/* HAS_SIGACTION:
1859 * This symbol, if defined, indicates that Vr4's sigaction() routine
1860 * is available.
0cd52aa3 1861 */
3635cd84 1862/*#define HAS_SIGACTION /**/
0cd52aa3 1863
3635cd84
GS
1864/* HAS_SIGSETJMP:
1865 * This variable indicates to the C program that the sigsetjmp()
1866 * routine is available to save the calling process's registers
1867 * and stack environment for later use by siglongjmp(), and
1868 * to optionally save the process's signal mask. See
1869 * Sigjmp_buf, Sigsetjmp, and Siglongjmp.
0cd52aa3 1870 */
3635cd84
GS
1871/* Sigjmp_buf:
1872 * This is the buffer type to be used with Sigsetjmp and Siglongjmp.
327c3667 1873 */
3635cd84
GS
1874/* Sigsetjmp:
1875 * This macro is used in the same way as sigsetjmp(), but will invoke
1876 * traditional setjmp() if sigsetjmp isn't available.
1877 * See HAS_SIGSETJMP.
0cd52aa3 1878 */
3635cd84
GS
1879/* Siglongjmp:
1880 * This macro is used in the same way as siglongjmp(), but will invoke
1881 * traditional longjmp() if siglongjmp isn't available.
1882 * See HAS_SIGSETJMP.
327c3667 1883 */
3635cd84
GS
1884/*#define HAS_SIGSETJMP /**/
1885#ifdef HAS_SIGSETJMP
1886#define Sigjmp_buf sigjmp_buf
1887#define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
1888#define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
1889#else
1890#define Sigjmp_buf jmp_buf
1891#define Sigsetjmp(buf,save_mask) setjmp((buf))
1892#define Siglongjmp(buf,retval) longjmp((buf),(retval))
1893#endif
327c3667 1894
3635cd84
GS
1895/* HAS_SOCKET:
1896 * This symbol, if defined, indicates that the BSD socket interface is
1897 * supported.
07ba5892 1898 */
3635cd84
GS
1899/* HAS_SOCKETPAIR:
1900 * This symbol, if defined, indicates that the BSD socketpair() call is
1901 * supported.
07ba5892 1902 */
3635cd84
GS
1903/* HAS_MSG_CTRUNC:
1904 * This symbol, if defined, indicates that the MSG_CTRUNC is supported.
1905 * Checking just with #ifdef might not be enough because this symbol
1906 * has been known to be an enum.
07ba5892 1907 */
3635cd84
GS
1908/* HAS_MSG_DONTROUTE:
1909 * This symbol, if defined, indicates that the MSG_DONTROUTE is supported.
1910 * Checking just with #ifdef might not be enough because this symbol
1911 * has been known to be an enum.
9423c6fc 1912 */
3635cd84
GS
1913/* HAS_MSG_OOB:
1914 * This symbol, if defined, indicates that the MSG_OOB is supported.
1915 * Checking just with #ifdef might not be enough because this symbol
1916 * has been known to be an enum.
9423c6fc 1917 */
3635cd84
GS
1918/* HAS_MSG_PEEK:
1919 * This symbol, if defined, indicates that the MSG_PEEK is supported.
1920 * Checking just with #ifdef might not be enough because this symbol
1921 * has been known to be an enum.
9423c6fc 1922 */
3635cd84
GS
1923/* HAS_MSG_PROXY:
1924 * This symbol, if defined, indicates that the MSG_PROXY is supported.
1925 * Checking just with #ifdef might not be enough because this symbol
1926 * has been known to be an enum.
e1f15930 1927 */
3635cd84
GS
1928/* HAS_SCM_RIGHTS:
1929 * This symbol, if defined, indicates that the SCM_RIGHTS is supported.
1930 * Checking just with #ifdef might not be enough because this symbol
1931 * has been known to be an enum.
1932 */
1933#define HAS_SOCKET /**/
1934/*#define HAS_SOCKETPAIR /**/
1935/*#define HAS_MSG_CTRUNC /**/
1936/*#define HAS_MSG_DONTROUTE /**/
1937/*#define HAS_MSG_OOB /**/
1938/*#define HAS_MSG_PEEK /**/
1939/*#define HAS_MSG_PROXY /**/
1940/*#define HAS_SCM_RIGHTS /**/
9423c6fc 1941
3635cd84
GS
1942/* HAS_SQRTL:
1943 * This symbol, if defined, indicates that the sqrtl routine is
1944 * available to do long double square roots.
07ba5892 1945 */
3635cd84 1946/*#define HAS_SQRTL /**/
07ba5892 1947
3635cd84
GS
1948/* USE_STAT_BLOCKS:
1949 * This symbol is defined if this system has a stat structure declaring
1950 * st_blksize and st_blocks.
07ba5892 1951 */
3635cd84
GS
1952#ifndef USE_STAT_BLOCKS
1953/*#define USE_STAT_BLOCKS /**/
1954#endif
07ba5892 1955
3635cd84
GS
1956/* HAS_STRUCT_STATFS_F_FLAGS:
1957 * This symbol, if defined, indicates that the struct statfs
1958 * does have the f_flags member containing the mount flags of
1959 * the filesystem containing the file.
1960 * This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3),
1961 * not from <sys/statfs.h> (SYSV). Older BSDs (like Ultrix) do not
1962 * have statfs() and struct statfs, they have ustat() and getmnt()
1963 * with struct ustat and struct fs_data.
0cd52aa3 1964 */
3635cd84 1965/*#define HAS_STRUCT_STATFS_F_FLAGS /**/
0cd52aa3 1966
3635cd84
GS
1967/* HAS_STRUCT_STATFS:
1968 * This symbol, if defined, indicates that the struct statfs
1969 * to do statfs() is supported.
0cd52aa3 1970 */
3635cd84 1971/*#define HAS_STRUCT_STATFS /**/
0cd52aa3 1972
3635cd84
GS
1973/* HAS_FSTATVFS:
1974 * This symbol, if defined, indicates that the fstatvfs routine is
1975 * available to stat filesystems by file descriptors.
07ba5892 1976 */
3635cd84 1977/*#define HAS_FSTATVFS /**/
52b0428e 1978
3635cd84
GS
1979/* USE_STDIO_PTR:
1980 * This symbol is defined if the _ptr and _cnt fields (or similar)
1981 * of the stdio FILE structure can be used to access the stdio buffer
1982 * for a file handle. If this is defined, then the FILE_ptr(fp)
1983 * and FILE_cnt(fp) macros will also be defined and should be used
1984 * to access these fields.
9036c72f 1985 */
3635cd84
GS
1986/* FILE_ptr:
1987 * This macro is used to access the _ptr field (or equivalent) of the
1988 * FILE structure pointed to by its argument. This macro will always be
1989 * defined if USE_STDIO_PTR is defined.
a835ef8a 1990 */
3635cd84
GS
1991/* STDIO_PTR_LVALUE:
1992 * This symbol is defined if the FILE_ptr macro can be used as an
1993 * lvalue.
62520c91 1994 */
3635cd84
GS
1995/* FILE_cnt:
1996 * This macro is used to access the _cnt field (or equivalent) of the
1997 * FILE structure pointed to by its argument. This macro will always be
1998 * defined if USE_STDIO_PTR is defined.
62520c91 1999 */
3635cd84
GS
2000/* STDIO_CNT_LVALUE:
2001 * This symbol is defined if the FILE_cnt macro can be used as an
2002 * lvalue.
a835ef8a 2003 */
3635cd84
GS
2004#define USE_STDIO_PTR /**/
2005#ifdef USE_STDIO_PTR
2006#define FILE_ptr(fp) ((fp)->_ptr)
2007#define STDIO_PTR_LVALUE /**/
2008#define FILE_cnt(fp) ((fp)->_cnt)
2009#define STDIO_CNT_LVALUE /**/
9036c72f 2010#endif
a835ef8a 2011
3635cd84
GS
2012/* USE_STDIO_BASE:
2013 * This symbol is defined if the _base field (or similar) of the
2014 * stdio FILE structure can be used to access the stdio buffer for
2015 * a file handle. If this is defined, then the FILE_base(fp) macro
2016 * will also be defined and should be used to access this field.
2017 * Also, the FILE_bufsiz(fp) macro will be defined and should be used
2018 * to determine the number of bytes in the buffer. USE_STDIO_BASE
2019 * will never be defined unless USE_STDIO_PTR is.
82839a9d 2020 */
3635cd84
GS
2021/* FILE_base:
2022 * This macro is used to access the _base field (or equivalent) of the
2023 * FILE structure pointed to by its argument. This macro will always be
2024 * defined if USE_STDIO_BASE is defined.
9423c6fc 2025 */
3635cd84
GS
2026/* FILE_bufsiz:
2027 * This macro is used to determine the number of bytes in the I/O
2028 * buffer pointed to by _base field (or equivalent) of the FILE
2029 * structure pointed to its argument. This macro will always be defined
2030 * if USE_STDIO_BASE is defined.
bbda9c9d 2031 */
3635cd84
GS
2032#define USE_STDIO_BASE /**/
2033#ifdef USE_STDIO_BASE
2034#define FILE_base(fp) ((fp)->_base)
2035#define FILE_bufsiz(fp) ((fp)->_cnt + (fp)->_ptr - (fp)->_base)
2036#endif
bbda9c9d 2037
3635cd84
GS
2038/* HAS_STRERROR:
2039 * This symbol, if defined, indicates that the strerror routine is
2040 * available to translate error numbers to strings. See the writeup
2041 * of Strerror() in this file before you try to define your own.
e8ee3774 2042 */
3635cd84
GS
2043/* HAS_SYS_ERRLIST:
2044 * This symbol, if defined, indicates that the sys_errlist array is
2045 * available to translate error numbers to strings. The extern int
2046 * sys_nerr gives the size of that table.
82839a9d 2047 */
3635cd84
GS
2048/* Strerror:
2049 * This preprocessor symbol is defined as a macro if strerror() is
2050 * not available to translate error numbers to strings but sys_errlist[]
2051 * array is there.
924b3ec4 2052 */
3635cd84
GS
2053#define HAS_STRERROR /**/
2054#define HAS_SYS_ERRLIST /**/
2055#define Strerror(e) strerror(e)
924b3ec4 2056
3635cd84
GS
2057/* HAS_STRTOLD:
2058 * This symbol, if defined, indicates that the strtold routine is
2059 * available to convert strings to long doubles.
c4d53692 2060 */
3635cd84 2061/*#define HAS_STRTOLD /**/
52b0428e 2062
3635cd84
GS
2063/* HAS_STRTOLL:
2064 * This symbol, if defined, indicates that the strtoll routine is
2065 * available to convert strings to long longs.
c4d53692 2066 */
3635cd84 2067/*#define HAS_STRTOLL /**/
52b0428e 2068
3635cd84
GS
2069/* HAS_STRTOULL:
2070 * This symbol, if defined, indicates that the strtoull routine is
2071 * available to convert strings to unsigned long longs.
52b0428e 2072 */
3635cd84 2073/*#define HAS_STRTOULL /**/
c4d53692 2074
3635cd84
GS
2075/* HAS_STRTOUQ:
2076 * This symbol, if defined, indicates that the strtouq routine is
2077 * available to convert strings to unsigned long longs (quads).
c4d53692 2078 */
3635cd84 2079/*#define HAS_STRTOUQ /**/
c4d53692
GS
2080
2081/* HAS_TELLDIR_PROTO:
2082 * This symbol, if defined, indicates that the system provides
2083 * a prototype for the telldir() function. Otherwise, it is up
2084 * to the program to supply one. A good guess is
82839a9d 2085 * extern long telldir _((DIR*));
c4d53692
GS
2086 */
2087#define HAS_TELLDIR_PROTO /**/
2088
3635cd84
GS
2089/* Time_t:
2090 * This symbol holds the type returned by time(). It can be long,
2091 * or time_t on BSD sites (in which case <sys/types.h> should be
2092 * included).
2093 */
2094#define Time_t time_t /* Time type */
2095
2096/* HAS_TIMES:
2097 * This symbol, if defined, indicates that the times() routine exists.
2098 * Note that this became obsolete on some systems (SUNOS), which now
2099 * use getrusage(). It may be necessary to include <sys/times.h>.
2100 */
2101#define HAS_TIMES /**/
2102
2103/* HAS_UNION_SEMUN:
2104 * This symbol, if defined, indicates that the union semun is
2105 * defined by including <sys/sem.h>. If not, the user code
2106 * probably needs to define it as:
2107 * union semun {
2108 * int val;
2109 * struct semid_ds *buf;
2110 * unsigned short *array;
2111 * }
2112 */
2113/* USE_SEMCTL_SEMUN:
2114 * This symbol, if defined, indicates that union semun is
2115 * used for semctl IPC_STAT.
2116 */
2117/* USE_SEMCTL_SEMID_DS:
2118 * This symbol, if defined, indicates that struct semid_ds * is
2119 * used for semctl IPC_STAT.
2120 */
2121#define HAS_UNION_SEMUN /**/
2122/*#define USE_SEMCTL_SEMUN /**/
2123/*#define USE_SEMCTL_SEMID_DS /**/
2124
52b0428e
GS
2125/* HAS_USTAT:
2126 * This symbol, if defined, indicates that the ustat system call is
2127 * available to query file system statistics by dev_t.
2128 */
2129/*#define HAS_USTAT /**/
2130
3635cd84
GS
2131/* HAS_VFORK:
2132 * This symbol, if defined, indicates that vfork() exists.
2133 */
2134/*#define HAS_VFORK /**/
2135
2136/* Signal_t:
2137 * This symbol's value is either "void" or "int", corresponding to the
2138 * appropriate return type of a signal handler. Thus, you can declare
2139 * a signal handler using "Signal_t (*handler)()", and define the
2140 * handler using "Signal_t handler(sig)".
2141 */
2142#define Signal_t void /* Signal handler's return type */
2143
2144/* HAS_VPRINTF:
2145 * This symbol, if defined, indicates that the vprintf routine is available
2146 * to printf with a pointer to an argument list. If unavailable, you
2147 * may need to write your own, probably in terms of _doprnt().
2148 */
2149/* USE_CHAR_VSPRINTF:
2150 * This symbol is defined if this system has vsprintf() returning type
2151 * (char*). The trend seems to be to declare it as "int vsprintf()". It
2152 * is up to the package author to declare vsprintf correctly based on the
2153 * symbol.
2154 */
2155#define HAS_VPRINTF /**/
2156/*#define USE_CHAR_VSPRINTF /**/
2157
924b3ec4
GS
2158/* USE_DYNAMIC_LOADING:
2159 * This symbol, if defined, indicates that dynamic loading of
2160 * some sort is available.
2161 */
2162#define USE_DYNAMIC_LOADING /**/
2163
3635cd84
GS
2164/* DOUBLESIZE:
2165 * This symbol contains the size of a double, so that the C preprocessor
2166 * can make decisions based on it.
2167 */
2168#define DOUBLESIZE 8 /**/
2169
2170/* EBCDIC:
2171 * This symbol, if defined, indicates that this system uses
2172 * EBCDIC encoding.
2173 */
2174/*#define EBCDIC /**/
2175
9423c6fc
GS
2176/* FFLUSH_NULL:
2177 * This symbol, if defined, tells that fflush(NULL) does flush
2178 * all pending stdio output.
2179 */
2180/* FFLUSH_ALL:
2181 * This symbol, if defined, tells that to flush
2182 * all pending stdio output one must loop through all
2183 * the stdio file handles stored in an array and fflush them.
2184 * Note that if fflushNULL is defined, fflushall will not
2185 * even be probed for and will be left undefined.
2186 */
2187#define FFLUSH_NULL /**/
2188/*#define FFLUSH_ALL /**/
2189
3635cd84
GS
2190/* Fpos_t:
2191 * This symbol holds the type used to declare file positions in libc.
2192 * It can be fpos_t, long, uint, etc... It may be necessary to include
2193 * <sys/types.h> to get any typedef'ed information.
2194 */
2195#define Fpos_t fpos_t /* File position type */
2196
2197/* Gid_t_f:
2198 * This symbol defines the format string used for printing a Gid_t.
2199 */
2200#define Gid_t_f "ld" /**/
2201
2202/* Gid_t_size:
2203 * This symbol holds the size of a Gid_t in bytes.
2204 */
2205#define Gid_t_size 4 /* GID size */
2206
2207/* Gid_t:
2208 * This symbol holds the return type of getgid() and the type of
2209 * argument to setrgid() and related functions. Typically,
2210 * it is the type of group ids in the kernel. It can be int, ushort,
2211 * uid_t, etc... It may be necessary to include <sys/types.h> to get
2212 * any typedef'ed information.
2213 */
2214#define Gid_t gid_t /* Type for getgid(), etc... */
2215
2216/* Groups_t:
2217 * This symbol holds the type used for the second argument to
2218 * getgroups() and setgropus(). Usually, this is the same as
2219 * gidtype (gid_t) , but sometimes it isn't.
2220 * It can be int, ushort, uid_t, etc...
2221 * It may be necessary to include <sys/types.h> to get any
2222 * typedef'ed information. This is only required if you have
2223 * getgroups() or setgropus()..
2224 */
2225#if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
2226#define Groups_t gid_t /* Type for 2nd arg to [sg]etgroups() */
2227#endif
2228
924b3ec4
GS
2229/* DB_Prefix_t:
2230 * This symbol contains the type of the prefix structure element
2231 * in the <db.h> header file. In older versions of DB, it was
2232 * int, while in newer ones it is u_int32_t.
2233 */
2234/* DB_Hash_t:
2235 * This symbol contains the type of the prefix structure element
2236 * in the <db.h> header file. In older versions of DB, it was
2237 * int, while in newer ones it is size_t.
2238 */
2239#define DB_Hash_t int /**/
2240#define DB_Prefix_t int /**/
2241
3635cd84
GS
2242/* I_GRP:
2243 * This symbol, if defined, indicates to the C program that it should
2244 * include <grp.h>.
2245 */
2246/* GRPASSWD:
2247 * This symbol, if defined, indicates to the C program that struct group
2248 * in <grp.h> contains gr_passwd.
2249 */
2250/*#define I_GRP /**/
2251/*#define GRPASSWD /**/
2252
ac135a7c
GS
2253/* I_ICONV:
2254 * This symbol, if defined, indicates that <iconv.h> exists and
2255 * should be included.
2256 */
2257/*#define I_ICONV /**/
2258
327c3667
GS
2259/* I_INTTYPES:
2260 * This symbol, if defined, indicates to the C program that it should
2261 * include <inttypes.h>.
2262 */
327c3667 2263/*#define I_INTTYPES /**/
327c3667 2264
3635cd84
GS
2265/* I_MACH_CTHREADS:
2266 * This symbol, if defined, indicates to the C program that it should
2267 * include <mach/cthreads.h>.
2268 */
2269/*#define I_MACH_CTHREADS /**/
2270
c4d53692
GS
2271/* I_MNTENT:
2272 * This symbol, if defined, indicates that <mntent.h> exists and
2273 * should be included.
2274 */
2275/*#define I_MNTENT /**/
2276
3635cd84
GS
2277/* I_NETDB:
2278 * This symbol, if defined, indicates that <netdb.h> exists and
2279 * should be included.
2280 */
2281/*#define I_NETDB /**/
2282
9423c6fc
GS
2283/* I_NETINET_TCP:
2284 * This symbol, if defined, indicates to the C program that it should
2285 * include <netinet/tcp.h>.
2286 */
2287/*#define I_NETINET_TCP /**/
2288
c4d53692
GS
2289/* I_POLL:
2290 * This symbol, if defined, indicates that <poll.h> exists and
2291 * should be included.
2292 */
2293/*#define I_POLL /**/
2294
3635cd84
GS
2295/* I_PTHREAD:
2296 * This symbol, if defined, indicates to the C program that it should
2297 * include <pthread.h>.
2298 */
2299/*#define I_PTHREAD /**/
2300
2301/* I_PWD:
2302 * This symbol, if defined, indicates to the C program that it should
2303 * include <pwd.h>.
2304 */
2305/* PWQUOTA:
2306 * This symbol, if defined, indicates to the C program that struct passwd
2307 * contains pw_quota.
2308 */
2309/* PWAGE:
2310 * This symbol, if defined, indicates to the C program that struct passwd
2311 * contains pw_age.
2312 */
2313/* PWCHANGE:
2314 * This symbol, if defined, indicates to the C program that struct passwd
2315 * contains pw_change.
2316 */
2317/* PWCLASS:
2318 * This symbol, if defined, indicates to the C program that struct passwd
2319 * contains pw_class.
2320 */
2321/* PWEXPIRE:
2322 * This symbol, if defined, indicates to the C program that struct passwd
2323 * contains pw_expire.
2324 */
2325/* PWCOMMENT:
2326 * This symbol, if defined, indicates to the C program that struct passwd
2327 * contains pw_comment.
2328 */
2329/* PWGECOS:
2330 * This symbol, if defined, indicates to the C program that struct passwd
2331 * contains pw_gecos.
2332 */
2333/* PWPASSWD:
2334 * This symbol, if defined, indicates to the C program that struct passwd
2335 * contains pw_passwd.
2336 */
2337/*#define I_PWD /**/
2338/*#define PWQUOTA /**/
2339/*#define PWAGE /**/
2340/*#define PWCHANGE /**/
2341/*#define PWCLASS /**/
2342/*#define PWEXPIRE /**/
2343/*#define PWCOMMENT /**/
2344/*#define PWGECOS /**/
2345/*#define PWPASSWD /**/
2346
82839a9d
GS
2347/* I_SHADOW:
2348 * This symbol, if defined, indicates that <shadow.h> exists and
2349 * should be included.
2350 */
2351/*#define I_SHADOW /**/
2352
2353/* I_SOCKS:
2354 * This symbol, if defined, indicates that <socks.h> exists and
2355 * should be included.
2356 */
2357/*#define I_SOCKS /**/
2358
ac135a7c
GS
2359/* I_SUNMATH:
2360 * This symbol, if defined, indicates that <sunmath.h> exists and
2361 * should be included.
2362 */
2363/*#define I_SUNMATH /**/
2364
2365/* I_SYSLOG:
2366 * This symbol, if defined, indicates that <syslog.h> exists and
2367 * should be included.
2368 */
2369/*#define I_SYSLOG /**/
2370
2371/* I_SYSMODE:
2372 * This symbol, if defined, indicates that <sys/mode.h> exists and
2373 * should be included.
2374 */
2375/*#define I_SYSMODE /**/
2376
c4d53692
GS
2377/* I_SYS_MOUNT:
2378 * This symbol, if defined, indicates that <sys/mount.h> exists and
2379 * should be included.
2380 */
2381/*#define I_SYS_MOUNT /**/
2382
52b0428e
GS
2383/* I_SYS_STATFS:
2384 * This symbol, if defined, indicates that <sys/statfs.h> exists.
2385 */
2386/*#define I_SYS_STATFS /**/
2387
c4d53692
GS
2388/* I_SYS_STATVFS:
2389 * This symbol, if defined, indicates that <sys/statvfs.h> exists and
2390 * should be included.
2391 */
2392/*#define I_SYS_STATVFS /**/
2393
3635cd84
GS
2394/* I_SYSUIO:
2395 * This symbol, if defined, indicates that <sys/uio.h> exists and
2396 * should be included.
2397 */
2398/*#define I_SYSUIO /**/
2399
ac135a7c
GS
2400/* I_SYSUTSNAME:
2401 * This symbol, if defined, indicates that <sys/utsname.h> exists and
2402 * should be included.
2403 */
2404/*#define I_SYSUTSNAME /**/
2405
52b0428e
GS
2406/* I_SYS_VFS:
2407 * This symbol, if defined, indicates that <sys/vfs.h> exists and
2408 * should be included.
2409 */
2410/*#define I_SYS_VFS /**/
2411
3635cd84
GS
2412/* I_TIME:
2413 * This symbol, if defined, indicates to the C program that it should
2414 * include <time.h>.
2415 */
2416/* I_SYS_TIME:
2417 * This symbol, if defined, indicates to the C program that it should
2418 * include <sys/time.h>.
2419 */
2420/* I_SYS_TIME_KERNEL:
2421 * This symbol, if defined, indicates to the C program that it should
2422 * include <sys/time.h> with KERNEL defined.
2423 */
2424#define I_TIME /**/
2425/*#define I_SYS_TIME /**/
2426/*#define I_SYS_TIME_KERNEL /**/
2427
52b0428e
GS
2428/* I_USTAT:
2429 * This symbol, if defined, indicates that <ustat.h> exists and
2430 * should be included.
2431 */
2432/*#define I_USTAT /**/
2433
3635cd84
GS
2434/* PERL_INC_VERSION_LIST:
2435 * This variable specifies the list of subdirectories in over
2436 * which perl.c:incpush() and lib/lib.pm will automatically
2437 * search when adding directories to @INC, in a format suitable
2438 * for a C initialization string. See the inc_version_list entry
2439 * in Porting/Glossary for more details.
2440 */
ac135a7c 2441#define PERL_INC_VERSION_LIST 0 /**/
3635cd84 2442
ac135a7c
GS
2443/* INSTALL_USR_BIN_PERL:
2444 * This symbol, if defined, indicates that Perl is to be installed
2445 * also as /usr/bin/perl.
327c3667 2446 */
ac135a7c 2447/*#define INSTALL_USR_BIN_PERL /**/
e8ee3774
GS
2448
2449/* PERL_PRIfldbl:
2450 * This symbol, if defined, contains the string used by stdio to
2451 * format long doubles (format 'f') for output.
327c3667 2452 */
e8ee3774
GS
2453/* PERL_PRIgldbl:
2454 * This symbol, if defined, contains the string used by stdio to
2455 * format long doubles (format 'g') for output.
327c3667 2456 */
e1f15930
GS
2457/*#define PERL_PRIfldbl "f" /**/
2458/*#define PERL_PRIgldbl "g" /**/
e8ee3774 2459
3635cd84
GS
2460/* Off_t:
2461 * This symbol holds the type used to declare offsets in the kernel.
2462 * It can be int, long, off_t, etc... It may be necessary to include
2463 * <sys/types.h> to get any typedef'ed information.
2464 */
2465/* LSEEKSIZE:
2466 * This symbol holds the number of bytes used by the Off_t.
2467 */
2468/* Off_t_size:
2469 * This symbol holds the number of bytes used by the Off_t.
2470 */
2471#define Off_t off_t /* <offset> type */
2472#define LSEEKSIZE 4 /* <offset> size */
2473#define Off_t_size 4 /* <offset> size */
2474
2475/* Free_t:
2476 * This variable contains the return type of free(). It is usually
2477 * void, but occasionally int.
2478 */
2479/* Malloc_t:
2480 * This symbol is the type of pointer returned by malloc and realloc.
2481 */
2482#define Malloc_t void * /**/
2483#define Free_t void /**/
2484
2485/* MYMALLOC:
2486 * This symbol, if defined, indicates that we're using our own malloc.
2487 */
2488/*#define MYMALLOC /**/
2489
2490/* Mode_t:
2491 * This symbol holds the type used to declare file modes
2492 * for systems calls. It is usually mode_t, but may be
2493 * int or unsigned short. It may be necessary to include <sys/types.h>
2494 * to get any typedef'ed information.
2495 */
2496#define Mode_t mode_t /* file mode parameter for system calls */
2497
2498/* VAL_O_NONBLOCK:
2499 * This symbol is to be used during open() or fcntl(F_SETFL) to turn on
2500 * non-blocking I/O for the file descriptor. Note that there is no way
2501 * back, i.e. you cannot turn it blocking again this way. If you wish to
2502 * alternatively switch between blocking and non-blocking, use the
2503 * ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
2504 */
2505/* VAL_EAGAIN:
2506 * This symbol holds the errno error code set by read() when no data was
2507 * present on the non-blocking file descriptor.
2508 */
2509/* RD_NODATA:
2510 * This symbol holds the return code from read() when no data is present
2511 * on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
2512 * not defined, then you can't distinguish between no data and EOF by
2513 * issuing a read(). You'll have to find another way to tell for sure!
2514 */
2515/* EOF_NONBLOCK:
2516 * This symbol, if defined, indicates to the C program that a read() on
2517 * a non-blocking file descriptor will return 0 on EOF, and not the value
2518 * held in RD_NODATA (-1 usually, in that case!).
2519 */
2520#define VAL_O_NONBLOCK O_NONBLOCK
2521#define VAL_EAGAIN EAGAIN
2522#define RD_NODATA -1
2523#define EOF_NONBLOCK
2524
2525/* Netdb_host_t:
2526 * This symbol holds the type used for the 1st argument
2527 * to gethostbyaddr().
2528 */
2529/* Netdb_hlen_t:
2530 * This symbol holds the type used for the 2nd argument
2531 * to gethostbyaddr().
2532 */
2533/* Netdb_name_t:
2534 * This symbol holds the type used for the argument to
2535 * gethostbyname().
2536 */
2537/* Netdb_net_t:
2538 * This symbol holds the type used for the 1st argument to
2539 * getnetbyaddr().
2540 */
2541#define Netdb_host_t char * /**/
2542#define Netdb_hlen_t int /**/
2543#define Netdb_name_t char * /**/
2544#define Netdb_net_t long /**/
2545
539a3d6c
GS
2546/* IVTYPE:
2547 * This symbol defines the C type used for Perl's IV.
327c3667 2548 */
539a3d6c
GS
2549/* UVTYPE:
2550 * This symbol defines the C type used for Perl's UV.
327c3667 2551 */
539a3d6c
GS
2552/* I8TYPE:
2553 * This symbol defines the C type used for Perl's I8.
327c3667 2554 */
539a3d6c
GS
2555/* U8TYPE:
2556 * This symbol defines the C type used for Perl's U8.
2557 */
2558/* I16TYPE:
2559 * This symbol defines the C type used for Perl's I16.
2560 */
2561/* U16TYPE:
2562 * This symbol defines the C type used for Perl's U16.
2563 */
2564/* I32TYPE:
2565 * This symbol defines the C type used for Perl's I32.
2566 */
2567/* U32TYPE:
2568 * This symbol defines the C type used for Perl's U32.
2569 */
2570/* I64TYPE:
2571 * This symbol defines the C type used for Perl's I64.
2572 */
2573/* U64TYPE:
2574 * This symbol defines the C type used for Perl's U64.
2575 */
2576/* NVTYPE:
2577 * This symbol defines the C type used for Perl's NV.
2578 */
2579/* IVSIZE:
2580 * This symbol contains the sizeof(IV).
2581 */
2582/* UVSIZE:
2583 * This symbol contains the sizeof(UV).
2584 */
2585/* I8SIZE:
2586 * This symbol contains the sizeof(I8).
2587 */
2588/* U8SIZE:
2589 * This symbol contains the sizeof(U8).
2590 */
2591/* I16SIZE:
2592 * This symbol contains the sizeof(I16).
2593 */
2594/* U16SIZE:
2595 * This symbol contains the sizeof(U16).
2596 */
2597/* I32SIZE:
2598 * This symbol contains the sizeof(I32).
2599 */
2600/* U32SIZE:
2601 * This symbol contains the sizeof(U32).
327c3667 2602 */
539a3d6c
GS
2603/* I64SIZE:
2604 * This symbol contains the sizeof(I64).
2605 */
2606/* U64SIZE:
2607 * This symbol contains the sizeof(U64).
2608 */
ac135a7c
GS
2609/* NV_PRESERVES_UV:
2610 * This symbol, if defined, indicates that a variable of type NVTYPE
2611 * can preserve all the bit of a variable of type UVSIZE.
2612 */
539a3d6c
GS
2613#define IVTYPE long /**/
2614#define UVTYPE unsigned long /**/
2615#define I8TYPE char /**/
2616#define U8TYPE unsigned char /**/
2617#define I16TYPE short /**/
2618#define U16TYPE unsigned short /**/
2619#define I32TYPE long /**/
2620#define U32TYPE unsigned long /**/
2621#ifdef HAS_QUAD
2622#define I64TYPE long long /**/
2623#define U64TYPE unsigned long long /**/
2624#endif
2625#define NVTYPE double /**/
2626#define IVSIZE 4 /**/
2627#define UVSIZE 4 /**/
2628#define I8SIZE 1 /**/
2629#define U8SIZE 1 /**/
2630#define I16SIZE 2 /**/
2631#define U16SIZE 2 /**/
2632#define I32SIZE 4 /**/
2633#define U32SIZE 4 /**/
2634#ifdef HAS_QUAD
2635#define I64SIZE 8 /**/
2636#define U64SIZE 8 /**/
2637#endif
ac135a7c 2638#define NV_PRESERVES_UV
539a3d6c
GS
2639
2640/* IVdf:
2641 * This symbol defines the format string used for printing a Perl IV
2642 * as a signed decimal integer.
2643 */
2644/* UVuf:
2645 * This symbol defines the format string used for printing a Perl UV
2646 * as an unsigned decimal integer.
2647 */
2648/* UVof:
2649 * This symbol defines the format string used for printing a Perl UV
2650 * as an unsigned octal integer.
2651 */
2652/* UVxf:
2653 * This symbol defines the format string used for printing a Perl UV
2654 * as an unsigned hexadecimal integer.
2655 */
2656#define IVdf "ld" /**/
2657#define UVuf "lu" /**/
2658#define UVof "lo" /**/
2659#define UVxf "lx" /**/
327c3667 2660
3635cd84
GS
2661/* Pid_t:
2662 * This symbol holds the type used to declare process ids in the kernel.
2663 * It can be int, uint, pid_t, etc... It may be necessary to include
2664 * <sys/types.h> to get any typedef'ed information.
2665 */
2666#define Pid_t int /* PID type */
2667
2668/* PRIVLIB:
2669 * This symbol contains the name of the private library for this package.
2670 * The library is private in the sense that it needn't be in anyone's
2671 * execution path, but it should be accessible by the world. The program
2672 * should be prepared to do ~ expansion.
2673 */
2674/* PRIVLIB_EXP:
2675 * This symbol contains the ~name expanded version of PRIVLIB, to be used
2676 * in programs that are not prepared to deal with ~ expansion at run-time.
2677 */
e5a4bac5
GS
2678#define PRIVLIB "c:\\perl\\5.6.0\\lib" /**/
2679#define PRIVLIB_EXP (win32_get_privlib("5.6.0")) /**/
3635cd84
GS
2680
2681/* PTRSIZE:
2682 * This symbol contains the size of a pointer, so that the C preprocessor
2683 * can make decisions based on it. It will be sizeof(void *) if
2684 * the compiler supports (void *); otherwise it will be
2685 * sizeof(char *).
2686 */
2687#define PTRSIZE 4 /**/
2688
2689/* Drand01:
2690 * This macro is to be used to generate uniformly distributed
2691 * random numbers over the range [0., 1.[. You may have to supply
2692 * an 'extern double drand48();' in your program since SunOS 4.1.3
2693 * doesn't provide you with anything relevant in it's headers.
2694 * See HAS_DRAND48_PROTO.
2695 */
2696/* Rand_seed_t:
2697 * This symbol defines the type of the argument of the
2698 * random seed function.
2699 */
2700/* seedDrand01:
2701 * This symbol defines the macro to be used in seeding the
2702 * random number generator (see Drand01).
2703 */
2704/* RANDBITS:
2705 * This symbol indicates how many bits are produced by the
2706 * function used to generate normalized random numbers.
2707 * Values include 15, 16, 31, and 48.
2708 */
2709#define Drand01() (rand()/(double)((unsigned)1<<RANDBITS)) /**/
2710#define Rand_seed_t unsigned /**/
2711#define seedDrand01(x) srand((Rand_seed_t)x) /**/
2712#define RANDBITS 15 /**/
2713
327c3667
GS
2714/* SELECT_MIN_BITS:
2715 * This symbol holds the minimum number of bits operated by select.
2716 * That is, if you do select(n, ...), how many bits at least will be
2717 * cleared in the masks if some activity is detected. Usually this
2718 * is either n or 32*ceil(n/32), especially many little-endians do
2719 * the latter. This is only useful if you have select(), naturally.
2720 */
3635cd84
GS
2721#define SELECT_MIN_BITS 32 /**/
2722
2723/* Select_fd_set_t:
2724 * This symbol holds the type used for the 2nd, 3rd, and 4th
2725 * arguments to select. Usually, this is 'fd_set *', if HAS_FD_SET
2726 * is defined, and 'int *' otherwise. This is only useful if you
2727 * have select(), of course.
2728 */
2729#define Select_fd_set_t Perl_fd_set * /**/
2730
2731/* SIG_NAME:
2732 * This symbol contains a list of signal names in order of
2733 * signal number. This is intended
2734 * to be used as a static array initialization, like this:
2735 * char *sig_name[] = { SIG_NAME };
2736 * The signals in the list are separated with commas, and each signal
2737 * is surrounded by double quotes. There is no leading SIG in the signal
2738 * name, i.e. SIGQUIT is known as "QUIT".
2739 * Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
2740 * etc., where nn is the actual signal number (e.g. NUM37).
2741 * The signal number for sig_name[i] is stored in sig_num[i].
2742 * The last element is 0 to terminate the list with a NULL. This
2743 * corresponds to the 0 at the end of the sig_num list.
2744 */
2745/* SIG_NUM:
2746 * This symbol contains a list of signal numbers, in the same order as the
2747 * SIG_NAME list. It is suitable for static array initialization, as in:
2748 * int sig_num[] = { SIG_NUM };
2749 * The signals in the list are separated with commas, and the indices
2750 * within that list and the SIG_NAME list match, so it's easy to compute
2751 * the signal name from a number or vice versa at the price of a small
2752 * dynamic linear lookup.
2753 * Duplicates are allowed, but are moved to the end of the list.
2754 * The signal number corresponding to sig_name[i] is sig_number[i].
2755 * if (i < NSIG) then sig_number[i] == i.
2756 * The last element is 0, corresponding to the 0 at the end of
2757 * the sig_name list.
2758 */
2759#define SIG_NAME "ZERO", "NUM01", "INT", "QUIT", "ILL", "NUM05", "NUM06", "NUM07", "FPE", "KILL", "NUM10", "SEGV", "NUM12", "PIPE", "ALRM", "TERM", "NUM16", "NUM17", "NUM18", "NUM19", "CHLD", "BREAK", "ABRT", "STOP", "NUM24", "CONT", "CLD", 0 /**/
2760#define SIG_NUM 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 20, 0 /**/
2761
2762/* SITEARCH:
2763 * This symbol contains the name of the private library for this package.
2764 * The library is private in the sense that it needn't be in anyone's
2765 * execution path, but it should be accessible by the world. The program
2766 * should be prepared to do ~ expansion.
2767 * The standard distribution will put nothing in this directory.
2768 * After perl has been installed, users may install their own local
2769 * architecture-dependent modules in this directory with
2770 * MakeMaker Makefile.PL
2771 * or equivalent. See INSTALL for details.
2772 */
2773/* SITEARCH_EXP:
2774 * This symbol contains the ~name expanded version of SITEARCH, to be used
2775 * in programs that are not prepared to deal with ~ expansion at run-time.
2776 */
e5a4bac5 2777#define SITEARCH "c:\\perl\\site\\5.6.0\\lib\\MSWin32-x86" /**/
3635cd84
GS
2778/*#define SITEARCH_EXP "" /**/
2779
2780/* SITELIB:
2781 * This symbol contains the name of the private library for this package.
2782 * The library is private in the sense that it needn't be in anyone's
2783 * execution path, but it should be accessible by the world. The program
2784 * should be prepared to do ~ expansion.
2785 * The standard distribution will put nothing in this directory.
2786 * After perl has been installed, users may install their own local
2787 * architecture-independent modules in this directory with
2788 * MakeMaker Makefile.PL
2789 * or equivalent. See INSTALL for details.
2790 */
2791/* SITELIB_EXP:
2792 * This symbol contains the ~name expanded version of SITELIB, to be used
2793 * in programs that are not prepared to deal with ~ expansion at run-time.
2794 */
4ea817c6
GS
2795/* SITELIB_STEM:
2796 * This define is SITELIB_EXP with any trailing version-specific component
2797 * removed. The elements in inc_version_list (inc_version_list.U) can
2798 * be tacked onto this variable to generate a list of directories to search.
2799 */
e5a4bac5
GS
2800#define SITELIB "c:\\perl\\site\\5.6.0\\lib" /**/
2801#define SITELIB_EXP (win32_get_sitelib("5.6.0")) /**/
4ea817c6 2802#define SITELIB_STEM "" /**/
3635cd84
GS
2803
2804/* Size_t:
2805 * This symbol holds the type used to declare length parameters
2806 * for string functions. It is usually size_t, but may be
2807 * unsigned long, int, etc. It may be necessary to include
2808 * <sys/types.h> to get any typedef'ed information.
2809 */
2810#define Size_t size_t /* length paramater for string functions */
2811
2812/* SSize_t:
2813 * This symbol holds the type used by functions that return
2814 * a count of bytes or an error condition. It must be a signed type.
2815 * It is usually ssize_t, but may be long or int, etc.
2816 * It may be necessary to include <sys/types.h> or <unistd.h>
2817 * to get any typedef'ed information.
2818 * We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
2819 */
2820#define SSize_t int /* signed count of bytes */
327c3667 2821
a835ef8a
NIS
2822/* STARTPERL:
2823 * This variable contains the string to put in front of a perl
2824 * script to make sure (one hopes) that it runs with perl and not
2825 * some shell.
2826 */
2827#define STARTPERL "#!perl" /**/
2828
9423c6fc
GS
2829/* HAS_STDIO_STREAM_ARRAY:
2830 * This symbol, if defined, tells that there is an array
2831 * holding the stdio streams.
2832 */
2833/* STDIO_STREAM_ARRAY:
2834 * This symbol tells the name of the array holding the stdio streams.
2835 * Usual values include _iob, __iob, and __sF.
2836 */
2837/*#define HAS_STDIO_STREAM_ARRAY /**/
e1f15930 2838#define STDIO_STREAM_ARRAY
9423c6fc 2839
3635cd84
GS
2840/* Uid_t_f:
2841 * This symbol defines the format string used for printing a Uid_t.
e8ee3774 2842 */
3635cd84
GS
2843#define Uid_t_f "ld" /**/
2844
2845/* Uid_t_size:
2846 * This symbol holds the size of a Uid_t in bytes.
2847 */
2848#define Uid_t_size 4 /* UID size */
2849
2850/* Uid_t:
2851 * This symbol holds the type used to declare user ids in the kernel.
2852 * It can be int, ushort, uid_t, etc... It may be necessary to include
2853 * <sys/types.h> to get any typedef'ed information.
2854 */
2855#define Uid_t uid_t /* UID type */
e8ee3774 2856
10cc9d2a
JH
2857/* USE_64_BIT_INT:
2858 * This symbol, if defined, indicates that 64-bit integers should
2859 * be used when available. If not defined, the native integers
2860 * will be employed (be they 32 or 64 bits). The minimal possible
2861 * 64-bitness is used, just enough to get 64-bit integers into Perl.
2862 * This may mean using for example "long longs", while your memory
2863 * may still be limited to 2 gigabytes.
2864 */
ac135a7c
GS
2865/* USE_64_BIT_ALL:
2866 * This symbol, if defined, indicates that 64-bit integers should
2867 * be used when available. If not defined, the native integers
2868 * will be used (be they 32 or 64 bits). The maximal possible
2869 * 64-bitness is employed: LP64 or ILP64, meaning that you will
2870 * be able to use more than 2 gigabytes of memory. This mode is
2871 * even more binary incompatible than USE_64_BIT_INT. You may not
2872 * be able to run the resulting executable in a 32-bit CPU at all or
2873 * you may need at least to reboot your OS to 64-bit mode.
2874 */
10cc9d2a
JH
2875#ifndef USE_64_BIT_INT
2876/*#define USE_64_BIT_INT /**/
c890dc6c
JH
2877#endif
2878
ac135a7c
GS
2879#ifndef USE_64_BIT_ALL
2880/*#define USE_64_BIT_ALL /**/
2881#endif
2882
e1f15930
GS
2883/* USE_LARGE_FILES:
2884 * This symbol, if defined, indicates that large file support
c890dc6c 2885 * should be used when available.
e1f15930 2886 */
539a3d6c 2887#ifndef USE_LARGE_FILES
e1f15930 2888/*#define USE_LARGE_FILES /**/
539a3d6c 2889#endif
e1f15930 2890
e8ee3774
GS
2891/* USE_LONG_DOUBLE:
2892 * This symbol, if defined, indicates that long doubles should
2893 * be used when available.
2894 */
539a3d6c 2895#ifndef USE_LONG_DOUBLE
e8ee3774 2896/*#define USE_LONG_DOUBLE /**/
539a3d6c
GS
2897#endif
2898
ac135a7c
GS
2899/* USE_MORE_BITS:
2900 * This symbol, if defined, indicates that 64-bit interfaces and
2901 * long doubles should be used when available.
2902 */
539a3d6c
GS
2903#ifndef USE_MORE_BITS
2904/*#define USE_MORE_BITS /**/
2905#endif
e8ee3774 2906
c4d53692
GS
2907/* MULTIPLICITY:
2908 * This symbol, if defined, indicates that Perl should
2909 * be built to use multiplicity.
2910 */
ac135a7c 2911#ifndef MULTIPLICITY
c4d53692 2912/*#define MULTIPLICITY /**/
539a3d6c 2913#endif
c4d53692 2914
a835ef8a
NIS
2915/* USE_PERLIO:
2916 * This symbol, if defined, indicates that the PerlIO abstraction should
2917 * be used throughout. If not defined, stdio should be
2918 * used in a fully backward compatible manner.
2919 */
539a3d6c 2920#ifndef USE_PERLIO
a835ef8a 2921/*#define USE_PERLIO /**/
539a3d6c 2922#endif
a835ef8a 2923
82839a9d
GS
2924/* USE_SOCKS:
2925 * This symbol, if defined, indicates that Perl should
2926 * be built to use socks.
2927 */
539a3d6c 2928#ifndef USE_SOCKS
82839a9d 2929/*#define USE_SOCKS /**/
539a3d6c 2930#endif
82839a9d 2931
bbda9c9d
GS
2932/* USE_ITHREADS:
2933 * This symbol, if defined, indicates that Perl should be built to
2934 * use the interpreter-based threading implementation.
2935 */
2936/* USE_5005THREADS:
2937 * This symbol, if defined, indicates that Perl should be built to
2938 * use the 5.005-based threading implementation.
924b3ec4 2939 */
07ba5892
GS
2940/* OLD_PTHREADS_API:
2941 * This symbol, if defined, indicates that Perl should
2942 * be built to use the old draft POSIX threads API.
2943 */
bbda9c9d
GS
2944/*#define USE_5005THREADS /**/
2945/*#define USE_ITHREADS /**/
2946#if defined(USE_5005THREADS) && !defined(USE_ITHREADS)
2947#define USE_THREADS /* until src is revised*/
539a3d6c 2948#endif
07ba5892 2949/*#define OLD_PTHREADS_API /**/
a835ef8a 2950
4ea817c6
GS
2951/* PERL_VENDORARCH_EXP:
2952 * This symbol contains the ~name expanded version of PERL_VENDORARCH, to be used
2953 * in programs that are not prepared to deal with ~ expansion at run-time.
2954 */
2955/*#define PERL_VENDORARCH_EXP "" /**/
2956
3635cd84
GS
2957/* PERL_VENDORLIB_EXP:
2958 * This symbol contains the ~name expanded version of VENDORLIB, to be used
2959 * in programs that are not prepared to deal with ~ expansion at run-time.
bbda9c9d 2960 */
4ea817c6
GS
2961/* PERL_VENDORLIB_STEM:
2962 * This define is PERL_VENDORLIB_EXP with any trailing version-specific component
2963 * removed. The elements in inc_version_list (inc_version_list.U) can
2964 * be tacked onto this variable to generate a list of directories to search.
2965 */
3635cd84 2966/*#define PERL_VENDORLIB_EXP "" /**/
4ea817c6 2967/*#define PERL_VENDORLIB_STEM "" /**/
bbda9c9d 2968
3635cd84
GS
2969/* VOIDFLAGS:
2970 * This symbol indicates how much support of the void type is given by this
2971 * compiler. What various bits mean:
2972 *
2973 * 1 = supports declaration of void
2974 * 2 = supports arrays of pointers to functions returning void
2975 * 4 = supports comparisons between pointers to void functions and
2976 * addresses of void functions
2977 * 8 = suports declaration of generic void pointers
2978 *
2979 * The package designer should define VOIDUSED to indicate the requirements
2980 * of the package. This can be done either by #defining VOIDUSED before
2981 * including config.h, or by defining defvoidused in Myinit.U. If the
2982 * latter approach is taken, only those flags will be tested. If the
2983 * level of void support necessary is not present, defines void to int.
bdaec6b3 2984 */
3635cd84
GS
2985#ifndef VOIDUSED
2986#define VOIDUSED 15
2987#endif
2988#define VOIDFLAGS 15
2989#if (VOIDFLAGS & VOIDUSED) != VOIDUSED
2990#define void int /* is void to be avoided? */
2991#define M_VOID /* Xenix strikes again */
2992#endif
bdaec6b3 2993
ac135a7c
GS
2994/* PERL_XS_APIVERSION:
2995 * This variable contains the version of the oldest perl binary
2996 * compatible with the present perl. perl.c:incpush() and
e5a4bac5 2997 * lib/lib.pm will automatically search in c:\\perl\\site\\5.6.0\\lib\\MSWin32-x86 for older
ac135a7c
GS
2998 * directories across major versions back to xs_apiversion.
2999 * This is only useful if you have a perl library directory tree
3000 * structured like the default one.
3001 * See INSTALL for how this works.
3002 * The versioned site_perl directory was introduced in 5.005,
3003 * so that is the lowest possible value.
3004 * Since this can depend on compile time options (such as
3005 * bincompat) it is set by Configure. Other non-default sources
3006 * of potential incompatibility, such as multiplicity, threads,
3007 * debugging, 64bits, sfio, etc., are not checked for currently,
3008 * though in principle we could go snooping around in old
3009 * Config.pm files.
3010 */
3011/* PERL_PM_APIVERSION:
3012 * This variable contains the version of the oldest perl
3013 * compatible with the present perl. (That is, pure perl modules
3014 * written for pm_apiversion will still work for the current
3015 * version). perl.c:incpush() and lib/lib.pm will automatically
e5a4bac5 3016 * search in c:\\perl\\site\\5.6.0\\lib for older directories across major versions
ac135a7c
GS
3017 * back to pm_apiversion. This is only useful if you have a perl
3018 * library directory tree structured like the default one. The
3019 * versioned site_perl library was introduced in 5.005, so that's
3020 * the default setting for this variable. It's hard to imagine
3021 * it changing before Perl6. It is included here for symmetry
3022 * with xs_apiveprsion -- the searching algorithms will
3023 * (presumably) be similar.
3024 * See the INSTALL file for how this works.
3025 */
e5a4bac5 3026#define PERL_XS_APIVERSION "5.6.0"
ac135a7c
GS
3027#define PERL_PM_APIVERSION "5.005"
3028
3029/* HAS_GETFSSTAT:
3030 * This symbol, if defined, indicates that the getfsstat routine is
3031 * available to stat filesystems in bulk.
3032 */
3033/*#define HAS_GETFSSTAT /**/
3034
3035/* I_IEEEFP:
3036 * This symbol, if defined, indicates that <ieeefp.h> exists and
3037 * should be included.
3038 */
3039/*#define I_IEEEFP /**/
3040
3041/* HAS_LSEEK_PROTO:
3042 * This symbol, if defined, indicates that the system provides
3043 * a prototype for the lseek() function. Otherwise, it is up
3044 * to the program to supply one. A good guess is
3045 * extern off_t lseek(int, off_t, int);
3046 */
3047#define HAS_LSEEK_PROTO /**/
3048
3049/* Sock_size_t:
3050 * This symbol holds the type used for the size argument of
3051 * various socket calls (just the base type, not the pointer-to).
3052 */
3053#define Sock_size_t int /**/
3054
a835ef8a 3055#endif