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