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