Everything in t/ can now run in parallel.
[p5sagit/p5-mst-13.2.git] / win32 / config_H.vc64
1 /*
2  * This file was produced by running the config_h.SH script, which
3  * gets its values from undef, 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 undef and rerun config_h.SH.
9  *
10  * $Id: Config_h.U 1 2006-08-24 12:32:52Z rmanfredi $
11  */
12
13 /*
14  * Package name      : perl5
15  * Source directory  : 
16  * Configuration time: Wed Jul  9 13:18:23 2008
17  * Configured by     : shay
18  * Target system     : 
19  */
20
21 #ifndef _config_h_
22 #define _config_h_
23
24 /* LOC_SED:
25  *      This symbol holds the complete pathname to the sed program.
26  */
27 #define LOC_SED         ""      /**/
28
29 /* HAS_ALARM:
30  *      This symbol, if defined, indicates that the alarm routine is
31  *      available.
32  */
33 #define HAS_ALARM               /**/
34
35 /* HAS_BCMP:
36  *      This symbol is defined if the bcmp() routine is available to
37  *      compare blocks of memory.
38  */
39 /*#define HAS_BCMP      /**/
40
41 /* HAS_BCOPY:
42  *      This symbol is defined if the bcopy() routine is available to
43  *      copy blocks of memory.
44  */
45 /*#define HAS_BCOPY     /**/
46
47 /* HAS_BZERO:
48  *      This symbol is defined if the bzero() routine is available to
49  *      set a memory block to 0.
50  */
51 /*#define HAS_BZERO     /**/
52
53 /* HAS_CHOWN:
54  *      This symbol, if defined, indicates that the chown routine is
55  *      available.
56  */
57 /*#define HAS_CHOWN             /**/
58
59 /* HAS_CHROOT:
60  *      This symbol, if defined, indicates that the chroot routine is
61  *      available.
62  */
63 /*#define HAS_CHROOT            /**/
64
65 /* HAS_CHSIZE:
66  *      This symbol, if defined, indicates that the chsize routine is available
67  *      to truncate files.  You might need a -lx to get this routine.
68  */
69 #define HAS_CHSIZE              /**/
70
71 /* HAS_CRYPT:
72  *      This symbol, if defined, indicates that the crypt routine is available
73  *      to encrypt passwords and the like.
74  */
75 /*#define HAS_CRYPT             /**/
76
77 /* HAS_CTERMID:
78  *      This symbol, if defined, indicates that the ctermid routine is
79  *      available to generate filename for terminal.
80  */
81 /*#define HAS_CTERMID           /**/
82
83 /* HAS_CUSERID:
84  *      This symbol, if defined, indicates that the cuserid routine is
85  *      available to get character login names.
86  */
87 /*#define HAS_CUSERID           /**/
88
89 /* HAS_DBL_DIG:
90  *      This symbol, if defined, indicates that this system's <float.h>
91  *      or <limits.h> defines the symbol DBL_DIG, which is the number
92  *      of significant digits in a double precision number.  If this
93  *      symbol is not defined, a guess of 15 is usually pretty good.
94  */
95 #define HAS_DBL_DIG     /**/
96
97 /* HAS_DIFFTIME:
98  *      This symbol, if defined, indicates that the difftime routine is
99  *      available.
100  */
101 #define HAS_DIFFTIME            /**/
102
103 /* HAS_DLERROR:
104  *      This symbol, if defined, indicates that the dlerror routine is
105  *      available to return a string describing the last error that
106  *      occurred from a call to dlopen(), dlclose() or dlsym().
107  */
108 #define HAS_DLERROR     /**/
109
110 /* SETUID_SCRIPTS_ARE_SECURE_NOW:
111  *      This symbol, if defined, indicates that the bug that prevents
112  *      setuid scripts from being secure is not present in this kernel.
113  */
114 /* DOSUID:
115  *      This symbol, if defined, indicates that the C program should
116  *      check the script that it is executing for setuid/setgid bits, and
117  *      attempt to emulate setuid/setgid on systems that have disabled
118  *      setuid #! scripts because the kernel can't do it securely.
119  *      It is up to the package designer to make sure that this emulation
120  *      is done securely.  Among other things, it should do an fstat on
121  *      the script it just opened to make sure it really is a setuid/setgid
122  *      script, it should make sure the arguments passed correspond exactly
123  *      to the argument on the #! line, and it should not trust any
124  *      subprocesses to which it must pass the filename rather than the
125  *      file descriptor of the script to be executed.
126  */
127 /*#define SETUID_SCRIPTS_ARE_SECURE_NOW /**/
128 /*#define DOSUID                /**/
129
130 /* HAS_DUP2:
131  *      This symbol, if defined, indicates that the dup2 routine is
132  *      available to duplicate file descriptors.
133  */
134 #define HAS_DUP2        /**/
135
136 /* HAS_FCHMOD:
137  *      This symbol, if defined, indicates that the fchmod routine is available
138  *      to change mode of opened files.  If unavailable, use chmod().
139  */
140 /*#define HAS_FCHMOD            /**/
141
142 /* HAS_FCHOWN:
143  *      This symbol, if defined, indicates that the fchown routine is available
144  *      to change ownership of opened files.  If unavailable, use chown().
145  */
146 /*#define HAS_FCHOWN            /**/
147
148 /* HAS_FCNTL:
149  *      This symbol, if defined, indicates to the C program that
150  *      the fcntl() function exists.
151  */
152 /*#define HAS_FCNTL             /**/
153
154 /* HAS_FGETPOS:
155  *      This symbol, if defined, indicates that the fgetpos routine is
156  *      available to get the file position indicator, similar to ftell().
157  */
158 #define HAS_FGETPOS     /**/
159
160 /* HAS_FLOCK:
161  *      This symbol, if defined, indicates that the flock routine is
162  *      available to do file locking.
163  */
164 #define HAS_FLOCK               /**/
165
166 /* HAS_FORK:
167  *      This symbol, if defined, indicates that the fork routine is
168  *      available.
169  */
170 /*#define HAS_FORK              /**/
171
172 /* HAS_FSETPOS:
173  *      This symbol, if defined, indicates that the fsetpos routine is
174  *      available to set the file position indicator, similar to fseek().
175  */
176 #define HAS_FSETPOS     /**/
177
178 /* HAS_GETTIMEOFDAY:
179  *      This symbol, if defined, indicates that the gettimeofday() system
180  *      call is available for a sub-second accuracy clock. Usually, the file
181  *      <sys/resource.h> needs to be included (see I_SYS_RESOURCE).
182  *      The type "Timeval" should be used to refer to "struct timeval".
183  */
184 #define HAS_GETTIMEOFDAY        /**/
185 #ifdef HAS_GETTIMEOFDAY
186 #define Timeval struct timeval  /* Structure used by gettimeofday() */
187 #endif
188
189 /* HAS_GETGROUPS:
190  *      This symbol, if defined, indicates that the getgroups() routine is
191  *      available to get the list of process groups.  If unavailable, multiple
192  *      groups are probably not supported.
193  */
194 /*#define HAS_GETGROUPS         /**/
195
196 /* HAS_GETLOGIN:
197  *      This symbol, if defined, indicates that the getlogin routine is
198  *      available to get the login name.
199  */
200 #define HAS_GETLOGIN            /**/
201
202 /* HAS_GETPGID:
203  *      This symbol, if defined, indicates to the C program that 
204  *      the getpgid(pid) function is available to get the
205  *      process group id.
206  */
207 /*#define HAS_GETPGID           /**/
208
209 /* HAS_GETPGRP2:
210  *      This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
211  *      routine is available to get the current process group.
212  */
213 /*#define HAS_GETPGRP2          /**/
214
215 /* HAS_GETPPID:
216  *      This symbol, if defined, indicates that the getppid routine is
217  *      available to get the parent process ID.
218  */
219 /*#define HAS_GETPPID           /**/
220
221 /* HAS_GETPRIORITY:
222  *      This symbol, if defined, indicates that the getpriority routine is
223  *      available to get a process's priority.
224  */
225 /*#define HAS_GETPRIORITY               /**/
226
227 /* HAS_INET_ATON:
228  *      This symbol, if defined, indicates to the C program that the
229  *      inet_aton() function is available to parse IP address "dotted-quad"
230  *      strings.
231  */
232 /*#define HAS_INET_ATON         /**/
233
234 /* HAS_KILLPG:
235  *      This symbol, if defined, indicates that the killpg routine is available
236  *      to kill process groups.  If unavailable, you probably should use kill
237  *      with a negative process number.
238  */
239 #define HAS_KILLPG      /**/
240
241 /* HAS_LINK:
242  *      This symbol, if defined, indicates that the link routine is
243  *      available to create hard links.
244  */
245 #define HAS_LINK        /**/
246
247 /* HAS_LOCALECONV:
248  *      This symbol, if defined, indicates that the localeconv routine is
249  *      available for numeric and monetary formatting conventions.
250  */
251 #define HAS_LOCALECONV  /**/
252
253 /* HAS_LOCKF:
254  *      This symbol, if defined, indicates that the lockf routine is
255  *      available to do file locking.
256  */
257 /*#define HAS_LOCKF             /**/
258
259 /* HAS_LSTAT:
260  *      This symbol, if defined, indicates that the lstat routine is
261  *      available to do file stats on symbolic links.
262  */
263 /*#define HAS_LSTAT             /**/
264
265 /* HAS_MBLEN:
266  *      This symbol, if defined, indicates that the mblen routine is available
267  *      to find the number of bytes in a multibye character.
268  */
269 #define HAS_MBLEN               /**/
270
271 /* HAS_MBSTOWCS:
272  *      This symbol, if defined, indicates that the mbstowcs routine is
273  *      available to covert a multibyte string into a wide character string.
274  */
275 #define HAS_MBSTOWCS            /**/
276
277 /* HAS_MBTOWC:
278  *      This symbol, if defined, indicates that the mbtowc routine is available
279  *      to covert a multibyte to a wide character.
280  */
281 #define HAS_MBTOWC              /**/
282
283 /* HAS_MEMCMP:
284  *      This symbol, if defined, indicates that the memcmp routine is available
285  *      to compare blocks of memory.
286  */
287 #define HAS_MEMCMP      /**/
288
289 /* HAS_MEMCPY:
290  *      This symbol, if defined, indicates that the memcpy routine is available
291  *      to copy blocks of memory.
292  */
293 #define HAS_MEMCPY      /**/
294
295 /* HAS_MEMMOVE:
296  *      This symbol, if defined, indicates that the memmove routine is available
297  *      to copy potentially overlapping blocks of memory. This should be used
298  *      only when HAS_SAFE_BCOPY is not defined. If neither is there, roll your
299  *      own version.
300  */
301 #define HAS_MEMMOVE     /**/
302
303 /* HAS_MEMSET:
304  *      This symbol, if defined, indicates that the memset routine is available
305  *      to set blocks of memory.
306  */
307 #define HAS_MEMSET      /**/
308
309 /* HAS_MKDIR:
310  *      This symbol, if defined, indicates that the mkdir routine is available
311  *      to create directories.  Otherwise you should fork off a new process to
312  *      exec /bin/mkdir.
313  */
314 #define HAS_MKDIR               /**/
315
316 /* HAS_MKFIFO:
317  *      This symbol, if defined, indicates that the mkfifo routine is
318  *      available to create FIFOs. Otherwise, mknod should be able to
319  *      do it for you. However, if mkfifo is there, mknod might require
320  *      super-user privileges which mkfifo will not.
321  */
322 /*#define HAS_MKFIFO            /**/
323
324 /* HAS_MKTIME:
325  *      This symbol, if defined, indicates that the mktime routine is
326  *      available.
327  */
328 #define HAS_MKTIME              /**/
329
330 /* HAS_MSYNC:
331  *      This symbol, if defined, indicates that the msync system call is
332  *      available to synchronize a mapped file.
333  */
334 /*#define HAS_MSYNC             /**/
335
336 /* HAS_MUNMAP:
337  *      This symbol, if defined, indicates that the munmap system call is
338  *      available to unmap a region, usually mapped by mmap().
339  */
340 /*#define HAS_MUNMAP            /**/
341
342 /* HAS_NICE:
343  *      This symbol, if defined, indicates that the nice routine is
344  *      available.
345  */
346 /*#define HAS_NICE              /**/
347
348 /* HAS_PATHCONF:
349  *      This symbol, if defined, indicates that pathconf() is available
350  *      to determine file-system related limits and options associated
351  *      with a given filename.
352  */
353 /* HAS_FPATHCONF:
354  *      This symbol, if defined, indicates that pathconf() is available
355  *      to determine file-system related limits and options associated
356  *      with a given open file descriptor.
357  */
358 /*#define HAS_PATHCONF          /**/
359 /*#define HAS_FPATHCONF         /**/
360
361 /* HAS_PAUSE:
362  *      This symbol, if defined, indicates that the pause routine is
363  *      available to suspend a process until a signal is received.
364  */
365 #define HAS_PAUSE               /**/
366
367 /* HAS_PIPE:
368  *      This symbol, if defined, indicates that the pipe routine is
369  *      available to create an inter-process channel.
370  */
371 #define HAS_PIPE                /**/
372
373 /* HAS_POLL:
374  *      This symbol, if defined, indicates that the poll routine is
375  *      available to poll active file descriptors.  Please check I_POLL and
376  *      I_SYS_POLL to know which header should be included as well.
377  */
378 /*#define HAS_POLL              /**/
379
380 /* HAS_READDIR:
381  *      This symbol, if defined, indicates that the readdir routine is
382  *      available to read directory entries. You may have to include
383  *      <dirent.h>. See I_DIRENT.
384  */
385 #define HAS_READDIR             /**/
386
387 /* HAS_SEEKDIR:
388  *      This symbol, if defined, indicates that the seekdir routine is
389  *      available. You may have to include <dirent.h>. See I_DIRENT.
390  */
391 #define HAS_SEEKDIR             /**/
392
393 /* HAS_TELLDIR:
394  *      This symbol, if defined, indicates that the telldir routine is
395  *      available. You may have to include <dirent.h>. See I_DIRENT.
396  */
397 #define HAS_TELLDIR             /**/
398
399 /* HAS_REWINDDIR:
400  *      This symbol, if defined, indicates that the rewinddir routine is
401  *      available. You may have to include <dirent.h>. See I_DIRENT.
402  */
403 #define HAS_REWINDDIR           /**/
404
405 /* HAS_READLINK:
406  *      This symbol, if defined, indicates that the readlink routine is
407  *      available to read the value of a symbolic link.
408  */
409 /*#define HAS_READLINK          /**/
410
411 /* HAS_RENAME:
412  *      This symbol, if defined, indicates that the rename routine is available
413  *      to rename files.  Otherwise you should do the unlink(), link(), unlink()
414  *      trick.
415  */
416 #define HAS_RENAME      /**/
417
418 /* HAS_RMDIR:
419  *      This symbol, if defined, indicates that the rmdir routine is
420  *      available to remove directories. Otherwise you should fork off a
421  *      new process to exec /bin/rmdir.
422  */
423 #define HAS_RMDIR               /**/
424
425 /* HAS_SELECT:
426  *      This symbol, if defined, indicates that the select routine is
427  *      available to select active file descriptors. If the timeout field
428  *      is used, <sys/time.h> may need to be included.
429  */
430 #define HAS_SELECT      /**/
431
432 /* HAS_SETEGID:
433  *      This symbol, if defined, indicates that the setegid routine is available
434  *      to change the effective gid of the current program.
435  */
436 /*#define HAS_SETEGID           /**/
437
438 /* HAS_SETEUID:
439  *      This symbol, if defined, indicates that the seteuid routine is available
440  *      to change the effective uid of the current program.
441  */
442 /*#define HAS_SETEUID           /**/
443
444 /* HAS_SETGROUPS:
445  *      This symbol, if defined, indicates that the setgroups() routine is
446  *      available to set the list of process groups.  If unavailable, multiple
447  *      groups are probably not supported.
448  */
449 /*#define HAS_SETGROUPS         /**/
450
451 /* HAS_SETLINEBUF:
452  *      This symbol, if defined, indicates that the setlinebuf routine is
453  *      available to change stderr or stdout from block-buffered or unbuffered
454  *      to a line-buffered mode.
455  */
456 /*#define HAS_SETLINEBUF                /**/
457
458 /* HAS_SETLOCALE:
459  *      This symbol, if defined, indicates that the setlocale routine is
460  *      available to handle locale-specific ctype implementations.
461  */
462 #define HAS_SETLOCALE   /**/
463
464 /* HAS_SETPGID:
465  *      This symbol, if defined, indicates that the setpgid(pid, gpid)
466  *      routine is available to set process group ID.
467  */
468 /*#define HAS_SETPGID   /**/
469
470 /* HAS_SETPGRP2:
471  *      This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
472  *      routine is available to set the current process group.
473  */
474 /*#define HAS_SETPGRP2          /**/
475
476 /* HAS_SETPRIORITY:
477  *      This symbol, if defined, indicates that the setpriority routine is
478  *      available to set a process's priority.
479  */
480 /*#define HAS_SETPRIORITY               /**/
481
482 /* HAS_SETREGID:
483  *      This symbol, if defined, indicates that the setregid routine is
484  *      available to change the real and effective gid of the current
485  *      process.
486  */
487 /* HAS_SETRESGID:
488  *      This symbol, if defined, indicates that the setresgid routine is
489  *      available to change the real, effective and saved gid of the current
490  *      process.
491  */
492 /*#define HAS_SETREGID          /**/
493 /*#define HAS_SETRESGID         /**/
494
495 /* HAS_SETREUID:
496  *      This symbol, if defined, indicates that the setreuid routine is
497  *      available to change the real and effective uid of the current
498  *      process.
499  */
500 /* HAS_SETRESUID:
501  *      This symbol, if defined, indicates that the setresuid routine is
502  *      available to change the real, effective and saved uid of the current
503  *      process.
504  */
505 /*#define HAS_SETREUID          /**/
506 /*#define HAS_SETRESUID         /**/
507
508 /* HAS_SETRGID:
509  *      This symbol, if defined, indicates that the setrgid routine is available
510  *      to change the real gid of the current program.
511  */
512 /*#define HAS_SETRGID           /**/
513
514 /* HAS_SETRUID:
515  *      This symbol, if defined, indicates that the setruid routine is available
516  *      to change the real uid of the current program.
517  */
518 /*#define HAS_SETRUID           /**/
519
520 /* HAS_SETSID:
521  *      This symbol, if defined, indicates that the setsid routine is
522  *      available to set the process group ID.
523  */
524 /*#define HAS_SETSID    /**/
525
526 /* HAS_STRCHR:
527  *      This symbol is defined to indicate that the strchr()/strrchr()
528  *      functions are available for string searching. If not, try the
529  *      index()/rindex() pair.
530  */
531 /* HAS_INDEX:
532  *      This symbol is defined to indicate that the index()/rindex()
533  *      functions are available for string searching.
534  */
535 #define HAS_STRCHR      /**/
536 /*#define HAS_INDEX     /**/
537
538 /* HAS_STRCOLL:
539  *      This symbol, if defined, indicates that the strcoll routine is
540  *      available to compare strings using collating information.
541  */
542 #define HAS_STRCOLL     /**/
543
544 /* HAS_STRTOD:
545  *      This symbol, if defined, indicates that the strtod routine is
546  *      available to provide better numeric string conversion than atof().
547  */
548 #define HAS_STRTOD      /**/
549
550 /* HAS_STRTOL:
551  *      This symbol, if defined, indicates that the strtol routine is available
552  *      to provide better numeric string conversion than atoi() and friends.
553  */
554 #define HAS_STRTOL      /**/
555
556 /* HAS_STRXFRM:
557  *      This symbol, if defined, indicates that the strxfrm() routine is
558  *      available to transform strings.
559  */
560 #define HAS_STRXFRM     /**/
561
562 /* HAS_SYMLINK:
563  *      This symbol, if defined, indicates that the symlink routine is available
564  *      to create symbolic links.
565  */
566 /*#define HAS_SYMLINK   /**/
567
568 /* HAS_SYSCALL:
569  *      This symbol, if defined, indicates that the syscall routine is
570  *      available to call arbitrary system calls. If undefined, that's tough.
571  */
572 /*#define HAS_SYSCALL   /**/
573
574 /* HAS_SYSCONF:
575  *      This symbol, if defined, indicates that sysconf() is available
576  *      to determine system related limits and options.
577  */
578 /*#define HAS_SYSCONF   /**/
579
580 /* HAS_SYSTEM:
581  *      This symbol, if defined, indicates that the system routine is
582  *      available to issue a shell command.
583  */
584 #define HAS_SYSTEM      /**/
585
586 /* HAS_TCGETPGRP:
587  *      This symbol, if defined, indicates that the tcgetpgrp routine is
588  *      available to get foreground process group ID.
589  */
590 /*#define HAS_TCGETPGRP         /**/
591
592 /* HAS_TCSETPGRP:
593  *      This symbol, if defined, indicates that the tcsetpgrp routine is
594  *      available to set foreground process group ID.
595  */
596 /*#define HAS_TCSETPGRP         /**/
597
598 /* HAS_TRUNCATE:
599  *      This symbol, if defined, indicates that the truncate routine is
600  *      available to truncate files.
601  */
602 /*#define HAS_TRUNCATE  /**/
603
604 /* HAS_TZNAME:
605  *      This symbol, if defined, indicates that the tzname[] array is
606  *      available to access timezone names.
607  */
608 #define HAS_TZNAME              /**/
609
610 /* HAS_UMASK:
611  *      This symbol, if defined, indicates that the umask routine is
612  *      available to set and get the value of the file creation mask.
613  */
614 #define HAS_UMASK               /**/
615
616 /* HAS_USLEEP:
617  *      This symbol, if defined, indicates that the usleep routine is
618  *      available to let the process sleep on a sub-second accuracy.
619  */
620 /*#define HAS_USLEEP            /**/
621
622 /* HAS_WAIT4:
623  *      This symbol, if defined, indicates that wait4() exists.
624  */
625 /*#define HAS_WAIT4     /**/
626
627 /* HAS_WAITPID:
628  *      This symbol, if defined, indicates that the waitpid routine is
629  *      available to wait for child process.
630  */
631 #define HAS_WAITPID     /**/
632
633 /* HAS_WCSTOMBS:
634  *      This symbol, if defined, indicates that the wcstombs routine is
635  *      available to convert wide character strings to multibyte strings.
636  */
637 #define HAS_WCSTOMBS    /**/
638
639 /* HAS_WCTOMB:
640  *      This symbol, if defined, indicates that the wctomb routine is available
641  *      to covert a wide character to a multibyte.
642  */
643 #define HAS_WCTOMB              /**/
644
645 /* Groups_t:
646  *      This symbol holds the type used for the second argument to
647  *      getgroups() and setgroups().  Usually, this is the same as
648  *      gidtype (gid_t) , but sometimes it isn't.
649  *      It can be int, ushort, gid_t, etc... 
650  *      It may be necessary to include <sys/types.h> to get any 
651  *      typedef'ed information.  This is only required if you have
652  *      getgroups() or setgroups()..
653  */
654 #if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
655 #define Groups_t gid_t  /* Type for 2nd arg to [sg]etgroups() */
656 #endif
657
658 /* I_ARPA_INET:
659  *      This symbol, if defined, indicates to the C program that it should
660  *      include <arpa/inet.h> to get inet_addr and friends declarations.
661  */
662 #define I_ARPA_INET             /**/
663
664 /* I_DBM:
665  *      This symbol, if defined, indicates that <dbm.h> exists and should
666  *      be included.
667  */
668 /* I_RPCSVC_DBM:
669  *      This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
670  *      should be included.
671  */
672 /*#define I_DBM /**/
673 #define I_RPCSVC_DBM    /**/
674
675 /* I_DLFCN:
676  *      This symbol, if defined, indicates that <dlfcn.h> exists and should
677  *      be included.
678  */
679 #define I_DLFCN         /**/
680
681 /* I_FCNTL:
682  *      This manifest constant tells the C program to include <fcntl.h>.
683  */
684 #define I_FCNTL /**/
685
686 /* I_FLOAT:
687  *      This symbol, if defined, indicates to the C program that it should
688  *      include <float.h> to get definition of symbols like DBL_MAX or
689  *      DBL_MIN, i.e. machine dependent floating point values.
690  */
691 #define I_FLOAT         /**/
692
693 /* I_GDBM:
694  *      This symbol, if defined, indicates that <gdbm.h> exists and should
695  *      be included.
696  */
697 /*#define I_GDBM        /**/
698
699 /* I_LIMITS:
700  *      This symbol, if defined, indicates to the C program that it should
701  *      include <limits.h> to get definition of symbols like WORD_BIT or
702  *      LONG_MAX, i.e. machine dependant limitations.
703  */
704 #define I_LIMITS                /**/
705
706 /* I_LOCALE:
707  *      This symbol, if defined, indicates to the C program that it should
708  *      include <locale.h>.
709  */
710 #define I_LOCALE                /**/
711
712 /* I_MATH:
713  *      This symbol, if defined, indicates to the C program that it should
714  *      include <math.h>.
715  */
716 #define I_MATH          /**/
717
718 /* I_MEMORY:
719  *      This symbol, if defined, indicates to the C program that it should
720  *      include <memory.h>.
721  */
722 /*#define I_MEMORY              /**/
723
724 /* I_NETINET_IN:
725  *      This symbol, if defined, indicates to the C program that it should
726  *      include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
727  */
728 /*#define I_NETINET_IN  /**/
729
730 /* I_SFIO:
731  *      This symbol, if defined, indicates to the C program that it should
732  *      include <sfio.h>.
733  */
734 /*#define       I_SFIO          /**/
735
736 /* I_STDDEF:
737  *      This symbol, if defined, indicates that <stddef.h> exists and should
738  *      be included.
739  */
740 #define I_STDDEF        /**/
741
742 /* I_STDLIB:
743  *      This symbol, if defined, indicates that <stdlib.h> exists and should
744  *      be included.
745  */
746 #define I_STDLIB                /**/
747
748 /* I_STRING:
749  *      This symbol, if defined, indicates to the C program that it should
750  *      include <string.h> (USG systems) instead of <strings.h> (BSD systems).
751  */
752 #define I_STRING                /**/
753
754 /* I_SYS_DIR:
755  *      This symbol, if defined, indicates to the C program that it should
756  *      include <sys/dir.h>.
757  */
758 /*#define I_SYS_DIR             /**/
759
760 /* I_SYS_FILE:
761  *      This symbol, if defined, indicates to the C program that it should
762  *      include <sys/file.h> to get definition of R_OK and friends.
763  */
764 /*#define I_SYS_FILE            /**/
765
766 /* I_SYS_IOCTL:
767  *      This symbol, if defined, indicates that <sys/ioctl.h> exists and should
768  *      be included. Otherwise, include <sgtty.h> or <termio.h>.
769  */
770 /* I_SYS_SOCKIO:
771  *      This symbol, if defined, indicates the <sys/sockio.h> should be included
772  *      to get socket ioctl options, like SIOCATMARK.
773  */
774 /*#define       I_SYS_IOCTL             /**/
775 /*#define I_SYS_SOCKIO  /**/
776
777 /* I_SYS_NDIR:
778  *      This symbol, if defined, indicates to the C program that it should
779  *      include <sys/ndir.h>.
780  */
781 /*#define I_SYS_NDIR    /**/
782
783 /* I_SYS_PARAM:
784  *      This symbol, if defined, indicates to the C program that it should
785  *      include <sys/param.h>.
786  */
787 /*#define I_SYS_PARAM           /**/
788
789 /* I_SYS_POLL:
790  *      This symbol, if defined, indicates that the program may include
791  *      <sys/poll.h>.  When I_POLL is also defined, it's probably safest
792  *      to only include <poll.h>.
793  */
794 /*#define I_SYS_POLL    /**/
795
796 /* I_SYS_RESOURCE:
797  *      This symbol, if defined, indicates to the C program that it should
798  *      include <sys/resource.h>.
799  */
800 /*#define I_SYS_RESOURCE                /**/
801
802 /* I_SYS_SELECT:
803  *      This symbol, if defined, indicates to the C program that it should
804  *      include <sys/select.h> in order to get definition of struct timeval.
805  */
806 /*#define I_SYS_SELECT  /**/
807
808 /* I_SYS_STAT:
809  *      This symbol, if defined, indicates to the C program that it should
810  *      include <sys/stat.h>.
811  */
812 #define I_SYS_STAT              /**/
813
814 /* I_SYS_TIMES:
815  *      This symbol, if defined, indicates to the C program that it should
816  *      include <sys/times.h>.
817  */
818 /*#define       I_SYS_TIMES             /**/
819
820 /* I_SYS_TYPES:
821  *      This symbol, if defined, indicates to the C program that it should
822  *      include <sys/types.h>.
823  */
824 #define I_SYS_TYPES             /**/
825
826 /* I_SYS_UN:
827  *      This symbol, if defined, indicates to the C program that it should
828  *      include <sys/un.h> to get UNIX domain socket definitions.
829  */
830 /*#define I_SYS_UN              /**/
831
832 /* I_SYS_WAIT:
833  *      This symbol, if defined, indicates to the C program that it should
834  *      include <sys/wait.h>.
835  */
836 /*#define I_SYS_WAIT    /**/
837
838 /* I_TERMIO:
839  *      This symbol, if defined, indicates that the program should include
840  *      <termio.h> rather than <sgtty.h>.  There are also differences in
841  *      the ioctl() calls that depend on the value of this symbol.
842  */
843 /* I_TERMIOS:
844  *      This symbol, if defined, indicates that the program should include
845  *      the POSIX termios.h rather than sgtty.h or termio.h.
846  *      There are also differences in the ioctl() calls that depend on the
847  *      value of this symbol.
848  */
849 /* I_SGTTY:
850  *      This symbol, if defined, indicates that the program should include
851  *      <sgtty.h> rather than <termio.h>.  There are also differences in
852  *      the ioctl() calls that depend on the value of this symbol.
853  */
854 /*#define I_TERMIO              /**/
855 /*#define I_TERMIOS             /**/
856 /*#define I_SGTTY               /**/
857
858 /* I_UNISTD:
859  *      This symbol, if defined, indicates to the C program that it should
860  *      include <unistd.h>.
861  */
862 /*#define I_UNISTD              /**/
863
864 /* I_UTIME:
865  *      This symbol, if defined, indicates to the C program that it should
866  *      include <utime.h>.
867  */
868 #define I_UTIME         /**/
869
870 /* I_VALUES:
871  *      This symbol, if defined, indicates to the C program that it should
872  *      include <values.h> to get definition of symbols like MINFLOAT or
873  *      MAXLONG, i.e. machine dependant limitations.  Probably, you
874  *      should use <limits.h> instead, if it is available.
875  */
876 /*#define I_VALUES              /**/
877
878 /* I_VFORK:
879  *      This symbol, if defined, indicates to the C program that it should
880  *      include vfork.h.
881  */
882 /*#define I_VFORK       /**/
883
884 /* INTSIZE:
885  *      This symbol contains the value of sizeof(int) so that the C
886  *      preprocessor can make decisions based on it.
887  */
888 /* LONGSIZE:
889  *      This symbol contains the value of sizeof(long) so that the C
890  *      preprocessor can make decisions based on it.
891  */
892 /* SHORTSIZE:
893  *      This symbol contains the value of sizeof(short) so that the C
894  *      preprocessor can make decisions based on it.
895  */
896 #define INTSIZE 4               /**/
897 #define LONGSIZE 4              /**/
898 #define SHORTSIZE 2             /**/
899
900 /* MULTIARCH:
901  *      This symbol, if defined, signifies that the build
902  *      process will produce some binary files that are going to be
903  *      used in a cross-platform environment.  This is the case for
904  *      example with the NeXT "fat" binaries that contain executables
905  *      for several CPUs.
906  */
907 /*#define MULTIARCH             /**/
908
909 /* HAS_QUAD:
910  *      This symbol, if defined, tells that there's a 64-bit integer type,
911  *      Quad_t, and its unsigned counterpar, Uquad_t. QUADKIND will be one
912  *      of QUAD_IS_INT, QUAD_IS_LONG, QUAD_IS_LONG_LONG, or QUAD_IS_INT64_T.
913  */
914 #define HAS_QUAD        /**/
915 #ifdef HAS_QUAD
916 #   define Quad_t __int64       /**/
917 #   define Uquad_t unsigned __int64     /**/
918 #   define QUADKIND 4   /**/
919 #   define QUAD_IS_INT  1
920 #   define QUAD_IS_LONG 2
921 #   define QUAD_IS_LONG_LONG    3
922 #   define QUAD_IS_INT64_T      4
923 #endif
924
925 /* OSNAME:
926  *      This symbol contains the name of the operating system, as determined
927  *      by Configure.  You shouldn't rely on it too much; the specific
928  *      feature tests from Configure are generally more reliable.
929  */
930 /* OSVERS:
931  *      This symbol contains the version of the operating system, as determined
932  *      by Configure.  You shouldn't rely on it too much; the specific
933  *      feature tests from Configure are generally more reliable.
934  */
935 #define OSNAME "MSWin32"                /**/
936 #define OSVERS "5.1"            /**/
937
938 /* ARCHLIB:
939  *      This variable, if defined, holds the name of the directory in
940  *      which the user wants to put architecture-dependent public
941  *      library files for perl5.  It is most often a local directory
942  *      such as /usr/local/lib.  Programs using this variable must be
943  *      prepared to deal with filename expansion.  If ARCHLIB is the
944  *      same as PRIVLIB, it is not defined, since presumably the
945  *      program already searches PRIVLIB.
946  */
947 /* ARCHLIB_EXP:
948  *      This symbol contains the ~name expanded version of ARCHLIB, to be used
949  *      in programs that are not prepared to deal with ~ expansion at run-time.
950  */
951 #define ARCHLIB "c:\\perl\\lib"         /**/
952 /*#define ARCHLIB_EXP ""        /**/
953
954 /* ARCHNAME:
955  *      This symbol holds a string representing the architecture name.
956  *      It may be used to construct an architecture-dependant pathname
957  *      where library files may be held under a private library, for
958  *      instance.
959  */
960 #define ARCHNAME "MSWin32-x86"          /**/
961
962 /* BIN:
963  *      This symbol holds the path of the bin directory where the package will
964  *      be installed. Program must be prepared to deal with ~name substitution.
965  */
966 /* BIN_EXP:
967  *      This symbol is the filename expanded version of the BIN symbol, for
968  *      programs that do not want to deal with that at run-time.
969  */
970 /* PERL_RELOCATABLE_INC:
971  *      This symbol, if defined, indicates that we'd like to relocate entries
972  *      in @INC at run time based on the location of the perl binary.
973  */
974 #define BIN "c:\\perl\\bin"     /**/
975 #define BIN_EXP "c:\\perl\\bin" /**/
976 #define PERL_RELOCATABLE_INC "undef"            /**/
977
978 /* CAT2:
979  *      This macro concatenates 2 tokens together.
980  */
981 /* STRINGIFY:
982  *      This macro surrounds its token with double quotes.
983  */
984 #if 42 == 1
985 #define CAT2(a,b)       a/**/b
986 #define STRINGIFY(a)    "a"
987 #endif
988 #if 42 == 42
989 #define PeRl_CaTiFy(a, b)       a ## b
990 #define PeRl_StGiFy(a)  #a
991 #define CAT2(a,b)       PeRl_CaTiFy(a,b)
992 #define StGiFy(a)       PeRl_StGiFy(a)
993 #define STRINGIFY(a)    PeRl_StGiFy(a)
994 #endif
995 #if 42 != 1 && 42 != 42
996 #include "Bletch: How does this C preprocessor concatenate tokens?"
997 #endif
998
999 /* CPPSTDIN:
1000  *      This symbol contains the first part of the string which will invoke
1001  *      the C preprocessor on the standard input and produce to standard
1002  *      output.  Typical value of "cc -E" or "/lib/cpp", but it can also
1003  *      call a wrapper. See CPPRUN.
1004  */
1005 /* CPPMINUS:
1006  *      This symbol contains the second part of the string which will invoke
1007  *      the C preprocessor on the standard input and produce to standard
1008  *      output.  This symbol will have the value "-" if CPPSTDIN needs a minus
1009  *      to specify standard input, otherwise the value is "".
1010  */
1011 /* CPPRUN:
1012  *      This symbol contains the string which will invoke a C preprocessor on
1013  *      the standard input and produce to standard output. It needs to end
1014  *      with CPPLAST, after all other preprocessor flags have been specified.
1015  *      The main difference with CPPSTDIN is that this program will never be a
1016  *      pointer to a shell wrapper, i.e. it will be empty if no preprocessor is
1017  *      available directly to the user. Note that it may well be different from
1018  *      the preprocessor used to compile the C program.
1019  */
1020 /* CPPLAST:
1021  *      This symbol is intended to be used along with CPPRUN in the same manner
1022  *      symbol CPPMINUS is used with CPPSTDIN. It contains either "-" or "".
1023  */
1024 #define CPPSTDIN "cppstdin"
1025 #define CPPMINUS ""
1026 #define CPPRUN "cl -nologo -E"
1027 #define CPPLAST ""
1028
1029 /* HAS_ACCESS:
1030  *      This manifest constant lets the C program know that the access()
1031  *      system call is available to check for accessibility using real UID/GID.
1032  *      (always present on UNIX.)
1033  */
1034 #define HAS_ACCESS              /**/
1035
1036 /* HAS_ACCESSX:
1037  *      This symbol, if defined, indicates that the accessx routine is
1038  *      available to do extended access checks.
1039  */
1040 /*#define HAS_ACCESSX           /**/
1041
1042 /* HAS_ASCTIME_R:
1043  *      This symbol, if defined, indicates that the asctime_r routine
1044  *      is available to asctime re-entrantly.
1045  */
1046 /* ASCTIME_R_PROTO:
1047  *      This symbol encodes the prototype of asctime_r.
1048  *      It is zero if d_asctime_r is undef, and one of the
1049  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_asctime_r
1050  *      is defined.
1051  */
1052 /*#define HAS_ASCTIME_R    /**/
1053 #define ASCTIME_R_PROTO 0          /**/
1054
1055 /* HASATTRIBUTE_FORMAT:
1056  *      Can we handle GCC attribute for checking printf-style formats
1057  */
1058 /* PRINTF_FORMAT_NULL_OK:
1059  *      Allows __printf__ format to be null when checking printf-style
1060  */
1061 /* HASATTRIBUTE_MALLOC:
1062  *      Can we handle GCC attribute for malloc-style functions.
1063  */
1064 /* HASATTRIBUTE_NONNULL:
1065  *      Can we handle GCC attribute for nonnull function parms.
1066  */
1067 /* HASATTRIBUTE_NORETURN:
1068  *      Can we handle GCC attribute for functions that do not return
1069  */
1070 /* HASATTRIBUTE_PURE:
1071  *      Can we handle GCC attribute for pure functions
1072  */
1073 /* HASATTRIBUTE_UNUSED:
1074  *      Can we handle GCC attribute for unused variables and arguments
1075  */
1076 /* HASATTRIBUTE_WARN_UNUSED_RESULT:
1077  *      Can we handle GCC attribute for warning on unused results
1078  */
1079 /*#define HASATTRIBUTE_FORMAT   /**/
1080 /*#define PRINTF_FORMAT_NULL_OK /**/
1081 /*#define HASATTRIBUTE_NORETURN /**/
1082 /*#define HASATTRIBUTE_MALLOC   /**/
1083 /*#define HASATTRIBUTE_NONNULL  /**/
1084 /*#define HASATTRIBUTE_PURE     /**/
1085 /*#define HASATTRIBUTE_UNUSED   /**/
1086 /*#define HASATTRIBUTE_WARN_UNUSED_RESULT       /**/
1087
1088 /* HASCONST:
1089  *      This symbol, if defined, indicates that this C compiler knows about
1090  *      the const type. There is no need to actually test for that symbol
1091  *      within your programs. The mere use of the "const" keyword will
1092  *      trigger the necessary tests.
1093  */
1094 #define HASCONST        /**/
1095 #ifndef HASCONST
1096 #define const
1097 #endif
1098
1099 /* HAS_CRYPT_R:
1100  *      This symbol, if defined, indicates that the crypt_r routine
1101  *      is available to crypt re-entrantly.
1102  */
1103 /* CRYPT_R_PROTO:
1104  *      This symbol encodes the prototype of crypt_r.
1105  *      It is zero if d_crypt_r is undef, and one of the
1106  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_crypt_r
1107  *      is defined.
1108  */
1109 /*#define HAS_CRYPT_R      /**/
1110 #define CRYPT_R_PROTO 0    /**/
1111
1112 /* HAS_CSH:
1113  *      This symbol, if defined, indicates that the C-shell exists.
1114  */
1115 /* CSH:
1116  *      This symbol, if defined, contains the full pathname of csh.
1117  */
1118 /*#define HAS_CSH               /**/
1119 #ifdef HAS_CSH
1120 #define CSH ""  /**/
1121 #endif
1122
1123 /* HAS_CTERMID_R:
1124  *      This symbol, if defined, indicates that the ctermid_r routine
1125  *      is available to ctermid re-entrantly.
1126  */
1127 /* CTERMID_R_PROTO:
1128  *      This symbol encodes the prototype of ctermid_r.
1129  *      It is zero if d_ctermid_r is undef, and one of the
1130  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctermid_r
1131  *      is defined.
1132  */
1133 /*#define HAS_CTERMID_R    /**/
1134 #define CTERMID_R_PROTO 0          /**/
1135
1136 /* HAS_CTIME_R:
1137  *      This symbol, if defined, indicates that the ctime_r routine
1138  *      is available to ctime re-entrantly.
1139  */
1140 /* CTIME_R_PROTO:
1141  *      This symbol encodes the prototype of ctime_r.
1142  *      It is zero if d_ctime_r is undef, and one of the
1143  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctime_r
1144  *      is defined.
1145  */
1146 /*#define HAS_CTIME_R      /**/
1147 #define CTIME_R_PROTO 0    /**/
1148
1149 /* HAS_DRAND48_R:
1150  *      This symbol, if defined, indicates that the drand48_r routine
1151  *      is available to drand48 re-entrantly.
1152  */
1153 /* DRAND48_R_PROTO:
1154  *      This symbol encodes the prototype of drand48_r.
1155  *      It is zero if d_drand48_r is undef, and one of the
1156  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_drand48_r
1157  *      is defined.
1158  */
1159 /*#define HAS_DRAND48_R    /**/
1160 #define DRAND48_R_PROTO 0          /**/
1161
1162 /* HAS_DRAND48_PROTO:
1163  *      This symbol, if defined, indicates that the system provides
1164  *      a prototype for the drand48() function.  Otherwise, it is up
1165  *      to the program to supply one.  A good guess is
1166  *              extern double drand48(void);
1167  */
1168 /*#define       HAS_DRAND48_PROTO       /**/
1169
1170 /* HAS_EACCESS:
1171  *      This symbol, if defined, indicates that the eaccess routine is
1172  *      available to do extended access checks.
1173  */
1174 /*#define HAS_EACCESS           /**/
1175
1176 /* HAS_ENDGRENT:
1177  *      This symbol, if defined, indicates that the getgrent routine is
1178  *      available for finalizing sequential access of the group database.
1179  */
1180 /*#define HAS_ENDGRENT          /**/
1181
1182 /* HAS_ENDGRENT_R:
1183  *      This symbol, if defined, indicates that the endgrent_r routine
1184  *      is available to endgrent re-entrantly.
1185  */
1186 /* ENDGRENT_R_PROTO:
1187  *      This symbol encodes the prototype of endgrent_r.
1188  *      It is zero if d_endgrent_r is undef, and one of the
1189  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_endgrent_r
1190  *      is defined.
1191  */
1192 /*#define HAS_ENDGRENT_R           /**/
1193 #define ENDGRENT_R_PROTO 0         /**/
1194
1195 /* HAS_ENDHOSTENT:
1196  *      This symbol, if defined, indicates that the endhostent() routine is
1197  *      available to close whatever was being used for host queries.
1198  */
1199 /*#define HAS_ENDHOSTENT                /**/
1200
1201 /* HAS_ENDHOSTENT_R:
1202  *      This symbol, if defined, indicates that the endhostent_r routine
1203  *      is available to endhostent re-entrantly.
1204  */
1205 /* ENDHOSTENT_R_PROTO:
1206  *      This symbol encodes the prototype of endhostent_r.
1207  *      It is zero if d_endhostent_r is undef, and one of the
1208  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_endhostent_r
1209  *      is defined.
1210  */
1211 /*#define HAS_ENDHOSTENT_R         /**/
1212 #define ENDHOSTENT_R_PROTO 0       /**/
1213
1214 /* HAS_ENDNETENT:
1215  *      This symbol, if defined, indicates that the endnetent() routine is
1216  *      available to close whatever was being used for network queries.
1217  */
1218 /*#define HAS_ENDNETENT         /**/
1219
1220 /* HAS_ENDNETENT_R:
1221  *      This symbol, if defined, indicates that the endnetent_r routine
1222  *      is available to endnetent re-entrantly.
1223  */
1224 /* ENDNETENT_R_PROTO:
1225  *      This symbol encodes the prototype of endnetent_r.
1226  *      It is zero if d_endnetent_r is undef, and one of the
1227  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_endnetent_r
1228  *      is defined.
1229  */
1230 /*#define HAS_ENDNETENT_R          /**/
1231 #define ENDNETENT_R_PROTO 0        /**/
1232
1233 /* HAS_ENDPROTOENT:
1234  *      This symbol, if defined, indicates that the endprotoent() routine is
1235  *      available to close whatever was being used for protocol queries.
1236  */
1237 /*#define HAS_ENDPROTOENT               /**/
1238
1239 /* HAS_ENDPROTOENT_R:
1240  *      This symbol, if defined, indicates that the endprotoent_r routine
1241  *      is available to endprotoent re-entrantly.
1242  */
1243 /* ENDPROTOENT_R_PROTO:
1244  *      This symbol encodes the prototype of endprotoent_r.
1245  *      It is zero if d_endprotoent_r is undef, and one of the
1246  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_endprotoent_r
1247  *      is defined.
1248  */
1249 /*#define HAS_ENDPROTOENT_R        /**/
1250 #define ENDPROTOENT_R_PROTO 0      /**/
1251
1252 /* HAS_ENDPWENT:
1253  *      This symbol, if defined, indicates that the getgrent routine is
1254  *      available for finalizing sequential access of the passwd database.
1255  */
1256 /*#define HAS_ENDPWENT          /**/
1257
1258 /* HAS_ENDPWENT_R:
1259  *      This symbol, if defined, indicates that the endpwent_r routine
1260  *      is available to endpwent re-entrantly.
1261  */
1262 /* ENDPWENT_R_PROTO:
1263  *      This symbol encodes the prototype of endpwent_r.
1264  *      It is zero if d_endpwent_r is undef, and one of the
1265  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_endpwent_r
1266  *      is defined.
1267  */
1268 /*#define HAS_ENDPWENT_R           /**/
1269 #define ENDPWENT_R_PROTO 0         /**/
1270
1271 /* HAS_ENDSERVENT:
1272  *      This symbol, if defined, indicates that the endservent() routine is
1273  *      available to close whatever was being used for service queries.
1274  */
1275 /*#define HAS_ENDSERVENT                /**/
1276
1277 /* HAS_ENDSERVENT_R:
1278  *      This symbol, if defined, indicates that the endservent_r routine
1279  *      is available to endservent re-entrantly.
1280  */
1281 /* ENDSERVENT_R_PROTO:
1282  *      This symbol encodes the prototype of endservent_r.
1283  *      It is zero if d_endservent_r is undef, and one of the
1284  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_endservent_r
1285  *      is defined.
1286  */
1287 /*#define HAS_ENDSERVENT_R         /**/
1288 #define ENDSERVENT_R_PROTO 0       /**/
1289
1290 /* FLEXFILENAMES:
1291  *      This symbol, if defined, indicates that the system supports filenames
1292  *      longer than 14 characters.
1293  */
1294 #define FLEXFILENAMES           /**/
1295
1296 /* HAS_GETGRENT:
1297  *      This symbol, if defined, indicates that the getgrent routine is
1298  *      available for sequential access of the group database.
1299  */
1300 /*#define HAS_GETGRENT          /**/
1301
1302 /* HAS_GETGRENT_R:
1303  *      This symbol, if defined, indicates that the getgrent_r routine
1304  *      is available to getgrent re-entrantly.
1305  */
1306 /* GETGRENT_R_PROTO:
1307  *      This symbol encodes the prototype of getgrent_r.
1308  *      It is zero if d_getgrent_r is undef, and one of the
1309  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrent_r
1310  *      is defined.
1311  */
1312 /*#define HAS_GETGRENT_R           /**/
1313 #define GETGRENT_R_PROTO 0         /**/
1314
1315 /* HAS_GETGRGID_R:
1316  *      This symbol, if defined, indicates that the getgrgid_r routine
1317  *      is available to getgrgid re-entrantly.
1318  */
1319 /* GETGRGID_R_PROTO:
1320  *      This symbol encodes the prototype of getgrgid_r.
1321  *      It is zero if d_getgrgid_r is undef, and one of the
1322  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrgid_r
1323  *      is defined.
1324  */
1325 /*#define HAS_GETGRGID_R           /**/
1326 #define GETGRGID_R_PROTO 0         /**/
1327
1328 /* HAS_GETGRNAM_R:
1329  *      This symbol, if defined, indicates that the getgrnam_r routine
1330  *      is available to getgrnam re-entrantly.
1331  */
1332 /* GETGRNAM_R_PROTO:
1333  *      This symbol encodes the prototype of getgrnam_r.
1334  *      It is zero if d_getgrnam_r is undef, and one of the
1335  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrnam_r
1336  *      is defined.
1337  */
1338 /*#define HAS_GETGRNAM_R           /**/
1339 #define GETGRNAM_R_PROTO 0         /**/
1340
1341 /* HAS_GETHOSTBYADDR:
1342  *      This symbol, if defined, indicates that the gethostbyaddr() routine is
1343  *      available to look up hosts by their IP addresses.
1344  */
1345 #define HAS_GETHOSTBYADDR               /**/
1346
1347 /* HAS_GETHOSTBYNAME:
1348  *      This symbol, if defined, indicates that the gethostbyname() routine is
1349  *      available to look up host names in some data base or other.
1350  */
1351 #define HAS_GETHOSTBYNAME               /**/
1352
1353 /* HAS_GETHOSTENT:
1354  *      This symbol, if defined, indicates that the gethostent() routine is
1355  *      available to look up host names in some data base or another.
1356  */
1357 /*#define HAS_GETHOSTENT                /**/
1358
1359 /* HAS_GETHOSTNAME:
1360  *      This symbol, if defined, indicates that the C program may use the
1361  *      gethostname() routine to derive the host name.  See also HAS_UNAME
1362  *      and PHOSTNAME.
1363  */
1364 /* HAS_UNAME:
1365  *      This symbol, if defined, indicates that the C program may use the
1366  *      uname() routine to derive the host name.  See also HAS_GETHOSTNAME
1367  *      and PHOSTNAME.
1368  */
1369 /* PHOSTNAME:
1370  *      This symbol, if defined, indicates the command to feed to the
1371  *      popen() routine to derive the host name.  See also HAS_GETHOSTNAME
1372  *      and HAS_UNAME.  Note that the command uses a fully qualified path,
1373  *      so that it is safe even if used by a process with super-user
1374  *      privileges.
1375  */
1376 /* HAS_PHOSTNAME:
1377  *      This symbol, if defined, indicates that the C program may use the
1378  *      contents of PHOSTNAME as a command to feed to the popen() routine
1379  *      to derive the host name.
1380  */
1381 #define HAS_GETHOSTNAME /**/
1382 #define HAS_UNAME               /**/
1383 /*#define HAS_PHOSTNAME /**/
1384 #ifdef HAS_PHOSTNAME
1385 #define PHOSTNAME ""    /* How to get the host name */
1386 #endif
1387
1388 /* HAS_GETHOSTBYADDR_R:
1389  *      This symbol, if defined, indicates that the gethostbyaddr_r routine
1390  *      is available to gethostbyaddr re-entrantly.
1391  */
1392 /* GETHOSTBYADDR_R_PROTO:
1393  *      This symbol encodes the prototype of gethostbyaddr_r.
1394  *      It is zero if d_gethostbyaddr_r is undef, and one of the
1395  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyaddr_r
1396  *      is defined.
1397  */
1398 /*#define HAS_GETHOSTBYADDR_R      /**/
1399 #define GETHOSTBYADDR_R_PROTO 0    /**/
1400
1401 /* HAS_GETHOSTBYNAME_R:
1402  *      This symbol, if defined, indicates that the gethostbyname_r routine
1403  *      is available to gethostbyname re-entrantly.
1404  */
1405 /* GETHOSTBYNAME_R_PROTO:
1406  *      This symbol encodes the prototype of gethostbyname_r.
1407  *      It is zero if d_gethostbyname_r is undef, and one of the
1408  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyname_r
1409  *      is defined.
1410  */
1411 /*#define HAS_GETHOSTBYNAME_R      /**/
1412 #define GETHOSTBYNAME_R_PROTO 0    /**/
1413
1414 /* HAS_GETHOSTENT_R:
1415  *      This symbol, if defined, indicates that the gethostent_r routine
1416  *      is available to gethostent re-entrantly.
1417  */
1418 /* GETHOSTENT_R_PROTO:
1419  *      This symbol encodes the prototype of gethostent_r.
1420  *      It is zero if d_gethostent_r is undef, and one of the
1421  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostent_r
1422  *      is defined.
1423  */
1424 /*#define HAS_GETHOSTENT_R         /**/
1425 #define GETHOSTENT_R_PROTO 0       /**/
1426
1427 /* HAS_GETHOST_PROTOS:
1428  *      This symbol, if defined, indicates that <netdb.h> includes
1429  *      prototypes for gethostent(), gethostbyname(), and
1430  *      gethostbyaddr().  Otherwise, it is up to the program to guess
1431  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
1432  */
1433 #define HAS_GETHOST_PROTOS      /**/
1434
1435 /* HAS_GETLOGIN_R:
1436  *      This symbol, if defined, indicates that the getlogin_r routine
1437  *      is available to getlogin re-entrantly.
1438  */
1439 /* GETLOGIN_R_PROTO:
1440  *      This symbol encodes the prototype of getlogin_r.
1441  *      It is zero if d_getlogin_r is undef, and one of the
1442  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getlogin_r
1443  *      is defined.
1444  */
1445 /*#define HAS_GETLOGIN_R           /**/
1446 #define GETLOGIN_R_PROTO 0         /**/
1447
1448 /* HAS_GETNETBYADDR:
1449  *      This symbol, if defined, indicates that the getnetbyaddr() routine is
1450  *      available to look up networks by their IP addresses.
1451  */
1452 /*#define HAS_GETNETBYADDR              /**/
1453
1454 /* HAS_GETNETBYNAME:
1455  *      This symbol, if defined, indicates that the getnetbyname() routine is
1456  *      available to look up networks by their names.
1457  */
1458 /*#define HAS_GETNETBYNAME              /**/
1459
1460 /* HAS_GETNETENT:
1461  *      This symbol, if defined, indicates that the getnetent() routine is
1462  *      available to look up network names in some data base or another.
1463  */
1464 /*#define HAS_GETNETENT         /**/
1465
1466 /* HAS_GETNETBYADDR_R:
1467  *      This symbol, if defined, indicates that the getnetbyaddr_r routine
1468  *      is available to getnetbyaddr re-entrantly.
1469  */
1470 /* GETNETBYADDR_R_PROTO:
1471  *      This symbol encodes the prototype of getnetbyaddr_r.
1472  *      It is zero if d_getnetbyaddr_r is undef, and one of the
1473  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyaddr_r
1474  *      is defined.
1475  */
1476 /*#define HAS_GETNETBYADDR_R       /**/
1477 #define GETNETBYADDR_R_PROTO 0     /**/
1478
1479 /* HAS_GETNETBYNAME_R:
1480  *      This symbol, if defined, indicates that the getnetbyname_r routine
1481  *      is available to getnetbyname re-entrantly.
1482  */
1483 /* GETNETBYNAME_R_PROTO:
1484  *      This symbol encodes the prototype of getnetbyname_r.
1485  *      It is zero if d_getnetbyname_r is undef, and one of the
1486  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyname_r
1487  *      is defined.
1488  */
1489 /*#define HAS_GETNETBYNAME_R       /**/
1490 #define GETNETBYNAME_R_PROTO 0     /**/
1491
1492 /* HAS_GETNETENT_R:
1493  *      This symbol, if defined, indicates that the getnetent_r routine
1494  *      is available to getnetent re-entrantly.
1495  */
1496 /* GETNETENT_R_PROTO:
1497  *      This symbol encodes the prototype of getnetent_r.
1498  *      It is zero if d_getnetent_r is undef, and one of the
1499  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetent_r
1500  *      is defined.
1501  */
1502 /*#define HAS_GETNETENT_R          /**/
1503 #define GETNETENT_R_PROTO 0        /**/
1504
1505 /* HAS_GETNET_PROTOS:
1506  *      This symbol, if defined, indicates that <netdb.h> includes
1507  *      prototypes for getnetent(), getnetbyname(), and
1508  *      getnetbyaddr().  Otherwise, it is up to the program to guess
1509  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
1510  */
1511 /*#define       HAS_GETNET_PROTOS       /**/
1512
1513 /* HAS_GETPROTOENT:
1514  *      This symbol, if defined, indicates that the getprotoent() routine is
1515  *      available to look up protocols in some data base or another.
1516  */
1517 /*#define HAS_GETPROTOENT               /**/
1518
1519 /* HAS_GETPGRP:
1520  *      This symbol, if defined, indicates that the getpgrp routine is
1521  *      available to get the current process group.
1522  */
1523 /* USE_BSD_GETPGRP:
1524  *      This symbol, if defined, indicates that getpgrp needs one
1525  *      arguments whereas USG one needs none.
1526  */
1527 /*#define HAS_GETPGRP           /**/
1528 /*#define USE_BSD_GETPGRP       /**/
1529
1530 /* HAS_GETPROTOBYNAME:
1531  *      This symbol, if defined, indicates that the getprotobyname()
1532  *      routine is available to look up protocols by their name.
1533  */
1534 /* HAS_GETPROTOBYNUMBER:
1535  *      This symbol, if defined, indicates that the getprotobynumber()
1536  *      routine is available to look up protocols by their number.
1537  */
1538 #define HAS_GETPROTOBYNAME              /**/
1539 #define HAS_GETPROTOBYNUMBER            /**/
1540
1541 /* HAS_GETPROTOBYNAME_R:
1542  *      This symbol, if defined, indicates that the getprotobyname_r routine
1543  *      is available to getprotobyname re-entrantly.
1544  */
1545 /* GETPROTOBYNAME_R_PROTO:
1546  *      This symbol encodes the prototype of getprotobyname_r.
1547  *      It is zero if d_getprotobyname_r is undef, and one of the
1548  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobyname_r
1549  *      is defined.
1550  */
1551 /*#define HAS_GETPROTOBYNAME_R     /**/
1552 #define GETPROTOBYNAME_R_PROTO 0           /**/
1553
1554 /* HAS_GETPROTOBYNUMBER_R:
1555  *      This symbol, if defined, indicates that the getprotobynumber_r routine
1556  *      is available to getprotobynumber re-entrantly.
1557  */
1558 /* GETPROTOBYNUMBER_R_PROTO:
1559  *      This symbol encodes the prototype of getprotobynumber_r.
1560  *      It is zero if d_getprotobynumber_r is undef, and one of the
1561  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobynumber_r
1562  *      is defined.
1563  */
1564 /*#define HAS_GETPROTOBYNUMBER_R           /**/
1565 #define GETPROTOBYNUMBER_R_PROTO 0         /**/
1566
1567 /* HAS_GETPROTOENT_R:
1568  *      This symbol, if defined, indicates that the getprotoent_r routine
1569  *      is available to getprotoent re-entrantly.
1570  */
1571 /* GETPROTOENT_R_PROTO:
1572  *      This symbol encodes the prototype of getprotoent_r.
1573  *      It is zero if d_getprotoent_r is undef, and one of the
1574  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotoent_r
1575  *      is defined.
1576  */
1577 /*#define HAS_GETPROTOENT_R        /**/
1578 #define GETPROTOENT_R_PROTO 0      /**/
1579
1580 /* HAS_GETPROTO_PROTOS:
1581  *      This symbol, if defined, indicates that <netdb.h> includes
1582  *      prototypes for getprotoent(), getprotobyname(), and
1583  *      getprotobyaddr().  Otherwise, it is up to the program to guess
1584  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
1585  */
1586 #define HAS_GETPROTO_PROTOS     /**/
1587
1588 /* HAS_GETPWENT:
1589  *      This symbol, if defined, indicates that the getpwent routine is
1590  *      available for sequential access of the passwd database.
1591  *      If this is not available, the older getpw() function may be available.
1592  */
1593 /*#define HAS_GETPWENT          /**/
1594
1595 /* HAS_GETPWENT_R:
1596  *      This symbol, if defined, indicates that the getpwent_r routine
1597  *      is available to getpwent re-entrantly.
1598  */
1599 /* GETPWENT_R_PROTO:
1600  *      This symbol encodes the prototype of getpwent_r.
1601  *      It is zero if d_getpwent_r is undef, and one of the
1602  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwent_r
1603  *      is defined.
1604  */
1605 /*#define HAS_GETPWENT_R           /**/
1606 #define GETPWENT_R_PROTO 0         /**/
1607
1608 /* HAS_GETPWNAM_R:
1609  *      This symbol, if defined, indicates that the getpwnam_r routine
1610  *      is available to getpwnam re-entrantly.
1611  */
1612 /* GETPWNAM_R_PROTO:
1613  *      This symbol encodes the prototype of getpwnam_r.
1614  *      It is zero if d_getpwnam_r is undef, and one of the
1615  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwnam_r
1616  *      is defined.
1617  */
1618 /*#define HAS_GETPWNAM_R           /**/
1619 #define GETPWNAM_R_PROTO 0         /**/
1620
1621 /* HAS_GETPWUID_R:
1622  *      This symbol, if defined, indicates that the getpwuid_r routine
1623  *      is available to getpwuid re-entrantly.
1624  */
1625 /* GETPWUID_R_PROTO:
1626  *      This symbol encodes the prototype of getpwuid_r.
1627  *      It is zero if d_getpwuid_r is undef, and one of the
1628  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwuid_r
1629  *      is defined.
1630  */
1631 /*#define HAS_GETPWUID_R           /**/
1632 #define GETPWUID_R_PROTO 0         /**/
1633
1634 /* HAS_GETSERVENT:
1635  *      This symbol, if defined, indicates that the getservent() routine is
1636  *      available to look up network services in some data base or another.
1637  */
1638 /*#define HAS_GETSERVENT                /**/
1639
1640 /* HAS_GETSERVBYNAME_R:
1641  *      This symbol, if defined, indicates that the getservbyname_r routine
1642  *      is available to getservbyname re-entrantly.
1643  */
1644 /* GETSERVBYNAME_R_PROTO:
1645  *      This symbol encodes the prototype of getservbyname_r.
1646  *      It is zero if d_getservbyname_r is undef, and one of the
1647  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyname_r
1648  *      is defined.
1649  */
1650 /*#define HAS_GETSERVBYNAME_R      /**/
1651 #define GETSERVBYNAME_R_PROTO 0    /**/
1652
1653 /* HAS_GETSERVBYPORT_R:
1654  *      This symbol, if defined, indicates that the getservbyport_r routine
1655  *      is available to getservbyport re-entrantly.
1656  */
1657 /* GETSERVBYPORT_R_PROTO:
1658  *      This symbol encodes the prototype of getservbyport_r.
1659  *      It is zero if d_getservbyport_r is undef, and one of the
1660  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyport_r
1661  *      is defined.
1662  */
1663 /*#define HAS_GETSERVBYPORT_R      /**/
1664 #define GETSERVBYPORT_R_PROTO 0    /**/
1665
1666 /* HAS_GETSERVENT_R:
1667  *      This symbol, if defined, indicates that the getservent_r routine
1668  *      is available to getservent re-entrantly.
1669  */
1670 /* GETSERVENT_R_PROTO:
1671  *      This symbol encodes the prototype of getservent_r.
1672  *      It is zero if d_getservent_r is undef, and one of the
1673  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservent_r
1674  *      is defined.
1675  */
1676 /*#define HAS_GETSERVENT_R         /**/
1677 #define GETSERVENT_R_PROTO 0       /**/
1678
1679 /* HAS_GETSERV_PROTOS:
1680  *      This symbol, if defined, indicates that <netdb.h> includes
1681  *      prototypes for getservent(), getservbyname(), and
1682  *      getservbyaddr().  Otherwise, it is up to the program to guess
1683  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
1684  */
1685 #define HAS_GETSERV_PROTOS      /**/
1686
1687 /* HAS_GETSPNAM_R:
1688  *      This symbol, if defined, indicates that the getspnam_r routine
1689  *      is available to getspnam re-entrantly.
1690  */
1691 /* GETSPNAM_R_PROTO:
1692  *      This symbol encodes the prototype of getspnam_r.
1693  *      It is zero if d_getspnam_r is undef, and one of the
1694  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getspnam_r
1695  *      is defined.
1696  */
1697 /*#define HAS_GETSPNAM_R           /**/
1698 #define GETSPNAM_R_PROTO 0         /**/
1699
1700 /* HAS_GETSERVBYNAME:
1701  *      This symbol, if defined, indicates that the getservbyname()
1702  *      routine is available to look up services by their name.
1703  */
1704 /* HAS_GETSERVBYPORT:
1705  *      This symbol, if defined, indicates that the getservbyport()
1706  *      routine is available to look up services by their port.
1707  */
1708 #define HAS_GETSERVBYNAME               /**/
1709 #define HAS_GETSERVBYPORT               /**/
1710
1711 /* HAS_GMTIME_R:
1712  *      This symbol, if defined, indicates that the gmtime_r routine
1713  *      is available to gmtime re-entrantly.
1714  */
1715 /* GMTIME_R_PROTO:
1716  *      This symbol encodes the prototype of gmtime_r.
1717  *      It is zero if d_gmtime_r is undef, and one of the
1718  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_gmtime_r
1719  *      is defined.
1720  */
1721 /*#define HAS_GMTIME_R     /**/
1722 #define GMTIME_R_PROTO 0           /**/
1723
1724 /* HAS_HTONL:
1725  *      This symbol, if defined, indicates that the htonl() routine (and
1726  *      friends htons() ntohl() ntohs()) are available to do network
1727  *      order byte swapping.
1728  */
1729 /* HAS_HTONS:
1730  *      This symbol, if defined, indicates that the htons() routine (and
1731  *      friends htonl() ntohl() ntohs()) are available to do network
1732  *      order byte swapping.
1733  */
1734 /* HAS_NTOHL:
1735  *      This symbol, if defined, indicates that the ntohl() routine (and
1736  *      friends htonl() htons() ntohs()) are available to do network
1737  *      order byte swapping.
1738  */
1739 /* HAS_NTOHS:
1740  *      This symbol, if defined, indicates that the ntohs() routine (and
1741  *      friends htonl() htons() ntohl()) are available to do network
1742  *      order byte swapping.
1743  */
1744 #define HAS_HTONL               /**/
1745 #define HAS_HTONS               /**/
1746 #define HAS_NTOHL               /**/
1747 #define HAS_NTOHS               /**/
1748
1749 /* HAS_LOCALTIME_R:
1750  *      This symbol, if defined, indicates that the localtime_r routine
1751  *      is available to localtime re-entrantly.
1752  */
1753 /* LOCALTIME_R_NEEDS_TZSET:
1754  *      Many libc's localtime_r implementations do not call tzset,
1755  *      making them differ from localtime(), and making timezone
1756  *      changes using \undef{TZ} without explicitly calling tzset
1757  *      impossible. This symbol makes us call tzset before localtime_r
1758  */
1759 /*#define LOCALTIME_R_NEEDS_TZSET /**/
1760 #ifdef LOCALTIME_R_NEEDS_TZSET
1761 #define L_R_TZSET tzset(),
1762 #else
1763 #define L_R_TZSET
1764 #endif
1765
1766 /* LOCALTIME_R_PROTO:
1767  *      This symbol encodes the prototype of localtime_r.
1768  *      It is zero if d_localtime_r is undef, and one of the
1769  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_localtime_r
1770  *      is defined.
1771  */
1772 /*#define HAS_LOCALTIME_R          /**/
1773 #define LOCALTIME_R_PROTO 0        /**/
1774
1775 /* HAS_LONG_DOUBLE:
1776  *      This symbol will be defined if the C compiler supports long
1777  *      doubles.
1778  */
1779 /* LONG_DOUBLESIZE:
1780  *      This symbol contains the size of a long double, so that the
1781  *      C preprocessor can make decisions based on it.  It is only
1782  *      defined if the system supports long doubles.
1783  */
1784 #define HAS_LONG_DOUBLE         /**/
1785 #define LONG_DOUBLESIZE 10              /**/
1786 #endif
1787
1788 /* HAS_LONG_LONG:
1789  *      This symbol will be defined if the C compiler supports long long.
1790  */
1791 /* LONGLONGSIZE:
1792  *      This symbol contains the size of a long long, so that the
1793  *      C preprocessor can make decisions based on it.  It is only
1794  *      defined if the system supports long long.
1795  */
1796 /*#define HAS_LONG_LONG         /**/
1797 #ifdef HAS_LONG_LONG
1798 #define LONGLONGSIZE 8          /**/
1799 #endif
1800
1801 /* HAS_LSEEK_PROTO:
1802  *      This symbol, if defined, indicates that the system provides
1803  *      a prototype for the lseek() function.  Otherwise, it is up
1804  *      to the program to supply one.  A good guess is
1805  *              extern off_t lseek(int, off_t, int);
1806  */
1807 #define HAS_LSEEK_PROTO /**/
1808
1809 /* HAS_MEMCHR:
1810  *      This symbol, if defined, indicates that the memchr routine is available
1811  *      to locate characters within a C string.
1812  */
1813 #define HAS_MEMCHR      /**/
1814
1815 /* HAS_MKSTEMP:
1816  *      This symbol, if defined, indicates that the mkstemp routine is
1817  *      available to exclusively create and open a uniquely named
1818  *      temporary file.
1819  */
1820 /*#define HAS_MKSTEMP           /**/
1821
1822 /* HAS_MMAP:
1823  *      This symbol, if defined, indicates that the mmap system call is
1824  *      available to map a file into memory.
1825  */
1826 /* Mmap_t:
1827  *      This symbol holds the return type of the mmap() system call
1828  *      (and simultaneously the type of the first argument).
1829  *      Usually set to 'void *' or 'caddr_t'.
1830  */
1831 /*#define HAS_MMAP              /**/
1832 #define Mmap_t void *   /**/
1833
1834 /* HAS_MSG:
1835  *      This symbol, if defined, indicates that the entire msg*(2) library is
1836  *      supported (IPC mechanism based on message queues).
1837  */
1838 /*#define HAS_MSG               /**/
1839
1840 /* OLD_PTHREAD_CREATE_JOINABLE:
1841  *      This symbol, if defined, indicates how to create pthread
1842  *      in joinable (aka undetached) state.  NOTE: not defined
1843  *      if pthread.h already has defined PTHREAD_CREATE_JOINABLE
1844  *      (the new version of the constant).
1845  *      If defined, known values are PTHREAD_CREATE_UNDETACHED
1846  *      and __UNDETACHED.
1847  */
1848 /*#define OLD_PTHREAD_CREATE_JOINABLE  /**/
1849
1850 /* HAS_PTHREAD_ATFORK:
1851  *      This symbol, if defined, indicates that the pthread_atfork routine
1852  *      is available to setup fork handlers.
1853  */
1854 /*#define HAS_PTHREAD_ATFORK            /**/
1855
1856 /* HAS_PTHREAD_YIELD:
1857  *      This symbol, if defined, indicates that the pthread_yield
1858  *      routine is available to yield the execution of the current
1859  *      thread.  sched_yield is preferable to pthread_yield.
1860  */
1861 /* SCHED_YIELD:
1862  *      This symbol defines the way to yield the execution of
1863  *      the current thread.  Known ways are sched_yield,
1864  *      pthread_yield, and pthread_yield with NULL.
1865  */
1866 /* HAS_SCHED_YIELD:
1867  *      This symbol, if defined, indicates that the sched_yield
1868  *      routine is available to yield the execution of the current
1869  *      thread.  sched_yield is preferable to pthread_yield.
1870  */
1871 /*#define HAS_PTHREAD_YIELD     /**/
1872 #define SCHED_YIELD             /**/
1873 /*#define HAS_SCHED_YIELD       /**/
1874
1875 /* HAS_RANDOM_R:
1876  *      This symbol, if defined, indicates that the random_r routine
1877  *      is available to random re-entrantly.
1878  */
1879 /* RANDOM_R_PROTO:
1880  *      This symbol encodes the prototype of random_r.
1881  *      It is zero if d_random_r is undef, and one of the
1882  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_random_r
1883  *      is defined.
1884  */
1885 /*#define HAS_RANDOM_R     /**/
1886 #define RANDOM_R_PROTO 0           /**/
1887
1888 /* HAS_READDIR64_R:
1889  *      This symbol, if defined, indicates that the readdir64_r routine
1890  *      is available to readdir64 re-entrantly.
1891  */
1892 /* READDIR64_R_PROTO:
1893  *      This symbol encodes the prototype of readdir64_r.
1894  *      It is zero if d_readdir64_r is undef, and one of the
1895  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir64_r
1896  *      is defined.
1897  */
1898 /*#define HAS_READDIR64_R          /**/
1899 #define READDIR64_R_PROTO 0        /**/
1900
1901 /* HAS_READDIR_R:
1902  *      This symbol, if defined, indicates that the readdir_r routine
1903  *      is available to readdir re-entrantly.
1904  */
1905 /* READDIR_R_PROTO:
1906  *      This symbol encodes the prototype of readdir_r.
1907  *      It is zero if d_readdir_r is undef, and one of the
1908  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir_r
1909  *      is defined.
1910  */
1911 /*#define HAS_READDIR_R    /**/
1912 #define READDIR_R_PROTO 0          /**/
1913
1914 /* HAS_SEM:
1915  *      This symbol, if defined, indicates that the entire sem*(2) library is
1916  *      supported.
1917  */
1918 /*#define HAS_SEM               /**/
1919
1920 /* HAS_SETGRENT:
1921  *      This symbol, if defined, indicates that the setgrent routine is
1922  *      available for initializing sequential access of the group database.
1923  */
1924 /*#define HAS_SETGRENT          /**/
1925
1926 /* HAS_SETGRENT_R:
1927  *      This symbol, if defined, indicates that the setgrent_r routine
1928  *      is available to setgrent re-entrantly.
1929  */
1930 /* SETGRENT_R_PROTO:
1931  *      This symbol encodes the prototype of setgrent_r.
1932  *      It is zero if d_setgrent_r is undef, and one of the
1933  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_setgrent_r
1934  *      is defined.
1935  */
1936 /*#define HAS_SETGRENT_R           /**/
1937 #define SETGRENT_R_PROTO 0         /**/
1938
1939 /* HAS_SETHOSTENT:
1940  *      This symbol, if defined, indicates that the sethostent() routine is
1941  *      available.
1942  */
1943 /*#define HAS_SETHOSTENT                /**/
1944
1945 /* HAS_SETHOSTENT_R:
1946  *      This symbol, if defined, indicates that the sethostent_r routine
1947  *      is available to sethostent re-entrantly.
1948  */
1949 /* SETHOSTENT_R_PROTO:
1950  *      This symbol encodes the prototype of sethostent_r.
1951  *      It is zero if d_sethostent_r is undef, and one of the
1952  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_sethostent_r
1953  *      is defined.
1954  */
1955 /*#define HAS_SETHOSTENT_R         /**/
1956 #define SETHOSTENT_R_PROTO 0       /**/
1957
1958 /* HAS_SETLOCALE_R:
1959  *      This symbol, if defined, indicates that the setlocale_r routine
1960  *      is available to setlocale re-entrantly.
1961  */
1962 /* SETLOCALE_R_PROTO:
1963  *      This symbol encodes the prototype of setlocale_r.
1964  *      It is zero if d_setlocale_r is undef, and one of the
1965  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_setlocale_r
1966  *      is defined.
1967  */
1968 /*#define HAS_SETLOCALE_R          /**/
1969 #define SETLOCALE_R_PROTO 0        /**/
1970
1971 /* HAS_SETNETENT:
1972  *      This symbol, if defined, indicates that the setnetent() routine is
1973  *      available.
1974  */
1975 /*#define HAS_SETNETENT         /**/
1976
1977 /* HAS_SETNETENT_R:
1978  *      This symbol, if defined, indicates that the setnetent_r routine
1979  *      is available to setnetent re-entrantly.
1980  */
1981 /* SETNETENT_R_PROTO:
1982  *      This symbol encodes the prototype of setnetent_r.
1983  *      It is zero if d_setnetent_r is undef, and one of the
1984  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_setnetent_r
1985  *      is defined.
1986  */
1987 /*#define HAS_SETNETENT_R          /**/
1988 #define SETNETENT_R_PROTO 0        /**/
1989
1990 /* HAS_SETPROTOENT:
1991  *      This symbol, if defined, indicates that the setprotoent() routine is
1992  *      available.
1993  */
1994 /*#define HAS_SETPROTOENT               /**/
1995
1996 /* HAS_SETPGRP:
1997  *      This symbol, if defined, indicates that the setpgrp routine is
1998  *      available to set the current process group.
1999  */
2000 /* USE_BSD_SETPGRP:
2001  *      This symbol, if defined, indicates that setpgrp needs two
2002  *      arguments whereas USG one needs none.  See also HAS_SETPGID
2003  *      for a POSIX interface.
2004  */
2005 /*#define HAS_SETPGRP           /**/
2006 /*#define USE_BSD_SETPGRP       /**/
2007
2008 /* HAS_SETPROTOENT_R:
2009  *      This symbol, if defined, indicates that the setprotoent_r routine
2010  *      is available to setprotoent re-entrantly.
2011  */
2012 /* SETPROTOENT_R_PROTO:
2013  *      This symbol encodes the prototype of setprotoent_r.
2014  *      It is zero if d_setprotoent_r is undef, and one of the
2015  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_setprotoent_r
2016  *      is defined.
2017  */
2018 /*#define HAS_SETPROTOENT_R        /**/
2019 #define SETPROTOENT_R_PROTO 0      /**/
2020
2021 /* HAS_SETPWENT:
2022  *      This symbol, if defined, indicates that the setpwent routine is
2023  *      available for initializing sequential access of the passwd database.
2024  */
2025 /*#define HAS_SETPWENT          /**/
2026
2027 /* HAS_SETPWENT_R:
2028  *      This symbol, if defined, indicates that the setpwent_r routine
2029  *      is available to setpwent re-entrantly.
2030  */
2031 /* SETPWENT_R_PROTO:
2032  *      This symbol encodes the prototype of setpwent_r.
2033  *      It is zero if d_setpwent_r is undef, and one of the
2034  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_setpwent_r
2035  *      is defined.
2036  */
2037 /*#define HAS_SETPWENT_R           /**/
2038 #define SETPWENT_R_PROTO 0         /**/
2039
2040 /* HAS_SETSERVENT:
2041  *      This symbol, if defined, indicates that the setservent() routine is
2042  *      available.
2043  */
2044 /*#define HAS_SETSERVENT                /**/
2045
2046 /* HAS_SETSERVENT_R:
2047  *      This symbol, if defined, indicates that the setservent_r routine
2048  *      is available to setservent re-entrantly.
2049  */
2050 /* SETSERVENT_R_PROTO:
2051  *      This symbol encodes the prototype of setservent_r.
2052  *      It is zero if d_setservent_r is undef, and one of the
2053  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_setservent_r
2054  *      is defined.
2055  */
2056 /*#define HAS_SETSERVENT_R         /**/
2057 #define SETSERVENT_R_PROTO 0       /**/
2058
2059 /* HAS_SETVBUF:
2060  *      This symbol, if defined, indicates that the setvbuf routine is
2061  *      available to change buffering on an open stdio stream.
2062  *      to a line-buffered mode.
2063  */
2064 #define HAS_SETVBUF             /**/
2065
2066 /* HAS_SHM:
2067  *      This symbol, if defined, indicates that the entire shm*(2) library is
2068  *      supported.
2069  */
2070 /*#define HAS_SHM               /**/
2071
2072 /* Shmat_t:
2073  *      This symbol holds the return type of the shmat() system call.
2074  *      Usually set to 'void *' or 'char *'.
2075  */
2076 /* HAS_SHMAT_PROTOTYPE:
2077  *      This symbol, if defined, indicates that the sys/shm.h includes
2078  *      a prototype for shmat().  Otherwise, it is up to the program to
2079  *      guess one.  Shmat_t shmat(int, Shmat_t, int) is a good guess,
2080  *      but not always right so it should be emitted by the program only
2081  *      when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
2082  */
2083 #define Shmat_t void *  /**/
2084 /*#define HAS_SHMAT_PROTOTYPE   /**/
2085
2086 /* HAS_SOCKET:
2087  *      This symbol, if defined, indicates that the BSD socket interface is
2088  *      supported.
2089  */
2090 /* HAS_SOCKETPAIR:
2091  *      This symbol, if defined, indicates that the BSD socketpair() call is
2092  *      supported.
2093  */
2094 /* HAS_MSG_CTRUNC:
2095  *      This symbol, if defined, indicates that the MSG_CTRUNC is supported.
2096  *      Checking just with #ifdef might not be enough because this symbol
2097  *      has been known to be an enum.
2098  */
2099 /* HAS_MSG_DONTROUTE:
2100  *      This symbol, if defined, indicates that the MSG_DONTROUTE is supported.
2101  *      Checking just with #ifdef might not be enough because this symbol
2102  *      has been known to be an enum.
2103  */
2104 /* HAS_MSG_OOB:
2105  *      This symbol, if defined, indicates that the MSG_OOB is supported.
2106  *      Checking just with #ifdef might not be enough because this symbol
2107  *      has been known to be an enum.
2108  */
2109 /* HAS_MSG_PEEK:
2110  *      This symbol, if defined, indicates that the MSG_PEEK is supported.
2111  *      Checking just with #ifdef might not be enough because this symbol
2112  *      has been known to be an enum.
2113  */
2114 /* HAS_MSG_PROXY:
2115  *      This symbol, if defined, indicates that the MSG_PROXY is supported.
2116  *      Checking just with #ifdef might not be enough because this symbol
2117  *      has been known to be an enum.
2118  */
2119 /* HAS_SCM_RIGHTS:
2120  *      This symbol, if defined, indicates that the SCM_RIGHTS is supported.
2121  *      Checking just with #ifdef might not be enough because this symbol
2122  *      has been known to be an enum.
2123  */
2124 #define HAS_SOCKET              /**/
2125 /*#define       HAS_SOCKETPAIR  /**/
2126 /*#define       HAS_MSG_CTRUNC  /**/
2127 /*#define       HAS_MSG_DONTROUTE       /**/
2128 /*#define       HAS_MSG_OOB     /**/
2129 /*#define       HAS_MSG_PEEK    /**/
2130 /*#define       HAS_MSG_PROXY   /**/
2131 /*#define       HAS_SCM_RIGHTS  /**/
2132
2133 /* HAS_SRAND48_R:
2134  *      This symbol, if defined, indicates that the srand48_r routine
2135  *      is available to srand48 re-entrantly.
2136  */
2137 /* SRAND48_R_PROTO:
2138  *      This symbol encodes the prototype of srand48_r.
2139  *      It is zero if d_srand48_r is undef, and one of the
2140  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_srand48_r
2141  *      is defined.
2142  */
2143 /*#define HAS_SRAND48_R    /**/
2144 #define SRAND48_R_PROTO 0          /**/
2145
2146 /* HAS_SRANDOM_R:
2147  *      This symbol, if defined, indicates that the srandom_r routine
2148  *      is available to srandom re-entrantly.
2149  */
2150 /* SRANDOM_R_PROTO:
2151  *      This symbol encodes the prototype of srandom_r.
2152  *      It is zero if d_srandom_r is undef, and one of the
2153  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_srandom_r
2154  *      is defined.
2155  */
2156 /*#define HAS_SRANDOM_R    /**/
2157 #define SRANDOM_R_PROTO 0          /**/
2158
2159 /* USE_STAT_BLOCKS:
2160  *      This symbol is defined if this system has a stat structure declaring
2161  *      st_blksize and st_blocks.
2162  */
2163 #ifndef USE_STAT_BLOCKS
2164 /*#define USE_STAT_BLOCKS       /**/
2165 #endif
2166
2167 /* USE_STRUCT_COPY:
2168  *      This symbol, if defined, indicates that this C compiler knows how
2169  *      to copy structures.  If undefined, you'll need to use a block copy
2170  *      routine of some sort instead.
2171  */
2172 #define USE_STRUCT_COPY /**/
2173
2174 /* HAS_STRERROR:
2175  *      This symbol, if defined, indicates that the strerror routine is
2176  *      available to translate error numbers to strings. See the writeup
2177  *      of Strerror() in this file before you try to define your own.
2178  */
2179 /* HAS_SYS_ERRLIST:
2180  *      This symbol, if defined, indicates that the sys_errlist array is
2181  *      available to translate error numbers to strings. The extern int
2182  *      sys_nerr gives the size of that table.
2183  */
2184 /* Strerror:
2185  *      This preprocessor symbol is defined as a macro if strerror() is
2186  *      not available to translate error numbers to strings but sys_errlist[]
2187  *      array is there.
2188  */
2189 #define HAS_STRERROR            /**/
2190 #define HAS_SYS_ERRLIST /**/
2191 #define Strerror(e) strerror(e)
2192
2193 /* HAS_STRERROR_R:
2194  *      This symbol, if defined, indicates that the strerror_r routine
2195  *      is available to strerror re-entrantly.
2196  */
2197 /* STRERROR_R_PROTO:
2198  *      This symbol encodes the prototype of strerror_r.
2199  *      It is zero if d_strerror_r is undef, and one of the
2200  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_strerror_r
2201  *      is defined.
2202  */
2203 /*#define HAS_STRERROR_R           /**/
2204 #define STRERROR_R_PROTO 0         /**/
2205
2206 /* HAS_STRTOUL:
2207  *      This symbol, if defined, indicates that the strtoul routine is
2208  *      available to provide conversion of strings to unsigned long.
2209  */
2210 #define HAS_STRTOUL     /**/
2211
2212 /* HAS_TIME:
2213  *      This symbol, if defined, indicates that the time() routine exists.
2214  */
2215 /* Time_t:
2216  *      This symbol holds the type returned by time(). It can be long,
2217  *      or time_t on BSD sites (in which case <sys/types.h> should be
2218  *      included).
2219  */
2220 #define HAS_TIME                /**/
2221 #define Time_t time_t           /* Time type */
2222
2223 /* HAS_TIMES:
2224  *      This symbol, if defined, indicates that the times() routine exists.
2225  *      Note that this became obsolete on some systems (SUNOS), which now
2226  * use getrusage(). It may be necessary to include <sys/times.h>.
2227  */
2228 #define HAS_TIMES               /**/
2229
2230 /* HAS_TMPNAM_R:
2231  *      This symbol, if defined, indicates that the tmpnam_r routine
2232  *      is available to tmpnam re-entrantly.
2233  */
2234 /* TMPNAM_R_PROTO:
2235  *      This symbol encodes the prototype of tmpnam_r.
2236  *      It is zero if d_tmpnam_r is undef, and one of the
2237  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_tmpnam_r
2238  *      is defined.
2239  */
2240 /*#define HAS_TMPNAM_R     /**/
2241 #define TMPNAM_R_PROTO 0           /**/
2242
2243 /* HAS_TTYNAME_R:
2244  *      This symbol, if defined, indicates that the ttyname_r routine
2245  *      is available to ttyname re-entrantly.
2246  */
2247 /* TTYNAME_R_PROTO:
2248  *      This symbol encodes the prototype of ttyname_r.
2249  *      It is zero if d_ttyname_r is undef, and one of the
2250  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_ttyname_r
2251  *      is defined.
2252  */
2253 /*#define HAS_TTYNAME_R    /**/
2254 #define TTYNAME_R_PROTO 0          /**/
2255
2256 /* HAS_UNION_SEMUN:
2257  *      This symbol, if defined, indicates that the union semun is
2258  *      defined by including <sys/sem.h>.  If not, the user code
2259  *      probably needs to define it as:
2260  *      union semun {
2261  *          int val;
2262  *          struct semid_ds *buf;
2263  *          unsigned short *array;
2264  *      }
2265  */
2266 /* USE_SEMCTL_SEMUN:
2267  *      This symbol, if defined, indicates that union semun is
2268  *      used for semctl IPC_STAT.
2269  */
2270 /* USE_SEMCTL_SEMID_DS:
2271  *      This symbol, if defined, indicates that struct semid_ds * is
2272  *      used for semctl IPC_STAT.
2273  */
2274 #define HAS_UNION_SEMUN /**/
2275 /*#define USE_SEMCTL_SEMUN      /**/
2276 /*#define USE_SEMCTL_SEMID_DS   /**/
2277
2278 /* HAS_VFORK:
2279  *      This symbol, if defined, indicates that vfork() exists.
2280  */
2281 /*#define HAS_VFORK     /**/
2282
2283 /* HAS_PSEUDOFORK:
2284  *      This symbol, if defined, indicates that an emulation of the
2285  *      fork routine is available.
2286  */
2287 /*#define HAS_PSEUDOFORK        /**/
2288
2289 /* Signal_t:
2290  *      This symbol's value is either "void" or "int", corresponding to the
2291  *      appropriate return type of a signal handler.  Thus, you can declare
2292  *      a signal handler using "Signal_t (*handler)()", and define the
2293  *      handler using "Signal_t handler(sig)".
2294  */
2295 #define Signal_t void   /* Signal handler's return type */
2296
2297 /* HASVOLATILE:
2298  *      This symbol, if defined, indicates that this C compiler knows about
2299  *      the volatile declaration.
2300  */
2301 #define HASVOLATILE     /**/
2302 #ifndef HASVOLATILE
2303 #define volatile
2304 #endif
2305
2306 /* Fpos_t:
2307  *      This symbol holds the type used to declare file positions in libc.
2308  *      It can be fpos_t, long, uint, etc... It may be necessary to include
2309  *      <sys/types.h> to get any typedef'ed information.
2310  */
2311 #define Fpos_t fpos_t           /* File position type */
2312
2313 /* Gid_t_f:
2314  *      This symbol defines the format string used for printing a Gid_t.
2315  */
2316 #define Gid_t_f         "ld"            /**/
2317
2318 /* Gid_t_sign:
2319  *      This symbol holds the signedess of a Gid_t.
2320  *      1 for unsigned, -1 for signed.
2321  */
2322 #define Gid_t_sign      -1              /* GID sign */
2323
2324 /* Gid_t_size:
2325  *      This symbol holds the size of a Gid_t in bytes.
2326  */
2327 #define Gid_t_size 4            /* GID size */
2328
2329 /* Gid_t:
2330  *      This symbol holds the return type of getgid() and the type of
2331  *      argument to setrgid() and related functions.  Typically,
2332  *      it is the type of group ids in the kernel. It can be int, ushort,
2333  *      gid_t, etc... It may be necessary to include <sys/types.h> to get
2334  *      any typedef'ed information.
2335  */
2336 #define Gid_t gid_t             /* Type for getgid(), etc... */
2337
2338 /* I_DIRENT:
2339  *      This symbol, if defined, indicates to the C program that it should
2340  *      include <dirent.h>. Using this symbol also triggers the definition
2341  *      of the Direntry_t define which ends up being 'struct dirent' or
2342  *      'struct direct' depending on the availability of <dirent.h>.
2343  */
2344 /* DIRNAMLEN:
2345  *      This symbol, if defined, indicates to the C program that the length
2346  *      of directory entry names is provided by a d_namlen field.  Otherwise
2347  *      you need to do strlen() on the d_name field.
2348  */
2349 /* Direntry_t:
2350  *      This symbol is set to 'struct direct' or 'struct dirent' depending on
2351  *      whether dirent is available or not. You should use this pseudo type to
2352  *      portably declare your directory entries.
2353  */
2354 #define I_DIRENT                /**/
2355 #define DIRNAMLEN       /**/
2356 #define Direntry_t struct direct
2357
2358 /* I_GRP:
2359  *      This symbol, if defined, indicates to the C program that it should
2360  *      include <grp.h>.
2361  */
2362 /* GRPASSWD:
2363  *      This symbol, if defined, indicates to the C program that struct group
2364  *      in <grp.h> contains gr_passwd.
2365  */
2366 /*#define I_GRP         /**/
2367 /*#define GRPASSWD      /**/
2368
2369 /* I_MACH_CTHREADS:
2370  *     This symbol, if defined, indicates to the C program that it should
2371  *     include <mach/cthreads.h>.
2372  */
2373 /*#define   I_MACH_CTHREADS     /**/
2374
2375 /* I_NDBM:
2376  *      This symbol, if defined, indicates that <ndbm.h> exists and should
2377  *      be included.
2378  */
2379 /* I_GDBMNDBM:
2380  *      This symbol, if defined, indicates that <gdbm/ndbm.h> exists and should
2381  *      be included.  This was the location of the ndbm.h compatibility file
2382  *      in RedHat 7.1.
2383  */
2384 /* I_GDBM_NDBM:
2385  *      This symbol, if defined, indicates that <gdbm-ndbm.h> exists and should
2386  *      be included.  This is the location of the ndbm.h compatibility file
2387  *      in Debian 4.0.
2388  */
2389 /*#define I_NDBM        /**/
2390 /*#define I_GDBMNDBM    /**/
2391 /*#define I_GDBM_NDBM   /**/
2392
2393 /* I_NETDB:
2394  *      This symbol, if defined, indicates that <netdb.h> exists and
2395  *      should be included.
2396  */
2397 /*#define I_NETDB               /**/
2398
2399 /* I_NET_ERRNO:
2400  *      This symbol, if defined, indicates that <net/errno.h> exists and
2401  *      should be included.
2402  */
2403 /*#define I_NET_ERRNO           /**/
2404
2405 /* I_PTHREAD:
2406  *     This symbol, if defined, indicates to the C program that it should
2407  *     include <pthread.h>.
2408  */
2409 /*#define   I_PTHREAD   /**/
2410
2411 /* I_PWD:
2412  *      This symbol, if defined, indicates to the C program that it should
2413  *      include <pwd.h>.
2414  */
2415 /* PWQUOTA:
2416  *      This symbol, if defined, indicates to the C program that struct passwd
2417  *      contains pw_quota.
2418  */
2419 /* PWAGE:
2420  *      This symbol, if defined, indicates to the C program that struct passwd
2421  *      contains pw_age.
2422  */
2423 /* PWCHANGE:
2424  *      This symbol, if defined, indicates to the C program that struct passwd
2425  *      contains pw_change.
2426  */
2427 /* PWCLASS:
2428  *      This symbol, if defined, indicates to the C program that struct passwd
2429  *      contains pw_class.
2430  */
2431 /* PWEXPIRE:
2432  *      This symbol, if defined, indicates to the C program that struct passwd
2433  *      contains pw_expire.
2434  */
2435 /* PWCOMMENT:
2436  *      This symbol, if defined, indicates to the C program that struct passwd
2437  *      contains pw_comment.
2438  */
2439 /* PWGECOS:
2440  *      This symbol, if defined, indicates to the C program that struct passwd
2441  *      contains pw_gecos.
2442  */
2443 /* PWPASSWD:
2444  *      This symbol, if defined, indicates to the C program that struct passwd
2445  *      contains pw_passwd.
2446  */
2447 /*#define I_PWD         /**/
2448 /*#define PWQUOTA       /**/
2449 /*#define PWAGE /**/
2450 /*#define PWCHANGE      /**/
2451 /*#define PWCLASS       /**/
2452 /*#define PWEXPIRE      /**/
2453 /*#define PWCOMMENT     /**/
2454 /*#define PWGECOS       /**/
2455 /*#define PWPASSWD      /**/
2456
2457 /* I_SYS_ACCESS:
2458  *     This symbol, if defined, indicates to the C program that it should
2459  *     include <sys/access.h>.
2460  */
2461 /*#define   I_SYS_ACCESS                /**/
2462
2463 /* I_SYS_SECURITY:
2464  *     This symbol, if defined, indicates to the C program that it should
2465  *     include <sys/security.h>.
2466  */
2467 /*#define   I_SYS_SECURITY      /**/
2468
2469 /* I_SYSUIO:
2470  *      This symbol, if defined, indicates that <sys/uio.h> exists and
2471  *      should be included.
2472  */
2473 /*#define       I_SYSUIO                /**/
2474
2475 /* I_STDARG:
2476  *      This symbol, if defined, indicates that <stdarg.h> exists and should
2477  *      be included.
2478  */
2479 /* I_VARARGS:
2480  *      This symbol, if defined, indicates to the C program that it should
2481  *      include <varargs.h>.
2482  */
2483 #define I_STDARG                /**/
2484 /*#define I_VARARGS     /**/
2485
2486 /* PERL_INC_VERSION_LIST:
2487  *      This variable specifies the list of subdirectories in over
2488  *      which perl.c:incpush() and lib/lib.pm will automatically
2489  *      search when adding directories to @INC, in a format suitable
2490  *      for a C initialization string.  See the inc_version_list entry
2491  *      in Porting/Glossary for more details.
2492  */
2493 /*#define PERL_INC_VERSION_LIST 0               /**/
2494
2495 /* INSTALL_USR_BIN_PERL:
2496  *      This symbol, if defined, indicates that Perl is to be installed
2497  *      also as /usr/bin/perl.
2498  */
2499 /*#define INSTALL_USR_BIN_PERL  /**/
2500
2501 /* Off_t:
2502  *      This symbol holds the type used to declare offsets in the kernel.
2503  *      It can be int, long, off_t, etc... It may be necessary to include
2504  *      <sys/types.h> to get any typedef'ed information.
2505  */
2506 /* LSEEKSIZE:
2507  *      This symbol holds the number of bytes used by the Off_t.
2508  */
2509 /* Off_t_size:
2510  *      This symbol holds the number of bytes used by the Off_t.
2511  */
2512 #define Off_t long              /* <offset> type */
2513 #define LSEEKSIZE 4             /* <offset> size */
2514 #define Off_t_size 4    /* <offset> size */
2515
2516 /* Free_t:
2517  *      This variable contains the return type of free().  It is usually
2518  * void, but occasionally int.
2519  */
2520 /* Malloc_t:
2521  *      This symbol is the type of pointer returned by malloc and realloc.
2522  */
2523 #define Malloc_t void *                 /**/
2524 #define Free_t void                     /**/
2525
2526 /* PERL_MALLOC_WRAP:
2527  *      This symbol, if defined, indicates that we'd like malloc wrap checks.
2528  */
2529 #define PERL_MALLOC_WRAP                /**/
2530
2531 /* MYMALLOC:
2532  *      This symbol, if defined, indicates that we're using our own malloc.
2533  */
2534 /*#define MYMALLOC                      /**/
2535
2536 /* Mode_t:
2537  *      This symbol holds the type used to declare file modes
2538  *      for systems calls.  It is usually mode_t, but may be
2539  *      int or unsigned short.  It may be necessary to include <sys/types.h>
2540  *      to get any typedef'ed information.
2541  */
2542 #define Mode_t mode_t    /* file mode parameter for system calls */
2543
2544 /* Netdb_host_t:
2545  *      This symbol holds the type used for the 1st argument
2546  *      to gethostbyaddr().
2547  */
2548 /* Netdb_hlen_t:
2549  *      This symbol holds the type used for the 2nd argument
2550  *      to gethostbyaddr().
2551  */
2552 /* Netdb_name_t:
2553  *      This symbol holds the type used for the argument to
2554  *      gethostbyname().
2555  */
2556 /* Netdb_net_t:
2557  *      This symbol holds the type used for the 1st argument to
2558  *      getnetbyaddr().
2559  */
2560 #define Netdb_host_t            char * /**/
2561 #define Netdb_hlen_t            int /**/
2562 #define Netdb_name_t            char * /**/
2563 #define Netdb_net_t             long /**/
2564
2565 /* PERL_OTHERLIBDIRS:
2566  *      This variable contains a colon-separated set of paths for the perl
2567  *      binary to search for additional library files or modules.
2568  *      These directories will be tacked to the end of @INC.
2569  *      Perl will automatically search below each path for version-
2570  *      and architecture-specific directories.  See PERL_INC_VERSION_LIST
2571  *      for more details.
2572  */
2573 /*#define PERL_OTHERLIBDIRS ""          /**/
2574
2575 /* Pid_t:
2576  *      This symbol holds the type used to declare process ids in the kernel.
2577  *      It can be int, uint, pid_t, etc... It may be necessary to include
2578  *      <sys/types.h> to get any typedef'ed information.
2579  */
2580 #define Pid_t int               /* PID type */
2581
2582 /* PRIVLIB:
2583  *      This symbol contains the name of the private library for this package.
2584  *      The library is private in the sense that it needn't be in anyone's
2585  *      execution path, but it should be accessible by the world.  The program
2586  *      should be prepared to do ~ expansion.
2587  */
2588 /* PRIVLIB_EXP:
2589  *      This symbol contains the ~name expanded version of PRIVLIB, to be used
2590  *      in programs that are not prepared to deal with ~ expansion at run-time.
2591  */
2592 #define PRIVLIB "c:\\perl\\lib"         /**/
2593 #define PRIVLIB_EXP (win32_get_privlib("5.11.0"))       /**/
2594
2595 /* CAN_PROTOTYPE:
2596  *      If defined, this macro indicates that the C compiler can handle
2597  *      function prototypes.
2598  */
2599 /* _:
2600  *      This macro is used to declare function parameters for folks who want
2601  *      to make declarations with prototypes using a different style than
2602  *      the above macros.  Use double parentheses.  For example:
2603  *
2604  *              int main _((int argc, char *argv[]));
2605  */
2606 #define CAN_PROTOTYPE   /**/
2607 #ifdef CAN_PROTOTYPE
2608 #define _(args) args
2609 #else
2610 #define _(args) ()
2611 #endif
2612
2613 /* Select_fd_set_t:
2614  *      This symbol holds the type used for the 2nd, 3rd, and 4th
2615  *      arguments to select.  Usually, this is 'fd_set *', if HAS_FD_SET
2616  *      is defined, and 'int *' otherwise.  This is only useful if you
2617  *      have select(), of course.
2618  */
2619 #define Select_fd_set_t         Perl_fd_set *   /**/
2620
2621 /* SH_PATH:
2622  *      This symbol contains the full pathname to the shell used on this
2623  *      on this system to execute Bourne shell scripts.  Usually, this will be
2624  *      /bin/sh, though it's possible that some systems will have /bin/ksh,
2625  *      /bin/pdksh, /bin/ash, /bin/bash, or even something such as
2626  *      D:/bin/sh.exe.
2627  */
2628 #define SH_PATH "cmd /x /c"  /**/
2629
2630 /* SIG_NAME:
2631  *      This symbol contains a list of signal names in order of
2632  *      signal number. This is intended
2633  *      to be used as a static array initialization, like this:
2634  *              char *sig_name[] = { SIG_NAME };
2635  *      The signals in the list are separated with commas, and each signal
2636  *      is surrounded by double quotes. There is no leading SIG in the signal
2637  *      name, i.e. SIGQUIT is known as "QUIT".
2638  *      Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
2639  *      etc., where nn is the actual signal number (e.g. NUM37).
2640  *      The signal number for sig_name[i] is stored in sig_num[i].
2641  *      The last element is 0 to terminate the list with a NULL.  This
2642  *      corresponds to the 0 at the end of the sig_name_init list.
2643  *      Note that this variable is initialized from the sig_name_init,
2644  *      not from sig_name (which is unused).
2645  */
2646 /* SIG_NUM:
2647  *      This symbol contains a list of signal numbers, in the same order as the
2648  *      SIG_NAME list. It is suitable for static array initialization, as in:
2649  *              int sig_num[] = { SIG_NUM };
2650  *      The signals in the list are separated with commas, and the indices
2651  *      within that list and the SIG_NAME list match, so it's easy to compute
2652  *      the signal name from a number or vice versa at the price of a small
2653  *      dynamic linear lookup.
2654  *      Duplicates are allowed, but are moved to the end of the list.
2655  *      The signal number corresponding to sig_name[i] is sig_number[i].
2656  *      if (i < NSIG) then sig_number[i] == i.
2657  *      The last element is 0, corresponding to the 0 at the end of
2658  *      the sig_name_init list.
2659  *      Note that this variable is initialized from the sig_num_init,
2660  *      not from sig_num (which is unused).
2661  */
2662 /* SIG_SIZE:
2663  *      This variable contains the number of elements of the SIG_NAME
2664  *      and SIG_NUM arrays, excluding the final NULL entry.
2665  */
2666 #define SIG_NAME "ZERO", "HUP", "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                /**/
2667 #define SIG_NUM  0, 1, 2, 21, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 20, 0           /**/
2668 #define SIG_SIZE 27                     /**/
2669
2670 /* SITEARCH:
2671  *      This symbol contains the name of the private library for this package.
2672  *      The library is private in the sense that it needn't be in anyone's
2673  *      execution path, but it should be accessible by the world.  The program
2674  *      should be prepared to do ~ expansion.
2675  *      The standard distribution will put nothing in this directory.
2676  *      After perl has been installed, users may install their own local
2677  *      architecture-dependent modules in this directory with
2678  *              MakeMaker Makefile.PL
2679  *      or equivalent.  See INSTALL for details.
2680  */
2681 /* SITEARCH_EXP:
2682  *      This symbol contains the ~name expanded version of SITEARCH, to be used
2683  *      in programs that are not prepared to deal with ~ expansion at run-time.
2684  */
2685 #define SITEARCH "c:\\perl\\site\\lib"          /**/
2686 /*#define SITEARCH_EXP ""       /**/
2687
2688 /* SITELIB:
2689  *      This symbol contains the name of the private library for this package.
2690  *      The library is private in the sense that it needn't be in anyone's
2691  *      execution path, but it should be accessible by the world.  The program
2692  *      should be prepared to do ~ expansion.
2693  *      The standard distribution will put nothing in this directory.
2694  *      After perl has been installed, users may install their own local
2695  *      architecture-independent modules in this directory with
2696  *              MakeMaker Makefile.PL
2697  *      or equivalent.  See INSTALL for details.
2698  */
2699 /* SITELIB_EXP:
2700  *      This symbol contains the ~name expanded version of SITELIB, to be used
2701  *      in programs that are not prepared to deal with ~ expansion at run-time.
2702  */
2703 /* SITELIB_STEM:
2704  *      This define is SITELIB_EXP with any trailing version-specific component
2705  *      removed.  The elements in inc_version_list (inc_version_list.U) can
2706  *      be tacked onto this variable to generate a list of directories to search.
2707  */
2708 #define SITELIB "c:\\perl\\site\\lib"           /**/
2709 #define SITELIB_EXP (win32_get_sitelib("5.11.0"))       /**/
2710 #define SITELIB_STEM ""         /**/
2711
2712 /* Size_t_size:
2713  *      This symbol holds the size of a Size_t in bytes.
2714  */
2715 #define Size_t_size 8           /**/
2716
2717 /* Size_t:
2718  *      This symbol holds the type used to declare length parameters
2719  *      for string functions.  It is usually size_t, but may be
2720  *      unsigned long, int, etc.  It may be necessary to include
2721  *      <sys/types.h> to get any typedef'ed information.
2722  */
2723 #define Size_t size_t    /* length paramater for string functions */
2724
2725 /* Sock_size_t:
2726  *      This symbol holds the type used for the size argument of
2727  *      various socket calls (just the base type, not the pointer-to).
2728  */
2729 #define Sock_size_t             int /**/
2730
2731 /* Uid_t_f:
2732  *      This symbol defines the format string used for printing a Uid_t.
2733  */
2734 #define Uid_t_f         "ld"            /**/
2735
2736 /* Uid_t_sign:
2737  *      This symbol holds the signedess of a Uid_t.
2738  *      1 for unsigned, -1 for signed.
2739  */
2740 #define Uid_t_sign      -1              /* UID sign */
2741
2742 /* Uid_t_size:
2743  *      This symbol holds the size of a Uid_t in bytes.
2744  */
2745 #define Uid_t_size 4            /* UID size */
2746
2747 /* Uid_t:
2748  *      This symbol holds the type used to declare user ids in the kernel.
2749  *      It can be int, ushort, uid_t, etc... It may be necessary to include
2750  *      <sys/types.h> to get any typedef'ed information.
2751  */
2752 #define Uid_t uid_t             /* UID type */
2753
2754 /* USE_ITHREADS:
2755  *      This symbol, if defined, indicates that Perl should be built to
2756  *      use the interpreter-based threading implementation.
2757  */
2758 /* USE_5005THREADS:
2759  *      This symbol, if defined, indicates that Perl should be built to
2760  *      use the 5.005-based threading implementation.
2761  *      Only valid up to 5.8.x.
2762  */
2763 /* OLD_PTHREADS_API:
2764  *      This symbol, if defined, indicates that Perl should
2765  *      be built to use the old draft POSIX threads API.
2766  */
2767 /* USE_REENTRANT_API:
2768  *      This symbol, if defined, indicates that Perl should
2769  *      try to use the various _r versions of library functions.
2770  *      This is extremely experimental.
2771  */
2772 /*#define       USE_5005THREADS         /**/
2773 /*#define       USE_ITHREADS            /**/
2774 #if defined(USE_5005THREADS) && !defined(USE_ITHREADS)
2775 #define         USE_THREADS             /* until src is revised*/
2776 #endif
2777 /*#define       OLD_PTHREADS_API                /**/
2778 /*#define       USE_REENTRANT_API       /**/
2779
2780 /* PERL_VENDORARCH:
2781  *      If defined, this symbol contains the name of a private library.
2782  *      The library is private in the sense that it needn't be in anyone's
2783  *      execution path, but it should be accessible by the world.
2784  *      It may have a ~ on the front.
2785  *      The standard distribution will put nothing in this directory.
2786  *      Vendors who distribute perl may wish to place their own
2787  *      architecture-dependent modules and extensions in this directory with
2788  *              MakeMaker Makefile.PL INSTALLDIRS=vendor
2789  *      or equivalent.  See INSTALL for details.
2790  */
2791 /* PERL_VENDORARCH_EXP:
2792  *      This symbol contains the ~name expanded version of PERL_VENDORARCH, to be used
2793  *      in programs that are not prepared to deal with ~ expansion at run-time.
2794  */
2795 /*#define PERL_VENDORARCH ""            /**/
2796 /*#define PERL_VENDORARCH_EXP ""                /**/
2797
2798 /* PERL_VENDORLIB_EXP:
2799  *      This symbol contains the ~name expanded version of VENDORLIB, to be used
2800  *      in programs that are not prepared to deal with ~ expansion at run-time.
2801  */
2802 /* PERL_VENDORLIB_STEM:
2803  *      This define is PERL_VENDORLIB_EXP with any trailing version-specific component
2804  *      removed.  The elements in inc_version_list (inc_version_list.U) can
2805  *      be tacked onto this variable to generate a list of directories to search.
2806  */
2807 /*#define PERL_VENDORLIB_EXP ""         /**/
2808 /*#define PERL_VENDORLIB_STEM ""                /**/
2809
2810 /* VOIDFLAGS:
2811  *      This symbol indicates how much support of the void type is given by this
2812  *      compiler.  What various bits mean:
2813  *
2814  *          1 = supports declaration of void
2815  *          2 = supports arrays of pointers to functions returning void
2816  *          4 = supports comparisons between pointers to void functions and
2817  *                  addresses of void functions
2818  *          8 = suports declaration of generic void pointers
2819  *
2820  *      The package designer should define VOIDUSED to indicate the requirements
2821  *      of the package.  This can be done either by #defining VOIDUSED before
2822  *      including config.h, or by defining defvoidused in Myinit.U.  If the
2823  *      latter approach is taken, only those flags will be tested.  If the
2824  *      level of void support necessary is not present, defines void to int.
2825  */
2826 #ifndef VOIDUSED
2827 #define VOIDUSED 15
2828 #endif
2829 #define VOIDFLAGS 15
2830 #if (VOIDFLAGS & VOIDUSED) != VOIDUSED
2831 #define void int                /* is void to be avoided? */
2832 #define M_VOID                  /* Xenix strikes again */
2833 #endif
2834
2835 /* USE_CROSS_COMPILE:
2836  *      This symbol, if defined, indicates that Perl is being cross-compiled.
2837  */
2838 /* PERL_TARGETARCH:
2839  *      This symbol, if defined, indicates the target architecture
2840  *      Perl has been cross-compiled to.  Undefined if not a cross-compile.
2841  */
2842 #ifndef USE_CROSS_COMPILE
2843 /*#define       USE_CROSS_COMPILE       /**/
2844 #define PERL_TARGETARCH ""      /**/
2845 #endif
2846
2847 /* MEM_ALIGNBYTES:
2848  *      This symbol contains the number of bytes required to align a
2849  *      double, or a long double when applicable. Usual values are 2,
2850  *      4 and 8. The default is eight, for safety.
2851  */
2852 #if defined(USE_CROSS_COMPILE) || defined(MULTIARCH)
2853 #  define MEM_ALIGNBYTES 8
2854 #else
2855 #define MEM_ALIGNBYTES 8
2856 #endif
2857
2858 /* BYTEORDER:
2859  *      This symbol holds the hexadecimal constant defined in byteorder,
2860  *      in a UV, i.e. 0x1234 or 0x4321 or 0x12345678, etc...
2861  *      If the compiler supports cross-compiling or multiple-architecture
2862  *      binaries (eg. on NeXT systems), use compiler-defined macros to
2863  *      determine the byte order.
2864  *      On NeXT 3.2 (and greater), you can build "Fat" Multiple Architecture
2865  *      Binaries (MAB) on either big endian or little endian machines.
2866  *      The endian-ness is available at compile-time.  This only matters
2867  *      for perl, where the config.h can be generated and installed on
2868  *      one system, and used by a different architecture to build an
2869  *      extension.  Older versions of NeXT that might not have
2870  *      defined either *_ENDIAN__ were all on Motorola 680x0 series,
2871  *      so the default case (for NeXT) is big endian to catch them.
2872  *      This might matter for NeXT 3.0.
2873  */
2874 #if defined(USE_CROSS_COMPILE) || defined(MULTIARCH)
2875 #  ifdef __LITTLE_ENDIAN__
2876 #    if LONGSIZE == 4
2877 #      define BYTEORDER 0x1234
2878 #    else
2879 #      if LONGSIZE == 8
2880 #        define BYTEORDER 0x12345678
2881 #      endif
2882 #    endif
2883 #  else
2884 #    ifdef __BIG_ENDIAN__
2885 #      if LONGSIZE == 4
2886 #        define BYTEORDER 0x4321
2887 #      else
2888 #        if LONGSIZE == 8
2889 #          define BYTEORDER 0x87654321
2890 #        endif
2891 #      endif
2892 #    endif
2893 #  endif
2894 #  if !defined(BYTEORDER) && (defined(NeXT) || defined(__NeXT__))
2895 #    define BYTEORDER 0x4321
2896 #  endif
2897 #else
2898 #define BYTEORDER 0x1234        /* large digits for MSB */
2899 #endif /* NeXT */
2900
2901 /* CASTI32:
2902  *      This symbol is defined if the C compiler can cast negative
2903  *      or large floating point numbers to 32-bit ints.
2904  */
2905 /*#define       CASTI32         /**/
2906
2907 /* CASTNEGFLOAT:
2908  *      This symbol is defined if the C compiler can cast negative
2909  *      numbers to unsigned longs, ints and shorts.
2910  */
2911 /* CASTFLAGS:
2912  *      This symbol contains flags that say what difficulties the compiler
2913  *      has casting odd floating values to unsigned long:
2914  *              0 = ok
2915  *              1 = couldn't cast < 0
2916  *              2 = couldn't cast >= 0x80000000
2917  *              4 = couldn't cast in argument expression list
2918  */
2919 #define CASTNEGFLOAT            /**/
2920 #define CASTFLAGS 0             /**/
2921
2922 /* VOID_CLOSEDIR:
2923  *      This symbol, if defined, indicates that the closedir() routine
2924  *      does not return a value.
2925  */
2926 /*#define VOID_CLOSEDIR         /**/
2927
2928 /* HAS_FD_SET:
2929  *      This symbol, when defined, indicates presence of the fd_set typedef
2930  *      in <sys/types.h>
2931  */
2932 #define HAS_FD_SET      /**/
2933
2934 /* Gconvert:
2935  *      This preprocessor macro is defined to convert a floating point
2936  *      number to a string without a trailing decimal point.  This
2937  *      emulates the behavior of sprintf("%g"), but is sometimes much more
2938  *      efficient.  If gconvert() is not available, but gcvt() drops the
2939  *      trailing decimal point, then gcvt() is used.  If all else fails,
2940  *      a macro using sprintf("%g") is used. Arguments for the Gconvert
2941  *      macro are: value, number of digits, whether trailing zeros should
2942  *      be retained, and the output buffer.
2943  *      The usual values are:
2944  *              d_Gconvert='gconvert((x),(n),(t),(b))'
2945  *              d_Gconvert='gcvt((x),(n),(b))'
2946  *              d_Gconvert='sprintf((b),"%.*g",(n),(x))'
2947  *      The last two assume trailing zeros should not be kept.
2948  */
2949 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
2950
2951 /* HAS_GETPAGESIZE:
2952  *      This symbol, if defined, indicates that the getpagesize system call
2953  *      is available to get system page size, which is the granularity of
2954  *      many memory management calls.
2955  */
2956 /*#define HAS_GETPAGESIZE               /**/
2957
2958 /* HAS_GNULIBC:
2959  *      This symbol, if defined, indicates to the C program that
2960  *      the GNU C library is being used.  A better check is to use
2961  *      the __GLIBC__ and __GLIBC_MINOR__ symbols supplied with glibc.
2962  */
2963 /*#define HAS_GNULIBC   /**/
2964 #if defined(HAS_GNULIBC) && !defined(_GNU_SOURCE)
2965 #   define _GNU_SOURCE
2966 #endif
2967
2968 /* HAS_ISASCII:
2969  *      This manifest constant lets the C program know that isascii
2970  *      is available.
2971  */
2972 #define HAS_ISASCII             /**/
2973
2974 /* HAS_LCHOWN:
2975  *      This symbol, if defined, indicates that the lchown routine is
2976  *      available to operate on a symbolic link (instead of following the
2977  *      link).
2978  */
2979 /*#define HAS_LCHOWN            /**/
2980
2981 /* HAS_OPEN3:
2982  *      This manifest constant lets the C program know that the three
2983  *      argument form of open(2) is available.
2984  */
2985 /*#define HAS_OPEN3             /**/
2986
2987 /* HAS_SAFE_BCOPY:
2988  *      This symbol, if defined, indicates that the bcopy routine is available
2989  *      to copy potentially overlapping memory blocks. Normally, you should
2990  *      probably use memmove() or memcpy(). If neither is defined, roll your
2991  *      own version.
2992  */
2993 /*#define HAS_SAFE_BCOPY        /**/
2994
2995 /* HAS_SAFE_MEMCPY:
2996  *      This symbol, if defined, indicates that the memcpy routine is available
2997  *      to copy potentially overlapping memory blocks.  If you need to
2998  *      copy overlapping memory blocks, you should check HAS_MEMMOVE and
2999  *      use memmove() instead, if available.
3000  */
3001 /*#define HAS_SAFE_MEMCPY       /**/
3002
3003 /* HAS_SANE_MEMCMP:
3004  *      This symbol, if defined, indicates that the memcmp routine is available
3005  *      and can be used to compare relative magnitudes of chars with their high
3006  *      bits set.  If it is not defined, roll your own version.
3007  */
3008 #define HAS_SANE_MEMCMP /**/
3009
3010 /* HAS_SIGACTION:
3011  *      This symbol, if defined, indicates that Vr4's sigaction() routine
3012  *      is available.
3013  */
3014 /*#define HAS_SIGACTION /**/
3015
3016 /* HAS_SIGSETJMP:
3017  *      This variable indicates to the C program that the sigsetjmp()
3018  *      routine is available to save the calling process's registers
3019  *      and stack environment for later use by siglongjmp(), and
3020  *      to optionally save the process's signal mask.  See
3021  *      Sigjmp_buf, Sigsetjmp, and Siglongjmp.
3022  */
3023 /* Sigjmp_buf:
3024  *      This is the buffer type to be used with Sigsetjmp and Siglongjmp.
3025  */
3026 /* Sigsetjmp:
3027  *      This macro is used in the same way as sigsetjmp(), but will invoke
3028  *      traditional setjmp() if sigsetjmp isn't available.
3029  *      See HAS_SIGSETJMP.
3030  */
3031 /* Siglongjmp:
3032  *      This macro is used in the same way as siglongjmp(), but will invoke
3033  *      traditional longjmp() if siglongjmp isn't available.
3034  *      See HAS_SIGSETJMP.
3035  */
3036 /*#define HAS_SIGSETJMP /**/
3037 #ifdef HAS_SIGSETJMP
3038 #define Sigjmp_buf sigjmp_buf
3039 #define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
3040 #define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
3041 #else
3042 #define Sigjmp_buf jmp_buf
3043 #define Sigsetjmp(buf,save_mask) setjmp((buf))
3044 #define Siglongjmp(buf,retval) longjmp((buf),(retval))
3045 #endif
3046
3047 /* USE_STDIO_PTR:
3048  *      This symbol is defined if the _ptr and _cnt fields (or similar)
3049  *      of the stdio FILE structure can be used to access the stdio buffer
3050  *      for a file handle.  If this is defined, then the FILE_ptr(fp)
3051  *      and FILE_cnt(fp) macros will also be defined and should be used
3052  *      to access these fields.
3053  */
3054 /* FILE_ptr:
3055  *      This macro is used to access the _ptr field (or equivalent) of the
3056  *      FILE structure pointed to by its argument. This macro will always be
3057  *      defined if USE_STDIO_PTR is defined.
3058  */
3059 /* STDIO_PTR_LVALUE:
3060  *      This symbol is defined if the FILE_ptr macro can be used as an
3061  *      lvalue.
3062  */
3063 /* FILE_cnt:
3064  *      This macro is used to access the _cnt field (or equivalent) of the
3065  *      FILE structure pointed to by its argument. This macro will always be
3066  *      defined if USE_STDIO_PTR is defined.
3067  */
3068 /* STDIO_CNT_LVALUE:
3069  *      This symbol is defined if the FILE_cnt macro can be used as an
3070  *      lvalue.
3071  */
3072 /* STDIO_PTR_LVAL_SETS_CNT:
3073  *      This symbol is defined if using the FILE_ptr macro as an lvalue
3074  *      to increase the pointer by n has the side effect of decreasing the
3075  *      value of File_cnt(fp) by n.
3076  */
3077 /* STDIO_PTR_LVAL_NOCHANGE_CNT:
3078  *      This symbol is defined if using the FILE_ptr macro as an lvalue
3079  *      to increase the pointer by n leaves File_cnt(fp) unchanged.
3080  */
3081 #define USE_STDIO_PTR   /**/
3082 #ifdef USE_STDIO_PTR
3083 #define FILE_ptr(fp)    ((fp)->_ptr)
3084 #define STDIO_PTR_LVALUE                /**/
3085 #define FILE_cnt(fp)    ((fp)->_cnt)
3086 #define STDIO_CNT_LVALUE                /**/
3087 /*#define STDIO_PTR_LVAL_SETS_CNT       /**/
3088 #define STDIO_PTR_LVAL_NOCHANGE_CNT     /**/
3089 #endif
3090
3091 /* USE_STDIO_BASE:
3092  *      This symbol is defined if the _base field (or similar) of the
3093  *      stdio FILE structure can be used to access the stdio buffer for
3094  *      a file handle.  If this is defined, then the FILE_base(fp) macro
3095  *      will also be defined and should be used to access this field.
3096  *      Also, the FILE_bufsiz(fp) macro will be defined and should be used
3097  *      to determine the number of bytes in the buffer.  USE_STDIO_BASE
3098  *      will never be defined unless USE_STDIO_PTR is.
3099  */
3100 /* FILE_base:
3101  *      This macro is used to access the _base field (or equivalent) of the
3102  *      FILE structure pointed to by its argument. This macro will always be
3103  *      defined if USE_STDIO_BASE is defined.
3104  */
3105 /* FILE_bufsiz:
3106  *      This macro is used to determine the number of bytes in the I/O
3107  *      buffer pointed to by _base field (or equivalent) of the FILE
3108  *      structure pointed to its argument. This macro will always be defined
3109  *      if USE_STDIO_BASE is defined.
3110  */
3111 #define USE_STDIO_BASE  /**/
3112 #ifdef USE_STDIO_BASE
3113 #define FILE_base(fp)   ((fp)->_base)
3114 #define FILE_bufsiz(fp) ((fp)->_cnt + (fp)->_ptr - (fp)->_base)
3115 #endif
3116
3117 /* HAS_VPRINTF:
3118  *      This symbol, if defined, indicates that the vprintf routine is available
3119  *      to printf with a pointer to an argument list.  If unavailable, you
3120  *      may need to write your own, probably in terms of _doprnt().
3121  */
3122 /* USE_CHAR_VSPRINTF:
3123  *      This symbol is defined if this system has vsprintf() returning type
3124  *      (char*).  The trend seems to be to declare it as "int vsprintf()".  It
3125  *      is up to the package author to declare vsprintf correctly based on the
3126  *      symbol.
3127  */
3128 #define HAS_VPRINTF     /**/
3129 /*#define USE_CHAR_VSPRINTF     /**/
3130
3131 /* DOUBLESIZE:
3132  *      This symbol contains the size of a double, so that the C preprocessor
3133  *      can make decisions based on it.
3134  */
3135 #define DOUBLESIZE 8            /**/
3136
3137 /* I_TIME:
3138  *      This symbol, if defined, indicates to the C program that it should
3139  *      include <time.h>.
3140  */
3141 /* I_SYS_TIME:
3142  *      This symbol, if defined, indicates to the C program that it should
3143  *      include <sys/time.h>.
3144  */
3145 /* I_SYS_TIME_KERNEL:
3146  *      This symbol, if defined, indicates to the C program that it should
3147  *      include <sys/time.h> with KERNEL defined.
3148  */
3149 /* HAS_TM_TM_ZONE:
3150  *      This symbol, if defined, indicates to the C program that
3151  *      the struct tm has a tm_zone field.
3152  */
3153 /* HAS_TM_TM_GMTOFF:
3154  *      This symbol, if defined, indicates to the C program that
3155  *      the struct tm has a tm_gmtoff field.
3156  */
3157 #define I_TIME          /**/
3158 /*#define I_SYS_TIME            /**/
3159 /*#define I_SYS_TIME_KERNEL             /**/
3160 /*#define HAS_TM_TM_ZONE                /**/
3161 /*#define HAS_TM_TM_GMTOFF              /**/
3162
3163 /* VAL_O_NONBLOCK:
3164  *      This symbol is to be used during open() or fcntl(F_SETFL) to turn on
3165  *      non-blocking I/O for the file descriptor. Note that there is no way
3166  *      back, i.e. you cannot turn it blocking again this way. If you wish to
3167  *      alternatively switch between blocking and non-blocking, use the
3168  *      ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
3169  */
3170 /* VAL_EAGAIN:
3171  *      This symbol holds the errno error code set by read() when no data was
3172  *      present on the non-blocking file descriptor.
3173  */
3174 /* RD_NODATA:
3175  *      This symbol holds the return code from read() when no data is present
3176  *      on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
3177  *      not defined, then you can't distinguish between no data and EOF by
3178  *      issuing a read(). You'll have to find another way to tell for sure!
3179  */
3180 /* EOF_NONBLOCK:
3181  *      This symbol, if defined, indicates to the C program that a read() on
3182  *      a non-blocking file descriptor will return 0 on EOF, and not the value
3183  *      held in RD_NODATA (-1 usually, in that case!).
3184  */
3185 #define VAL_O_NONBLOCK O_NONBLOCK
3186 #define VAL_EAGAIN EAGAIN
3187 #define RD_NODATA -1
3188 #define EOF_NONBLOCK
3189
3190 /* PTRSIZE:
3191  *      This symbol contains the size of a pointer, so that the C preprocessor
3192  *      can make decisions based on it.  It will be sizeof(void *) if
3193  *      the compiler supports (void *); otherwise it will be
3194  *      sizeof(char *).
3195  */
3196 #define PTRSIZE 8               /**/
3197
3198 /* Drand01:
3199  *      This macro is to be used to generate uniformly distributed
3200  *      random numbers over the range [0., 1.[.  You may have to supply
3201  *      an 'extern double drand48();' in your program since SunOS 4.1.3
3202  *      doesn't provide you with anything relevant in its headers.
3203  *      See HAS_DRAND48_PROTO.
3204  */
3205 /* Rand_seed_t:
3206  *      This symbol defines the type of the argument of the
3207  *      random seed function.
3208  */
3209 /* seedDrand01:
3210  *      This symbol defines the macro to be used in seeding the
3211  *      random number generator (see Drand01).
3212  */
3213 /* RANDBITS:
3214  *      This symbol indicates how many bits are produced by the
3215  *      function used to generate normalized random numbers.
3216  *      Values include 15, 16, 31, and 48.
3217  */
3218 #define Drand01()               (rand()/(double)((unsigned)1<<RANDBITS))                /**/
3219 #define Rand_seed_t             unsigned                /**/
3220 #define seedDrand01(x)  srand((Rand_seed_t)x)   /**/
3221 #define RANDBITS                15              /**/
3222
3223 /* SSize_t:
3224  *      This symbol holds the type used by functions that return
3225  *      a count of bytes or an error condition.  It must be a signed type.
3226  *      It is usually ssize_t, but may be long or int, etc.
3227  *      It may be necessary to include <sys/types.h> or <unistd.h>
3228  *      to get any typedef'ed information.
3229  *      We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
3230  */
3231 #define SSize_t __int64  /* signed count of bytes */
3232
3233 /* EBCDIC:
3234  *     This symbol, if defined, indicates that this system uses
3235  *      EBCDIC encoding.
3236  */
3237 /*#define       EBCDIC          /**/
3238
3239 /* STDCHAR:
3240  *      This symbol is defined to be the type of char used in stdio.h.
3241  *      It has the values "unsigned char" or "char".
3242  */
3243 #define STDCHAR char    /**/
3244
3245 /* HAS_ATOLF:
3246  *      This symbol, if defined, indicates that the atolf routine is
3247  *      available to convert strings into long doubles.
3248  */
3249 /*#define HAS_ATOLF             /**/
3250
3251 /* HAS_ATOLL:
3252  *      This symbol, if defined, indicates that the atoll routine is
3253  *      available to convert strings into long longs.
3254  */
3255 #define HAS_ATOLL               /**/
3256
3257 /* HAS__FWALK:
3258  *      This symbol, if defined, indicates that the _fwalk system call is
3259  *      available to apply a function to all the file handles.
3260  */
3261 /*#define HAS__FWALK            /**/
3262
3263 /* HAS_AINTL:
3264  *      This symbol, if defined, indicates that the aintl routine is
3265  *      available.  If copysignl is also present we can emulate modfl.
3266  */
3267 /*#define HAS_AINTL             /**/
3268
3269 /* HAS_BUILTIN_CHOOSE_EXPR:
3270  *      Can we handle GCC builtin for compile-time ternary-like expressions
3271  */
3272 /* HAS_BUILTIN_EXPECT:
3273  *      Can we handle GCC builtin for telling that certain values are more
3274  *      likely
3275  */
3276 /*#define HAS_BUILTIN_EXPECT    /**/
3277 /*#define HAS_BUILTIN_CHOOSE_EXPR       /**/
3278
3279 /* HAS_C99_VARIADIC_MACROS:
3280  *      If defined, the compiler supports C99 variadic macros.
3281  */
3282 /*#define       HAS_C99_VARIADIC_MACROS /**/
3283
3284 /* HAS_CLASS:
3285  *      This symbol, if defined, indicates that the class routine is
3286  *      available to classify doubles.  Available for example in AIX.
3287  *      The returned values are defined in <float.h> and are:
3288  *
3289  *      FP_PLUS_NORM    Positive normalized, nonzero
3290  *      FP_MINUS_NORM   Negative normalized, nonzero
3291  *      FP_PLUS_DENORM  Positive denormalized, nonzero
3292  *      FP_MINUS_DENORM Negative denormalized, nonzero
3293  *      FP_PLUS_ZERO    +0.0
3294  *      FP_MINUS_ZERO   -0.0
3295  *      FP_PLUS_INF     +INF
3296  *      FP_MINUS_INF    -INF
3297  *      FP_NANS         Signaling Not a Number (NaNS)
3298  *      FP_NANQ         Quiet Not a Number (NaNQ)
3299  */
3300 /*#define HAS_CLASS             /**/
3301
3302 /* HAS_CLEARENV:
3303  *      This symbol, if defined, indicates that the clearenv () routine is
3304  *      available for use.
3305  */
3306 /*#define HAS_CLEARENV          /**/
3307
3308 /* HAS_STRUCT_CMSGHDR:
3309  *      This symbol, if defined, indicates that the struct cmsghdr
3310  *      is supported.
3311  */
3312 /*#define HAS_STRUCT_CMSGHDR    /**/
3313
3314 /* HAS_COPYSIGNL:
3315  *      This symbol, if defined, indicates that the copysignl routine is
3316  *      available.  If aintl is also present we can emulate modfl.
3317  */
3318 /*#define HAS_COPYSIGNL         /**/
3319
3320 /* USE_CPLUSPLUS:
3321  *      This symbol, if defined, indicates that a C++ compiler was
3322  *      used to compiled Perl and will be used to compile extensions.
3323  */
3324 /*#define USE_CPLUSPLUS         /**/
3325
3326 /* HAS_DBMINIT_PROTO:
3327  *      This symbol, if defined, indicates that the system provides
3328  *      a prototype for the dbminit() function.  Otherwise, it is up
3329  *      to the program to supply one.  A good guess is
3330  *              extern int dbminit(char *);
3331  */
3332 /*#define       HAS_DBMINIT_PROTO       /**/
3333
3334 /* HAS_DIR_DD_FD:
3335  *      This symbol, if defined, indicates that the the DIR* dirstream
3336  *      structure contains a member variable named dd_fd.
3337  */
3338 /*#define HAS_DIR_DD_FD         /**/
3339
3340 /* HAS_DIRFD:
3341  *      This manifest constant lets the C program know that dirfd
3342  *      is available.
3343  */
3344 /*#define HAS_DIRFD             /**/
3345
3346 /* DLSYM_NEEDS_UNDERSCORE:
3347  *      This symbol, if defined, indicates that we need to prepend an
3348  *      underscore to the symbol name before calling dlsym().  This only
3349  *      makes sense if you *have* dlsym, which we will presume is the
3350  *      case if you're using dl_dlopen.xs.
3351  */
3352 /*#define       DLSYM_NEEDS_UNDERSCORE  /**/
3353
3354 /* HAS_FAST_STDIO:
3355  *      This symbol, if defined, indicates that the "fast stdio"
3356  *      is available to manipulate the stdio buffers directly.
3357  */
3358 #define HAS_FAST_STDIO          /**/
3359
3360 /* HAS_FCHDIR:
3361  *      This symbol, if defined, indicates that the fchdir routine is
3362  *      available to change directory using a file descriptor.
3363  */
3364 /*#define HAS_FCHDIR            /**/
3365
3366 /* FCNTL_CAN_LOCK:
3367  *      This symbol, if defined, indicates that fcntl() can be used
3368  *      for file locking.  Normally on Unix systems this is defined.
3369  *      It may be undefined on VMS.
3370  */
3371 /*#define FCNTL_CAN_LOCK                /**/
3372
3373 /* HAS_FINITE:
3374  *      This symbol, if defined, indicates that the finite routine is
3375  *      available to check whether a double is finite (non-infinity non-NaN).
3376  */
3377 /*#define HAS_FINITE            /**/
3378
3379 /* HAS_FINITEL:
3380  *      This symbol, if defined, indicates that the finitel routine is
3381  *      available to check whether a long double is finite
3382  *      (non-infinity non-NaN).
3383  */
3384 /*#define HAS_FINITEL           /**/
3385
3386 /* HAS_FLOCK_PROTO:
3387  *      This symbol, if defined, indicates that the system provides
3388  *      a prototype for the flock() function.  Otherwise, it is up
3389  *      to the program to supply one.  A good guess is
3390  *              extern int flock(int, int);
3391  */
3392 #define HAS_FLOCK_PROTO /**/
3393
3394 /* HAS_FP_CLASS:
3395  *      This symbol, if defined, indicates that the fp_class routine is
3396  *      available to classify doubles.  Available for example in Digital UNIX.
3397  *      The returned values are defined in <math.h> and are:
3398  *
3399  *      FP_SNAN           Signaling NaN (Not-a-Number)
3400  *      FP_QNAN           Quiet NaN (Not-a-Number)
3401  *      FP_POS_INF        +infinity
3402  *      FP_NEG_INF        -infinity
3403  *      FP_POS_NORM       Positive normalized
3404  *      FP_NEG_NORM       Negative normalized
3405  *      FP_POS_DENORM     Positive denormalized
3406  *      FP_NEG_DENORM     Negative denormalized
3407  *      FP_POS_ZERO       +0.0 (positive zero)
3408  *      FP_NEG_ZERO       -0.0 (negative zero)
3409  */
3410 /*#define HAS_FP_CLASS          /**/
3411
3412 /* HAS_FPCLASS:
3413  *      This symbol, if defined, indicates that the fpclass routine is
3414  *      available to classify doubles.  Available for example in Solaris/SVR4.
3415  *      The returned values are defined in <ieeefp.h> and are:
3416  *
3417  *      FP_SNAN         signaling NaN
3418  *      FP_QNAN         quiet NaN
3419  *      FP_NINF         negative infinity
3420  *      FP_PINF         positive infinity
3421  *      FP_NDENORM      negative denormalized non-zero
3422  *      FP_PDENORM      positive denormalized non-zero
3423  *      FP_NZERO        negative zero
3424  *      FP_PZERO        positive zero
3425  *      FP_NNORM        negative normalized non-zero
3426  *      FP_PNORM        positive normalized non-zero
3427  */
3428 /*#define HAS_FPCLASS           /**/
3429
3430 /* HAS_FPCLASSIFY:
3431  *      This symbol, if defined, indicates that the fpclassify routine is
3432  *      available to classify doubles.  Available for example in HP-UX.
3433  *      The returned values are defined in <math.h> and are
3434  *
3435  *           FP_NORMAL     Normalized
3436  *           FP_ZERO       Zero
3437  *           FP_INFINITE   Infinity
3438  *           FP_SUBNORMAL  Denormalized
3439  *           FP_NAN        NaN
3440  *
3441  */
3442 /*#define HAS_FPCLASSIFY                /**/
3443
3444 /* HAS_FPCLASSL:
3445  *      This symbol, if defined, indicates that the fpclassl routine is
3446  *      available to classify long doubles.  Available for example in IRIX.
3447  *      The returned values are defined in <ieeefp.h> and are:
3448  *
3449  *      FP_SNAN         signaling NaN
3450  *      FP_QNAN         quiet NaN
3451  *      FP_NINF         negative infinity
3452  *      FP_PINF         positive infinity
3453  *      FP_NDENORM      negative denormalized non-zero
3454  *      FP_PDENORM      positive denormalized non-zero
3455  *      FP_NZERO        negative zero
3456  *      FP_PZERO        positive zero
3457  *      FP_NNORM        negative normalized non-zero
3458  *      FP_PNORM        positive normalized non-zero
3459  */
3460 /*#define HAS_FPCLASSL          /**/
3461
3462 /* HAS_FPOS64_T:
3463  *      This symbol will be defined if the C compiler supports fpos64_t.
3464  */
3465 /*#define       HAS_FPOS64_T            /**/
3466
3467 /* HAS_FREXPL:
3468  *      This symbol, if defined, indicates that the frexpl routine is
3469  *      available to break a long double floating-point number into
3470  *      a normalized fraction and an integral power of 2.
3471  */
3472 /*#define HAS_FREXPL            /**/
3473
3474 /* HAS_STRUCT_FS_DATA:
3475  *      This symbol, if defined, indicates that the struct fs_data
3476  *      to do statfs() is supported.
3477  */
3478 /*#define HAS_STRUCT_FS_DATA    /**/
3479
3480 /* HAS_FSEEKO:
3481  *      This symbol, if defined, indicates that the fseeko routine is
3482  *      available to fseek beyond 32 bits (useful for ILP32 hosts).
3483  */
3484 /*#define HAS_FSEEKO            /**/
3485
3486 /* HAS_FSTATFS:
3487  *      This symbol, if defined, indicates that the fstatfs routine is
3488  *      available to stat filesystems by file descriptors.
3489  */
3490 /*#define HAS_FSTATFS           /**/
3491
3492 /* HAS_FSYNC:
3493  *      This symbol, if defined, indicates that the fsync routine is
3494  *      available to write a file's modified data and attributes to
3495  *      permanent storage.
3496  */
3497 /*#define HAS_FSYNC             /**/
3498
3499 /* HAS_FTELLO:
3500  *      This symbol, if defined, indicates that the ftello routine is
3501  *      available to ftell beyond 32 bits (useful for ILP32 hosts).
3502  */
3503 /*#define HAS_FTELLO            /**/
3504
3505 /* HAS_FUTIMES:
3506  *      This symbol, if defined, indicates that the futimes routine is
3507  *      available to change file descriptor time stamps with struct timevals.
3508  */
3509 /*#define HAS_FUTIMES           /**/
3510
3511 /* HAS_GETCWD:
3512  *      This symbol, if defined, indicates that the getcwd routine is
3513  *      available to get the current working directory.
3514  */
3515 #define HAS_GETCWD              /**/
3516
3517 /* HAS_GETESPWNAM:
3518  *      This symbol, if defined, indicates that the getespwnam system call is
3519  *      available to retrieve enchanced (shadow) password entries by name.
3520  */
3521 /*#define HAS_GETESPWNAM                /**/
3522
3523 /* HAS_GETFSSTAT:
3524  *      This symbol, if defined, indicates that the getfsstat routine is
3525  *      available to stat filesystems in bulk.
3526  */
3527 /*#define HAS_GETFSSTAT         /**/
3528
3529 /* HAS_GETITIMER:
3530  *      This symbol, if defined, indicates that the getitimer routine is
3531  *      available to return interval timers.
3532  */
3533 /*#define HAS_GETITIMER         /**/
3534
3535 /* HAS_GETMNT:
3536  *      This symbol, if defined, indicates that the getmnt routine is
3537  *      available to get filesystem mount info by filename.
3538  */
3539 /*#define HAS_GETMNT            /**/
3540
3541 /* HAS_GETMNTENT:
3542  *      This symbol, if defined, indicates that the getmntent routine is
3543  *      available to iterate through mounted file systems to get their info.
3544  */
3545 /*#define HAS_GETMNTENT         /**/
3546
3547 /* HAS_GETPRPWNAM:
3548  *      This symbol, if defined, indicates that the getprpwnam system call is
3549  *      available to retrieve protected (shadow) password entries by name.
3550  */
3551 /*#define HAS_GETPRPWNAM                /**/
3552
3553 /* HAS_GETSPNAM:
3554  *      This symbol, if defined, indicates that the getspnam system call is
3555  *      available to retrieve SysV shadow password entries by name.
3556  */
3557 /*#define HAS_GETSPNAM          /**/
3558
3559 /* HAS_HASMNTOPT:
3560  *      This symbol, if defined, indicates that the hasmntopt routine is
3561  *      available to query the mount options of file systems.
3562  */
3563 /*#define HAS_HASMNTOPT         /**/
3564
3565 /* HAS_ILOGBL:
3566  *      This symbol, if defined, indicates that the ilogbl routine is
3567  *      available.  If scalbnl is also present we can emulate frexpl.
3568  */
3569 /*#define HAS_ILOGBL            /**/
3570
3571 /* HAS_INT64_T:
3572  *     This symbol will defined if the C compiler supports int64_t.
3573  *     Usually the <inttypes.h> needs to be included, but sometimes
3574  *      <sys/types.h> is enough.
3575  */
3576 /*#define     HAS_INT64_T               /**/
3577
3578 /* HAS_ISFINITE:
3579  *      This symbol, if defined, indicates that the isfinite routine is
3580  *      available to check whether a double is finite (non-infinity non-NaN).
3581  */
3582 /*#define HAS_ISFINITE          /**/
3583
3584 /* HAS_ISINF:
3585  *      This symbol, if defined, indicates that the isinf routine is
3586  *      available to check whether a double is an infinity.
3587  */
3588 /*#define HAS_ISINF             /**/
3589
3590 /* HAS_ISNAN:
3591  *      This symbol, if defined, indicates that the isnan routine is
3592  *      available to check whether a double is a NaN.
3593  */
3594 #define HAS_ISNAN               /**/
3595
3596 /* HAS_ISNANL:
3597  *      This symbol, if defined, indicates that the isnanl routine is
3598  *      available to check whether a long double is a NaN.
3599  */
3600 /*#define HAS_ISNANL            /**/
3601
3602 /* HAS_LDBL_DIG:
3603  *      This symbol, if defined, indicates that this system's <float.h>
3604  *      or <limits.h> defines the symbol LDBL_DIG, which is the number
3605  *      of significant digits in a long double precision number. Unlike
3606  *      for DBL_DIG, there's no good guess for LDBL_DIG if it is undefined.
3607  */
3608 #define HAS_LDBL_DIG    /**/
3609
3610 /* LIBM_LIB_VERSION:
3611  *      This symbol, if defined, indicates that libm exports _LIB_VERSION
3612  *      and that math.h defines the enum to manipulate it.
3613  */
3614 /*#define LIBM_LIB_VERSION              /**/
3615
3616 /* HAS_MADVISE:
3617  *      This symbol, if defined, indicates that the madvise system call is
3618  *      available to map a file into memory.
3619  */
3620 /*#define HAS_MADVISE           /**/
3621
3622 /* HAS_MALLOC_SIZE:
3623  *      This symbol, if defined, indicates that the malloc_size
3624  *      routine is available for use.
3625  */
3626 /*#define HAS_MALLOC_SIZE               /**/
3627
3628 /* HAS_MALLOC_GOOD_SIZE:
3629  *      This symbol, if defined, indicates that the malloc_good_size
3630  *      routine is available for use.
3631  */
3632 /*#define HAS_MALLOC_GOOD_SIZE  /**/
3633
3634 /* HAS_MKDTEMP:
3635  *      This symbol, if defined, indicates that the mkdtemp routine is
3636  *      available to exclusively create a uniquely named temporary directory.
3637  */
3638 /*#define HAS_MKDTEMP           /**/
3639
3640 /* HAS_MKSTEMPS:
3641  *      This symbol, if defined, indicates that the mkstemps routine is
3642  *      available to excluslvely create and open a uniquely named
3643  *      (with a suffix) temporary file.
3644  */
3645 /*#define HAS_MKSTEMPS          /**/
3646
3647 /* HAS_MODFL:
3648  *      This symbol, if defined, indicates that the modfl routine is
3649  *      available to split a long double x into a fractional part f and
3650  *      an integer part i such that |f| < 1.0 and (f + i) = x.
3651  */
3652 /* HAS_MODFL_PROTO:
3653  *      This symbol, if defined, indicates that the system provides
3654  *      a prototype for the modfl() function.  Otherwise, it is up
3655  *      to the program to supply one.
3656  */
3657 /* HAS_MODFL_POW32_BUG:
3658  *      This symbol, if defined, indicates that the modfl routine is
3659  *      broken for long doubles >= pow(2, 32).
3660  *      For example from 4294967303.150000 one would get 4294967302.000000
3661  *      and 1.150000.  The bug has been seen in certain versions of glibc,
3662  *      release 2.2.2 is known to be okay.
3663  */
3664 /*#define HAS_MODFL             /**/
3665 /*#define HAS_MODFL_PROTO               /**/
3666 /*#define HAS_MODFL_POW32_BUG           /**/
3667
3668 /* HAS_MPROTECT:
3669  *      This symbol, if defined, indicates that the mprotect system call is
3670  *      available to modify the access protection of a memory mapped file.
3671  */
3672 /*#define HAS_MPROTECT          /**/
3673
3674 /* HAS_STRUCT_MSGHDR:
3675  *      This symbol, if defined, indicates that the struct msghdr
3676  *      is supported.
3677  */
3678 /*#define HAS_STRUCT_MSGHDR     /**/
3679
3680 /* HAS_NL_LANGINFO:
3681  *      This symbol, if defined, indicates that the nl_langinfo routine is
3682  *      available to return local data.  You will also need <langinfo.h>
3683  *      and therefore I_LANGINFO.
3684  */
3685 /*#define HAS_NL_LANGINFO               /**/
3686
3687 /* HAS_OFF64_T:
3688  *      This symbol will be defined if the C compiler supports off64_t.
3689  */
3690 /*#define       HAS_OFF64_T             /**/
3691
3692 /* HAS_PROCSELFEXE:
3693  *      This symbol is defined if PROCSELFEXE_PATH is a symlink
3694  *      to the absolute pathname of the executing program.
3695  */
3696 /* PROCSELFEXE_PATH:
3697  *      If HAS_PROCSELFEXE is defined this symbol is the filename
3698  *      of the symbolic link pointing to the absolute pathname of
3699  *      the executing program.
3700  */
3701 /*#define HAS_PROCSELFEXE       /**/
3702 #if defined(HAS_PROCSELFEXE) && !defined(PROCSELFEXE_PATH)
3703 #define PROCSELFEXE_PATH                /**/
3704 #endif
3705
3706 /* HAS_PTHREAD_ATTR_SETSCOPE:
3707  *      This symbol, if defined, indicates that the pthread_attr_setscope
3708  *      system call is available to set the contention scope attribute of
3709  *      a thread attribute object.
3710  */
3711 /*#define HAS_PTHREAD_ATTR_SETSCOPE             /**/
3712
3713 /* HAS_READV:
3714  *      This symbol, if defined, indicates that the readv routine is
3715  *      available to do gather reads.  You will also need <sys/uio.h>
3716  *      and there I_SYSUIO.
3717  */
3718 /*#define HAS_READV             /**/
3719
3720 /* HAS_RECVMSG:
3721  *      This symbol, if defined, indicates that the recvmsg routine is
3722  *      available to send structured socket messages.
3723  */
3724 /*#define HAS_RECVMSG           /**/
3725
3726 /* HAS_SBRK_PROTO:
3727  *      This symbol, if defined, indicates that the system provides
3728  *      a prototype for the sbrk() function.  Otherwise, it is up
3729  *      to the program to supply one.  Good guesses are
3730  *              extern void* sbrk(int);
3731  *              extern void* sbrk(size_t);
3732  */
3733 /*#define       HAS_SBRK_PROTO  /**/
3734
3735 /* HAS_SCALBNL:
3736  *      This symbol, if defined, indicates that the scalbnl routine is
3737  *      available.  If ilogbl is also present we can emulate frexpl.
3738  */
3739 /*#define HAS_SCALBNL           /**/
3740
3741 /* HAS_SENDMSG:
3742  *      This symbol, if defined, indicates that the sendmsg routine is
3743  *      available to send structured socket messages.
3744  */
3745 /*#define HAS_SENDMSG           /**/
3746
3747 /* HAS_SETITIMER:
3748  *      This symbol, if defined, indicates that the setitimer routine is
3749  *      available to set interval timers.
3750  */
3751 /*#define HAS_SETITIMER         /**/
3752
3753 /* HAS_SETPROCTITLE:
3754  *      This symbol, if defined, indicates that the setproctitle routine is
3755  *      available to set process title.
3756  */
3757 /*#define HAS_SETPROCTITLE              /**/
3758
3759 /* USE_SFIO:
3760  *      This symbol, if defined, indicates that sfio should
3761  *      be used.
3762  */
3763 /*#define       USE_SFIO                /**/
3764
3765 /* HAS_SIGNBIT:
3766  *      This symbol, if defined, indicates that the signbit routine is
3767  *      available to check if the given number has the sign bit set.
3768  *      This should include correct testing of -0.0.  This will only be set
3769  *      if the signbit() routine is safe to use with the NV type used internally
3770  *      in perl.  Users should call Perl_signbit(), which will be #defined to
3771  *      the system's signbit() function or macro if this symbol is defined.
3772  */
3773 /*#define HAS_SIGNBIT           /**/
3774
3775 /* HAS_SIGPROCMASK:
3776  *      This symbol, if defined, indicates that the sigprocmask
3777  *      system call is available to examine or change the signal mask
3778  *      of the calling process.
3779  */
3780 /*#define HAS_SIGPROCMASK               /**/
3781
3782 /* USE_SITECUSTOMIZE:
3783  *      This symbol, if defined, indicates that sitecustomize should
3784  *      be used.
3785  */
3786 #ifndef USE_SITECUSTOMIZE
3787 /*#define       USE_SITECUSTOMIZE               /**/
3788 #endif
3789
3790 /* HAS_SNPRINTF:
3791  *      This symbol, if defined, indicates that the snprintf () library
3792  *      function is available for use.
3793  */
3794 /* HAS_VSNPRINTF:
3795  *      This symbol, if defined, indicates that the vsnprintf () library
3796  *      function is available for use.
3797  */
3798 #define HAS_SNPRINTF    /**/
3799 #define HAS_VSNPRINTF   /**/
3800
3801 /* HAS_SOCKATMARK:
3802  *      This symbol, if defined, indicates that the sockatmark routine is
3803  *      available to test whether a socket is at the out-of-band mark.
3804  */
3805 /*#define HAS_SOCKATMARK                /**/
3806
3807 /* HAS_SOCKATMARK_PROTO:
3808  *      This symbol, if defined, indicates that the system provides
3809  *      a prototype for the sockatmark() function.  Otherwise, it is up
3810  *      to the program to supply one.  A good guess is
3811  *              extern int sockatmark(int);
3812  */
3813 /*#define       HAS_SOCKATMARK_PROTO    /**/
3814
3815 /* HAS_SOCKS5_INIT:
3816  *      This symbol, if defined, indicates that the socks5_init routine is
3817  *      available to initialize SOCKS 5.
3818  */
3819 /*#define HAS_SOCKS5_INIT               /**/
3820
3821 /* SPRINTF_RETURNS_STRLEN:
3822  *      This variable defines whether sprintf returns the length of the string
3823  *      (as per the ANSI spec). Some C libraries retain compatibility with
3824  *      pre-ANSI C and return a pointer to the passed in buffer; for these
3825  *      this variable will be undef.
3826  */
3827 #define SPRINTF_RETURNS_STRLEN  /**/
3828
3829 /* HAS_SQRTL:
3830  *      This symbol, if defined, indicates that the sqrtl routine is
3831  *      available to do long double square roots.
3832  */
3833 /*#define HAS_SQRTL             /**/
3834
3835 /* HAS_SETRESGID_PROTO:
3836  *      This symbol, if defined, indicates that the system provides
3837  *      a prototype for the setresgid() function.  Otherwise, it is up
3838  *      to the program to supply one.  Good guesses are
3839  *              extern int setresgid(uid_t ruid, uid_t euid, uid_t suid);
3840  */
3841 /*#define       HAS_SETRESGID_PROTO     /**/
3842
3843 /* HAS_SETRESUID_PROTO:
3844  *      This symbol, if defined, indicates that the system provides
3845  *      a prototype for the setresuid() function.  Otherwise, it is up
3846  *      to the program to supply one.  Good guesses are
3847  *              extern int setresuid(uid_t ruid, uid_t euid, uid_t suid);
3848  */
3849 /*#define       HAS_SETRESUID_PROTO     /**/
3850
3851 /* HAS_STRUCT_STATFS_F_FLAGS:
3852  *      This symbol, if defined, indicates that the struct statfs
3853  *      does have the f_flags member containing the mount flags of
3854  *      the filesystem containing the file.
3855  *      This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3),
3856  *      not from <sys/statfs.h> (SYSV).  Older BSDs (like Ultrix) do not
3857  *      have statfs() and struct statfs, they have ustat() and getmnt()
3858  *      with struct ustat and struct fs_data.
3859  */
3860 /*#define HAS_STRUCT_STATFS_F_FLAGS             /**/
3861
3862 /* HAS_STRUCT_STATFS:
3863  *      This symbol, if defined, indicates that the struct statfs
3864  *      to do statfs() is supported.
3865  */
3866 /*#define HAS_STRUCT_STATFS     /**/
3867
3868 /* HAS_FSTATVFS:
3869  *      This symbol, if defined, indicates that the fstatvfs routine is
3870  *      available to stat filesystems by file descriptors.
3871  */
3872 /*#define HAS_FSTATVFS          /**/
3873
3874 /* HAS_STRFTIME:
3875  *      This symbol, if defined, indicates that the strftime routine is
3876  *      available to do time formatting.
3877  */
3878 #define HAS_STRFTIME            /**/
3879
3880 /* HAS_STRLCAT:
3881  *      This symbol, if defined, indicates that the strlcat () routine is
3882  *      available to do string concatenation.
3883  */
3884 /*#define HAS_STRLCAT           /**/
3885
3886 /* HAS_STRLCPY:
3887  *      This symbol, if defined, indicates that the strlcpy () routine is
3888  *      available to do string copying.
3889  */
3890 /*#define HAS_STRLCPY           /**/
3891
3892 /* HAS_STRTOLD:
3893  *      This symbol, if defined, indicates that the strtold routine is
3894  *      available to convert strings to long doubles.
3895  */
3896 /*#define HAS_STRTOLD           /**/
3897
3898 /* HAS_STRTOLL:
3899  *      This symbol, if defined, indicates that the strtoll routine is
3900  *      available to convert strings to long longs.
3901  */
3902 #define HAS_STRTOLL             /**/
3903
3904 /* HAS_STRTOQ:
3905  *      This symbol, if defined, indicates that the strtoq routine is
3906  *      available to convert strings to long longs (quads).
3907  */
3908 /*#define HAS_STRTOQ            /**/
3909
3910 /* HAS_STRTOULL:
3911  *      This symbol, if defined, indicates that the strtoull routine is
3912  *      available to convert strings to unsigned long longs.
3913  */
3914 #define HAS_STRTOULL            /**/
3915
3916 /* HAS_STRTOUQ:
3917  *      This symbol, if defined, indicates that the strtouq routine is
3918  *      available to convert strings to unsigned long longs (quads).
3919  */
3920 /*#define HAS_STRTOUQ           /**/
3921
3922 /* HAS_SYSCALL_PROTO:
3923  *      This symbol, if defined, indicates that the system provides
3924  *      a prototype for the syscall() function.  Otherwise, it is up
3925  *      to the program to supply one.  Good guesses are
3926  *              extern int syscall(int,  ...);
3927  *              extern int syscall(long, ...);
3928  */
3929 /*#define       HAS_SYSCALL_PROTO       /**/
3930
3931 /* HAS_TELLDIR_PROTO:
3932  *      This symbol, if defined, indicates that the system provides
3933  *      a prototype for the telldir() function.  Otherwise, it is up
3934  *      to the program to supply one.  A good guess is
3935  *              extern long telldir(DIR*);
3936  */
3937 #define HAS_TELLDIR_PROTO       /**/
3938
3939 /* HAS_TIMEGM:
3940  *      This symbol, if defined, indicates that the timegm routine is
3941  *      available to do the opposite of gmtime ()
3942  */
3943 /*#define HAS_TIMEGM            /**/
3944
3945 /* U32_ALIGNMENT_REQUIRED:
3946  *      This symbol, if defined, indicates that you must access
3947  *      character data through U32-aligned pointers.
3948  */
3949 #ifndef U32_ALIGNMENT_REQUIRED
3950 #define U32_ALIGNMENT_REQUIRED  /**/
3951 #endif
3952
3953 /* HAS_UALARM:
3954  *      This symbol, if defined, indicates that the ualarm routine is
3955  *      available to do alarms with microsecond granularity.
3956  */
3957 /*#define HAS_UALARM            /**/
3958
3959 /* HAS_UNORDERED:
3960  *      This symbol, if defined, indicates that the unordered routine is
3961  *      available to check whether two doubles are unordered
3962  *      (effectively: whether either of them is NaN)
3963  */
3964 /*#define HAS_UNORDERED         /**/
3965
3966 /* HAS_UNSETENV:
3967  *      This symbol, if defined, indicates that the unsetenv () routine is
3968  *      available for use.
3969  */
3970 /*#define HAS_UNSETENV          /**/
3971
3972 /* HAS_USLEEP_PROTO:
3973  *      This symbol, if defined, indicates that the system provides
3974  *      a prototype for the usleep() function.  Otherwise, it is up
3975  *      to the program to supply one.  A good guess is
3976  *              extern int usleep(useconds_t);
3977  */
3978 /*#define       HAS_USLEEP_PROTO        /**/
3979
3980 /* HAS_USTAT:
3981  *      This symbol, if defined, indicates that the ustat system call is
3982  *      available to query file system statistics by dev_t.
3983  */
3984 /*#define HAS_USTAT             /**/
3985
3986 /* HAS_WRITEV:
3987  *      This symbol, if defined, indicates that the writev routine is
3988  *      available to do scatter writes.
3989  */
3990 /*#define HAS_WRITEV            /**/
3991
3992 /* USE_DYNAMIC_LOADING:
3993  *      This symbol, if defined, indicates that dynamic loading of
3994  *      some sort is available.
3995  */
3996 #define USE_DYNAMIC_LOADING             /**/
3997
3998 /* FFLUSH_NULL:
3999  *      This symbol, if defined, tells that fflush(NULL) does flush
4000  *      all pending stdio output.
4001  */
4002 /* FFLUSH_ALL:
4003  *      This symbol, if defined, tells that to flush
4004  *      all pending stdio output one must loop through all
4005  *      the stdio file handles stored in an array and fflush them.
4006  *      Note that if fflushNULL is defined, fflushall will not
4007  *      even be probed for and will be left undefined.
4008  */
4009 #define FFLUSH_NULL             /**/
4010 /*#define       FFLUSH_ALL              /**/
4011
4012 /* I_ASSERT:
4013  *      This symbol, if defined, indicates that <assert.h> exists and
4014  *      could be included by the C program to get the assert() macro.
4015  */
4016 #define I_ASSERT                /**/
4017
4018 /* I_CRYPT:
4019  *      This symbol, if defined, indicates that <crypt.h> exists and
4020  *      should be included.
4021  */
4022 /*#define       I_CRYPT         /**/
4023
4024 /* DB_Prefix_t:
4025  *      This symbol contains the type of the prefix structure element
4026  *      in the <db.h> header file.  In older versions of DB, it was
4027  *      int, while in newer ones it is u_int32_t.
4028  */
4029 /* DB_Hash_t:
4030  *      This symbol contains the type of the prefix structure element
4031  *      in the <db.h> header file.  In older versions of DB, it was
4032  *      int, while in newer ones it is size_t.
4033  */
4034 /* DB_VERSION_MAJOR_CFG:
4035  *      This symbol, if defined, defines the major version number of
4036  *      Berkeley DB found in the <db.h> header when Perl was configured.
4037  */
4038 /* DB_VERSION_MINOR_CFG:
4039  *      This symbol, if defined, defines the minor version number of
4040  *      Berkeley DB found in the <db.h> header when Perl was configured.
4041  *      For DB version 1 this is always 0.
4042  */
4043 /* DB_VERSION_PATCH_CFG:
4044  *      This symbol, if defined, defines the patch version number of
4045  *      Berkeley DB found in the <db.h> header when Perl was configured.
4046  *      For DB version 1 this is always 0.
4047  */
4048 #define DB_Hash_t       int             /**/
4049 #define DB_Prefix_t     int     /**/
4050 #define DB_VERSION_MAJOR_CFG    0       /**/
4051 #define DB_VERSION_MINOR_CFG    0       /**/
4052 #define DB_VERSION_PATCH_CFG    0       /**/
4053
4054 /* I_FP:
4055  *      This symbol, if defined, indicates that <fp.h> exists and
4056  *      should be included.
4057  */
4058 /*#define       I_FP            /**/
4059
4060 /* I_FP_CLASS:
4061  *      This symbol, if defined, indicates that <fp_class.h> exists and
4062  *      should be included.
4063  */
4064 /*#define       I_FP_CLASS              /**/
4065
4066 /* I_IEEEFP:
4067  *      This symbol, if defined, indicates that <ieeefp.h> exists and
4068  *      should be included.
4069  */
4070 /*#define       I_IEEEFP                /**/
4071
4072 /* I_INTTYPES:
4073  *     This symbol, if defined, indicates to the C program that it should
4074  *     include <inttypes.h>.
4075  */
4076 /*#define   I_INTTYPES                /**/
4077
4078 /* I_LANGINFO:
4079  *      This symbol, if defined, indicates that <langinfo.h> exists and
4080  *      should be included.
4081  */
4082 /*#define       I_LANGINFO              /**/
4083
4084 /* I_LIBUTIL:
4085  *      This symbol, if defined, indicates that <libutil.h> exists and
4086  *      should be included.
4087  */
4088 /*#define       I_LIBUTIL               /**/
4089
4090 /* I_MALLOCMALLOC:
4091  *      This symbol, if defined, indicates to the C program that it should
4092  *      include <malloc/malloc.h>.
4093  */
4094 /*#define I_MALLOCMALLOC                /**/
4095
4096 /* I_MNTENT:
4097  *      This symbol, if defined, indicates that <mntent.h> exists and
4098  *      should be included.
4099  */
4100 /*#define       I_MNTENT                /**/
4101
4102 /* I_NETINET_TCP:
4103  *     This symbol, if defined, indicates to the C program that it should
4104  *     include <netinet/tcp.h>.
4105  */
4106 /*#define   I_NETINET_TCP                /**/
4107
4108 /* I_POLL:
4109  *      This symbol, if defined, indicates that <poll.h> exists and
4110  *      should be included. (see also HAS_POLL)
4111  */
4112 /*#define       I_POLL          /**/
4113
4114 /* I_PROT:
4115  *      This symbol, if defined, indicates that <prot.h> exists and
4116  *      should be included.
4117  */
4118 /*#define       I_PROT          /**/
4119
4120 /* I_SHADOW:
4121  *      This symbol, if defined, indicates that <shadow.h> exists and
4122  *      should be included.
4123  */
4124 /*#define       I_SHADOW                /**/
4125
4126 /* I_SOCKS:
4127  *      This symbol, if defined, indicates that <socks.h> exists and
4128  *      should be included.
4129  */
4130 /*#define       I_SOCKS         /**/
4131
4132 /* I_SUNMATH:
4133  *      This symbol, if defined, indicates that <sunmath.h> exists and
4134  *      should be included.
4135  */
4136 /*#define       I_SUNMATH               /**/
4137
4138 /* I_SYSLOG:
4139  *      This symbol, if defined, indicates that <syslog.h> exists and
4140  *      should be included.
4141  */
4142 /*#define       I_SYSLOG                /**/
4143
4144 /* I_SYSMODE:
4145  *      This symbol, if defined, indicates that <sys/mode.h> exists and
4146  *      should be included.
4147  */
4148 /*#define       I_SYSMODE               /**/
4149
4150 /* I_SYS_MOUNT:
4151  *      This symbol, if defined, indicates that <sys/mount.h> exists and
4152  *      should be included.
4153  */
4154 /*#define       I_SYS_MOUNT             /**/
4155
4156 /* I_SYS_STATFS:
4157  *      This symbol, if defined, indicates that <sys/statfs.h> exists.
4158  */
4159 /*#define       I_SYS_STATFS            /**/
4160
4161 /* I_SYS_STATVFS:
4162  *      This symbol, if defined, indicates that <sys/statvfs.h> exists and
4163  *      should be included.
4164  */
4165 /*#define       I_SYS_STATVFS           /**/
4166
4167 /* I_SYSUTSNAME:
4168  *      This symbol, if defined, indicates that <sys/utsname.h> exists and
4169  *      should be included.
4170  */
4171 /*#define       I_SYSUTSNAME            /**/
4172
4173 /* I_SYS_VFS:
4174  *      This symbol, if defined, indicates that <sys/vfs.h> exists and
4175  *      should be included.
4176  */
4177 /*#define       I_SYS_VFS               /**/
4178
4179 /* I_USTAT:
4180  *      This symbol, if defined, indicates that <ustat.h> exists and
4181  *      should be included.
4182  */
4183 /*#define       I_USTAT         /**/
4184
4185 /* PERL_PRIfldbl:
4186  *      This symbol, if defined, contains the string used by stdio to
4187  *      format long doubles (format 'f') for output.
4188  */
4189 /* PERL_PRIgldbl:
4190  *      This symbol, if defined, contains the string used by stdio to
4191  *      format long doubles (format 'g') for output.
4192  */
4193 /* PERL_PRIeldbl:
4194  *      This symbol, if defined, contains the string used by stdio to
4195  *      format long doubles (format 'e') for output.
4196  */
4197 /* PERL_SCNfldbl:
4198  *      This symbol, if defined, contains the string used by stdio to
4199  *      format long doubles (format 'f') for input.
4200  */
4201 /*#define PERL_PRIfldbl "f"     /**/
4202 /*#define PERL_PRIgldbl "g"     /**/
4203 /*#define PERL_PRIeldbl "e"     /**/
4204 /*#define PERL_SCNfldbl "f"     /**/
4205
4206 /* PERL_MAD:
4207  *      This symbol, if defined, indicates that the Misc Attribution
4208  *      Declaration code should be conditionally compiled.
4209  */
4210 /*#define       PERL_MAD                /**/
4211
4212 /* NEED_VA_COPY:
4213  *      This symbol, if defined, indicates that the system stores
4214  *      the variable argument list datatype, va_list, in a format
4215  *      that cannot be copied by simple assignment, so that some
4216  *      other means must be used when copying is required.
4217  *      As such systems vary in their provision (or non-provision)
4218  *      of copying mechanisms, handy.h defines a platform-
4219  *      independent macro, Perl_va_copy(src, dst), to do the job.
4220  */
4221 /*#define       NEED_VA_COPY            /**/
4222
4223 /* IVTYPE:
4224  *      This symbol defines the C type used for Perl's IV.
4225  */
4226 /* UVTYPE:
4227  *      This symbol defines the C type used for Perl's UV.
4228  */
4229 /* I8TYPE:
4230  *      This symbol defines the C type used for Perl's I8.
4231  */
4232 /* U8TYPE:
4233  *      This symbol defines the C type used for Perl's U8.
4234  */
4235 /* I16TYPE:
4236  *      This symbol defines the C type used for Perl's I16.
4237  */
4238 /* U16TYPE:
4239  *      This symbol defines the C type used for Perl's U16.
4240  */
4241 /* I32TYPE:
4242  *      This symbol defines the C type used for Perl's I32.
4243  */
4244 /* U32TYPE:
4245  *      This symbol defines the C type used for Perl's U32.
4246  */
4247 /* I64TYPE:
4248  *      This symbol defines the C type used for Perl's I64.
4249  */
4250 /* U64TYPE:
4251  *      This symbol defines the C type used for Perl's U64.
4252  */
4253 /* NVTYPE:
4254  *      This symbol defines the C type used for Perl's NV.
4255  */
4256 /* IVSIZE:
4257  *      This symbol contains the sizeof(IV).
4258  */
4259 /* UVSIZE:
4260  *      This symbol contains the sizeof(UV).
4261  */
4262 /* I8SIZE:
4263  *      This symbol contains the sizeof(I8).
4264  */
4265 /* U8SIZE:
4266  *      This symbol contains the sizeof(U8).
4267  */
4268 /* I16SIZE:
4269  *      This symbol contains the sizeof(I16).
4270  */
4271 /* U16SIZE:
4272  *      This symbol contains the sizeof(U16).
4273  */
4274 /* I32SIZE:
4275  *      This symbol contains the sizeof(I32).
4276  */
4277 /* U32SIZE:
4278  *      This symbol contains the sizeof(U32).
4279  */
4280 /* I64SIZE:
4281  *      This symbol contains the sizeof(I64).
4282  */
4283 /* U64SIZE:
4284  *      This symbol contains the sizeof(U64).
4285  */
4286 /* NVSIZE:
4287  *      This symbol contains the sizeof(NV).
4288  */
4289 /* NV_PRESERVES_UV:
4290  *      This symbol, if defined, indicates that a variable of type NVTYPE
4291  *      can preserve all the bits of a variable of type UVTYPE.
4292  */
4293 /* NV_PRESERVES_UV_BITS:
4294  *      This symbol contains the number of bits a variable of type NVTYPE
4295  *      can preserve of a variable of type UVTYPE.
4296  */
4297 /* NV_OVERFLOWS_INTEGERS_AT:
4298  *      This symbol gives the largest integer value that NVs can hold. This
4299  *      value + 1.0 cannot be stored accurately. It is expressed as constant
4300  *      floating point expression to reduce the chance of decimale/binary
4301  *      conversion issues. If it can not be determined, the value 0 is given.
4302  */
4303 /* NV_ZERO_IS_ALLBITS_ZERO:
4304  *      This symbol, if defined, indicates that a variable of type NVTYPE
4305  *      stores 0.0 in memory as all bits zero.
4306  */
4307 #define IVTYPE          __int64         /**/
4308 #define UVTYPE          unsigned __int64                /**/
4309 #define I8TYPE          char            /**/
4310 #define U8TYPE          unsigned char           /**/
4311 #define I16TYPE         short   /**/
4312 #define U16TYPE         unsigned short  /**/
4313 #define I32TYPE         long    /**/
4314 #define U32TYPE         unsigned long   /**/
4315 #ifdef HAS_QUAD
4316 #define I64TYPE         __int64 /**/
4317 #define U64TYPE         unsigned __int64        /**/
4318 #endif
4319 #define NVTYPE          double          /**/
4320 #define IVSIZE          8               /**/
4321 #define UVSIZE          8               /**/
4322 #define I8SIZE          1               /**/
4323 #define U8SIZE          1               /**/
4324 #define I16SIZE         2       /**/
4325 #define U16SIZE         2       /**/
4326 #define I32SIZE         4       /**/
4327 #define U32SIZE         4       /**/
4328 #ifdef HAS_QUAD
4329 #define I64SIZE         8       /**/
4330 #define U64SIZE         8       /**/
4331 #endif
4332 #define NVSIZE          8               /**/
4333 #undef  NV_PRESERVES_UV
4334 #define NV_PRESERVES_UV_BITS    53
4335 #define NV_OVERFLOWS_INTEGERS_AT        256.0*256.0*256.0*256.0*256.0*256.0*2.0*2.0*2.0*2.0*2.0
4336 #define NV_ZERO_IS_ALLBITS_ZERO
4337 #if UVSIZE == 8
4338 #   ifdef BYTEORDER
4339 #       if BYTEORDER == 0x1234
4340 #           undef BYTEORDER
4341 #           define BYTEORDER 0x12345678
4342 #       else
4343 #           if BYTEORDER == 0x4321
4344 #               undef BYTEORDER
4345 #               define BYTEORDER 0x87654321
4346 #           endif
4347 #       endif
4348 #   endif
4349 #endif
4350
4351 /* IVdf:
4352  *      This symbol defines the format string used for printing a Perl IV
4353  *      as a signed decimal integer.
4354  */
4355 /* UVuf:
4356  *      This symbol defines the format string used for printing a Perl UV
4357  *      as an unsigned decimal integer.
4358  */
4359 /* UVof:
4360  *      This symbol defines the format string used for printing a Perl UV
4361  *      as an unsigned octal integer.
4362  */
4363 /* UVxf:
4364  *      This symbol defines the format string used for printing a Perl UV
4365  *      as an unsigned hexadecimal integer in lowercase abcdef.
4366  */
4367 /* UVXf:
4368  *      This symbol defines the format string used for printing a Perl UV
4369  *      as an unsigned hexadecimal integer in uppercase ABCDEF.
4370  */
4371 /* NVef:
4372  *      This symbol defines the format string used for printing a Perl NV
4373  *      using %e-ish floating point format.
4374  */
4375 /* NVff:
4376  *      This symbol defines the format string used for printing a Perl NV
4377  *      using %f-ish floating point format.
4378  */
4379 /* NVgf:
4380  *      This symbol defines the format string used for printing a Perl NV
4381  *      using %g-ish floating point format.
4382  */
4383 #define IVdf            "I64d"          /**/
4384 #define UVuf            "I64u"          /**/
4385 #define UVof            "I64o"          /**/
4386 #define UVxf            "I64x"          /**/
4387 #define UVXf            "I64X"          /**/
4388 #define NVef            "e"             /**/
4389 #define NVff            "f"             /**/
4390 #define NVgf            "g"             /**/
4391
4392 /* SELECT_MIN_BITS:
4393  *      This symbol holds the minimum number of bits operated by select.
4394  *      That is, if you do select(n, ...), how many bits at least will be
4395  *      cleared in the masks if some activity is detected.  Usually this
4396  *      is either n or 32*ceil(n/32), especially many little-endians do
4397  *      the latter.  This is only useful if you have select(), naturally.
4398  */
4399 #define SELECT_MIN_BITS         32      /**/
4400
4401 /* STARTPERL:
4402  *      This variable contains the string to put in front of a perl
4403  *      script to make sure (one hopes) that it runs with perl and not
4404  *      some shell.
4405  */
4406 #define STARTPERL "#!perl"              /**/
4407
4408 /* HAS_STDIO_STREAM_ARRAY:
4409  *      This symbol, if defined, tells that there is an array
4410  *      holding the stdio streams.
4411  */
4412 /* STDIO_STREAM_ARRAY:
4413  *      This symbol tells the name of the array holding the stdio streams.
4414  *      Usual values include _iob, __iob, and __sF.
4415  */
4416 /*#define       HAS_STDIO_STREAM_ARRAY  /**/
4417 #ifdef HAS_STDIO_STREAM_ARRAY
4418 #define STDIO_STREAM_ARRAY      
4419 #endif
4420
4421 /* GMTIME_MAX:
4422  *      This symbol contains the maximum value for the time_t offset that
4423  *      the system function gmtime () accepts, and defaults to 0
4424  */
4425 /* GMTIME_MIN:
4426  *      This symbol contains the minimum value for the time_t offset that
4427  *      the system function gmtime () accepts, and defaults to 0
4428  */
4429 #define GMTIME_MAX      2147483647      /**/
4430 #define GMTIME_MIN      0       /**/
4431
4432 /* USE_64_BIT_INT:
4433  *      This symbol, if defined, indicates that 64-bit integers should
4434  *      be used when available.  If not defined, the native integers
4435  *      will be employed (be they 32 or 64 bits).  The minimal possible
4436  *      64-bitness is used, just enough to get 64-bit integers into Perl.
4437  *      This may mean using for example "long longs", while your memory
4438  *      may still be limited to 2 gigabytes.
4439  */
4440 /* USE_64_BIT_ALL:
4441  *      This symbol, if defined, indicates that 64-bit integers should
4442  *      be used when available.  If not defined, the native integers
4443  *      will be used (be they 32 or 64 bits).  The maximal possible
4444  *      64-bitness is employed: LP64 or ILP64, meaning that you will
4445  *      be able to use more than 2 gigabytes of memory.  This mode is
4446  *      even more binary incompatible than USE_64_BIT_INT. You may not
4447  *      be able to run the resulting executable in a 32-bit CPU at all or
4448  *      you may need at least to reboot your OS to 64-bit mode.
4449  */
4450 #ifndef USE_64_BIT_INT
4451 #define USE_64_BIT_INT          /**/
4452 #endif
4453 #ifndef USE_64_BIT_ALL
4454 /*#define       USE_64_BIT_ALL          /**/
4455 #endif
4456
4457 /* USE_DTRACE:
4458  *      This symbol, if defined, indicates that Perl should
4459  *      be built with support for DTrace.
4460  */
4461 /*#define USE_DTRACE            /**/
4462
4463 /* USE_FAST_STDIO:
4464  *      This symbol, if defined, indicates that Perl should
4465  *      be built to use 'fast stdio'.
4466  *      Defaults to define in Perls 5.8 and earlier, to undef later.
4467  */
4468 #ifndef USE_FAST_STDIO
4469 /*#define       USE_FAST_STDIO          /**/
4470 #endif
4471
4472 /* USE_LARGE_FILES:
4473  *      This symbol, if defined, indicates that large file support
4474  *      should be used when available.
4475  */
4476 #ifndef USE_LARGE_FILES
4477 /*#define       USE_LARGE_FILES         /**/
4478 #endif
4479
4480 /* USE_LONG_DOUBLE:
4481  *      This symbol, if defined, indicates that long doubles should
4482  *      be used when available.
4483  */
4484 #ifndef USE_LONG_DOUBLE
4485 /*#define       USE_LONG_DOUBLE         /**/
4486 #endif
4487
4488 /* USE_MORE_BITS:
4489  *      This symbol, if defined, indicates that 64-bit interfaces and
4490  *      long doubles should be used when available.
4491  */
4492 #ifndef USE_MORE_BITS
4493 /*#define       USE_MORE_BITS           /**/
4494 #endif
4495
4496 /* MULTIPLICITY:
4497  *      This symbol, if defined, indicates that Perl should
4498  *      be built to use multiplicity.
4499  */
4500 #ifndef MULTIPLICITY
4501 /*#define       MULTIPLICITY            /**/
4502 #endif
4503
4504 /* USE_PERLIO:
4505  *      This symbol, if defined, indicates that the PerlIO abstraction should
4506  *      be used throughout.  If not defined, stdio should be
4507  *      used in a fully backward compatible manner.
4508  */
4509 #ifndef USE_PERLIO
4510 /*#define       USE_PERLIO              /**/
4511 #endif
4512
4513 /* USE_SOCKS:
4514  *      This symbol, if defined, indicates that Perl should
4515  *      be built to use socks.
4516  */
4517 #ifndef USE_SOCKS
4518 /*#define       USE_SOCKS               /**/
4519 #endif
4520
4521 #endif