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