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