This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Simplify the code related to prime_env_iter().
[perl5.git] / config_h.SH
1 #!/bin/sh
2 #
3 # THIS IS A GENERATED FILE
4 # DO NOT HAND-EDIT
5 #
6 # See Porting/config_h.pl
7
8 : Set up for generating config_h.SH
9 case "$CONFIG_SH" in
10 '') CONFIG_SH=config.sh;;
11 esac
12 case "$CONFIG_H" in
13 '') CONFIG_H=config.h;;
14 esac
15 case $PERL_CONFIG_SH in
16 '')
17         if test -f $CONFIG_SH; then TOP=.;
18         elif test -f ../$CONFIG_SH; then TOP=..;
19         elif test -f ../../$CONFIG_SH; then TOP=../..;
20         elif test -f ../../../$CONFIG_SH; then TOP=../../..;
21         elif test -f ../../../../$CONFIG_SH; then TOP=../../../..;
22         else
23                 echo "Can't find $CONFIG_SH."; exit 1
24         fi
25         . $TOP/$CONFIG_SH
26         ;;
27 esac
28 case "$0" in
29 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
30 esac
31 case "$CONFIG_H" in
32 already-done) echo "Not re-extracting config.h" ;;
33 *)
34 echo "Extracting $CONFIG_H (with variable substitutions)"
35 sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un-def!#undef!'
36 /* This file was produced by running the config_h.SH script, which
37  * gets its values from $CONFIG_SH, which is generally produced by
38  * running Configure.
39  *
40  * Feel free to modify any of this as the need arises.  Note, however,
41  * that running config_h.SH again will wipe out any changes you've made.
42  * For a more permanent change edit $CONFIG_SH and rerun config_h.SH.
43  */
44
45 /* Package name      : $package
46  * Source directory  : $src
47  * Configuration time: $cf_time
48  * Configured by     : $cf_by
49  * Target system     : $myuname
50  */
51
52 #ifndef _config_h_
53 #define _config_h_
54
55 /* LOC_SED:
56  *      This symbol holds the complete pathname to the sed program.
57  */
58 #define LOC_SED         "$full_sed"     /**/
59
60 /* HAS_ALARM:
61  *      This symbol, if defined, indicates that the alarm routine is
62  *      available.
63  */
64 #$d_alarm HAS_ALARM             /**/
65
66 /* HAS_CBRT:
67  *      This symbol, if defined, indicates that the cbrt() (cube root)
68  *      function is available.
69  */
70 #$d_cbrt HAS_CBRT       /**/
71
72 /* HAS_CHOWN:
73  *      This symbol, if defined, indicates that the chown routine is
74  *      available.
75  */
76 #$d_chown HAS_CHOWN             /**/
77
78 /* HAS_CHROOT:
79  *      This symbol, if defined, indicates that the chroot routine is
80  *      available.
81  */
82 #$d_chroot HAS_CHROOT           /**/
83
84 /* HAS_CHSIZE:
85  *      This symbol, if defined, indicates that the chsize routine is available
86  *      to truncate files.  You might need a -lx to get this routine.
87  */
88 #$d_chsize      HAS_CHSIZE              /**/
89
90 /* HAS_CRYPT:
91  *      This symbol, if defined, indicates that the crypt routine is available
92  *      to encrypt passwords and the like.
93  */
94 #$d_crypt HAS_CRYPT             /**/
95
96 /* HAS_CTERMID:
97  *      This symbol, if defined, indicates that the ctermid routine is
98  *      available to generate filename for terminal.
99  */
100 #$d_ctermid HAS_CTERMID         /**/
101
102 /* HAS_CUSERID:
103  *      This symbol, if defined, indicates that the cuserid routine is
104  *      available to get character login names.
105  */
106 #$d_cuserid HAS_CUSERID         /**/
107
108 /* HAS_DIFFTIME:
109  *      This symbol, if defined, indicates that the difftime routine is
110  *      available.
111  */
112 #$d_difftime HAS_DIFFTIME               /**/
113
114 /* HAS_DLERROR:
115  *      This symbol, if defined, indicates that the dlerror routine is
116  *      available to return a string describing the last error that
117  *      occurred from a call to dlopen(), dlclose() or dlsym().
118  */
119 #$d_dlerror HAS_DLERROR /**/
120
121 /* HAS_DUP2:
122  *      This symbol, if defined, indicates that the dup2 routine is
123  *      available to duplicate file descriptors.
124  */
125 #$d_dup2 HAS_DUP2       /**/
126
127 /* HAS_FCHMOD:
128  *      This symbol, if defined, indicates that the fchmod routine is available
129  *      to change mode of opened files.  If unavailable, use chmod().
130  */
131 #$d_fchmod HAS_FCHMOD           /**/
132
133 /* HAS_FCHOWN:
134  *      This symbol, if defined, indicates that the fchown routine is available
135  *      to change ownership of opened files.  If unavailable, use chown().
136  */
137 #$d_fchown HAS_FCHOWN           /**/
138
139 /* HAS_FCNTL:
140  *      This symbol, if defined, indicates to the C program that
141  *      the fcntl() function exists.
142  */
143 #$d_fcntl HAS_FCNTL             /**/
144
145 /* HAS_FGETPOS:
146  *      This symbol, if defined, indicates that the fgetpos routine is
147  *      available to get the file position indicator, similar to ftell().
148  */
149 #$d_fgetpos HAS_FGETPOS /**/
150
151 /* HAS_FLOCK:
152  *      This symbol, if defined, indicates that the flock routine is
153  *      available to do file locking.
154  */
155 #$d_flock HAS_FLOCK             /**/
156
157 /* HAS_FORK:
158  *      This symbol, if defined, indicates that the fork routine is
159  *      available.
160  */
161 #$d_fork HAS_FORK               /**/
162
163 /* HAS_FSETPOS:
164  *      This symbol, if defined, indicates that the fsetpos routine is
165  *      available to set the file position indicator, similar to fseek().
166  */
167 #$d_fsetpos HAS_FSETPOS /**/
168
169 /* HAS_GETTIMEOFDAY:
170  *      This symbol, if defined, indicates that the gettimeofday() system
171  *      call is available for a sub-second accuracy clock. Usually, the file
172  *      <sys/resource.h> needs to be included (see I_SYS_RESOURCE).
173  *      The type "Timeval" should be used to refer to "struct timeval".
174  */
175 #$d_gettimeod HAS_GETTIMEOFDAY  /**/
176 #ifdef HAS_GETTIMEOFDAY
177 #define Timeval struct timeval  /* Structure used by gettimeofday() */
178 #endif
179
180 /* HAS_GETGROUPS:
181  *      This symbol, if defined, indicates that the getgroups() routine is
182  *      available to get the list of process groups.  If unavailable, multiple
183  *      groups are probably not supported.
184  */
185 #$d_getgrps HAS_GETGROUPS               /**/
186
187 /* HAS_GETLOGIN:
188  *      This symbol, if defined, indicates that the getlogin routine is
189  *      available to get the login name.
190  */
191 #$d_getlogin HAS_GETLOGIN               /**/
192
193 /* HAS_GETPGID:
194  *      This symbol, if defined, indicates to the C program that
195  *      the getpgid(pid) function is available to get the
196  *      process group id.
197  */
198 #$d_getpgid HAS_GETPGID         /**/
199
200 /* HAS_GETPGRP2:
201  *      This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
202  *      routine is available to get the current process group.
203  */
204 #$d_getpgrp2 HAS_GETPGRP2               /**/
205
206 /* HAS_GETPPID:
207  *      This symbol, if defined, indicates that the getppid routine is
208  *      available to get the parent process ID.
209  */
210 #$d_getppid HAS_GETPPID         /**/
211
212 /* HAS_GETPRIORITY:
213  *      This symbol, if defined, indicates that the getpriority routine is
214  *      available to get a process's priority.
215  */
216 #$d_getprior HAS_GETPRIORITY            /**/
217
218 /* HAS_INET_ATON:
219  *      This symbol, if defined, indicates to the C program that the
220  *      inet_aton() function is available to parse IP address "dotted-quad"
221  *      strings.
222  */
223 #$d_inetaton HAS_INET_ATON              /**/
224
225 /* HAS_KILLPG:
226  *      This symbol, if defined, indicates that the killpg routine is available
227  *      to kill process groups.  If unavailable, you probably should use kill
228  *      with a negative process number.
229  */
230 #$d_killpg HAS_KILLPG   /**/
231
232 /* HAS_LINK:
233  *      This symbol, if defined, indicates that the link routine is
234  *      available to create hard links.
235  */
236 #$d_link HAS_LINK       /**/
237
238 /* HAS_LOCALECONV:
239  *      This symbol, if defined, indicates that the localeconv routine is
240  *      available for numeric and monetary formatting conventions.
241  */
242 #$d_locconv HAS_LOCALECONV      /**/
243
244 /* HAS_LOCKF:
245  *      This symbol, if defined, indicates that the lockf routine is
246  *      available to do file locking.
247  */
248 #$d_lockf HAS_LOCKF             /**/
249
250 /* HAS_LSTAT:
251  *      This symbol, if defined, indicates that the lstat routine is
252  *      available to do file stats on symbolic links.
253  */
254 #$d_lstat HAS_LSTAT             /**/
255
256 /* HAS_MBLEN:
257  *      This symbol, if defined, indicates that the mblen routine is available
258  *      to find the number of bytes in a multibyte character.
259  */
260 #$d_mblen HAS_MBLEN             /**/
261
262 /* HAS_MBSTOWCS:
263  *      This symbol, if defined, indicates that the mbstowcs routine is
264  *      available to convert a multibyte string into a wide character string.
265  */
266 #$d_mbstowcs    HAS_MBSTOWCS            /**/
267
268 /* HAS_MBTOWC:
269  *      This symbol, if defined, indicates that the mbtowc routine is available
270  *      to convert a multibyte to a wide character.
271  */
272 #$d_mbtowc HAS_MBTOWC           /**/
273
274 /* HAS_MKDIR:
275  *      This symbol, if defined, indicates that the mkdir routine is available
276  *      to create directories.  Otherwise you should fork off a new process to
277  *      exec /bin/mkdir.
278  */
279 #$d_mkdir HAS_MKDIR             /**/
280
281 /* HAS_MKFIFO:
282  *      This symbol, if defined, indicates that the mkfifo routine is
283  *      available to create FIFOs. Otherwise, mknod should be able to
284  *      do it for you. However, if mkfifo is there, mknod might require
285  *      super-user privileges which mkfifo will not.
286  */
287 #$d_mkfifo HAS_MKFIFO           /**/
288
289 /* HAS_MKTIME:
290  *      This symbol, if defined, indicates that the mktime routine is
291  *      available.
292  */
293 #$d_mktime HAS_MKTIME           /**/
294
295 /* HAS_MSG:
296  *      This symbol, if defined, indicates that the entire msg*(2) library is
297  *      supported (IPC mechanism based on message queues).
298  */
299 #$d_msg HAS_MSG         /**/
300
301 /* HAS_MSYNC:
302  *      This symbol, if defined, indicates that the msync system call is
303  *      available to synchronize a mapped file.
304  */
305 #$d_msync HAS_MSYNC             /**/
306
307 /* HAS_MUNMAP:
308  *      This symbol, if defined, indicates that the munmap system call is
309  *      available to unmap a region, usually mapped by mmap().
310  */
311 #$d_munmap HAS_MUNMAP           /**/
312
313 /* HAS_NICE:
314  *      This symbol, if defined, indicates that the nice routine is
315  *      available.
316  */
317 #$d_nice HAS_NICE               /**/
318
319 /* HAS_PATHCONF:
320  *      This symbol, if defined, indicates that pathconf() is available
321  *      to determine file-system related limits and options associated
322  *      with a given filename.
323  */
324 /* HAS_FPATHCONF:
325  *      This symbol, if defined, indicates that pathconf() is available
326  *      to determine file-system related limits and options associated
327  *      with a given open file descriptor.
328  */
329 #$d_pathconf HAS_PATHCONF               /**/
330 #$d_fpathconf HAS_FPATHCONF             /**/
331
332 /* HAS_PAUSE:
333  *      This symbol, if defined, indicates that the pause routine is
334  *      available to suspend a process until a signal is received.
335  */
336 #$d_pause HAS_PAUSE             /**/
337
338 /* HAS_PIPE:
339  *      This symbol, if defined, indicates that the pipe routine is
340  *      available to create an inter-process channel.
341  */
342 #$d_pipe HAS_PIPE               /**/
343
344 /* HAS_POLL:
345  *      This symbol, if defined, indicates that the poll routine is
346  *      available to poll active file descriptors.  Please check I_POLL and
347  *      I_SYS_POLL to know which header should be included as well.
348  */
349 #$d_poll HAS_POLL               /**/
350
351 /* HAS_READDIR:
352  *      This symbol, if defined, indicates that the readdir routine is
353  *      available to read directory entries. You may have to include
354  *      <dirent.h>. See I_DIRENT.
355  */
356 #$d_readdir HAS_READDIR         /**/
357
358 /* HAS_SEEKDIR:
359  *      This symbol, if defined, indicates that the seekdir routine is
360  *      available. You may have to include <dirent.h>. See I_DIRENT.
361  */
362 #$d_seekdir HAS_SEEKDIR         /**/
363
364 /* HAS_TELLDIR:
365  *      This symbol, if defined, indicates that the telldir routine is
366  *      available. You may have to include <dirent.h>. See I_DIRENT.
367  */
368 #$d_telldir HAS_TELLDIR         /**/
369
370 /* HAS_REWINDDIR:
371  *      This symbol, if defined, indicates that the rewinddir routine is
372  *      available. You may have to include <dirent.h>. See I_DIRENT.
373  */
374 #$d_rewinddir HAS_REWINDDIR             /**/
375
376 /* HAS_READLINK:
377  *      This symbol, if defined, indicates that the readlink routine is
378  *      available to read the value of a symbolic link.
379  */
380 #$d_readlink HAS_READLINK               /**/
381
382 /* HAS_REGCOMP:
383  *      This symbol, if defined, indicates that the regcomp() routine is
384  *      available to do some regular pattern matching (usually on POSIX.2
385  *      conforming systems).
386  */
387 #$d_regcomp HAS_REGCOMP         /* POSIX.2 */
388
389 /* HAS_RENAME:
390  *      This symbol, if defined, indicates that the rename routine is available
391  *      to rename files.  Otherwise you should do the unlink(), link(), unlink()
392  *      trick.
393  */
394 #$d_rename HAS_RENAME   /**/
395
396 /* HAS_RMDIR:
397  *      This symbol, if defined, indicates that the rmdir routine is
398  *      available to remove directories. Otherwise you should fork off a
399  *      new process to exec /bin/rmdir.
400  */
401 #$d_rmdir HAS_RMDIR             /**/
402
403 /* HAS_SELECT:
404  *      This symbol, if defined, indicates that the select routine is
405  *      available to select active file descriptors. If the timeout field
406  *      is used, <sys/time.h> may need to be included.
407  */
408 #$d_select HAS_SELECT   /**/
409
410 /* HAS_SEM:
411  *      This symbol, if defined, indicates that the entire sem*(2) library is
412  *      supported.
413  */
414 #$d_sem HAS_SEM         /**/
415
416 /* HAS_SETEGID:
417  *      This symbol, if defined, indicates that the setegid routine is available
418  *      to change the effective gid of the current program.
419  */
420 #$d_setegid HAS_SETEGID         /**/
421
422 /* HAS_SETEUID:
423  *      This symbol, if defined, indicates that the seteuid routine is available
424  *      to change the effective uid of the current program.
425  */
426 #$d_seteuid HAS_SETEUID         /**/
427
428 /* HAS_SETGROUPS:
429  *      This symbol, if defined, indicates that the setgroups() routine is
430  *      available to set the list of process groups.  If unavailable, multiple
431  *      groups are probably not supported.
432  */
433 #$d_setgrps HAS_SETGROUPS               /**/
434
435 /* HAS_SETLINEBUF:
436  *      This symbol, if defined, indicates that the setlinebuf routine is
437  *      available to change stderr or stdout from block-buffered or unbuffered
438  *      to a line-buffered mode.
439  */
440 #$d_setlinebuf HAS_SETLINEBUF           /**/
441
442 /* HAS_SETPGID:
443  *      This symbol, if defined, indicates that the setpgid(pid, gpid)
444  *      routine is available to set process group ID.
445  */
446 #$d_setpgid HAS_SETPGID /**/
447
448 /* HAS_SETPGRP2:
449  *      This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
450  *      routine is available to set the current process group.
451  */
452 #$d_setpgrp2 HAS_SETPGRP2               /**/
453
454 /* HAS_SETPRIORITY:
455  *      This symbol, if defined, indicates that the setpriority routine is
456  *      available to set a process's priority.
457  */
458 #$d_setprior HAS_SETPRIORITY            /**/
459
460 /* HAS_SETREGID:
461  *      This symbol, if defined, indicates that the setregid routine is
462  *      available to change the real and effective gid of the current
463  *      process.
464  */
465 /* HAS_SETRESGID:
466  *      This symbol, if defined, indicates that the setresgid routine is
467  *      available to change the real, effective and saved gid of the current
468  *      process.
469  */
470 #$d_setregid HAS_SETREGID               /**/
471 #$d_setresgid HAS_SETRESGID             /**/
472
473 /* HAS_SETREUID:
474  *      This symbol, if defined, indicates that the setreuid routine is
475  *      available to change the real and effective uid of the current
476  *      process.
477  */
478 /* HAS_SETRESUID:
479  *      This symbol, if defined, indicates that the setresuid routine is
480  *      available to change the real, effective and saved uid of the current
481  *      process.
482  */
483 #$d_setreuid HAS_SETREUID               /**/
484 #$d_setresuid HAS_SETRESUID             /**/
485
486 /* HAS_SETRGID:
487  *      This symbol, if defined, indicates that the setrgid routine is available
488  *      to change the real gid of the current program.
489  */
490 #$d_setrgid HAS_SETRGID         /**/
491
492 /* HAS_SETRUID:
493  *      This symbol, if defined, indicates that the setruid routine is available
494  *      to change the real uid of the current program.
495  */
496 #$d_setruid HAS_SETRUID         /**/
497
498 /* HAS_SETSID:
499  *      This symbol, if defined, indicates that the setsid routine is
500  *      available to set the process group ID.
501  */
502 #$d_setsid HAS_SETSID   /**/
503
504 /* HAS_STAT:
505  *      This symbol, if defined, indicates that the stat routine is
506  *      available to get file status.
507  */
508 #$d_stat HAS_STAT       /**/
509
510 /* HAS_STRCOLL:
511  *      This symbol, if defined, indicates that the strcoll routine is
512  *      available to compare strings using collating information.
513  */
514 #$d_strcoll HAS_STRCOLL /**/
515
516 /* HAS_STRTOD:
517  *      This symbol, if defined, indicates that the strtod routine is
518  *      available to provide better numeric string conversion than atof().
519  */
520 #$d_strtod HAS_STRTOD   /**/
521
522 /* HAS_STRTOL:
523  *      This symbol, if defined, indicates that the strtol routine is available
524  *      to provide better numeric string conversion than atoi() and friends.
525  */
526 #$d_strtol HAS_STRTOL   /**/
527
528 /* HAS_STRXFRM:
529  *      This symbol, if defined, indicates that the strxfrm() routine is
530  *      available to transform strings.
531  */
532 #$d_strxfrm HAS_STRXFRM /**/
533
534 /* HAS_SYMLINK:
535  *      This symbol, if defined, indicates that the symlink routine is available
536  *      to create symbolic links.
537  */
538 #$d_symlink HAS_SYMLINK /**/
539
540 /* HAS_SYSCALL:
541  *      This symbol, if defined, indicates that the syscall routine is
542  *      available to call arbitrary system calls. If undefined, that's tough.
543  */
544 #$d_syscall HAS_SYSCALL /**/
545
546 /* HAS_SYSCONF:
547  *      This symbol, if defined, indicates that sysconf() is available
548  *      to determine system related limits and options.
549  */
550 #$d_sysconf HAS_SYSCONF /**/
551
552 /* HAS_SYSTEM:
553  *      This symbol, if defined, indicates that the system routine is
554  *      available to issue a shell command.
555  */
556 #$d_system HAS_SYSTEM   /**/
557
558 /* HAS_TCGETPGRP:
559  *      This symbol, if defined, indicates that the tcgetpgrp routine is
560  *      available to get foreground process group ID.
561  */
562 #$d_tcgetpgrp HAS_TCGETPGRP             /**/
563
564 /* HAS_TCSETPGRP:
565  *      This symbol, if defined, indicates that the tcsetpgrp routine is
566  *      available to set foreground process group ID.
567  */
568 #$d_tcsetpgrp HAS_TCSETPGRP             /**/
569
570 /* HAS_TRUNCATE:
571  *      This symbol, if defined, indicates that the truncate routine is
572  *      available to truncate files.
573  */
574 #$d_truncate HAS_TRUNCATE       /**/
575
576 /* HAS_TZNAME:
577  *      This symbol, if defined, indicates that the tzname[] array is
578  *      available to access timezone names.
579  */
580 #$d_tzname HAS_TZNAME           /**/
581
582 /* HAS_UMASK:
583  *      This symbol, if defined, indicates that the umask routine is
584  *      available to set and get the value of the file creation mask.
585  */
586 #$d_umask HAS_UMASK             /**/
587
588 /* HAS_USLEEP:
589  *      This symbol, if defined, indicates that the usleep routine is
590  *      available to let the process sleep on a sub-second accuracy.
591  */
592 #$d_usleep HAS_USLEEP           /**/
593
594 /* HAS_WAIT4:
595  *      This symbol, if defined, indicates that wait4() exists.
596  */
597 #$d_wait4 HAS_WAIT4     /**/
598
599 /* HAS_WAITPID:
600  *      This symbol, if defined, indicates that the waitpid routine is
601  *      available to wait for child process.
602  */
603 #$d_waitpid HAS_WAITPID /**/
604
605 /* HAS_WCSTOMBS:
606  *      This symbol, if defined, indicates that the wcstombs routine is
607  *      available to convert wide character strings to multibyte strings.
608  */
609 #$d_wcstombs HAS_WCSTOMBS       /**/
610
611 /* HAS_WCTOMB:
612  *      This symbol, if defined, indicates that the wctomb routine is available
613  *      to convert a wide character to a multibyte.
614  */
615 #$d_wctomb HAS_WCTOMB           /**/
616
617 /* Groups_t:
618  *      This symbol holds the type used for the second argument to
619  *      getgroups() and setgroups().  Usually, this is the same as
620  *      gidtype (gid_t) , but sometimes it isn't.
621  *      It can be int, ushort, gid_t, etc...
622  *      It may be necessary to include <sys/types.h> to get any
623  *      typedef'ed information.  This is only required if you have
624  *      getgroups() or setgroups()..
625  */
626 #if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
627 #define Groups_t $groupstype    /* Type for 2nd arg to [sg]etgroups() */
628 #endif
629
630 /* I_ARPA_INET:
631  *      This symbol, if defined, indicates to the C program that it should
632  *      include <arpa/inet.h> to get inet_addr and friends declarations.
633  */
634 #$i_arpainet    I_ARPA_INET             /**/
635
636 /* I_DBM:
637  *      This symbol, if defined, indicates that <dbm.h> exists and should
638  *      be included.
639  */
640 /* I_RPCSVC_DBM:
641  *      This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
642  *      should be included.
643  */
644 #$i_dbm I_DBM   /**/
645 #$i_rpcsvcdbm I_RPCSVC_DBM      /**/
646
647 /* I_DLFCN:
648  *      This symbol, if defined, indicates that <dlfcn.h> exists and should
649  *      be included.
650  */
651 #$i_dlfcn I_DLFCN               /**/
652
653 /* I_FCNTL:
654  *      This manifest constant tells the C program to include <fcntl.h>.
655  */
656 #$i_fcntl I_FCNTL       /**/
657
658 /* I_GDBM:
659  *      This symbol, if defined, indicates that <gdbm.h> exists and should
660  *      be included.
661  */
662 #$i_gdbm I_GDBM /**/
663
664 /* I_LOCALE:
665  *      This symbol, if defined, indicates to the C program that it should
666  *      include <locale.h>.
667  */
668 #$i_locale      I_LOCALE                /**/
669
670 /* I_NETINET_IN:
671  *      This symbol, if defined, indicates to the C program that it should
672  *      include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
673  */
674 #$i_niin I_NETINET_IN   /**/
675
676 /* I_SYS_DIR:
677  *      This symbol, if defined, indicates to the C program that it should
678  *      include <sys/dir.h>.
679  */
680 #$i_sysdir I_SYS_DIR            /**/
681
682 /* I_SYS_FILE:
683  *      This symbol, if defined, indicates to the C program that it should
684  *      include <sys/file.h> to get definition of R_OK and friends.
685  */
686 #$i_sysfile I_SYS_FILE          /**/
687
688 /* I_SYS_IOCTL:
689  *      This symbol, if defined, indicates that <sys/ioctl.h> exists and should
690  *      be included. Otherwise, include <sgtty.h> or <termio.h>.
691  */
692 /* I_SYS_SOCKIO:
693  *      This symbol, if defined, indicates the <sys/sockio.h> should be included
694  *      to get socket ioctl options, like SIOCATMARK.
695  */
696 #$i_sysioctl    I_SYS_IOCTL             /**/
697 #$i_syssockio I_SYS_SOCKIO      /**/
698
699 /* I_SYS_NDIR:
700  *      This symbol, if defined, indicates to the C program that it should
701  *      include <sys/ndir.h>.
702  */
703 #$i_sysndir I_SYS_NDIR  /**/
704
705 /* I_SYS_PARAM:
706  *      This symbol, if defined, indicates to the C program that it should
707  *      include <sys/param.h>.
708  */
709 #$i_sysparam I_SYS_PARAM                /**/
710
711 /* I_SYS_POLL:
712  *      This symbol, if defined, indicates that the program may include
713  *      <sys/poll.h>.  When I_POLL is also defined, it's probably safest
714  *      to only include <poll.h>.
715  */
716 #$i_syspoll I_SYS_POLL  /**/
717
718 /* I_SYS_RESOURCE:
719  *      This symbol, if defined, indicates to the C program that it should
720  *      include <sys/resource.h>.
721  */
722 #$i_sysresrc I_SYS_RESOURCE             /**/
723
724 /* I_SYS_SELECT:
725  *      This symbol, if defined, indicates to the C program that it should
726  *      include <sys/select.h> in order to get definition of struct timeval.
727  */
728 #$i_sysselct I_SYS_SELECT       /**/
729
730 /* I_SYS_STAT:
731  *      This symbol, if defined, indicates to the C program that it should
732  *      include <sys/stat.h>.
733  */
734 #$i_sysstat     I_SYS_STAT              /**/
735
736 /* I_SYS_TIMES:
737  *      This symbol, if defined, indicates to the C program that it should
738  *      include <sys/times.h>.
739  */
740 #$i_systimes    I_SYS_TIMES             /**/
741
742 /* I_SYS_TYPES:
743  *      This symbol, if defined, indicates to the C program that it should
744  *      include <sys/types.h>.
745  */
746 #$i_systypes    I_SYS_TYPES             /**/
747
748 /* I_SYS_UN:
749  *      This symbol, if defined, indicates to the C program that it should
750  *      include <sys/un.h> to get UNIX domain socket definitions.
751  */
752 #$i_sysun I_SYS_UN              /**/
753
754 /* I_SYS_WAIT:
755  *      This symbol, if defined, indicates to the C program that it should
756  *      include <sys/wait.h>.
757  */
758 #$i_syswait I_SYS_WAIT  /**/
759
760 /* I_UNISTD:
761  *      This symbol, if defined, indicates to the C program that it should
762  *      include <unistd.h>.
763  */
764 #$i_unistd I_UNISTD             /**/
765
766 /* I_UTIME:
767  *      This symbol, if defined, indicates to the C program that it should
768  *      include <utime.h>.
769  */
770 #$i_utime I_UTIME               /**/
771
772 /* I_VFORK:
773  *      This symbol, if defined, indicates to the C program that it should
774  *      include vfork.h.
775  */
776 #$i_vfork I_VFORK       /**/
777
778 /* STDCHAR:
779  *      This symbol is defined to be the type of char used in stdio.h.
780  *      It has the values "unsigned char" or "char".
781  */
782 #define STDCHAR $stdchar        /**/
783
784 /* INTSIZE:
785  *      This symbol contains the value of sizeof(int) so that the C
786  *      preprocessor can make decisions based on it.
787  */
788 /* LONGSIZE:
789  *      This symbol contains the value of sizeof(long) so that the C
790  *      preprocessor can make decisions based on it.
791  */
792 /* SHORTSIZE:
793  *      This symbol contains the value of sizeof(short) so that the C
794  *      preprocessor can make decisions based on it.
795  */
796 #define INTSIZE $intsize                /**/
797 #define LONGSIZE $longsize              /**/
798 #define SHORTSIZE $shortsize            /**/
799
800 /* MULTIARCH:
801  *      This symbol, if defined, signifies that the build
802  *      process will produce some binary files that are going to be
803  *      used in a cross-platform environment.  This is the case for
804  *      example with the NeXT "fat" binaries that contain executables
805  *      for several CPUs.
806  */
807 #$multiarch MULTIARCH           /**/
808
809 /* HAS_QUAD:
810  *      This symbol, if defined, tells that there's a 64-bit integer type,
811  *      Quad_t, and its unsigned counterpart, Uquad_t. QUADKIND will be one
812  *      of QUAD_IS_INT, QUAD_IS_LONG, QUAD_IS_LONG_LONG, QUAD_IS_INT64_T,
813  *      or QUAD_IS___INT64.
814  */
815 #$d_quad HAS_QUAD       /**/
816 #ifdef HAS_QUAD
817 #   define Quad_t $quadtype     /**/
818 #   define Uquad_t $uquadtype   /**/
819 #   define QUADKIND $quadkind   /**/
820 #   define QUAD_IS_INT  1
821 #   define QUAD_IS_LONG 2
822 #   define QUAD_IS_LONG_LONG    3
823 #   define QUAD_IS_INT64_T      4
824 #   define QUAD_IS___INT64      5
825 #endif
826
827 /* HAS_ACCESSX:
828  *      This symbol, if defined, indicates that the accessx routine is
829  *      available to do extended access checks.
830  */
831 #$d_accessx HAS_ACCESSX         /**/
832
833 /* HAS_EACCESS:
834  *      This symbol, if defined, indicates that the eaccess routine is
835  *      available to do extended access checks.
836  */
837 #$d_eaccess HAS_EACCESS         /**/
838
839 /* I_SYS_ACCESS:
840  *      This symbol, if defined, indicates to the C program that it should
841  *      include <sys/access.h>.
842  */
843 #$i_sysaccess   I_SYS_ACCESS                /**/
844
845 /* I_SYS_SECURITY:
846  *      This symbol, if defined, indicates to the C program that it should
847  *      include <sys/security.h>.
848  */
849 #$i_syssecrt   I_SYS_SECURITY   /**/
850
851 /* MEM_ALIGNBYTES:
852  *      This symbol contains the number of bytes required to align a
853  *      double, or a long double when applicable. Usual values are 2,
854  *      4 and 8. The default is eight, for safety.  For cross-compiling
855  *      or multiarch support, Configure will set a minimum of 8.
856  */
857 #define MEM_ALIGNBYTES $alignbytes
858
859 /* BYTEORDER:
860  *      This symbol holds the hexadecimal constant defined in byteorder,
861  *      in a UV, i.e. 0x1234 or 0x4321 or 0x12345678, etc...
862  *      If the compiler supports cross-compiling or multiple-architecture
863  *      binaries, use compiler-defined macros to
864  *      determine the byte order.
865  */
866 #if defined(MULTIARCH)
867 #  ifdef __LITTLE_ENDIAN__
868 #    if LONGSIZE == 4
869 #      define BYTEORDER 0x1234
870 #    else
871 #      if LONGSIZE == 8
872 #        define BYTEORDER 0x12345678
873 #      endif
874 #    endif
875 #  else
876 #    ifdef __BIG_ENDIAN__
877 #      if LONGSIZE == 4
878 #        define BYTEORDER 0x4321
879 #      else
880 #        if LONGSIZE == 8
881 #          define BYTEORDER 0x87654321
882 #        endif
883 #      endif
884 #    endif
885 #  endif
886 #else
887 #define BYTEORDER 0x$byteorder  /* large digits for MSB */
888 #endif
889
890 /* CHARBITS:
891  *      This symbol contains the size of a char, so that the C preprocessor
892  *      can make decisions based on it.
893  */
894 #define CHARBITS $charbits              /**/
895
896 /* CASTI32:
897  *      This symbol is defined if the C compiler can cast negative
898  *      or large floating point numbers to 32-bit ints.
899  */
900 #$d_casti32     CASTI32         /**/
901
902 /* CASTNEGFLOAT:
903  *      This symbol is defined if the C compiler can cast negative
904  *      numbers to unsigned longs, ints and shorts.
905  */
906 /* CASTFLAGS:
907  *      This symbol contains flags that say what difficulties the compiler
908  *      has casting odd floating values to unsigned long:
909  *              0 = ok
910  *              1 = couldn't cast < 0
911  *              2 = couldn't cast >= 0x80000000
912  *              4 = couldn't cast in argument expression list
913  */
914 #$d_castneg     CASTNEGFLOAT            /**/
915 #define CASTFLAGS $castflags            /**/
916
917 /* VOID_CLOSEDIR:
918  *      This symbol, if defined, indicates that the closedir() routine
919  *      does not return a value.
920  */
921 #$d_void_closedir VOID_CLOSEDIR         /**/
922
923 /* HAS_FD_SET:
924  *      This symbol, when defined, indicates presence of the fd_set typedef
925  *      in <sys/types.h>
926  */
927 #$d_fd_set HAS_FD_SET   /**/
928
929 /* Gconvert:
930  *      This preprocessor macro is defined to convert a floating point
931  *      number to a string without a trailing decimal point.  This
932  *      emulates the behavior of sprintf("%g"), but is sometimes much more
933  *      efficient.  If gconvert() is not available, but gcvt() drops the
934  *      trailing decimal point, then gcvt() is used.  If all else fails,
935  *      a macro using sprintf("%g") is used. Arguments for the Gconvert
936  *      macro are: value, number of digits, whether trailing zeros should
937  *      be retained, and the output buffer.
938  *      The usual values are:
939  *              d_Gconvert='gconvert((x),(n),(t),(b))'
940  *              d_Gconvert='gcvt((x),(n),(b))'
941  *              d_Gconvert='sprintf((b),"%.*g",(n),(x))'
942  *      The last two assume trailing zeros should not be kept.
943  */
944 #define Gconvert(x,n,t,b) $d_Gconvert
945
946 /* HAS_GETPAGESIZE:
947  *      This symbol, if defined, indicates that the getpagesize system call
948  *      is available to get system page size, which is the granularity of
949  *      many memory management calls.
950  */
951 #$d_getpagsz HAS_GETPAGESIZE            /**/
952
953 /* HAS_GNULIBC:
954  *      This symbol, if defined, indicates to the C program that
955  *      the GNU C library is being used.  A better check is to use
956  *      the __GLIBC__ and __GLIBC_MINOR__ symbols supplied with glibc.
957  */
958 #$d_gnulibc HAS_GNULIBC /**/
959 #if defined(HAS_GNULIBC) && !defined(_GNU_SOURCE)
960 #   define _GNU_SOURCE
961 #endif
962
963 /* HAS_ISASCII:
964  *      This manifest constant lets the C program know that isascii
965  *      is available.
966  */
967 #$d_isascii HAS_ISASCII         /**/
968
969 /* HAS_LCHOWN:
970  *      This symbol, if defined, indicates that the lchown routine is
971  *      available to operate on a symbolic link (instead of following the
972  *      link).
973  */
974 #$d_lchown HAS_LCHOWN           /**/
975
976 /* HAS_OPEN3:
977  *      This manifest constant lets the C program know that the three
978  *      argument form of open(2) is available.
979  */
980 #$d_open3 HAS_OPEN3             /**/
981
982 /* HAS_SIGACTION:
983  *      This symbol, if defined, indicates that Vr4's sigaction() routine
984  *      is available.
985  */
986 #$d_sigaction HAS_SIGACTION     /**/
987
988 /* HAS_SIGINFO_SI_ERRNO:
989  *      This symbol, if defined, indicates that siginfo_t has the
990  *      si_errno member
991  */
992 /* HAS_SIGINFO_SI_PID:
993  *      This symbol, if defined, indicates that siginfo_t has the
994  *      si_pid member
995  */
996 /* HAS_SIGINFO_SI_UID:
997  *      This symbol, if defined, indicates that siginfo_t has the
998  *      si_uid member
999  */
1000 /* HAS_SIGINFO_SI_ADDR:
1001  *      This symbol, if defined, indicates that siginfo_t has the
1002  *      si_addr member
1003  */
1004 /* HAS_SIGINFO_SI_STATUS:
1005  *      This symbol, if defined, indicates that siginfo_t has the
1006  *      si_status member
1007  */
1008 /* HAS_SIGINFO_SI_BAND:
1009  *      This symbol, if defined, indicates that siginfo_t has the
1010  *      si_band member
1011  */
1012 /* HAS_SIGINFO_SI_VALUE:
1013  *      This symbol, if defined, indicates that siginfo_t has the
1014  *      si_value member
1015  */
1016 #$d_siginfo_si_errno    HAS_SIGINFO_SI_ERRNO    /**/
1017 #$d_siginfo_si_pid      HAS_SIGINFO_SI_PID      /**/
1018 #$d_siginfo_si_uid      HAS_SIGINFO_SI_UID      /**/
1019 #$d_siginfo_si_addr     HAS_SIGINFO_SI_ADDR     /**/
1020 #$d_siginfo_si_status   HAS_SIGINFO_SI_STATUS   /**/
1021 #$d_siginfo_si_band     HAS_SIGINFO_SI_BAND     /**/
1022 #$d_siginfo_si_value    HAS_SIGINFO_SI_VALUE    /**/
1023
1024 /* HAS_SIGSETJMP:
1025  *      This variable indicates to the C program that the sigsetjmp()
1026  *      routine is available to save the calling process's registers
1027  *      and stack environment for later use by siglongjmp(), and
1028  *      to optionally save the process's signal mask.  See
1029  *      Sigjmp_buf, Sigsetjmp, and Siglongjmp.
1030  */
1031 /* Sigjmp_buf:
1032  *      This is the buffer type to be used with Sigsetjmp and Siglongjmp.
1033  */
1034 /* Sigsetjmp:
1035  *      This macro is used in the same way as sigsetjmp(), but will invoke
1036  *      traditional setjmp() if sigsetjmp isn't available.
1037  *      See HAS_SIGSETJMP.
1038  */
1039 /* Siglongjmp:
1040  *      This macro is used in the same way as siglongjmp(), but will invoke
1041  *      traditional longjmp() if siglongjmp isn't available.
1042  *      See HAS_SIGSETJMP.
1043  */
1044 #$d_sigsetjmp HAS_SIGSETJMP     /**/
1045 #ifdef HAS_SIGSETJMP
1046 #define Sigjmp_buf sigjmp_buf
1047 #define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
1048 #define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
1049 #else
1050 #define Sigjmp_buf jmp_buf
1051 #define Sigsetjmp(buf,save_mask) setjmp((buf))
1052 #define Siglongjmp(buf,retval) longjmp((buf),(retval))
1053 #endif
1054
1055 /* HAS_STATIC_INLINE:
1056  *      This symbol, if defined, indicates that the C compiler supports
1057  *      C99-style static inline.  That is, the function can't be called
1058  *      from another translation unit.
1059  */
1060 /* PERL_STATIC_INLINE:
1061  *      This symbol gives the best-guess incantation to use for static
1062  *      inline functions.  If HAS_STATIC_INLINE is defined, this will
1063  *      give C99-style inline.  If HAS_STATIC_INLINE is not defined,
1064  *      this will give a plain 'static'.  It will always be defined
1065  *      to something that gives static linkage.
1066  *      Possibilities include
1067  *              static inline       (c99)
1068  *              static __inline__   (gcc -ansi)
1069  *              static __inline     (MSVC)
1070  *              static _inline      (older MSVC)
1071  *              static              (c89 compilers)
1072  */
1073 #$d_static_inline HAS_STATIC_INLINE                             /**/
1074 #define PERL_STATIC_INLINE $perl_static_inline  /**/
1075
1076 /* PERL_THREAD_LOCAL:
1077  *      This symbol, if defined, gives a linkage specification for thread-local
1078  *      storage. For example, for a C11 compiler this will be _Thread_local.
1079  *      Beware, some compilers are sensitive to the C language standard they are
1080  *      told to parse. For example, suncc defaults to C11, so our probe will
1081  *      report that _Thread_local can be used. However, if the -std=c99 is later
1082  *      added to the compiler flags, then _Thread_local will become a syntax
1083  *      error. Hence it is important for these flags to be consistent between
1084  *      probing and use.
1085  */
1086 #$d_thread_local PERL_THREAD_LOCAL $perl_thread_local   /**/
1087
1088 /* USE_STDIO_PTR:
1089  *      This symbol is defined if the _ptr and _cnt fields (or similar)
1090  *      of the stdio FILE structure can be used to access the stdio buffer
1091  *      for a file handle.  If this is defined, then the FILE_ptr(fp)
1092  *      and FILE_cnt(fp) macros will also be defined and should be used
1093  *      to access these fields.
1094  */
1095 /* FILE_ptr:
1096  *      This macro is used to access the _ptr field (or equivalent) of the
1097  *      FILE structure pointed to by its argument. This macro will always be
1098  *      defined if USE_STDIO_PTR is defined.
1099  */
1100 /* STDIO_PTR_LVALUE:
1101  *      This symbol is defined if the FILE_ptr macro can be used as an
1102  *      lvalue.
1103  */
1104 /* FILE_cnt:
1105  *      This macro is used to access the _cnt field (or equivalent) of the
1106  *      FILE structure pointed to by its argument. This macro will always be
1107  *      defined if USE_STDIO_PTR is defined.
1108  */
1109 /* STDIO_CNT_LVALUE:
1110  *      This symbol is defined if the FILE_cnt macro can be used as an
1111  *      lvalue.
1112  */
1113 /* STDIO_PTR_LVAL_SETS_CNT:
1114  *      This symbol is defined if using the FILE_ptr macro as an lvalue
1115  *      to increase the pointer by n has the side effect of decreasing the
1116  *      value of File_cnt(fp) by n.
1117  */
1118 /* STDIO_PTR_LVAL_NOCHANGE_CNT:
1119  *      This symbol is defined if using the FILE_ptr macro as an lvalue
1120  *      to increase the pointer by n leaves File_cnt(fp) unchanged.
1121  */
1122 #$d_stdstdio USE_STDIO_PTR      /**/
1123 #ifdef USE_STDIO_PTR
1124 #define FILE_ptr(fp)    $stdio_ptr
1125 #$d_stdio_ptr_lval STDIO_PTR_LVALUE             /**/
1126 #define FILE_cnt(fp)    $stdio_cnt
1127 #$d_stdio_cnt_lval STDIO_CNT_LVALUE             /**/
1128 #$d_stdio_ptr_lval_sets_cnt STDIO_PTR_LVAL_SETS_CNT     /**/
1129 #$d_stdio_ptr_lval_nochange_cnt STDIO_PTR_LVAL_NOCHANGE_CNT     /**/
1130 #endif
1131
1132 /* USE_STDIO_BASE:
1133  *      This symbol is defined if the _base field (or similar) of the
1134  *      stdio FILE structure can be used to access the stdio buffer for
1135  *      a file handle.  If this is defined, then the FILE_base(fp) macro
1136  *      will also be defined and should be used to access this field.
1137  *      Also, the FILE_bufsiz(fp) macro will be defined and should be used
1138  *      to determine the number of bytes in the buffer.  USE_STDIO_BASE
1139  *      will never be defined unless USE_STDIO_PTR is.
1140  */
1141 /* FILE_base:
1142  *      This macro is used to access the _base field (or equivalent) of the
1143  *      FILE structure pointed to by its argument. This macro will always be
1144  *      defined if USE_STDIO_BASE is defined.
1145  */
1146 /* FILE_bufsiz:
1147  *      This macro is used to determine the number of bytes in the I/O
1148  *      buffer pointed to by _base field (or equivalent) of the FILE
1149  *      structure pointed to its argument. This macro will always be defined
1150  *      if USE_STDIO_BASE is defined.
1151  */
1152 #$d_stdiobase USE_STDIO_BASE    /**/
1153 #ifdef USE_STDIO_BASE
1154 #define FILE_base(fp)   $stdio_base
1155 #define FILE_bufsiz(fp) $stdio_bufsiz
1156 #endif
1157
1158 /* DOUBLESIZE:
1159  *      This symbol contains the size of a double, so that the C preprocessor
1160  *      can make decisions based on it.
1161  */
1162 #define DOUBLESIZE $doublesize          /**/
1163
1164 /* I_TIME:
1165  *      This symbol is always defined, and indicates to the C program that
1166  *      it should include <time.h>.
1167  */
1168 /* I_SYS_TIME:
1169  *      This symbol, if defined, indicates to the C program that it should
1170  *      include <sys/time.h>.
1171  */
1172 /* I_SYS_TIME_KERNEL:
1173  *      This symbol, if defined, indicates to the C program that it should
1174  *      include <sys/time.h> with KERNEL defined.
1175  */
1176 /* HAS_TM_TM_ZONE:
1177  *      This symbol, if defined, indicates to the C program that
1178  *      the struct tm has a tm_zone field.
1179  */
1180 /* HAS_TM_TM_GMTOFF:
1181  *      This symbol, if defined, indicates to the C program that
1182  *      the struct tm has a tm_gmtoff field.
1183  */
1184 #$i_time I_TIME         /**/
1185 #$i_systime I_SYS_TIME          /**/
1186 #$i_systimek I_SYS_TIME_KERNEL          /**/
1187 #$d_tm_tm_zone HAS_TM_TM_ZONE           /**/
1188 #$d_tm_tm_gmtoff HAS_TM_TM_GMTOFF               /**/
1189
1190 /* VAL_O_NONBLOCK:
1191  *      This symbol is to be used during open() or fcntl(F_SETFL) to turn on
1192  *      non-blocking I/O for the file descriptor. Note that there is no way
1193  *      back, i.e. you cannot turn it blocking again this way. If you wish to
1194  *      alternatively switch between blocking and non-blocking, use the
1195  *      ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
1196  */
1197 /* VAL_EAGAIN:
1198  *      This symbol holds the errno error code set by read() when no data was
1199  *      present on the non-blocking file descriptor.
1200  */
1201 /* RD_NODATA:
1202  *      This symbol holds the return code from read() when no data is present
1203  *      on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
1204  *      not defined, then you can't distinguish between no data and EOF by
1205  *      issuing a read(). You'll have to find another way to tell for sure!
1206  */
1207 /* EOF_NONBLOCK:
1208  *      This symbol, if defined, indicates to the C program that a read() on
1209  *      a non-blocking file descriptor will return 0 on EOF, and not the value
1210  *      held in RD_NODATA (-1 usually, in that case!).
1211  */
1212 #define VAL_O_NONBLOCK $o_nonblock
1213 #define VAL_EAGAIN $eagain
1214 #define RD_NODATA $rd_nodata
1215 #$d_eofnblk EOF_NONBLOCK
1216
1217 /* PTRSIZE:
1218  *      This symbol contains the size of a pointer, so that the C preprocessor
1219  *      can make decisions based on it.  It will be sizeof(void *) if
1220  *      the compiler supports (void *); otherwise it will be
1221  *      sizeof(char *).
1222  */
1223 #define PTRSIZE $ptrsize                /**/
1224
1225 /* Drand01:
1226  *      This macro is to be used to generate uniformly distributed
1227  *      random numbers over the range [0., 1.[.  You may have to supply
1228  *      an 'extern double drand48();' in your program since SunOS 4.1.3
1229  *      doesn't provide you with anything relevant in its headers.
1230  *      See HAS_DRAND48_PROTO.
1231  */
1232 /* Rand_seed_t:
1233  *      This symbol defines the type of the argument of the
1234  *      random seed function.
1235  */
1236 /* seedDrand01:
1237  *      This symbol defines the macro to be used in seeding the
1238  *      random number generator (see Drand01).
1239  */
1240 /* RANDBITS:
1241  *      This symbol indicates how many bits are produced by the
1242  *      function used to generate normalized random numbers.
1243  *      Values include 15, 16, 31, and 48.
1244  */
1245 #define Drand01()               $drand01                /**/
1246 #define Rand_seed_t             $randseedtype           /**/
1247 #define seedDrand01(x)  $seedfunc((Rand_seed_t)x)       /**/
1248 #define RANDBITS                $randbits               /**/
1249
1250 /* SSize_t:
1251  *      This symbol holds the type used by functions that return
1252  *      a count of bytes or an error condition.  It must be a signed type.
1253  *      It is usually ssize_t, but may be long or int, etc.
1254  *      It may be necessary to include <sys/types.h> or <unistd.h>
1255  *      to get any typedef'ed information.
1256  *      We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
1257  */
1258 #define SSize_t $ssizetype      /* signed count of bytes */
1259
1260 /* EBCDIC:
1261  *      This symbol, if defined, indicates that this system uses
1262  *      EBCDIC encoding.
1263  */
1264 #$ebcdic        EBCDIC          /**/
1265
1266 /* ARCHLIB:
1267  *      This variable, if defined, holds the name of the directory in
1268  *      which the user wants to put architecture-dependent public
1269  *      library files for $package.  It is most often a local directory
1270  *      such as /usr/local/lib.  Programs using this variable must be
1271  *      prepared to deal with filename expansion.  If ARCHLIB is the
1272  *      same as PRIVLIB, it is not defined, since presumably the
1273  *      program already searches PRIVLIB.
1274  */
1275 /* ARCHLIB_EXP:
1276  *      This symbol contains the ~name expanded version of ARCHLIB, to be used
1277  *      in programs that are not prepared to deal with ~ expansion at run-time.
1278  */
1279 #$d_archlib ARCHLIB "$archlib"          /**/
1280 #$d_archlib ARCHLIB_EXP "$archlibexp"           /**/
1281
1282 /* BIN:
1283  *      This symbol holds the path of the bin directory where the package will
1284  *      be installed. Program must be prepared to deal with ~name substitution.
1285  */
1286 /* BIN_EXP:
1287  *      This symbol is the filename expanded version of the BIN symbol, for
1288  *      programs that do not want to deal with that at run-time.
1289  */
1290 /* PERL_RELOCATABLE_INC:
1291  *      This symbol, if defined, indicates that we'd like to relocate entries
1292  *      in @INC at run time based on the location of the perl binary.
1293  */
1294 #define BIN "$bin"      /**/
1295 #define BIN_EXP "$binexp"       /**/
1296 #define PERL_RELOCATABLE_INC "$userelocatableinc"               /**/
1297
1298 /* PERL_INC_VERSION_LIST:
1299  *      This variable specifies the list of subdirectories in over
1300  *      which perl.c:incpush() and lib/lib.pm will automatically
1301  *      search when adding directories to @INC, in a format suitable
1302  *      for a C initialization string.  See the inc_version_list entry
1303  *      in Porting/Glossary for more details.
1304  */
1305 #$d_inc_version_list PERL_INC_VERSION_LIST $inc_version_list_init               /**/
1306
1307 /* INSTALL_USR_BIN_PERL:
1308  *      This symbol, if defined, indicates that Perl is to be installed
1309  *      also as /usr/bin/perl.
1310  */
1311 #$installusrbinperl INSTALL_USR_BIN_PERL        /**/
1312
1313 /* PERL_OTHERLIBDIRS:
1314  *      This variable contains a colon-separated set of paths for the perl
1315  *      binary to search for additional library files or modules.
1316  *      These directories will be tacked to the end of @INC.
1317  *      Perl will automatically search below each path for version-
1318  *      and architecture-specific directories.  See PERL_INC_VERSION_LIST
1319  *      for more details.
1320  */
1321 #$d_perl_otherlibdirs PERL_OTHERLIBDIRS "$otherlibdirs"         /**/
1322
1323 /* PRIVLIB:
1324  *      This symbol contains the name of the private library for this package.
1325  *      The library is private in the sense that it needn't be in anyone's
1326  *      execution path, but it should be accessible by the world.  The program
1327  *      should be prepared to do ~ expansion.
1328  */
1329 /* PRIVLIB_EXP:
1330  *      This symbol contains the ~name expanded version of PRIVLIB, to be used
1331  *      in programs that are not prepared to deal with ~ expansion at run-time.
1332  */
1333 #define PRIVLIB "$privlib"              /**/
1334 #define PRIVLIB_EXP "$privlibexp"               /**/
1335
1336 /* SITEARCH:
1337  *      This symbol contains the name of the private library for this package.
1338  *      The library is private in the sense that it needn't be in anyone's
1339  *      execution path, but it should be accessible by the world.  The program
1340  *      should be prepared to do ~ expansion.
1341  *      The standard distribution will put nothing in this directory.
1342  *      After perl has been installed, users may install their own local
1343  *      architecture-dependent modules in this directory with
1344  *              MakeMaker Makefile.PL
1345  *      or equivalent.  See INSTALL for details.
1346  */
1347 /* SITEARCH_EXP:
1348  *      This symbol contains the ~name expanded version of SITEARCH, to be used
1349  *      in programs that are not prepared to deal with ~ expansion at run-time.
1350  */
1351 #$d_sitearch SITEARCH "$sitearch"               /**/
1352 #$d_sitearch SITEARCH_EXP "$sitearchexp"                /**/
1353
1354 /* SITELIB:
1355  *      This symbol contains the name of the private library for this package.
1356  *      The library is private in the sense that it needn't be in anyone's
1357  *      execution path, but it should be accessible by the world.  The program
1358  *      should be prepared to do ~ expansion.
1359  *      The standard distribution will put nothing in this directory.
1360  *      After perl has been installed, users may install their own local
1361  *      architecture-independent modules in this directory with
1362  *              MakeMaker Makefile.PL
1363  *      or equivalent.  See INSTALL for details.
1364  */
1365 /* SITELIB_EXP:
1366  *      This symbol contains the ~name expanded version of SITELIB, to be used
1367  *      in programs that are not prepared to deal with ~ expansion at run-time.
1368  */
1369 /* SITELIB_STEM:
1370  *      This define is SITELIB_EXP with any trailing version-specific component
1371  *      removed.  The elements in inc_version_list (inc_version_list.U) can
1372  *      be tacked onto this variable to generate a list of directories to search.
1373  */
1374 #define SITELIB "$sitelib"              /**/
1375 #define SITELIB_EXP "$sitelibexp"               /**/
1376 #define SITELIB_STEM "$sitelib_stem"            /**/
1377
1378 /* PERL_VENDORARCH:
1379  *      If defined, this symbol contains the name of a private library.
1380  *      The library is private in the sense that it needn't be in anyone's
1381  *      execution path, but it should be accessible by the world.
1382  *      It may have a ~ on the front.
1383  *      The standard distribution will put nothing in this directory.
1384  *      Vendors who distribute perl may wish to place their own
1385  *      architecture-dependent modules and extensions in this directory with
1386  *              MakeMaker Makefile.PL INSTALLDIRS=vendor
1387  *      or equivalent.  See INSTALL for details.
1388  */
1389 /* PERL_VENDORARCH_EXP:
1390  *      This symbol contains the ~name expanded version of PERL_VENDORARCH, to be used
1391  *      in programs that are not prepared to deal with ~ expansion at run-time.
1392  */
1393 #$d_vendorarch PERL_VENDORARCH "$vendorarch"            /**/
1394 #$d_vendorarch PERL_VENDORARCH_EXP "$vendorarchexp"             /**/
1395
1396 /* PERL_VENDORLIB_EXP:
1397  *      This symbol contains the ~name expanded version of VENDORLIB, to be used
1398  *      in programs that are not prepared to deal with ~ expansion at run-time.
1399  */
1400 /* PERL_VENDORLIB_STEM:
1401  *      This define is PERL_VENDORLIB_EXP with any trailing version-specific component
1402  *      removed.  The elements in inc_version_list (inc_version_list.U) can
1403  *      be tacked onto this variable to generate a list of directories to search.
1404  */
1405 #$d_vendorlib PERL_VENDORLIB_EXP "$vendorlibexp"                /**/
1406 #$d_vendorlib PERL_VENDORLIB_STEM "$vendorlib_stem"             /**/
1407
1408 /* OSNAME:
1409  *      This symbol contains the name of the operating system, as determined
1410  *      by Configure.  You shouldn't rely on it too much; the specific
1411  *      feature tests from Configure are generally more reliable.
1412  */
1413 /* OSVERS:
1414  *      This symbol contains the version of the operating system, as determined
1415  *      by Configure.  You shouldn't rely on it too much; the specific
1416  *      feature tests from Configure are generally more reliable.
1417  */
1418 #define OSNAME "$osname"                /**/
1419 #define OSVERS "$osvers"                /**/
1420
1421 /* CAT2:
1422  *      This macro concatenates 2 tokens together.
1423  */
1424 /* STRINGIFY:
1425  *      This macro surrounds its token with double quotes.
1426  */
1427 #if $cpp_stuff == 1
1428 #define CAT2(a,b)       a/**/b
1429 #define STRINGIFY(a)    "a"
1430 #endif
1431 #if $cpp_stuff == 42
1432 #define PeRl_CaTiFy(a, b)       a ## b
1433 #define PeRl_StGiFy(a)  #a
1434 #define CAT2(a,b)       PeRl_CaTiFy(a,b)
1435 #define StGiFy(a)       PeRl_StGiFy(a)
1436 #define STRINGIFY(a)    PeRl_StGiFy(a)
1437 #endif
1438 #if $cpp_stuff != 1 && $cpp_stuff != 42
1439 #include "Bletch: How does this C preprocessor concatenate tokens?"
1440 #endif
1441
1442 /* CPPSTDIN:
1443  *      This symbol contains the first part of the string which will invoke
1444  *      the C preprocessor on the standard input and produce to standard
1445  *      output.  Typical value of "cc -E" or "/lib/cpp", but it can also
1446  *      call a wrapper. See CPPRUN.
1447  */
1448 /* CPPMINUS:
1449  *      This symbol contains the second part of the string which will invoke
1450  *      the C preprocessor on the standard input and produce to standard
1451  *      output.  This symbol will have the value "-" if CPPSTDIN needs a minus
1452  *      to specify standard input, otherwise the value is "".
1453  */
1454 /* CPPRUN:
1455  *      This symbol contains the string which will invoke a C preprocessor on
1456  *      the standard input and produce to standard output. It needs to end
1457  *      with CPPLAST, after all other preprocessor flags have been specified.
1458  *      The main difference with CPPSTDIN is that this program will never be a
1459  *      pointer to a shell wrapper, i.e. it will be empty if no preprocessor is
1460  *      available directly to the user. Note that it may well be different from
1461  *      the preprocessor used to compile the C program.
1462  */
1463 /* CPPLAST:
1464  *      This symbol is intended to be used along with CPPRUN in the same manner
1465  *      symbol CPPMINUS is used with CPPSTDIN. It contains either "-" or "".
1466  */
1467 #define CPPSTDIN "$cppstdin"
1468 #define CPPMINUS "$cppminus"
1469 #define CPPRUN "$cpprun"
1470 #define CPPLAST "$cpplast"
1471
1472 /* HAS_ACCESS:
1473  *      This manifest constant lets the C program know that the access()
1474  *      system call is available to check for accessibility using real UID/GID.
1475  *      (always present on UNIX.)
1476  */
1477 #$d_access HAS_ACCESS           /**/
1478
1479 /* HASATTRIBUTE_FORMAT:
1480  *      Can we handle GCC attribute for checking printf-style formats
1481  */
1482 /* PRINTF_FORMAT_NULL_OK:
1483  *      Allows __printf__ format to be null when checking printf-style
1484  */
1485 /* HASATTRIBUTE_MALLOC:
1486  *      Can we handle GCC attribute for malloc-style functions.
1487  */
1488 /* HASATTRIBUTE_NONNULL:
1489  *      Can we handle GCC attribute for nonnull function parms.
1490  */
1491 /* HASATTRIBUTE_NORETURN:
1492  *      Can we handle GCC attribute for functions that do not return
1493  */
1494 /* HASATTRIBUTE_PURE:
1495  *      Can we handle GCC attribute for pure functions
1496  */
1497 /* HASATTRIBUTE_UNUSED:
1498  *      Can we handle GCC attribute for unused variables and arguments
1499  */
1500 /* HASATTRIBUTE_DEPRECATED:
1501  *      Can we handle GCC attribute for marking deprecated APIs
1502  */
1503 /* HASATTRIBUTE_WARN_UNUSED_RESULT:
1504  *      Can we handle GCC attribute for warning on unused results
1505  */
1506 /* HASATTRIBUTE_ALWAYS_INLINE:
1507  *      Can we handle GCC attribute for functions that should always be
1508  *      inlined.
1509  */
1510 #$d_attribute_deprecated HASATTRIBUTE_DEPRECATED        /**/
1511 #$d_attribute_format HASATTRIBUTE_FORMAT        /**/
1512 #$d_printf_format_null PRINTF_FORMAT_NULL_OK    /**/
1513 #$d_attribute_noreturn HASATTRIBUTE_NORETURN    /**/
1514 #$d_attribute_malloc HASATTRIBUTE_MALLOC        /**/
1515 #$d_attribute_nonnull HASATTRIBUTE_NONNULL      /**/
1516 #$d_attribute_pure HASATTRIBUTE_PURE    /**/
1517 #$d_attribute_unused HASATTRIBUTE_UNUSED        /**/
1518 #$d_attribute_warn_unused_result HASATTRIBUTE_WARN_UNUSED_RESULT        /**/
1519 #$d_attribute_always_inline HASATTRIBUTE_ALWAYS_INLINE  /**/
1520
1521 /* HAS_BACKTRACE:
1522  *      This symbol, if defined, indicates that the backtrace() routine is
1523  *      available to get a stack trace.  The <execinfo.h> header must be
1524  *      included to use this routine.
1525  */
1526 #$d_backtrace HAS_BACKTRACE     /**/
1527
1528 /* HAS_CSH:
1529  *      This symbol, if defined, indicates that the C-shell exists.
1530  */
1531 /* CSH:
1532  *      This symbol, if defined, contains the full pathname of csh.
1533  */
1534 #$d_csh HAS_CSH         /**/
1535 #ifdef HAS_CSH
1536 #define CSH "$full_csh" /**/
1537 #endif
1538
1539 /* HAS_DLADDR:
1540  *      This symbol, if defined, indicates that the dladdr() routine is
1541  *      available to query dynamic linker information for an address.
1542  *      The <dlfcn.h> header must be included to use this routine.
1543  */
1544 #$d_dladdr HAS_DLADDR   /**/
1545
1546 /* SETUID_SCRIPTS_ARE_SECURE_NOW:
1547  *      This symbol, if defined, indicates that the bug that prevents
1548  *      setuid scripts from being secure is not present in this kernel.
1549  */
1550 /* DOSUID:
1551  *      This symbol, if defined, indicates that the C program should
1552  *      check the script that it is executing for setuid/setgid bits, and
1553  *      attempt to emulate setuid/setgid on systems that have disabled
1554  *      setuid #! scripts because the kernel can't do it securely.
1555  *      It is up to the package designer to make sure that this emulation
1556  *      is done securely.  Among other things, it should do an fstat on
1557  *      the script it just opened to make sure it really is a setuid/setgid
1558  *      script, it should make sure the arguments passed correspond exactly
1559  *      to the argument on the #! line, and it should not trust any
1560  *      subprocesses to which it must pass the filename rather than the
1561  *      file descriptor of the script to be executed.
1562  */
1563 #$d_suidsafe SETUID_SCRIPTS_ARE_SECURE_NOW      /**/
1564 #$d_dosuid DOSUID               /**/
1565
1566 /* HAS_ENDGRENT:
1567  *      This symbol, if defined, indicates that the getgrent routine is
1568  *      available for finalizing sequential access of the group database.
1569  */
1570 #$d_endgrent HAS_ENDGRENT               /**/
1571
1572 /* HAS_ENDHOSTENT:
1573  *      This symbol, if defined, indicates that the endhostent() routine is
1574  *      available to close whatever was being used for host queries.
1575  */
1576 #$d_endhent HAS_ENDHOSTENT              /**/
1577
1578 /* HAS_ENDNETENT:
1579  *      This symbol, if defined, indicates that the endnetent() routine is
1580  *      available to close whatever was being used for network queries.
1581  */
1582 #$d_endnent HAS_ENDNETENT               /**/
1583
1584 /* HAS_ENDPROTOENT:
1585  *      This symbol, if defined, indicates that the endprotoent() routine is
1586  *      available to close whatever was being used for protocol queries.
1587  */
1588 #$d_endpent HAS_ENDPROTOENT             /**/
1589
1590 /* HAS_ENDPWENT:
1591  *      This symbol, if defined, indicates that the endpwent routine is
1592  *      available for finalizing sequential access of the passwd database.
1593  */
1594 #$d_endpwent HAS_ENDPWENT               /**/
1595
1596 /* HAS_ENDSERVENT:
1597  *      This symbol, if defined, indicates that the endservent() routine is
1598  *      available to close whatever was being used for service queries.
1599  */
1600 #$d_endsent HAS_ENDSERVENT              /**/
1601
1602 /* FLEXFILENAMES:
1603  *      This symbol, if defined, indicates that the system supports filenames
1604  *      longer than 14 characters.
1605  */
1606 #$d_flexfnam    FLEXFILENAMES           /**/
1607
1608 /* HAS_GETGRENT:
1609  *      This symbol, if defined, indicates that the getgrent routine is
1610  *      available for sequential access of the group database.
1611  */
1612 #$d_getgrent HAS_GETGRENT               /**/
1613
1614 /* HAS_GETHOSTBYADDR:
1615  *      This symbol, if defined, indicates that the gethostbyaddr() routine is
1616  *      available to look up hosts by their IP addresses.
1617  */
1618 #$d_gethbyaddr HAS_GETHOSTBYADDR                /**/
1619
1620 /* HAS_GETHOSTBYNAME:
1621  *      This symbol, if defined, indicates that the gethostbyname() routine is
1622  *      available to look up host names in some data base or other.
1623  */
1624 #$d_gethbyname HAS_GETHOSTBYNAME                /**/
1625
1626 /* HAS_GETHOSTENT:
1627  *      This symbol, if defined, indicates that the gethostent() routine is
1628  *      available to look up host names in some data base or another.
1629  */
1630 #$d_gethent HAS_GETHOSTENT              /**/
1631
1632 /* HAS_GETHOSTNAME:
1633  *      This symbol, if defined, indicates that the C program may use the
1634  *      gethostname() routine to derive the host name.  See also HAS_UNAME
1635  *      and PHOSTNAME.
1636  */
1637 /* HAS_UNAME:
1638  *      This symbol, if defined, indicates that the C program may use the
1639  *      uname() routine to derive the host name.  See also HAS_GETHOSTNAME
1640  *      and PHOSTNAME.
1641  */
1642 /* PHOSTNAME:
1643  *      This symbol, if defined, indicates the command to feed to the
1644  *      popen() routine to derive the host name.  See also HAS_GETHOSTNAME
1645  *      and HAS_UNAME.  Note that the command uses a fully qualified path,
1646  *      so that it is safe even if used by a process with super-user
1647  *      privileges.
1648  */
1649 /* HAS_PHOSTNAME:
1650  *      This symbol, if defined, indicates that the C program may use the
1651  *      contents of PHOSTNAME as a command to feed to the popen() routine
1652  *      to derive the host name.
1653  */
1654 #$d_gethname HAS_GETHOSTNAME    /**/
1655 #$d_uname HAS_UNAME             /**/
1656 #$d_phostname HAS_PHOSTNAME     /**/
1657 #ifdef HAS_PHOSTNAME
1658 #define PHOSTNAME "$aphostname" /* How to get the host name */
1659 #endif
1660
1661 /* HAS_GETNETBYADDR:
1662  *      This symbol, if defined, indicates that the getnetbyaddr() routine is
1663  *      available to look up networks by their IP addresses.
1664  */
1665 #$d_getnbyaddr HAS_GETNETBYADDR         /**/
1666
1667 /* HAS_GETNETBYNAME:
1668  *      This symbol, if defined, indicates that the getnetbyname() routine is
1669  *      available to look up networks by their names.
1670  */
1671 #$d_getnbyname HAS_GETNETBYNAME         /**/
1672
1673 /* HAS_GETNETENT:
1674  *      This symbol, if defined, indicates that the getnetent() routine is
1675  *      available to look up network names in some data base or another.
1676  */
1677 #$d_getnent HAS_GETNETENT               /**/
1678
1679 /* HAS_GETPROTOENT:
1680  *      This symbol, if defined, indicates that the getprotoent() routine is
1681  *      available to look up protocols in some data base or another.
1682  */
1683 #$d_getpent HAS_GETPROTOENT             /**/
1684
1685 /* HAS_GETPGRP:
1686  *      This symbol, if defined, indicates that the getpgrp routine is
1687  *      available to get the current process group.
1688  */
1689 /* USE_BSD_GETPGRP:
1690  *      This symbol, if defined, indicates that getpgrp needs one
1691  *      arguments whereas USG one needs none.
1692  */
1693 #$d_getpgrp HAS_GETPGRP         /**/
1694 #$d_bsdgetpgrp USE_BSD_GETPGRP  /**/
1695
1696 /* HAS_GETPROTOBYNAME:
1697  *      This symbol, if defined, indicates that the getprotobyname()
1698  *      routine is available to look up protocols by their name.
1699  */
1700 /* HAS_GETPROTOBYNUMBER:
1701  *      This symbol, if defined, indicates that the getprotobynumber()
1702  *      routine is available to look up protocols by their number.
1703  */
1704 #$d_getpbyname HAS_GETPROTOBYNAME               /**/
1705 #$d_getpbynumber HAS_GETPROTOBYNUMBER           /**/
1706
1707 /* HAS_GETPWENT:
1708  *      This symbol, if defined, indicates that the getpwent routine is
1709  *      available for sequential access of the passwd database.
1710  *      If this is not available, the older getpw() function may be available.
1711  */
1712 #$d_getpwent HAS_GETPWENT               /**/
1713
1714 /* HAS_GETSERVENT:
1715  *      This symbol, if defined, indicates that the getservent() routine is
1716  *      available to look up network services in some data base or another.
1717  */
1718 #$d_getsent HAS_GETSERVENT              /**/
1719
1720 /* HAS_GETSERVBYNAME:
1721  *      This symbol, if defined, indicates that the getservbyname()
1722  *      routine is available to look up services by their name.
1723  */
1724 /* HAS_GETSERVBYPORT:
1725  *      This symbol, if defined, indicates that the getservbyport()
1726  *      routine is available to look up services by their port.
1727  */
1728 #$d_getsbyname HAS_GETSERVBYNAME                /**/
1729 #$d_getsbyport HAS_GETSERVBYPORT                /**/
1730
1731 /* HAS_HTONL:
1732  *      This symbol, if defined, indicates that the htonl() routine (and
1733  *      friends htons() ntohl() ntohs()) are available to do network
1734  *      order byte swapping.
1735  */
1736 /* HAS_HTONS:
1737  *      This symbol, if defined, indicates that the htons() routine (and
1738  *      friends htonl() ntohl() ntohs()) are available to do network
1739  *      order byte swapping.
1740  */
1741 /* HAS_NTOHL:
1742  *      This symbol, if defined, indicates that the ntohl() routine (and
1743  *      friends htonl() htons() ntohs()) are available to do network
1744  *      order byte swapping.
1745  */
1746 /* HAS_NTOHS:
1747  *      This symbol, if defined, indicates that the ntohs() routine (and
1748  *      friends htonl() htons() ntohl()) are available to do network
1749  *      order byte swapping.
1750  */
1751 #$d_htonl HAS_HTONL             /**/
1752 #$d_htonl HAS_HTONS             /**/
1753 #$d_htonl HAS_NTOHL             /**/
1754 #$d_htonl HAS_NTOHS             /**/
1755
1756 /* HAS_LONG_DOUBLE:
1757  *      This symbol will be defined if the C compiler supports long
1758  *      doubles.
1759  */
1760 /* LONG_DOUBLESIZE:
1761  *      This symbol contains the size of a long double, so that the
1762  *      C preprocessor can make decisions based on it.  It is only
1763  *      defined if the system supports long doubles.  Note that this
1764  *      is sizeof(long double), which may include unused bytes.
1765  */
1766 /* HAS_LDEXPL:
1767  *      This symbol, if defined, indicates that the ldexpl routine is
1768  *      available to shift a long double floating-point number
1769  *      by an integral power of 2.
1770  */
1771 /* LONG_DOUBLEKIND:
1772  *      LONG_DOUBLEKIND will be one of
1773  *      LONG_DOUBLE_IS_DOUBLE
1774  *      LONG_DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
1775  *      LONG_DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN
1776  *      LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN
1777  *      LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN
1778  *      LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_LE
1779  *      LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE
1780  *      LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_BE
1781  *      LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_LE
1782  *      LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LITTLE_ENDIAN
1783  *      LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BIG_ENDIAN
1784  *      LONG_DOUBLE_IS_VAX_H_FLOAT
1785  *      LONG_DOUBLE_IS_UNKNOWN_FORMAT
1786  *      It is only defined if the system supports long doubles.
1787  */
1788 /* LONG_DOUBLE_STYLE_IEEE:
1789  *      This symbol, if defined, indicates that the long double
1790  *      is any of the IEEE 754 style long doubles:
1791  *      LONG_DOUBLE_STYLE_IEEE_STD, LONG_DOUBLE_STYLE_IEEE_EXTENDED,
1792  *      LONG_DOUBLE_STYLE_IEEE_DOUBLEDOUBLE.
1793  */
1794 /* LONG_DOUBLE_STYLE_IEEE_DOUBLEDOUBLE:
1795  *      This symbol, if defined, indicates that the long double is
1796  *      the 128-bit double-double.
1797  */
1798 /* LONG_DOUBLE_STYLE_IEEE_EXTENDED:
1799  *      This symbol, if defined, indicates that the long double is
1800  *      the 80-bit IEEE 754. Note that despite the 'extended' this
1801  *      is less than the 'std', since this is an extension of
1802  *      the double precision.
1803  */
1804 /* LONG_DOUBLE_STYLE_IEEE_STD:
1805  *      This symbol, if defined, indicates that the long double is
1806  *      the 128-bit IEEE 754.
1807  */
1808 /* LONG_DOUBLE_STYLE_VAX:
1809  *      This symbol, if defined, indicates that the long double is
1810  *      the 128-bit VAX format H.
1811  */
1812 #$d_ldexpl  HAS_LDEXPL          /**/
1813 #$d_longdbl HAS_LONG_DOUBLE             /**/
1814 #ifdef HAS_LONG_DOUBLE
1815 #define LONG_DOUBLESIZE $longdblsize            /**/
1816 #define LONG_DOUBLEKIND $longdblkind            /**/
1817 #define LONG_DOUBLE_IS_DOUBLE                           0
1818 #define LONG_DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN   1
1819 #define LONG_DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN      2
1820 #define LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN         3
1821 #define LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN            4
1822 #define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_LE       5
1823 #define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE       6
1824 #define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_BE       7
1825 #define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_LE       8
1826 #define LONG_DOUBLE_IS_VAX_H_FLOAT                      9
1827 #define LONG_DOUBLE_IS_UNKNOWN_FORMAT                   -1
1828 #define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LITTLE_ENDIAN       LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_LE /* back-compat */
1829 #define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BIG_ENDIAN  LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE /* back-compat */
1830 #$d_long_double_style_ieee LONG_DOUBLE_STYLE_IEEE
1831 #$d_long_double_style_ieee_doubledouble LONG_DOUBLE_STYLE_IEEE_DOUBLEDOUBLE
1832 #$d_long_double_style_ieee_extended LONG_DOUBLE_STYLE_IEEE_EXTENDED
1833 #$d_long_double_style_ieee_std LONG_DOUBLE_STYLE_IEEE_STD
1834 #$d_long_double_style_vax LONG_DOUBLE_STYLE_VAX
1835 #endif
1836
1837 /* HAS_LONG_LONG:
1838  *      This symbol will be defined if the C compiler supports long long.
1839  */
1840 /* LONGLONGSIZE:
1841  *      This symbol contains the size of a long long, so that the
1842  *      C preprocessor can make decisions based on it.  It is only
1843  *      defined if the system supports long long.
1844  */
1845 #$d_longlong HAS_LONG_LONG              /**/
1846 #ifdef HAS_LONG_LONG
1847 #define LONGLONGSIZE $longlongsize              /**/
1848 #endif
1849
1850 /* HAS_MKSTEMP:
1851  *      This symbol, if defined, indicates that the mkstemp routine is
1852  *      available to exclusively create and open a uniquely named
1853  *      temporary file.
1854  */
1855 #$d_mkstemp HAS_MKSTEMP         /**/
1856
1857 /* HAS_MMAP:
1858  *      This symbol, if defined, indicates that the mmap system call is
1859  *      available to map a file into memory.
1860  */
1861 /* Mmap_t:
1862  *      This symbol holds the return type of the mmap() system call
1863  *      (and simultaneously the type of the first argument).
1864  *      Usually set to 'void *' or 'caddr_t'.
1865  */
1866 #$d_mmap HAS_MMAP               /**/
1867 #define Mmap_t $mmaptype        /**/
1868
1869 /* HAS_SETGRENT:
1870  *      This symbol, if defined, indicates that the setgrent routine is
1871  *      available for initializing sequential access of the group database.
1872  */
1873 #$d_setgrent HAS_SETGRENT               /**/
1874
1875 /* HAS_SETHOSTENT:
1876  *      This symbol, if defined, indicates that the sethostent() routine is
1877  *      available.
1878  */
1879 #$d_sethent HAS_SETHOSTENT              /**/
1880
1881 /* HAS_SETNETENT:
1882  *      This symbol, if defined, indicates that the setnetent() routine is
1883  *      available.
1884  */
1885 #$d_setnent HAS_SETNETENT               /**/
1886
1887 /* HAS_SETPROTOENT:
1888  *      This symbol, if defined, indicates that the setprotoent() routine is
1889  *      available.
1890  */
1891 #$d_setpent HAS_SETPROTOENT             /**/
1892
1893 /* HAS_SETPGRP:
1894  *      This symbol, if defined, indicates that the setpgrp routine is
1895  *      available to set the current process group.
1896  */
1897 /* USE_BSD_SETPGRP:
1898  *      This symbol, if defined, indicates that setpgrp needs two
1899  *      arguments whereas USG one needs none.  See also HAS_SETPGID
1900  *      for a POSIX interface.
1901  */
1902 #$d_setpgrp HAS_SETPGRP         /**/
1903 #$d_bsdsetpgrp USE_BSD_SETPGRP  /**/
1904
1905 /* HAS_SETPWENT:
1906  *      This symbol, if defined, indicates that the setpwent routine is
1907  *      available for initializing sequential access of the passwd database.
1908  */
1909 #$d_setpwent HAS_SETPWENT               /**/
1910
1911 /* HAS_SETSERVENT:
1912  *      This symbol, if defined, indicates that the setservent() routine is
1913  *      available.
1914  */
1915 #$d_setsent HAS_SETSERVENT              /**/
1916
1917 /* HAS_SETVBUF:
1918  *      This symbol, if defined, indicates that the setvbuf routine is
1919  *      available to change buffering on an open stdio stream.
1920  *      to a line-buffered mode.
1921  */
1922 #$d_setvbuf HAS_SETVBUF         /**/
1923
1924 /* HAS_SHM:
1925  *      This symbol, if defined, indicates that the entire shm*(2) library is
1926  *      supported.
1927  */
1928 #$d_shm HAS_SHM         /**/
1929
1930 /* Shmat_t:
1931  *      This symbol holds the return type of the shmat() system call.
1932  *      Usually set to 'void *' or 'char *'.
1933  */
1934 /* HAS_SHMAT_PROTOTYPE:
1935  *      This symbol, if defined, indicates that the sys/shm.h includes
1936  *      a prototype for shmat().  Otherwise, it is up to the program to
1937  *      guess one.  Shmat_t shmat(int, Shmat_t, int) is a good guess,
1938  *      but not always right so it should be emitted by the program only
1939  *      when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
1940  */
1941 #define Shmat_t $shmattype      /**/
1942 #$d_shmatprototype HAS_SHMAT_PROTOTYPE  /**/
1943
1944 /* HAS_SOCKET:
1945  *      This symbol, if defined, indicates that the BSD socket interface is
1946  *      supported.
1947  */
1948 /* HAS_SOCKETPAIR:
1949  *      This symbol, if defined, indicates that the BSD socketpair() call is
1950  *      supported.
1951  */
1952 /* HAS_SOCKADDR_SA_LEN:
1953  *      This symbol, if defined, indicates that the struct sockaddr
1954  *      structure has a member called sa_len, indicating the length of
1955  *      the structure.
1956  */
1957 /* HAS_SOCKADDR_IN6:
1958  *      This symbol, if defined, indicates the availability of
1959  *      struct sockaddr_in6;
1960  */
1961 /* HAS_SOCKADDR_STORAGE:
1962  *      This symbol, if defined, indicates the availability of
1963  *      struct sockaddr_storage;
1964  */
1965 /* HAS_SIN6_SCOPE_ID:
1966  *      This symbol, if defined, indicates that the struct sockaddr_in6
1967  *      structure has a member called sin6_scope_id.
1968  */
1969 /* HAS_IP_MREQ:
1970  *      This symbol, if defined, indicates the availability of
1971  *      struct ip_mreq;
1972  */
1973 /* HAS_IP_MREQ_SOURCE:
1974  *      This symbol, if defined, indicates the availability of
1975  *      struct ip_mreq_source;
1976  */
1977 /* HAS_IPV6_MREQ:
1978  *      This symbol, if defined, indicates the availability of
1979  *      struct ipv6_mreq;
1980  */
1981 /* HAS_IPV6_MREQ_SOURCE:
1982  *      This symbol, if defined, indicates the availability of
1983  *      struct ipv6_mreq_source;
1984  */
1985 #$d_socket      HAS_SOCKET              /**/
1986 #$d_sockpair    HAS_SOCKETPAIR  /**/
1987 #$d_sockaddr_sa_len     HAS_SOCKADDR_SA_LEN     /**/
1988 #$d_sockaddr_in6        HAS_SOCKADDR_IN6        /**/
1989 #$d_sockaddr_storage    HAS_SOCKADDR_STORAGE    /**/
1990 #$d_sin6_scope_id       HAS_SIN6_SCOPE_ID       /**/
1991 #$d_ip_mreq     HAS_IP_MREQ     /**/
1992 #$d_ip_mreq_source      HAS_IP_MREQ_SOURCE      /**/
1993 #$d_ipv6_mreq   HAS_IPV6_MREQ   /**/
1994 #$d_ipv6_mreq_source    HAS_IPV6_MREQ_SOURCE    /**/
1995
1996 /* USE_STAT_BLOCKS:
1997  *      This symbol is defined if this system has a stat structure declaring
1998  *      st_blksize and st_blocks.
1999  */
2000 #ifndef USE_STAT_BLOCKS
2001 #$d_statblks USE_STAT_BLOCKS    /**/
2002 #endif
2003
2004 /* HAS_SYS_ERRLIST:
2005  *      This symbol, if defined, indicates that the sys_errlist array is
2006  *      available to translate error numbers to strings. The extern int
2007  *      sys_nerr gives the size of that table.
2008  */
2009 #$d_syserrlst HAS_SYS_ERRLIST   /**/
2010
2011 /* HAS_STRTOUL:
2012  *      This symbol, if defined, indicates that the strtoul routine is
2013  *      available to provide conversion of strings to unsigned long.
2014  */
2015 #$d_strtoul HAS_STRTOUL /**/
2016
2017 /* HAS_UNION_SEMUN:
2018  *      This symbol, if defined, indicates that the union semun is
2019  *      defined by including <sys/sem.h>.  If not, the user code
2020  *      probably needs to define it as:
2021  *       union semun {
2022  *          int val;
2023  *          struct semid_ds *buf;
2024  *          unsigned short *array;
2025  *       }
2026  */
2027 /* USE_SEMCTL_SEMUN:
2028  *      This symbol, if defined, indicates that union semun is
2029  *      used for semctl IPC_STAT.
2030  */
2031 /* USE_SEMCTL_SEMID_DS:
2032  *      This symbol, if defined, indicates that struct semid_ds * is
2033  *      used for semctl IPC_STAT.
2034  */
2035 #$d_union_semun HAS_UNION_SEMUN /**/
2036 #$d_semctl_semun USE_SEMCTL_SEMUN       /**/
2037 #$d_semctl_semid_ds USE_SEMCTL_SEMID_DS /**/
2038
2039 /* HAS_VFORK:
2040  *      This symbol, if defined, indicates that vfork() exists.
2041  */
2042 #$d_vfork HAS_VFORK     /**/
2043
2044 /* HAS_PSEUDOFORK:
2045  *      This symbol, if defined, indicates that an emulation of the
2046  *      fork routine is available.
2047  */
2048 #$d_pseudofork HAS_PSEUDOFORK   /**/
2049
2050 /* Signal_t:
2051  *      This symbol's value is either "void" or "int", corresponding to the
2052  *      appropriate return type of a signal handler.  Thus, you can declare
2053  *      a signal handler using "Signal_t (*handler)()", and define the
2054  *      handler using "Signal_t handler(sig)".
2055  */
2056 #define Signal_t $signal_t      /* Signal handler's return type */
2057
2058 /* I_DIRENT:
2059  *      This symbol, if defined, indicates to the C program that it should
2060  *      include <dirent.h>. Using this symbol also triggers the definition
2061  *      of the Direntry_t define which ends up being 'struct dirent' or
2062  *      'struct direct' depending on the availability of <dirent.h>.
2063  */
2064 /* DIRNAMLEN:
2065  *      This symbol, if defined, indicates to the C program that the length
2066  *      of directory entry names is provided by a d_namlen field.  Otherwise
2067  *      you need to do strlen() on the d_name field.
2068  */
2069 /* Direntry_t:
2070  *      This symbol is set to 'struct direct' or 'struct dirent' depending on
2071  *      whether dirent is available or not. You should use this pseudo type to
2072  *      portably declare your directory entries.
2073  */
2074 #$i_dirent I_DIRENT             /**/
2075 #$d_dirnamlen DIRNAMLEN /**/
2076 #define Direntry_t $direntrytype
2077
2078 /* I_EXECINFO:
2079  *      This symbol, if defined, indicates to the C program that it should
2080  *      include <execinfo.h> for backtrace() support.
2081  */
2082 #$i_execinfo I_EXECINFO         /**/
2083
2084 /* I_GRP:
2085  *      This symbol, if defined, indicates to the C program that it should
2086  *      include <grp.h>.
2087  */
2088 /* GRPASSWD:
2089  *      This symbol, if defined, indicates to the C program that struct group
2090  *      in <grp.h> contains gr_passwd.
2091  */
2092 #$i_grp I_GRP           /**/
2093 #$d_grpasswd GRPASSWD   /**/
2094
2095 /* I_NDBM:
2096  *      This symbol, if defined, indicates that <ndbm.h> exists and should
2097  *      be included.
2098  */
2099 /* I_GDBMNDBM:
2100  *      This symbol, if defined, indicates that <gdbm/ndbm.h> exists and should
2101  *      be included.  This was the location of the ndbm.h compatibility file
2102  *      in RedHat 7.1.
2103  */
2104 /* I_GDBM_NDBM:
2105  *      This symbol, if defined, indicates that <gdbm-ndbm.h> exists and should
2106  *      be included.  This is the location of the ndbm.h compatibility file
2107  *      in Debian 4.0.
2108  */
2109 /* NDBM_H_USES_PROTOTYPES:
2110  *      This symbol, if defined, indicates that <ndbm.h> uses real ANSI C
2111  *      prototypes instead of K&R style function declarations without any
2112  *      parameter information. While ANSI C prototypes are supported in C++,
2113  *      K&R style function declarations will yield errors.
2114  */
2115 /* GDBMNDBM_H_USES_PROTOTYPES:
2116  *      This symbol, if defined, indicates that <gdbm/ndbm.h> uses real ANSI C
2117  *      prototypes instead of K&R style function declarations without any
2118  *      parameter information. While ANSI C prototypes are supported in C++,
2119  *      K&R style function declarations will yield errors.
2120  */
2121 /* GDBM_NDBM_H_USES_PROTOTYPES:
2122  *      This symbol, if defined, indicates that <gdbm-ndbm.h> uses real ANSI C
2123  *      prototypes instead of K&R style function declarations without any
2124  *      parameter information. While ANSI C prototypes are supported in C++,
2125  *      K&R style function declarations will yield errors.
2126  */
2127 #$i_ndbm I_NDBM /**/
2128 #$i_gdbmndbm I_GDBMNDBM /**/
2129 #$i_gdbm_ndbm I_GDBM_NDBM       /**/
2130 #$d_ndbm_h_uses_prototypes NDBM_H_USES_PROTOTYPES       /**/
2131 #$d_gdbmndbm_h_uses_prototypes GDBMNDBM_H_USES_PROTOTYPES       /**/
2132 #$d_gdbm_ndbm_h_uses_prototypes GDBM_NDBM_H_USES_PROTOTYPES     /**/
2133
2134 /* I_NETDB:
2135  *      This symbol, if defined, indicates that <netdb.h> exists and
2136  *      should be included.
2137  */
2138 #$i_netdb I_NETDB               /**/
2139
2140 /* I_NET_ERRNO:
2141  *      This symbol, if defined, indicates that <net/errno.h> exists and
2142  *      should be included.
2143  */
2144 #$i_neterrno I_NET_ERRNO                /**/
2145
2146 /* I_PWD:
2147  *      This symbol, if defined, indicates to the C program that it should
2148  *      include <pwd.h>.
2149  */
2150 /* PWQUOTA:
2151  *      This symbol, if defined, indicates to the C program that struct passwd
2152  *      contains pw_quota.
2153  */
2154 /* PWAGE:
2155  *      This symbol, if defined, indicates to the C program that struct passwd
2156  *      contains pw_age.
2157  */
2158 /* PWCHANGE:
2159  *      This symbol, if defined, indicates to the C program that struct passwd
2160  *      contains pw_change.
2161  */
2162 /* PWCLASS:
2163  *      This symbol, if defined, indicates to the C program that struct passwd
2164  *      contains pw_class.
2165  */
2166 /* PWEXPIRE:
2167  *      This symbol, if defined, indicates to the C program that struct passwd
2168  *      contains pw_expire.
2169  */
2170 /* PWCOMMENT:
2171  *      This symbol, if defined, indicates to the C program that struct passwd
2172  *      contains pw_comment.
2173  */
2174 /* PWGECOS:
2175  *      This symbol, if defined, indicates to the C program that struct passwd
2176  *      contains pw_gecos.
2177  */
2178 /* PWPASSWD:
2179  *      This symbol, if defined, indicates to the C program that struct passwd
2180  *      contains pw_passwd.
2181  */
2182 #$i_pwd I_PWD           /**/
2183 #$d_pwquota PWQUOTA     /**/
2184 #$d_pwage PWAGE /**/
2185 #$d_pwchange PWCHANGE   /**/
2186 #$d_pwclass PWCLASS     /**/
2187 #$d_pwexpire PWEXPIRE   /**/
2188 #$d_pwcomment PWCOMMENT /**/
2189 #$d_pwgecos PWGECOS     /**/
2190 #$d_pwpasswd PWPASSWD   /**/
2191
2192 /* I_SYSUIO:
2193  *      This symbol, if defined, indicates that <sys/uio.h> exists and
2194  *      should be included.
2195  */
2196 #$i_sysuio      I_SYSUIO                /**/
2197
2198 /* I_TERMIO:
2199  *      This symbol, if defined, indicates that the program should include
2200  *      <termio.h> rather than <sgtty.h>.  There are also differences in
2201  *      the ioctl() calls that depend on the value of this symbol.
2202  */
2203 /* I_TERMIOS:
2204  *      This symbol, if defined, indicates that the program should include
2205  *      the POSIX termios.h rather than sgtty.h or termio.h.
2206  *      There are also differences in the ioctl() calls that depend on the
2207  *      value of this symbol.
2208  */
2209 /* I_SGTTY:
2210  *      This symbol, if defined, indicates that the program should include
2211  *      <sgtty.h> rather than <termio.h>.  There are also differences in
2212  *      the ioctl() calls that depend on the value of this symbol.
2213  */
2214 #$i_termio I_TERMIO             /**/
2215 #$i_termios I_TERMIOS           /**/
2216 #$i_sgtty I_SGTTY               /**/
2217
2218 /* Free_t:
2219  *      This variable contains the return type of free().  It is usually
2220  *      void, but occasionally int.
2221  */
2222 /* Malloc_t:
2223  *      This symbol is the type of pointer returned by malloc and realloc.
2224  */
2225 #define Malloc_t $malloctype                    /**/
2226 #define Free_t $freetype                        /**/
2227
2228 /* PERL_MALLOC_WRAP:
2229  *      This symbol, if defined, indicates that we'd like malloc wrap checks.
2230  */
2231 #$usemallocwrap PERL_MALLOC_WRAP                /**/
2232
2233 /* MYMALLOC:
2234  *      This symbol, if defined, indicates that we're using our own malloc.
2235  */
2236 #$d_mymalloc MYMALLOC                   /**/
2237
2238 /* SH_PATH:
2239  *      This symbol contains the full pathname to the shell used on this
2240  *      on this system to execute Bourne shell scripts.  Usually, this will be
2241  *      /bin/sh, though it's possible that some systems will have /bin/ksh,
2242  *      /bin/pdksh, /bin/ash, /bin/bash, or even something such as
2243  *      D:/bin/sh.exe.
2244  */
2245 #define SH_PATH "$targetsh"  /**/
2246
2247 /* SIG_NAME:
2248  *      This symbol contains a list of signal names in order of
2249  *      signal number. This is intended
2250  *      to be used as a static array initialization, like this:
2251  *              char *sig_name[] = { SIG_NAME };
2252  *      The signals in the list are separated with commas, and each signal
2253  *      is surrounded by double quotes. There is no leading SIG in the signal
2254  *      name, i.e. SIGQUIT is known as "QUIT".
2255  *      Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
2256  *      etc., where nn is the actual signal number (e.g. NUM37).
2257  *      The signal number for sig_name[i] is stored in sig_num[i].
2258  *      The last element is 0 to terminate the list with a NULL.  This
2259  *      corresponds to the 0 at the end of the sig_name_init list.
2260  *      Note that this variable is initialized from the sig_name_init,
2261  *      not from sig_name (which is unused).
2262  */
2263 /* SIG_NUM:
2264  *      This symbol contains a list of signal numbers, in the same order as the
2265  *      SIG_NAME list. It is suitable for static array initialization, as in:
2266  *              int sig_num[] = { SIG_NUM };
2267  *      The signals in the list are separated with commas, and the indices
2268  *      within that list and the SIG_NAME list match, so it's easy to compute
2269  *      the signal name from a number or vice versa at the price of a small
2270  *      dynamic linear lookup.
2271  *      Duplicates are allowed, but are moved to the end of the list.
2272  *      The signal number corresponding to sig_name[i] is sig_number[i].
2273  *      if (i < NSIG) then sig_number[i] == i.
2274  *      The last element is 0, corresponding to the 0 at the end of
2275  *      the sig_name_init list.
2276  *      Note that this variable is initialized from the sig_num_init,
2277  *      not from sig_num (which is unused).
2278  */
2279 /* SIG_SIZE:
2280  *      This variable contains the number of elements of the SIG_NAME
2281  *      and SIG_NUM arrays, excluding the final NULL entry.
2282  */
2283 #define SIG_NAME $sig_name_init         /**/
2284 #define SIG_NUM  $sig_num_init          /**/
2285 #define SIG_SIZE $sig_size                      /**/
2286
2287 /* USE_CROSS_COMPILE:
2288  *      This symbol, if defined, indicates that Perl is being cross-compiled.
2289  */
2290 /* PERL_TARGETARCH:
2291  *      This symbol, if defined, indicates the target architecture
2292  *      Perl has been cross-compiled to.  Undefined if not a cross-compile.
2293  */
2294 #ifndef USE_CROSS_COMPILE
2295 #$usecrosscompile       USE_CROSS_COMPILE       /**/
2296 #define PERL_TARGETARCH "$targetarch"   /**/
2297 #endif
2298
2299 /* PERL_USE_DEVEL:
2300  *      This symbol, if defined, indicates that Perl was configured with
2301  *      -Dusedevel, to enable development features.  This should not be
2302  *      done for production builds.
2303  */
2304 #$usedevel      PERL_USE_DEVEL          /**/
2305
2306 /* HAS_ATOLF:
2307  *      This symbol, if defined, indicates that the atolf routine is
2308  *      available to convert strings into long doubles.
2309  */
2310 #$d_atolf HAS_ATOLF             /**/
2311
2312 /* HAS_ATOLL:
2313  *      This symbol, if defined, indicates that the atoll routine is
2314  *      available to convert strings into long longs.
2315  */
2316 #$d_atoll HAS_ATOLL             /**/
2317
2318 /* HAS__FWALK:
2319  *      This symbol, if defined, indicates that the _fwalk system call is
2320  *      available to apply a function to all the file handles.
2321  */
2322 #$d__fwalk HAS__FWALK           /**/
2323
2324 /* HAS_ACCEPT4:
2325  *      This symbol, if defined, indicates that the accept4 routine is
2326  *      available to accept socket connections.
2327  */
2328 #$d_accept4 HAS_ACCEPT4 /**/
2329
2330 /* HAS_ACOSH:
2331  *      This symbol, if defined, indicates that the acosh routine is
2332  *      available to do the inverse hyperbolic cosine function.
2333  */
2334 #$d_acosh HAS_ACOSH             /**/
2335
2336 /* HAS_AINTL:
2337  *      This symbol, if defined, indicates that the aintl routine is
2338  *      available.  If copysignl is also present we can emulate modfl.
2339  */
2340 #$d_aintl HAS_AINTL             /**/
2341
2342 /* HAS_ASINH:
2343  *      This symbol, if defined, indicates that the asinh routine is
2344  *      available to do the inverse hyperbolic sine function.
2345  */
2346 #$d_asinh HAS_ASINH             /**/
2347
2348 /* HAS_ATANH:
2349  *      This symbol, if defined, indicates that the atanh routine is
2350  *      available to do the inverse hyperbolic tangent function.
2351  */
2352 #$d_atanh HAS_ATANH             /**/
2353
2354 /* HAS_NON_INT_BITFIELDS:
2355  *      This symbol, if defined, indicates that the C compiler accepts, without
2356  *      error or warning, struct bitfields that are declared with sizes other
2357  *      than plain 'int'; for example 'unsigned char' is accepted.
2358  */
2359 #$d_non_int_bitfields HAS_NON_INT_BITFIELDS     /**/
2360
2361 /* HAS_BUILTIN_CHOOSE_EXPR:
2362  *      Can we handle GCC builtin for compile-time ternary-like expressions
2363  */
2364 /* HAS_BUILTIN_EXPECT:
2365  *      Can we handle GCC builtin for telling that certain values are more
2366  *      likely
2367  */
2368 #$d_builtin_expect HAS_BUILTIN_EXPECT   /**/
2369 #$d_builtin_choose_expr HAS_BUILTIN_CHOOSE_EXPR /**/
2370
2371 /* HAS_BUILTIN_ADD_OVERFLOW:
2372  *      This symbol, if defined, indicates that the compiler supports
2373  *      __builtin_add_overflow for adding integers with overflow checks.
2374  */
2375 /* HAS_BUILTIN_SUB_OVERFLOW:
2376  *      This symbol, if defined, indicates that the compiler supports
2377  *      __builtin_sub_overflow for subtracting integers with overflow checks.
2378  */
2379 /* HAS_BUILTIN_MUL_OVERFLOW:
2380  *      This symbol, if defined, indicates that the compiler supports
2381  *      __builtin_mul_overflow for multiplying integers with overflow checks.
2382  */
2383 #$d_builtin_add_overflow HAS_BUILTIN_ADD_OVERFLOW       /**/
2384 #$d_builtin_sub_overflow HAS_BUILTIN_SUB_OVERFLOW       /**/
2385 #$d_builtin_mul_overflow HAS_BUILTIN_MUL_OVERFLOW       /**/
2386
2387 /* HAS_C99_VARIADIC_MACROS:
2388  *      If defined, the compiler supports C99 variadic macros.
2389  */
2390 #$d_c99_variadic_macros HAS_C99_VARIADIC_MACROS /**/
2391
2392 /* HAS_CLASS:
2393  *      This symbol, if defined, indicates that the class routine is
2394  *      available to classify doubles.  Available for example in AIX.
2395  *      The returned values are defined in <float.h> and are:
2396  *
2397  *      FP_PLUS_NORM    Positive normalized, nonzero
2398  *      FP_MINUS_NORM   Negative normalized, nonzero
2399  *      FP_PLUS_DENORM  Positive denormalized, nonzero
2400  *      FP_MINUS_DENORM Negative denormalized, nonzero
2401  *      FP_PLUS_ZERO    +0.0
2402  *      FP_MINUS_ZERO   -0.0
2403  *      FP_PLUS_INF     +INF
2404  *      FP_MINUS_INF    -INF
2405  *      FP_NANS         Signaling Not a Number (NaNS)
2406  *      FP_NANQ         Quiet Not a Number (NaNQ)
2407  */
2408 #$d_class HAS_CLASS             /**/
2409
2410 /* HAS_CLEARENV:
2411  *      This symbol, if defined, indicates that the clearenv () routine is
2412  *      available for use.
2413  */
2414 #$d_clearenv HAS_CLEARENV               /**/
2415
2416 /* HAS_STRUCT_CMSGHDR:
2417  *      This symbol, if defined, indicates that the struct cmsghdr
2418  *      is supported.
2419  */
2420 #$d_cmsghdr_s HAS_STRUCT_CMSGHDR        /**/
2421
2422 /* HAS_COPYSIGN:
2423  *      This symbol, if defined, indicates that the copysign routine is
2424  *      available to do the copysign function.
2425  */
2426 #$d_copysign HAS_COPYSIGN               /**/
2427
2428 /* HAS_COPYSIGNL:
2429  *      This symbol, if defined, indicates that the copysignl routine is
2430  *      available.  If aintl is also present we can emulate modfl.
2431  */
2432 #$d_copysignl HAS_COPYSIGNL             /**/
2433
2434 /* USE_CPLUSPLUS:
2435  *      This symbol, if defined, indicates that a C++ compiler was
2436  *      used to compiled Perl and will be used to compile extensions.
2437  */
2438 #$d_cplusplus USE_CPLUSPLUS             /**/
2439
2440 /* HAS_DBMINIT_PROTO:
2441  *      This symbol, if defined, indicates that the system provides
2442  *      a prototype for the dbminit() function.  Otherwise, it is up
2443  *      to the program to supply one.  A good guess is
2444  *              extern int dbminit(char *);
2445  */
2446 #$d_dbminitproto        HAS_DBMINIT_PROTO       /**/
2447
2448 /* HAS_DIR_DD_FD:
2449  *      This symbol, if defined, indicates that the the DIR* dirstream
2450  *      structure contains a member variable named dd_fd.
2451  */
2452 #$d_dir_dd_fd HAS_DIR_DD_FD             /**/
2453
2454 /* HAS_DIRFD:
2455  *      This manifest constant lets the C program know that dirfd
2456  *      is available.
2457  */
2458 #$d_dirfd HAS_DIRFD             /**/
2459
2460 /* DLSYM_NEEDS_UNDERSCORE:
2461  *      This symbol, if defined, indicates that we need to prepend an
2462  *      underscore to the symbol name before calling dlsym().  This only
2463  *      makes sense if you *have* dlsym, which we will presume is the
2464  *      case if you're using dl_dlopen.xs.
2465  */
2466 #$d_dlsymun     DLSYM_NEEDS_UNDERSCORE  /**/
2467
2468 /* HAS_DUP3:
2469  *      This symbol, if defined, indicates that the dup3 routine is
2470  *      available to duplicate file descriptors.
2471  */
2472 #$d_dup3 HAS_DUP3       /**/
2473
2474 /* HAS_ERF:
2475  *      This symbol, if defined, indicates that the erf routine is
2476  *      available to do the error function.
2477  */
2478 #$d_erf HAS_ERF         /**/
2479
2480 /* HAS_ERFC:
2481  *      This symbol, if defined, indicates that the erfc routine is
2482  *      available to do the complementary error function.
2483  */
2484 #$d_erfc HAS_ERFC               /**/
2485
2486 /* HAS_EXP2:
2487  *      This symbol, if defined, indicates that the exp2 routine is
2488  *      available to do the 2**x function.
2489  */
2490 #$d_exp2 HAS_EXP2               /**/
2491
2492 /* HAS_EXPM1:
2493  *      This symbol, if defined, indicates that the expm1 routine is
2494  *      available to do the exp(x) - 1 when x is near 1 function.
2495  */
2496 #$d_expm1 HAS_EXPM1             /**/
2497
2498 /* HAS_FAST_STDIO:
2499  *      This symbol, if defined, indicates that the "fast stdio"
2500  *      is available to manipulate the stdio buffers directly.
2501  */
2502 #$d_faststdio HAS_FAST_STDIO            /**/
2503
2504 /* HAS_FCHDIR:
2505  *      This symbol, if defined, indicates that the fchdir routine is
2506  *      available to change directory using a file descriptor.
2507  */
2508 #$d_fchdir HAS_FCHDIR           /**/
2509
2510 /* FCNTL_CAN_LOCK:
2511  *      This symbol, if defined, indicates that fcntl() can be used
2512  *      for file locking.  Normally on Unix systems this is defined.
2513  *      It may be undefined on VMS.
2514  */
2515 #$d_fcntl_can_lock FCNTL_CAN_LOCK               /**/
2516
2517 /* HAS_FDCLOSE:
2518  *      This symbol, if defined, indicates that the fdclose routine is
2519  *      available to free a FILE structure without closing the underlying
2520  *      file descriptor.  This function appeared in FreeBSD 10.2.
2521  */
2522 #$d_fdclose HAS_FDCLOSE         /**/
2523
2524 /* HAS_FDIM:
2525  *      This symbol, if defined, indicates that the fdim routine is
2526  *      available to do the positive difference function.
2527  */
2528 #$d_fdim HAS_FDIM               /**/
2529
2530 /* HAS_FEGETROUND:
2531  *      This symbol, if defined, indicates that the fegetround routine is
2532  *      available to return the macro corresponding to the current rounding
2533  *      mode.
2534  */
2535 #$d_fegetround HAS_FEGETROUND   /**/
2536
2537 /* HAS_FFS:
2538  *      This symbol, if defined, indicates that the ffs routine is available
2539  *      to find the first bit set in its argument.  If it's not available,
2540  *      roll your own.
2541  */
2542 /* HAS_FFSL:
2543  *      This symbol, if defined, indicates that the ffsl routine is available
2544  *      to find the first bit set in its argument.  If it's not available,
2545  *      roll your own.
2546  */
2547 #$d_ffs HAS_FFS         /**/
2548 #$d_ffsl HAS_FFSL               /**/
2549
2550 /* HAS_FINITE:
2551  *      This symbol, if defined, indicates that the finite routine is
2552  *      available to check whether a double is finite (non-infinity non-NaN).
2553  */
2554 #$d_finite HAS_FINITE           /**/
2555
2556 /* HAS_FINITEL:
2557  *      This symbol, if defined, indicates that the finitel routine is
2558  *      available to check whether a long double is finite
2559  *      (non-infinity non-NaN).
2560  */
2561 #$d_finitel HAS_FINITEL         /**/
2562
2563 /* HAS_FLOCK_PROTO:
2564  *      This symbol, if defined, indicates that the system provides
2565  *      a prototype for the flock() function.  Otherwise, it is up
2566  *      to the program to supply one.  A good guess is
2567  *              extern int flock(int, int);
2568  */
2569 #$d_flockproto  HAS_FLOCK_PROTO /**/
2570
2571 /* HAS_FMA:
2572  *      This symbol, if defined, indicates that the fma routine is
2573  *      available to do the multiply-add function.
2574  */
2575 #$d_fma HAS_FMA         /**/
2576
2577 /* HAS_FMAX:
2578  *      This symbol, if defined, indicates that the fmax routine is
2579  *      available to do the maximum function.
2580  */
2581 #$d_fmax HAS_FMAX               /**/
2582
2583 /* HAS_FMIN:
2584  *      This symbol, if defined, indicates that the fmin routine is
2585  *      available to do the minimum function.
2586  */
2587 #$d_fmin HAS_FMIN               /**/
2588
2589 /* HAS_FP_CLASS:
2590  *      This symbol, if defined, indicates that the fp_class routine is
2591  *      available to classify doubles.  Available for example in Digital UNIX.
2592  *      The returned values are defined in <math.h> and are:
2593  *
2594  *      FP_SNAN           Signaling NaN (Not-a-Number)
2595  *      FP_QNAN           Quiet NaN (Not-a-Number)
2596  *      FP_POS_INF        +infinity
2597  *      FP_NEG_INF        -infinity
2598  *      FP_POS_NORM       Positive normalized
2599  *      FP_NEG_NORM       Negative normalized
2600  *      FP_POS_DENORM     Positive denormalized
2601  *      FP_NEG_DENORM     Negative denormalized
2602  *      FP_POS_ZERO       +0.0 (positive zero)
2603  *      FP_NEG_ZERO       -0.0 (negative zero)
2604  */
2605 #$d_fp_class HAS_FP_CLASS               /**/
2606
2607 /* HAS_FP_CLASSL:
2608  *      This symbol, if defined, indicates that the fp_classl routine is
2609  *      available to classify long doubles.  Available for example in
2610  *      Digital UNIX.  See for possible values HAS_FP_CLASS.
2611  */
2612 #$d_fp_classl HAS_FP_CLASSL             /**/
2613
2614 /* HAS_FPCLASS:
2615  *      This symbol, if defined, indicates that the fpclass routine is
2616  *      available to classify doubles.  Available for example in Solaris/SVR4.
2617  *      The returned values are defined in <ieeefp.h> and are:
2618  *
2619  *      FP_SNAN         signaling NaN
2620  *      FP_QNAN         quiet NaN
2621  *      FP_NINF         negative infinity
2622  *      FP_PINF         positive infinity
2623  *      FP_NDENORM      negative denormalized non-zero
2624  *      FP_PDENORM      positive denormalized non-zero
2625  *      FP_NZERO        negative zero
2626  *      FP_PZERO        positive zero
2627  *      FP_NNORM        negative normalized non-zero
2628  *      FP_PNORM        positive normalized non-zero
2629  */
2630 #$d_fpclass HAS_FPCLASS         /**/
2631
2632 /* HAS_FPCLASSIFY:
2633  *      This symbol, if defined, indicates that the fpclassify routine is
2634  *      available to classify doubles.  Available for example in HP-UX.
2635  *      The returned values are defined in <math.h> and are
2636  *
2637  *        FP_NORMAL     Normalized
2638  *        FP_ZERO       Zero
2639  *        FP_INFINITE   Infinity
2640  *        FP_SUBNORMAL  Denormalized
2641  *        FP_NAN        NaN
2642  *
2643  */
2644 /* HAS_FP_CLASSIFY:
2645  *      This symbol, if defined, indicates that the fp_classify routine is
2646  *      available to classify doubles. The values are defined in <math.h>
2647  *
2648  *        FP_NORMAL     Normalized
2649  *        FP_ZERO       Zero
2650  *        FP_INFINITE   Infinity
2651  *        FP_SUBNORMAL  Denormalized
2652  *        FP_NAN        NaN
2653  *
2654  */
2655 #$d_fpclassify  HAS_FPCLASSIFY          /**/
2656 #$d_fp_classify HAS_FP_CLASSIFY         /**/
2657
2658 /* HAS_FPCLASSL:
2659  *      This symbol, if defined, indicates that the fpclassl routine is
2660  *      available to classify long doubles.  Available for example in IRIX.
2661  *      The returned values are defined in <ieeefp.h> and are:
2662  *
2663  *      FP_SNAN         signaling NaN
2664  *      FP_QNAN         quiet NaN
2665  *      FP_NINF         negative infinity
2666  *      FP_PINF         positive infinity
2667  *      FP_NDENORM      negative denormalized non-zero
2668  *      FP_PDENORM      positive denormalized non-zero
2669  *      FP_NZERO        negative zero
2670  *      FP_PZERO        positive zero
2671  *      FP_NNORM        negative normalized non-zero
2672  *      FP_PNORM        positive normalized non-zero
2673  */
2674 #$d_fpclassl HAS_FPCLASSL               /**/
2675
2676 /* HAS_FPGETROUND:
2677  *      This symbol, if defined, indicates that the fpgetround routine is
2678  *      available to get the floating point rounding mode.
2679  */
2680 #$d_fpgetround HAS_FPGETROUND           /**/
2681
2682 /* HAS_FPOS64_T:
2683  *      This symbol will be defined if the C compiler supports fpos64_t.
2684  */
2685 #$d_fpos64_t    HAS_FPOS64_T    /**/
2686
2687 /* HAS_FREXPL:
2688  *      This symbol, if defined, indicates that the frexpl routine is
2689  *      available to break a long double floating-point number into
2690  *      a normalized fraction and an integral power of 2.
2691  */
2692 #$d_frexpl HAS_FREXPL           /**/
2693
2694 /* HAS_STRUCT_FS_DATA:
2695  *      This symbol, if defined, indicates that the struct fs_data
2696  *      to do statfs() is supported.
2697  */
2698 #$d_fs_data_s HAS_STRUCT_FS_DATA        /**/
2699
2700 /* HAS_FCHMODAT:
2701  *      This symbol is defined if the fchmodat() routine is available.
2702  */
2703 /* HAS_LINKAT:
2704  *      This symbol is defined if the linkat() routine is available.
2705  */
2706 /* HAS_OPENAT:
2707  *      This symbol is defined if the openat() routine is available.
2708  */
2709 /* HAS_RENAMEAT:
2710  *      This symbol is defined if the renameat() routine is available.
2711  */
2712 /* HAS_UNLINKAT:
2713  *      This symbol is defined if the unlinkat() routine is available.
2714  */
2715 #$d_fchmodat    HAS_FCHMODAT    /**/
2716 #$d_linkat      HAS_LINKAT      /**/
2717 #$d_openat      HAS_OPENAT      /**/
2718 #$d_renameat    HAS_RENAMEAT    /**/
2719 #$d_unlinkat    HAS_UNLINKAT    /**/
2720
2721 /* HAS_FSEEKO:
2722  *      This symbol, if defined, indicates that the fseeko routine is
2723  *      available to fseek beyond 32 bits (useful for ILP32 hosts).
2724  */
2725 #$d_fseeko HAS_FSEEKO           /**/
2726
2727 /* HAS_FSTATFS:
2728  *      This symbol, if defined, indicates that the fstatfs routine is
2729  *      available to stat filesystems by file descriptors.
2730  */
2731 #$d_fstatfs HAS_FSTATFS         /**/
2732
2733 /* HAS_FSYNC:
2734  *      This symbol, if defined, indicates that the fsync routine is
2735  *      available to write a file's modified data and attributes to
2736  *      permanent storage.
2737  */
2738 #$d_fsync HAS_FSYNC             /**/
2739
2740 /* HAS_FTELLO:
2741  *      This symbol, if defined, indicates that the ftello routine is
2742  *      available to ftell beyond 32 bits (useful for ILP32 hosts).
2743  */
2744 #$d_ftello HAS_FTELLO           /**/
2745
2746 /* HAS_FUTIMES:
2747  *      This symbol, if defined, indicates that the futimes routine is
2748  *      available to change file descriptor time stamps with struct timevals.
2749  */
2750 #$d_futimes HAS_FUTIMES         /**/
2751
2752 /* HAS_GAI_STRERROR:
2753  *      This symbol, if defined, indicates that the gai_strerror routine
2754  *      is available to translate error codes returned by getaddrinfo()
2755  *      into human readable strings.
2756  */
2757 #$d_gai_strerror HAS_GAI_STRERROR       /**/
2758
2759 /* HAS_GETADDRINFO:
2760  *      This symbol, if defined, indicates that the getaddrinfo() function
2761  *      is available for use.
2762  */
2763 #$d_getaddrinfo HAS_GETADDRINFO         /**/
2764
2765 /* HAS_GETCWD:
2766  *      This symbol, if defined, indicates that the getcwd routine is
2767  *      available to get the current working directory.
2768  */
2769 #$d_getcwd HAS_GETCWD           /**/
2770
2771 /* HAS_GETESPWNAM:
2772  *      This symbol, if defined, indicates that the getespwnam system call is
2773  *      available to retrieve enhanced (shadow) password entries by name.
2774  */
2775 #$d_getespwnam HAS_GETESPWNAM           /**/
2776
2777 /* HAS_GETFSSTAT:
2778  *      This symbol, if defined, indicates that the getfsstat routine is
2779  *      available to stat filesystems in bulk.
2780  */
2781 #$d_getfsstat HAS_GETFSSTAT             /**/
2782
2783 /* HAS_GETITIMER:
2784  *      This symbol, if defined, indicates that the getitimer routine is
2785  *      available to return interval timers.
2786  */
2787 #$d_getitimer HAS_GETITIMER             /**/
2788
2789 /* HAS_GETMNT:
2790  *      This symbol, if defined, indicates that the getmnt routine is
2791  *      available to get filesystem mount info by filename.
2792  */
2793 #$d_getmnt HAS_GETMNT           /**/
2794
2795 /* HAS_GETMNTENT:
2796  *      This symbol, if defined, indicates that the getmntent routine is
2797  *      available to iterate through mounted file systems to get their info.
2798  */
2799 #$d_getmntent HAS_GETMNTENT             /**/
2800
2801 /* HAS_GETNAMEINFO:
2802  *      This symbol, if defined, indicates that the getnameinfo() function
2803  *      is available for use.
2804  */
2805 #$d_getnameinfo HAS_GETNAMEINFO         /**/
2806
2807 /* HAS_GETPRPWNAM:
2808  *      This symbol, if defined, indicates that the getprpwnam system call is
2809  *      available to retrieve protected (shadow) password entries by name.
2810  */
2811 #$d_getprpwnam HAS_GETPRPWNAM           /**/
2812
2813 /* HAS_GETSPNAM:
2814  *      This symbol, if defined, indicates that the getspnam system call is
2815  *      available to retrieve SysV shadow password entries by name.
2816  */
2817 #$d_getspnam HAS_GETSPNAM               /**/
2818
2819 /* HAS_HASMNTOPT:
2820  *      This symbol, if defined, indicates that the hasmntopt routine is
2821  *      available to query the mount options of file systems.
2822  */
2823 #$d_hasmntopt HAS_HASMNTOPT             /**/
2824
2825 /* HAS_HYPOT:
2826  *      This symbol, if defined, indicates that the hypot routine is
2827  *      available to do the hypotenuse function.
2828  */
2829 #$d_hypot HAS_HYPOT             /**/
2830
2831 /* HAS_ILOGB:
2832  *      This symbol, if defined, indicates that the ilogb routine is
2833  *      available to get integer exponent of a floating-point value.
2834  */
2835 #$d_ilogb HAS_ILOGB             /**/
2836
2837 /* HAS_ILOGBL:
2838  *      This symbol, if defined, indicates that the ilogbl routine is
2839  *      available.  If scalbnl is also present we can emulate frexpl.
2840  */
2841 #$d_ilogbl HAS_ILOGBL           /**/
2842
2843 /* HAS_INETNTOP:
2844  *      This symbol, if defined, indicates that the inet_ntop() function
2845  *      is available to parse IPv4 and IPv6 strings.
2846  */
2847 #$d_inetntop HAS_INETNTOP               /**/
2848
2849 /* HAS_INETPTON:
2850  *      This symbol, if defined, indicates that the inet_pton() function
2851  *      is available to parse IPv4 and IPv6 strings.
2852  */
2853 #$d_inetpton HAS_INETPTON               /**/
2854
2855 /* HAS_INT64_T:
2856  *      This symbol will defined if the C compiler supports int64_t.
2857  *      Usually the <inttypes.h> needs to be included, but sometimes
2858  *      <sys/types.h> is enough.
2859  */
2860 #$d_int64_t     HAS_INT64_T               /**/
2861
2862 /* HAS_ISBLANK:
2863  *      This manifest constant lets the C program know that isblank
2864  *      is available.
2865  */
2866 #$d_isblank HAS_ISBLANK         /**/
2867
2868 /* HAS_ISFINITE:
2869  *      This symbol, if defined, indicates that the isfinite routine is
2870  *      available to check whether a double is finite (non-infinity non-NaN).
2871  */
2872 #$d_isfinite HAS_ISFINITE               /**/
2873
2874 /* HAS_ISFINITEL:
2875  *      This symbol, if defined, indicates that the isfinitel routine is
2876  *      available to check whether a long double is finite.
2877  *      (non-infinity non-NaN).
2878  */
2879 #$d_isfinitel HAS_ISFINITEL             /**/
2880
2881 /* HAS_ISINF:
2882  *      This symbol, if defined, indicates that the isinf routine is
2883  *      available to check whether a double is an infinity.
2884  */
2885 #$d_isinf HAS_ISINF             /**/
2886
2887 /* HAS_ISINFL:
2888  *      This symbol, if defined, indicates that the isinfl routine is
2889  *      available to check whether a long double is an infinity.
2890  */
2891 #$d_isinfl HAS_ISINFL           /**/
2892
2893 /* HAS_ISLESS:
2894  *      This symbol, if defined, indicates that the isless routine is
2895  *      available to do the isless function.
2896  */
2897 #$d_isless HAS_ISLESS           /**/
2898
2899 /* HAS_ISNAN:
2900  *      This symbol, if defined, indicates that the isnan routine is
2901  *      available to check whether a double is a NaN.
2902  */
2903 #$d_isnan HAS_ISNAN             /**/
2904
2905 /* HAS_ISNANL:
2906  *      This symbol, if defined, indicates that the isnanl routine is
2907  *      available to check whether a long double is a NaN.
2908  */
2909 #$d_isnanl HAS_ISNANL           /**/
2910
2911 /* HAS_ISNORMAL:
2912  *      This symbol, if defined, indicates that the isnormal routine is
2913  *      available to check whether a double is normal (non-zero normalized).
2914  */
2915 #$d_isnormal HAS_ISNORMAL               /**/
2916
2917 /* HAS_J0:
2918  *      This symbol, if defined, indicates to the C program that the
2919  *      j0() function is available for Bessel functions of the first
2920  *      kind of the order zero, for doubles.
2921  */
2922 /* HAS_J0L:
2923  *      This symbol, if defined, indicates to the C program that the
2924  *      j0l() function is available for Bessel functions of the first
2925  *      kind of the order zero, for long doubles.
2926  */
2927 #$d_j0  HAS_J0          /**/
2928 #$d_j0l HAS_J0L         /**/
2929
2930 /* HAS_LC_MONETARY_2008:
2931  *      This symbol, if defined, indicates that the localeconv routine is
2932  *      available and has the additional members added in POSIX 1003.1-2008.
2933  */
2934 #$d_lc_monetary_2008 HAS_LC_MONETARY_2008               /**/
2935
2936 /* HAS_LDBL_DIG:
2937  *      This symbol, if defined, indicates that this system's <float.h>
2938  *      or <limits.h> defines the symbol LDBL_DIG, which is the number
2939  *      of significant digits in a long double precision number. Unlike
2940  *      for DBL_DIG, there's no good guess for LDBL_DIG if it is undefined.
2941  */
2942 #$d_ldbl_dig HAS_LDBL_DIG       /* */
2943
2944 /* HAS_LGAMMA:
2945  *      This symbol, if defined, indicates that the lgamma routine is
2946  *      available to do the log gamma function.  See also HAS_TGAMMA and
2947  *      HAS_LGAMMA_R.
2948  */
2949 #$d_lgamma HAS_LGAMMA           /**/
2950
2951 /* HAS_LGAMMA_R:
2952  *      This symbol, if defined, indicates that the lgamma_r routine is
2953  *      available to do the log gamma function without using the global
2954  *      signgam variable.
2955  */
2956 #$d_lgamma_r HAS_LGAMMA_R               /**/
2957
2958 /* LIBM_LIB_VERSION:
2959  *      This symbol, if defined, indicates that libm exports _LIB_VERSION
2960  *      and that math.h defines the enum to manipulate it.
2961  */
2962 #$d_libm_lib_version LIBM_LIB_VERSION           /**/
2963
2964 /* HAS_LLRINT:
2965  *      This symbol, if defined, indicates that the llrint routine is
2966  *      available to return the long long value closest to a double
2967  *      (according to the current rounding mode).
2968  */
2969 #$d_llrint HAS_LLRINT           /**/
2970
2971 /* HAS_LLRINTL:
2972  *      This symbol, if defined, indicates that the llrintl routine is
2973  *      available to return the long long value closest to a long double
2974  *      (according to the current rounding mode).
2975  */
2976 #$d_llrintl HAS_LLRINTL         /**/
2977
2978 /* HAS_LLROUND:
2979  *      This symbol, if defined, indicates that the llround routine is
2980  *      available to return the nearest long long value.
2981  */
2982 #$d_llround HAS_LLROUND         /**/
2983
2984 /* HAS_LLROUNDL:
2985  *      This symbol, if defined, indicates that the llroundl routine is
2986  *      available to return the nearest long long value away from zero of
2987  *      the long double argument value.
2988  */
2989 #$d_llroundl HAS_LLROUNDL               /**/
2990
2991 /* HAS_LOG1P:
2992  *      This symbol, if defined, indicates that the log1p routine is
2993  *      available to do the logarithm of 1 plus argument function.
2994  */
2995 #$d_log1p HAS_LOG1P             /**/
2996
2997 /* HAS_LOG2:
2998  *      This symbol, if defined, indicates that the log2 routine is
2999  *      available to do the log2 function.
3000  */
3001 #$d_log2 HAS_LOG2               /**/
3002
3003 /* HAS_LOGB:
3004  *      This symbol, if defined, indicates that the logb routine is
3005  *      available to do the logb function.
3006  */
3007 #$d_logb HAS_LOGB               /**/
3008
3009 /* HAS_LRINT:
3010  *      This symbol, if defined, indicates that the lrint routine is
3011  *      available to return the integral value closest to a double
3012  *      (according to the current rounding mode).
3013  */
3014 #$d_lrint HAS_LRINT             /**/
3015
3016 /* HAS_LRINTL:
3017  *      This symbol, if defined, indicates that the lrintl routine is
3018  *      available to return the integral value closest to a long double
3019  *      (according to the current rounding mode).
3020  */
3021 #$d_lrintl HAS_LRINTL           /**/
3022
3023 /* HAS_LROUND:
3024  *      This symbol, if defined, indicates that the lround routine is
3025  *      available to return the nearest integral value.
3026  */
3027 #$d_lround HAS_LROUND           /**/
3028
3029 /* HAS_LROUNDL:
3030  *      This symbol, if defined, indicates that the lroundl routine is
3031  *      available to return the nearest integral value away from zero of
3032  *      the long double argument value.
3033  */
3034 #$d_lroundl HAS_LROUNDL         /**/
3035
3036 /* HAS_MADVISE:
3037  *      This symbol, if defined, indicates that the madvise system call is
3038  *      available to map a file into memory.
3039  */
3040 #$d_madvise HAS_MADVISE         /**/
3041
3042 /* HAS_MALLOC_SIZE:
3043  *      This symbol, if defined, indicates that the malloc_size
3044  *      routine is available for use.
3045  */
3046 #$d_malloc_size HAS_MALLOC_SIZE         /**/
3047
3048 /* HAS_MALLOC_GOOD_SIZE:
3049  *      This symbol, if defined, indicates that the malloc_good_size
3050  *      routine is available for use.
3051  */
3052 #$d_malloc_good_size HAS_MALLOC_GOOD_SIZE       /**/
3053
3054 /* HAS_MEMMEM:
3055  *      This symbol, if defined, indicates that the memmem routine is
3056  *      available to return a pointer to the start of the first occurrence
3057  *      of a substring in a memory area (or NULL if not found).
3058  *      In glibc, memmem is a GNU extension.  The function is visible in
3059  *      libc, but the prototype is only visible if _GNU_SOURCE is #defined.
3060  *      Thus we only define this if both the prototype and symbol are found.
3061  */
3062 #$d_memmem HAS_MEMMEM           /**/
3063
3064 /* HAS_MEMRCHR:
3065  *      This symbol, if defined, indicates that the memrchr routine is
3066  *      available to return a pointer to the last occurrence of a byte in
3067  *      a memory area (or NULL if not found).
3068  */
3069 #$d_memrchr HAS_MEMRCHR         /**/
3070
3071 /* HAS_MKDTEMP:
3072  *      This symbol, if defined, indicates that the mkdtemp routine is
3073  *      available to exclusively create a uniquely named temporary directory.
3074  */
3075 #$d_mkdtemp HAS_MKDTEMP         /**/
3076
3077 /* HAS_MKOSTEMP:
3078  *      This symbol, if defined, indicates that the mkostemp routine is
3079  *      available to exclusively create and open a uniquely named (with a
3080  *      suffix) temporary file.
3081  */
3082 #$d_mkostemp HAS_MKOSTEMP       /**/
3083
3084 /* HAS_MKSTEMPS:
3085  *      This symbol, if defined, indicates that the mkstemps routine is
3086  *      available to exclusively create and open a uniquely named
3087  *      (with a suffix) temporary file.
3088  */
3089 #$d_mkstemps HAS_MKSTEMPS               /**/
3090
3091 /* HAS_MODFL:
3092  *      This symbol, if defined, indicates that the modfl routine is
3093  *      available to split a long double x into a fractional part f and
3094  *      an integer part i such that |f| < 1.0 and (f + i) = x.
3095  */
3096 /* HAS_MODFL_PROTO:
3097  *      This symbol, if defined, indicates that the system provides
3098  *      a prototype for the modfl() function.  Otherwise, it is up
3099  *      to the program to supply one.
3100  */
3101 #$d_modfl HAS_MODFL             /**/
3102 #$d_modflproto HAS_MODFL_PROTO          /**/
3103
3104 /* HAS_MPROTECT:
3105  *      This symbol, if defined, indicates that the mprotect system call is
3106  *      available to modify the access protection of a memory mapped file.
3107  */
3108 #$d_mprotect HAS_MPROTECT               /**/
3109
3110 /* HAS_STRUCT_MSGHDR:
3111  *      This symbol, if defined, indicates that the struct msghdr
3112  *      is supported.
3113  */
3114 #$d_msghdr_s HAS_STRUCT_MSGHDR  /**/
3115
3116 /* HAS_NAN:
3117  *      This symbol, if defined, indicates that the nan routine is
3118  *      available to generate NaN.
3119  */
3120 #$d_nan HAS_NAN         /**/
3121
3122 /* HAS_NANOSLEEP:
3123  *      This symbol, if defined, indicates that the nanosleep
3124  *      system call is available to sleep with 1E-9 sec accuracy.
3125  */
3126 #$d_nanosleep HAS_NANOSLEEP             /**/
3127
3128 /* HAS_NEARBYINT:
3129  *      This symbol, if defined, indicates that the nearbyint routine is
3130  *      available to return the integral value closest to (according to
3131  *      the current rounding mode) to x.
3132  */
3133 #$d_nearbyint HAS_NEARBYINT             /**/
3134
3135 /* HAS_NEWLOCALE:
3136  *      This symbol, if defined, indicates that the newlocale routine is
3137  *      available to return a new locale object or modify an existing
3138  *      locale object.
3139  */
3140 /* HAS_FREELOCALE:
3141  *      This symbol, if defined, indicates that the freelocale routine is
3142  *      available to deallocates the resources associated with a locale object.
3143  */
3144 /* HAS_USELOCALE:
3145  *      This symbol, if defined, indicates that the uselocale routine is
3146  *      available to set the current locale for the calling thread.
3147  */
3148 /* HAS_DUPLOCALE:
3149  *      This symbol, if defined, indicates that the duplocale routine is
3150  *      available to duplicate a locale object.
3151  */
3152 /* HAS_QUERYLOCALE:
3153  *      This symbol, if defined, indicates that the querylocale routine is
3154  *      available to return the name of the locale for a category mask.
3155  */
3156 /* I_XLOCALE:
3157  *      This symbol, if defined, indicates to the C program that the
3158  *      header xlocale.h is available.  See also NEED_XLOCALE_H
3159  */
3160 /* NEED_XLOCALE_H:
3161  *      This symbol, if defined, indicates that the C program should
3162  *      include <xlocale.h> to get newlocale() and its friends.
3163  */
3164 #$d_newlocale   HAS_NEWLOCALE   /**/
3165 #$d_freelocale  HAS_FREELOCALE  /**/
3166 #$d_uselocale   HAS_USELOCALE   /**/
3167 #$d_duplocale   HAS_DUPLOCALE   /**/
3168 #$d_querylocale HAS_QUERYLOCALE /**/
3169 #$xlocale_needed        NEED_XLOCALE_H  /**/
3170 #$i_xlocale     I_XLOCALE               /**/
3171
3172 /* HAS_NEXTAFTER:
3173  *      This symbol, if defined, indicates that the nextafter routine is
3174  *      available to return the next machine representable double from
3175  *      x in direction y.
3176  */
3177 #$d_nextafter HAS_NEXTAFTER             /**/
3178
3179 /* HAS_NEXTTOWARD:
3180  *      This symbol, if defined, indicates that the nexttoward routine is
3181  *      available to return the next machine representable long double from
3182  *      x in direction y.
3183  */
3184 #$d_nexttoward HAS_NEXTTOWARD           /**/
3185
3186 /* HAS_NL_LANGINFO:
3187  *      This symbol, if defined, indicates that the nl_langinfo routine is
3188  *      available to return local data.  You will also need <langinfo.h>
3189  *      and therefore I_LANGINFO.
3190  */
3191 #$d_nl_langinfo HAS_NL_LANGINFO         /**/
3192
3193 /* HAS_OFF64_T:
3194  *      This symbol will be defined if the C compiler supports off64_t.
3195  */
3196 #$d_off64_t     HAS_OFF64_T             /**/
3197
3198 /* HAS_PIPE2:
3199  *      This symbol, if defined, indicates that the pipe2 routine is
3200  *      available to create an inter-process channel.
3201  */
3202 #$d_pipe2 HAS_PIPE2             /**/
3203
3204 /* HAS_PRCTL:
3205  *      This symbol, if defined, indicates that the prctl routine is
3206  *      available to set process title.
3207  *      Note that there are at least two prctl variants: Linux and Irix.
3208  *      While they are somewhat similar, they are incompatible.
3209  */
3210 /* HAS_PRCTL_SET_NAME:
3211  *      This symbol, if defined, indicates that the prctl routine is
3212  *      available to set process title and supports PR_SET_NAME.
3213  */
3214 #$d_prctl HAS_PRCTL             /**/
3215 #$d_prctl_set_name HAS_PRCTL_SET_NAME           /**/
3216
3217 /* HAS_PROCSELFEXE:
3218  *      This symbol is defined if PROCSELFEXE_PATH is a symlink
3219  *      to the absolute pathname of the executing program.
3220  */
3221 /* PROCSELFEXE_PATH:
3222  *      If HAS_PROCSELFEXE is defined this symbol is the filename
3223  *      of the symbolic link pointing to the absolute pathname of
3224  *      the executing program.
3225  */
3226 #$d_procselfexe HAS_PROCSELFEXE /**/
3227 #if defined(HAS_PROCSELFEXE) && !defined(PROCSELFEXE_PATH)
3228 #define PROCSELFEXE_PATH        $procselfexe    /**/
3229 #endif
3230
3231 /* HAS_PTHREAD_ATTR_SETSCOPE:
3232  *      This symbol, if defined, indicates that the pthread_attr_setscope
3233  *      system call is available to set the contention scope attribute of
3234  *      a thread attribute object.
3235  */
3236 #$d_pthread_attr_setscope HAS_PTHREAD_ATTR_SETSCOPE             /**/
3237
3238 /* HAS_PTRDIFF_T:
3239  *      This symbol will be defined if the C compiler supports ptrdiff_t.
3240  */
3241 #$d_ptrdiff_t   HAS_PTRDIFF_T           /**/
3242
3243 /* HAS_READV:
3244  *      This symbol, if defined, indicates that the readv routine is
3245  *      available to do gather reads.  You will also need <sys/uio.h>
3246  *      and there I_SYSUIO.
3247  */
3248 #$d_readv HAS_READV             /**/
3249
3250 /* HAS_RECVMSG:
3251  *      This symbol, if defined, indicates that the recvmsg routine is
3252  *      available to send structured socket messages.
3253  */
3254 #$d_recvmsg HAS_RECVMSG         /**/
3255
3256 /* HAS_REMAINDER:
3257  *      This symbol, if defined, indicates that the remainder routine is
3258  *      available to return the floating-point remainder.
3259  */
3260 #$d_remainder HAS_REMAINDER             /**/
3261
3262 /* HAS_REMQUO:
3263  *      This symbol, if defined, indicates that the remquo routine is
3264  *      available to return the remainder and part of quotient.
3265  */
3266 #$d_remquo HAS_REMQUO           /**/
3267
3268 /* HAS_RINT:
3269  *      This symbol, if defined, indicates that the rint routine is
3270  *      available to return the nearest integral value to x as double
3271  *      using the current rounding mode.
3272  */
3273 #$d_rint HAS_RINT               /**/
3274
3275 /* HAS_ROUND:
3276  *      This symbol, if defined, indicates that the round routine is
3277  *      available to round to nearest integer, away from zero.
3278  */
3279 #$d_round HAS_ROUND             /**/
3280
3281 /* HAS_SBRK_PROTO:
3282  *      This symbol, if defined, indicates that the system provides
3283  *      a prototype for the sbrk() function.  Otherwise, it is up
3284  *      to the program to supply one.  Good guesses are
3285  *              extern void* sbrk(int);
3286  *              extern void* sbrk(size_t);
3287  */
3288 #$d_sbrkproto   HAS_SBRK_PROTO  /**/
3289
3290 /* HAS_SCALBN:
3291  *      This symbol, if defined, indicates that the scalbn routine is
3292  *      available to multiply floating-point number by integral power
3293  *      of radix.
3294  */
3295 #$d_scalbn HAS_SCALBN           /**/
3296
3297 /* HAS_SCALBNL:
3298  *      This symbol, if defined, indicates that the scalbnl routine is
3299  *      available.  If ilogbl is also present we can emulate frexpl.
3300  */
3301 #$d_scalbnl HAS_SCALBNL         /**/
3302
3303 /* HAS_SENDMSG:
3304  *      This symbol, if defined, indicates that the sendmsg routine is
3305  *      available to send structured socket messages.
3306  */
3307 #$d_sendmsg HAS_SENDMSG         /**/
3308
3309 /* HAS_SETITIMER:
3310  *      This symbol, if defined, indicates that the setitimer routine is
3311  *      available to set interval timers.
3312  */
3313 #$d_setitimer HAS_SETITIMER             /**/
3314
3315 /* HAS_SETLOCALE:
3316  *      This symbol, if defined, indicates that the setlocale routine is
3317  *      available to handle locale-specific ctype implementations.
3318  */
3319 /* SETLOCALE_ACCEPTS_ANY_LOCALE_NAME:
3320  *      This symbol, if defined, indicates that the setlocale routine is
3321  *      available and it accepts any input locale name as valid.
3322  */
3323 #$d_setlocale HAS_SETLOCALE     /**/
3324 #$d_setlocale_accepts_any_locale_name SETLOCALE_ACCEPTS_ANY_LOCALE_NAME /**/
3325
3326 /* HAS_SETPROCTITLE:
3327  *      This symbol, if defined, indicates that the setproctitle routine is
3328  *      available to set process title.
3329  */
3330 #$d_setproctitle HAS_SETPROCTITLE               /**/
3331
3332 /* HAS_SIGNBIT:
3333  *      This symbol, if defined, indicates that the signbit routine is
3334  *      available to check if the given number has the sign bit set.
3335  *      This should include correct testing of -0.0.  This will only be set
3336  *      if the signbit() routine is safe to use with the NV type used internally
3337  *      in perl.  Users should call Perl_signbit(), which will be #defined to
3338  *      the system's signbit() function or macro if this symbol is defined.
3339  */
3340 #$d_signbit HAS_SIGNBIT         /**/
3341
3342 /* HAS_SIGPROCMASK:
3343  *      This symbol, if defined, indicates that the sigprocmask
3344  *      system call is available to examine or change the signal mask
3345  *      of the calling process.
3346  */
3347 #$d_sigprocmask HAS_SIGPROCMASK         /**/
3348
3349 /* USE_SITECUSTOMIZE:
3350  *      This symbol, if defined, indicates that sitecustomize should
3351  *      be used.
3352  */
3353 #ifndef USE_SITECUSTOMIZE
3354 #$usesitecustomize      USE_SITECUSTOMIZE               /**/
3355 #endif
3356
3357 /* HAS_SNPRINTF:
3358  *      This symbol, if defined, indicates that the snprintf () library
3359  *      function is available for use.
3360  */
3361 /* HAS_VSNPRINTF:
3362  *      This symbol, if defined, indicates that the vsnprintf () library
3363  *      function is available for use.
3364  */
3365 #$d_snprintf HAS_SNPRINTF       /**/
3366 #$d_vsnprintf HAS_VSNPRINTF     /**/
3367
3368 /* HAS_SOCKATMARK:
3369  *      This symbol, if defined, indicates that the sockatmark routine is
3370  *      available to test whether a socket is at the out-of-band mark.
3371  */
3372 #$d_sockatmark HAS_SOCKATMARK           /**/
3373
3374 /* HAS_SOCKATMARK_PROTO:
3375  *      This symbol, if defined, indicates that the system provides
3376  *      a prototype for the sockatmark() function.  Otherwise, it is up
3377  *      to the program to supply one.  A good guess is
3378  *              extern int sockatmark(int);
3379  */
3380 #$d_sockatmarkproto     HAS_SOCKATMARK_PROTO    /**/
3381
3382 /* HAS_SOCKS5_INIT:
3383  *      This symbol, if defined, indicates that the socks5_init routine is
3384  *      available to initialize SOCKS 5.
3385  */
3386 #$d_socks5_init HAS_SOCKS5_INIT         /**/
3387
3388 /* HAS_SQRTL:
3389  *      This symbol, if defined, indicates that the sqrtl routine is
3390  *      available to do long double square roots.
3391  */
3392 #$d_sqrtl HAS_SQRTL             /**/
3393
3394 /* HAS_SETRESGID_PROTO:
3395  *      This symbol, if defined, indicates that the system provides
3396  *      a prototype for the setresgid() function.  Otherwise, it is up
3397  *      to the program to supply one.  Good guesses are
3398  *              extern int setresgid(uid_t ruid, uid_t euid, uid_t suid);
3399  */
3400 #$d_sresgproto  HAS_SETRESGID_PROTO     /**/
3401
3402 /* HAS_SETRESUID_PROTO:
3403  *      This symbol, if defined, indicates that the system provides
3404  *      a prototype for the setresuid() function.  Otherwise, it is up
3405  *      to the program to supply one.  Good guesses are
3406  *              extern int setresuid(uid_t ruid, uid_t euid, uid_t suid);
3407  */
3408 #$d_sresuproto  HAS_SETRESUID_PROTO     /**/
3409
3410 /* HAS_STRUCT_STATFS_F_FLAGS:
3411  *      This symbol, if defined, indicates that the struct statfs
3412  *      does have the f_flags member containing the mount flags of
3413  *      the filesystem containing the file.
3414  *      This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3),
3415  *      not from <sys/statfs.h> (SYSV).  Older BSDs (like Ultrix) do not
3416  *      have statfs() and struct statfs, they have ustat() and getmnt()
3417  *      with struct ustat and struct fs_data.
3418  */
3419 #$d_statfs_f_flags HAS_STRUCT_STATFS_F_FLAGS            /**/
3420
3421 /* HAS_STRUCT_STATFS:
3422  *      This symbol, if defined, indicates that the struct statfs
3423  *      to do statfs() is supported.
3424  */
3425 #$d_statfs_s HAS_STRUCT_STATFS  /**/
3426
3427 /* HAS_FSTATVFS:
3428  *      This symbol, if defined, indicates that the fstatvfs routine is
3429  *      available to stat filesystems by file descriptors.
3430  */
3431 #$d_fstatvfs HAS_FSTATVFS               /**/
3432
3433 /* HAS_STRERROR_L:
3434  *      This symbol, if defined, indicates that the strerror_l routine is
3435  *      available to return the error message for a given errno value in
3436  *      a particular locale (identified by a locale_t object).
3437  */
3438 #$d_strerror_l HAS_STRERROR_L           /**/
3439
3440 /* HAS_STRFTIME:
3441  *      This symbol, if defined, indicates that the strftime routine is
3442  *      available to do time formatting.
3443  */
3444 #$d_strftime HAS_STRFTIME               /**/
3445
3446 /* HAS_STRLCAT:
3447  *      This symbol, if defined, indicates that the strlcat () routine is
3448  *      available to do string concatenation.
3449  */
3450 #$d_strlcat HAS_STRLCAT         /**/
3451
3452 /* HAS_STRLCPY:
3453  *      This symbol, if defined, indicates that the strlcpy () routine is
3454  *      available to do string copying.
3455  */
3456 #$d_strlcpy HAS_STRLCPY         /**/
3457
3458 /* HAS_STRNLEN:
3459  *      This symbol, if defined, indicates that the strnlen () routine is
3460  *      available to check the length of a string up to a maximum.
3461  */
3462 #$d_strnlen HAS_STRNLEN         /**/
3463
3464 /* HAS_STRTOLD:
3465  *      This symbol, if defined, indicates that the strtold routine is
3466  *      available to convert strings to long doubles.
3467  */
3468 #$d_strtold HAS_STRTOLD         /**/
3469
3470 /* HAS_STRTOLL:
3471  *      This symbol, if defined, indicates that the strtoll routine is
3472  *      available to convert strings to long longs.
3473  */
3474 #$d_strtoll HAS_STRTOLL         /**/
3475
3476 /* HAS_STRTOQ:
3477  *      This symbol, if defined, indicates that the strtoq routine is
3478  *      available to convert strings to long longs (quads).
3479  */
3480 #$d_strtoq HAS_STRTOQ           /**/
3481
3482 /* HAS_STRTOULL:
3483  *      This symbol, if defined, indicates that the strtoull routine is
3484  *      available to convert strings to unsigned long longs.
3485  */
3486 #$d_strtoull HAS_STRTOULL               /**/
3487
3488 /* HAS_STRTOUQ:
3489  *      This symbol, if defined, indicates that the strtouq routine is
3490  *      available to convert strings to unsigned long longs (quads).
3491  */
3492 #$d_strtouq HAS_STRTOUQ         /**/
3493
3494 /* HAS_STRXFRM_L:
3495  *      This symbol, if defined, indicates that the strxfrm_l() routine is
3496  *      available to transform strings.
3497  */
3498 #$d_strxfrm_l HAS_STRXFRM_L     /**/
3499
3500 /* HAS_SYSCALL_PROTO:
3501  *      This symbol, if defined, indicates that the system provides
3502  *      a prototype for the syscall() function.  Otherwise, it is up
3503  *      to the program to supply one.  Good guesses are
3504  *              extern int syscall(int,  ...);
3505  *              extern int syscall(long, ...);
3506  */
3507 #$d_syscallproto        HAS_SYSCALL_PROTO       /**/
3508
3509 /* HAS_TELLDIR_PROTO:
3510  *      This symbol, if defined, indicates that the system provides
3511  *      a prototype for the telldir() function.  Otherwise, it is up
3512  *      to the program to supply one.  A good guess is
3513  *              extern long telldir(DIR*);
3514  */
3515 #$d_telldirproto        HAS_TELLDIR_PROTO       /**/
3516
3517 /* HAS_TGAMMA:
3518  *      This symbol, if defined, indicates that the tgamma routine is
3519  *      available to do the gamma function. See also HAS_LGAMMA.
3520  */
3521 #$d_tgamma HAS_TGAMMA           /**/
3522
3523 /* HAS_CTIME64:
3524  *      This symbol, if defined, indicates that the ctime64 () routine is
3525  *      available to do the 64bit variant of ctime ()
3526  */
3527 /* HAS_LOCALTIME64:
3528  *      This symbol, if defined, indicates that the localtime64 () routine is
3529  *      available to do the 64bit variant of localtime ()
3530  */
3531 /* HAS_GMTIME64:
3532  *      This symbol, if defined, indicates that the gmtime64 () routine is
3533  *      available to do the 64bit variant of gmtime ()
3534  */
3535 /* HAS_MKTIME64:
3536  *      This symbol, if defined, indicates that the mktime64 () routine is
3537  *      available to do the 64bit variant of mktime ()
3538  */
3539 /* HAS_DIFFTIME64:
3540  *      This symbol, if defined, indicates that the difftime64 () routine is
3541  *      available to do the 64bit variant of difftime ()
3542  */
3543 /* HAS_ASCTIME64:
3544  *      This symbol, if defined, indicates that the asctime64 () routine is
3545  *      available to do the 64bit variant of asctime ()
3546  */
3547 #$d_ctime64     HAS_CTIME64             /**/
3548 #$d_localtime64 HAS_LOCALTIME64         /**/
3549 #$d_gmtime64    HAS_GMTIME64            /**/
3550 #$d_mktime64    HAS_MKTIME64            /**/
3551 #$d_difftime64  HAS_DIFFTIME64          /**/
3552 #$d_asctime64   HAS_ASCTIME64           /**/
3553
3554 /* HAS_TIMEGM:
3555  *      This symbol, if defined, indicates that the timegm routine is
3556  *      available to do the opposite of gmtime ()
3557  */
3558 #$d_timegm HAS_TIMEGM           /**/
3559
3560 /* HAS_TOWLOWER:
3561  *      This symbol, if defined, indicates that the towlower () routine is
3562  *      available to do case conversion.
3563  */
3564 #$d_towlower HAS_TOWLOWER               /**/
3565
3566 /* HAS_TOWUPPER:
3567  *      This symbol, if defined, indicates that the towupper () routine is
3568  *      available to do case conversion.
3569  */
3570 #$d_towupper HAS_TOWUPPER               /**/
3571
3572 /* HAS_TRUNC:
3573  *      This symbol, if defined, indicates that the trunc routine is
3574  *      available to round doubles towards zero.
3575  */
3576 #$d_trunc HAS_TRUNC             /**/
3577
3578 /* HAS_TRUNCL:
3579  *      This symbol, if defined, indicates that the truncl routine is
3580  *      available. If copysignl is also present we can emulate modfl.
3581  */
3582 #$d_truncl HAS_TRUNCL           /**/
3583
3584 /* U32_ALIGNMENT_REQUIRED:
3585  *      This symbol, if defined, indicates that you must access
3586  *      character data through U32-aligned pointers.
3587  */
3588 #ifndef U32_ALIGNMENT_REQUIRED
3589 #$d_u32align U32_ALIGNMENT_REQUIRED     /**/
3590 #endif
3591
3592 /* HAS_UALARM:
3593  *      This symbol, if defined, indicates that the ualarm routine is
3594  *      available to do alarms with microsecond granularity.
3595  */
3596 #$d_ualarm HAS_UALARM           /**/
3597
3598 /* HAS_UNORDERED:
3599  *      This symbol, if defined, indicates that the unordered routine is
3600  *      available to check whether two doubles are unordered
3601  *      (effectively: whether either of them is NaN)
3602  */
3603 #$d_unordered HAS_UNORDERED             /**/
3604
3605 /* HAS_UNSETENV:
3606  *      This symbol, if defined, indicates that the unsetenv () routine is
3607  *      available for use.
3608  */
3609 #$d_unsetenv HAS_UNSETENV               /**/
3610
3611 /* HAS_USLEEP_PROTO:
3612  *      This symbol, if defined, indicates that the system provides
3613  *      a prototype for the usleep() function.  Otherwise, it is up
3614  *      to the program to supply one.  A good guess is
3615  *              extern int usleep(useconds_t);
3616  */
3617 #$d_usleepproto HAS_USLEEP_PROTO        /**/
3618
3619 /* HAS_USTAT:
3620  *      This symbol, if defined, indicates that the ustat system call is
3621  *      available to query file system statistics by dev_t.
3622  */
3623 #$d_ustat HAS_USTAT             /**/
3624
3625 /* HAS_WCSCMP:
3626  *      This symbol, if defined, indicates that the wcscmp routine is
3627  *      available to compare two wide character strings.
3628  */
3629 #$d_wcscmp HAS_WCSCMP   /**/
3630
3631 /* HAS_WCSXFRM:
3632  *      This symbol, if defined, indicates that the wcsxfrm routine is
3633  *      available to tranform a wide character string for wcscmp().
3634  */
3635 #$d_wcsxfrm HAS_WCSXFRM /**/
3636
3637 /* HAS_WRITEV:
3638  *      This symbol, if defined, indicates that the writev routine is
3639  *      available to do scatter writes.
3640  */
3641 #$d_writev HAS_WRITEV           /**/
3642
3643 /* DEFAULT_INC_EXCLUDES_DOT:
3644  *      This symbol, if defined, removes the legacy default behavior of
3645  *      including '.' at the end of @INC.
3646  */
3647 #$default_inc_excludes_dot DEFAULT_INC_EXCLUDES_DOT     /**/
3648
3649 /* USE_DYNAMIC_LOADING:
3650  *      This symbol, if defined, indicates that dynamic loading of
3651  *      some sort is available.
3652  */
3653 #$usedl USE_DYNAMIC_LOADING             /**/
3654
3655 /* FFLUSH_NULL:
3656  *      This symbol, if defined, tells that fflush(NULL) correctly
3657  *      flushes all pending stdio output without side effects. In
3658  *      particular, on some platforms calling fflush(NULL) *still*
3659  *      corrupts STDIN if it is a pipe.
3660  */
3661 /* FFLUSH_ALL:
3662  *      This symbol, if defined, tells that to flush
3663  *      all pending stdio output one must loop through all
3664  *      the stdio file handles stored in an array and fflush them.
3665  *      Note that if fflushNULL is defined, fflushall will not
3666  *      even be probed for and will be left undefined.
3667  */
3668 #$fflushNULL    FFLUSH_NULL             /**/
3669 #$fflushall     FFLUSH_ALL              /**/
3670
3671 /* I_BFD:
3672  *      This symbol, if defined, indicates that <bfd.h> exists and
3673  *      can be included.
3674  */
3675 #$i_bfd I_BFD           /**/
3676
3677 /* I_CRYPT:
3678  *      This symbol, if defined, indicates that <crypt.h> exists and
3679  *      should be included.
3680  */
3681 #$i_crypt       I_CRYPT         /**/
3682
3683 /* DB_Prefix_t:
3684  *      This symbol contains the type of the prefix structure element
3685  *      in the <db.h> header file.  In older versions of DB, it was
3686  *      int, while in newer ones it is u_int32_t.
3687  */
3688 /* DB_Hash_t:
3689  *      This symbol contains the type of the prefix structure element
3690  *      in the <db.h> header file.  In older versions of DB, it was
3691  *      int, while in newer ones it is size_t.
3692  */
3693 /* DB_VERSION_MAJOR_CFG:
3694  *      This symbol, if defined, defines the major version number of
3695  *      Berkeley DB found in the <db.h> header when Perl was configured.
3696  */
3697 /* DB_VERSION_MINOR_CFG:
3698  *      This symbol, if defined, defines the minor version number of
3699  *      Berkeley DB found in the <db.h> header when Perl was configured.
3700  *      For DB version 1 this is always 0.
3701  */
3702 /* DB_VERSION_PATCH_CFG:
3703  *      This symbol, if defined, defines the patch version number of
3704  *      Berkeley DB found in the <db.h> header when Perl was configured.
3705  *      For DB version 1 this is always 0.
3706  */
3707 #define DB_Hash_t       $db_hashtype            /**/
3708 #define DB_Prefix_t     $db_prefixtype          /**/
3709 #define DB_VERSION_MAJOR_CFG    $db_version_major       /**/
3710 #define DB_VERSION_MINOR_CFG    $db_version_minor       /**/
3711 #define DB_VERSION_PATCH_CFG    $db_version_patch       /**/
3712
3713 /* I_FENV:
3714  *      This symbol, if defined, indicates to the C program that it should
3715  *      include <fenv.h> to get the floating point environment definitions.
3716  */
3717 #$i_fenv I_FENV         /**/
3718
3719 /* I_FP:
3720  *      This symbol, if defined, indicates that <fp.h> exists and
3721  *      should be included.
3722  */
3723 #$i_fp  I_FP            /**/
3724
3725 /* I_FP_CLASS:
3726  *      This symbol, if defined, indicates that <fp_class.h> exists and
3727  *      should be included.
3728  */
3729 #$i_fp_class    I_FP_CLASS              /**/
3730
3731 /* I_IEEEFP:
3732  *      This symbol, if defined, indicates that <ieeefp.h> exists and
3733  *      should be included.
3734  */
3735 #$i_ieeefp      I_IEEEFP                /**/
3736
3737 /* I_INTTYPES:
3738  *      This symbol, if defined, indicates to the C program that it should
3739  *      include <inttypes.h>.
3740  */
3741 #$i_inttypes   I_INTTYPES                /**/
3742
3743 /* I_LANGINFO:
3744  *      This symbol, if defined, indicates that <langinfo.h> exists and
3745  *      should be included.
3746  */
3747 #$i_langinfo    I_LANGINFO              /**/
3748
3749 /* I_LIBUTIL:
3750  *      This symbol, if defined, indicates that <libutil.h> exists and
3751  *      should be included.
3752  */
3753 #$i_libutil     I_LIBUTIL               /**/
3754
3755 /* I_MALLOCMALLOC:
3756  *      This symbol, if defined, indicates to the C program that it should
3757  *      include <malloc/malloc.h>.
3758  */
3759 #$i_mallocmalloc I_MALLOCMALLOC         /**/
3760
3761 /* I_MNTENT:
3762  *      This symbol, if defined, indicates that <mntent.h> exists and
3763  *      should be included.
3764  */
3765 #$i_mntent      I_MNTENT                /**/
3766
3767 /* I_NETINET_TCP:
3768  *      This symbol, if defined, indicates to the C program that it should
3769  *      include <netinet/tcp.h>.
3770  */
3771 #$i_netinettcp   I_NETINET_TCP                /**/
3772
3773 /* I_POLL:
3774  *      This symbol, if defined, indicates that <poll.h> exists and
3775  *      should be included. (see also HAS_POLL)
3776  */
3777 #$i_poll        I_POLL          /**/
3778
3779 /* I_PROT:
3780  *      This symbol, if defined, indicates that <prot.h> exists and
3781  *      should be included.
3782  */
3783 #$i_prot        I_PROT          /**/
3784
3785 /* I_QUADMATH:
3786  *      This symbol, if defined, indicates that <quadmath.h> exists and
3787  *      should be included.
3788  */
3789 #$i_quadmath    I_QUADMATH              /**/
3790
3791 /* I_SHADOW:
3792  *      This symbol, if defined, indicates that <shadow.h> exists and
3793  *      should be included.
3794  */
3795 #$i_shadow      I_SHADOW                /**/
3796
3797 /* I_SOCKS:
3798  *      This symbol, if defined, indicates that <socks.h> exists and
3799  *      should be included.
3800  */
3801 #$i_socks       I_SOCKS         /**/
3802
3803 /* I_STDBOOL:
3804  *      This symbol, if defined, indicates that <stdbool.h> exists and
3805  *      can be included.
3806  */
3807 #$i_stdbool     I_STDBOOL               /**/
3808
3809 /* I_STDINT:
3810  *      This symbol, if defined, indicates that <stdint.h> exists and
3811  *      should be included.
3812  */
3813 #$i_stdint I_STDINT             /**/
3814
3815 /* I_SUNMATH:
3816  *      This symbol, if defined, indicates that <sunmath.h> exists and
3817  *      should be included.
3818  */
3819 #$i_sunmath     I_SUNMATH               /**/
3820
3821 /* I_SYSLOG:
3822  *      This symbol, if defined, indicates that <syslog.h> exists and
3823  *      should be included.
3824  */
3825 #$i_syslog      I_SYSLOG                /**/
3826
3827 /* I_SYSMODE:
3828  *      This symbol, if defined, indicates that <sys/mode.h> exists and
3829  *      should be included.
3830  */
3831 #$i_sysmode     I_SYSMODE               /**/
3832
3833 /* I_SYS_MOUNT:
3834  *      This symbol, if defined, indicates that <sys/mount.h> exists and
3835  *      should be included.
3836  */
3837 #$i_sysmount    I_SYS_MOUNT             /**/
3838
3839 /* I_SYS_STATFS:
3840  *      This symbol, if defined, indicates that <sys/statfs.h> exists.
3841  */
3842 #$i_sysstatfs   I_SYS_STATFS            /**/
3843
3844 /* I_SYS_STATVFS:
3845  *      This symbol, if defined, indicates that <sys/statvfs.h> exists and
3846  *      should be included.
3847  */
3848 #$i_sysstatvfs  I_SYS_STATVFS           /**/
3849
3850 /* I_SYSUTSNAME:
3851  *      This symbol, if defined, indicates that <sys/utsname.h> exists and
3852  *      should be included.
3853  */
3854 #$i_sysutsname  I_SYSUTSNAME            /**/
3855
3856 /* I_SYS_VFS:
3857  *      This symbol, if defined, indicates that <sys/vfs.h> exists and
3858  *      should be included.
3859  */
3860 #$i_sysvfs      I_SYS_VFS               /**/
3861
3862 /* I_USTAT:
3863  *      This symbol, if defined, indicates that <ustat.h> exists and
3864  *      should be included.
3865  */
3866 #$i_ustat       I_USTAT         /**/
3867
3868 /* I_WCHAR:
3869  *      This symbol, if defined, indicates to the C program that <wchar.h>
3870  *      is available for inclusion
3871  */
3872 #$i_wchar   I_WCHAR     /**/
3873
3874 /* I_WCTYPE:
3875  *      This symbol, if defined, indicates that <wctype.h> exists.
3876  */
3877 #$i_wctype      I_WCTYPE                /**/
3878
3879 /* DOUBLEINFBYTES:
3880  *      This symbol, if defined, is a comma-separated list of
3881  *      hexadecimal bytes for the double precision infinity.
3882  */
3883 /* DOUBLENANBYTES:
3884  *      This symbol, if defined, is a comma-separated list of
3885  *      hexadecimal bytes (0xHH) for the double precision not-a-number.
3886  */
3887 /* LONGDBLINFBYTES:
3888  *      This symbol, if defined, is a comma-separated list of
3889  *      hexadecimal bytes for the long double precision infinity.
3890  */
3891 /* LONGDBLNANBYTES:
3892  *      This symbol, if defined, is a comma-separated list of
3893  *      hexadecimal bytes (0xHH) for the long double precision not-a-number.
3894  */
3895 #define DOUBLEINFBYTES  $doubleinfbytes         /**/
3896 #define DOUBLENANBYTES  $doublenanbytes         /**/
3897 #define LONGDBLINFBYTES $longdblinfbytes                /**/
3898 #define LONGDBLNANBYTES $longdblnanbytes                /**/
3899
3900 /* PERL_PRIfldbl:
3901  *      This symbol, if defined, contains the string used by stdio to
3902  *      format long doubles (format 'f') for output.
3903  */
3904 /* PERL_PRIgldbl:
3905  *      This symbol, if defined, contains the string used by stdio to
3906  *      format long doubles (format 'g') for output.
3907  */
3908 /* PERL_PRIeldbl:
3909  *      This symbol, if defined, contains the string used by stdio to
3910  *      format long doubles (format 'e') for output.
3911  */
3912 /* PERL_SCNfldbl:
3913  *      This symbol, if defined, contains the string used by stdio to
3914  *      format long doubles (format 'f') for input.
3915  */
3916 /* DOUBLEKIND:
3917  *      DOUBLEKIND will be one of
3918  *      DOUBLE_IS_IEEE_754_32_BIT_LITTLE_ENDIAN
3919  *      DOUBLE_IS_IEEE_754_32_BIT_BIG_ENDIAN
3920  *      DOUBLE_IS_IEEE_754_64_BIT_LITTLE_ENDIAN
3921  *      DOUBLE_IS_IEEE_754_64_BIT_BIG_ENDIAN
3922  *      DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
3923  *      DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN
3924  *      DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_LE_BE
3925  *      DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_BE_LE
3926  *      DOUBLE_IS_VAX_F_FLOAT
3927  *      DOUBLE_IS_VAX_D_FLOAT
3928  *      DOUBLE_IS_VAX_G_FLOAT
3929  *      DOUBLE_IS_IBM_SINGLE_32_BIT
3930  *      DOUBLE_IS_IBM_DOUBLE_64_BIT
3931  *      DOUBLE_IS_CRAY_SINGLE_64_BIT
3932  *      DOUBLE_IS_UNKNOWN_FORMAT
3933  */
3934 /* DOUBLE_HAS_INF:
3935  *      This symbol, if defined, indicates that the double has
3936  *      the infinity.
3937  */
3938 /* DOUBLE_HAS_NAN:
3939  *      This symbol, if defined, indicates that the double has
3940  *      the not-a-number.
3941  */
3942 /* DOUBLE_HAS_NEGATIVE_ZERO:
3943  *      This symbol, if defined, indicates that the double has
3944  *      the negative_zero.
3945  */
3946 /* DOUBLE_HAS_SUBNORMALS:
3947  *      This symbol, if defined, indicates that the double has
3948  *      the subnormals (denormals).
3949  */
3950 /* DOUBLE_STYLE_CRAY:
3951  *      This symbol, if defined, indicates that the double is
3952  *      the 64-bit CRAY mainframe format.
3953  */
3954 /* DOUBLE_STYLE_IBM:
3955  *      This symbol, if defined, indicates that the double is
3956  *      the 64-bit IBM mainframe format.
3957  */
3958 /* DOUBLE_STYLE_IEEE:
3959  *      This symbol, if defined, indicates that the double is
3960  *      the 64-bit IEEE 754.
3961  */
3962 /* DOUBLE_STYLE_VAX:
3963  *      This symbol, if defined, indicates that the double is
3964  *      the 64-bit VAX format D or G.
3965  */
3966 #define DOUBLEKIND $doublekind          /**/
3967 #define DOUBLE_IS_IEEE_754_32_BIT_LITTLE_ENDIAN 1
3968 #define DOUBLE_IS_IEEE_754_32_BIT_BIG_ENDIAN    2
3969 #define DOUBLE_IS_IEEE_754_64_BIT_LITTLE_ENDIAN 3
3970 #define DOUBLE_IS_IEEE_754_64_BIT_BIG_ENDIAN    4
3971 #define DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN        5
3972 #define DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN   6
3973 #define DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_LE_BE    7
3974 #define DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_BE_LE    8
3975 #define DOUBLE_IS_VAX_F_FLOAT   9
3976 #define DOUBLE_IS_VAX_D_FLOAT   10
3977 #define DOUBLE_IS_VAX_G_FLOAT   11
3978 #define DOUBLE_IS_IBM_SINGLE_32_BIT     12
3979 #define DOUBLE_IS_IBM_DOUBLE_64_BIT     13
3980 #define DOUBLE_IS_CRAY_SINGLE_64_BIT    14
3981 #define DOUBLE_IS_UNKNOWN_FORMAT                -1
3982 #$d_PRIfldbl PERL_PRIfldbl      $sPRIfldbl      /**/
3983 #$d_PRIgldbl PERL_PRIgldbl      $sPRIgldbl      /**/
3984 #$d_PRIeldbl PERL_PRIeldbl      $sPRIeldbl      /**/
3985 #$d_SCNfldbl PERL_SCNfldbl      $sSCNfldbl      /**/
3986 #$d_double_has_inf DOUBLE_HAS_INF
3987 #$d_double_has_nan DOUBLE_HAS_NAN
3988 #$d_double_has_negative_zero DOUBLE_HAS_NEGATIVE_ZERO
3989 #$d_double_has_subnormals DOUBLE_HAS_SUBNORMALS
3990 #$d_double_style_cray DOUBLE_STYLE_CRAY
3991 #$d_double_style_ibm DOUBLE_STYLE_IBM
3992 #$d_double_style_ieee DOUBLE_STYLE_IEEE
3993 #$d_double_style_vax DOUBLE_STYLE_VAX
3994
3995 /* DOUBLEMANTBITS:
3996  *      This symbol, if defined, tells how many mantissa bits
3997  *      there are in double precision floating point format.
3998  *      Note that this is usually DBL_MANT_DIG minus one, since
3999  *      with the standard IEEE 754 formats DBL_MANT_DIG includes
4000  *      the implicit bit, which doesn't really exist.
4001  */
4002 /* LONGDBLMANTBITS:
4003  *      This symbol, if defined, tells how many mantissa bits
4004  *      there are in long double precision floating point format.
4005  *      Note that this can be LDBL_MANT_DIG minus one,
4006  *      since LDBL_MANT_DIG can include the IEEE 754 implicit bit.
4007  *      The common x86-style 80-bit long double does not have
4008  *      an implicit bit.
4009  */
4010 /* NVMANTBITS:
4011  *      This symbol, if defined, tells how many mantissa bits
4012  *      (not including implicit bit) there are in a Perl NV.
4013  *      This depends on which floating point type was chosen.
4014  */
4015 #define DOUBLEMANTBITS  $doublemantbits
4016 #define LONGDBLMANTBITS $longdblmantbits
4017 #define NVMANTBITS      $nvmantbits
4018
4019 /* NEED_VA_COPY:
4020  *      This symbol, if defined, indicates that the system stores
4021  *      the variable argument list datatype, va_list, in a format
4022  *      that cannot be copied by simple assignment, so that some
4023  *      other means must be used when copying is required.
4024  *      As such systems vary in their provision (or non-provision)
4025  *      of copying mechanisms, handy.h defines a platform-
4026  *      independent macro, Perl_va_copy(src, dst), to do the job.
4027  */
4028 #$need_va_copy  NEED_VA_COPY            /**/
4029
4030 /* IVTYPE:
4031  *      This symbol defines the C type used for Perl's IV.
4032  */
4033 /* UVTYPE:
4034  *      This symbol defines the C type used for Perl's UV.
4035  */
4036 /* I8TYPE:
4037  *      This symbol defines the C type used for Perl's I8.
4038  */
4039 /* U8TYPE:
4040  *      This symbol defines the C type used for Perl's U8.
4041  */
4042 /* I16TYPE:
4043  *      This symbol defines the C type used for Perl's I16.
4044  */
4045 /* U16TYPE:
4046  *      This symbol defines the C type used for Perl's U16.
4047  */
4048 /* I32TYPE:
4049  *      This symbol defines the C type used for Perl's I32.
4050  */
4051 /* U32TYPE:
4052  *      This symbol defines the C type used for Perl's U32.
4053  */
4054 /* I64TYPE:
4055  *      This symbol defines the C type used for Perl's I64.
4056  */
4057 /* U64TYPE:
4058  *      This symbol defines the C type used for Perl's U64.
4059  */
4060 /* NVTYPE:
4061  *      This symbol defines the C type used for Perl's NV.
4062  */
4063 /* IVSIZE:
4064  *      This symbol contains the sizeof(IV).
4065  */
4066 /* UVSIZE:
4067  *      This symbol contains the sizeof(UV).
4068  */
4069 /* I8SIZE:
4070  *      This symbol contains the sizeof(I8).
4071  */
4072 /* U8SIZE:
4073  *      This symbol contains the sizeof(U8).
4074  */
4075 /* I16SIZE:
4076  *      This symbol contains the sizeof(I16).
4077  */
4078 /* U16SIZE:
4079  *      This symbol contains the sizeof(U16).
4080  */
4081 /* I32SIZE:
4082  *      This symbol contains the sizeof(I32).
4083  */
4084 /* U32SIZE:
4085  *      This symbol contains the sizeof(U32).
4086  */
4087 /* I64SIZE:
4088  *      This symbol contains the sizeof(I64).
4089  */
4090 /* U64SIZE:
4091  *      This symbol contains the sizeof(U64).
4092  */
4093 /* NVSIZE:
4094  *      This symbol contains the sizeof(NV).
4095  *      Note that some floating point formats have unused bytes.
4096  *      The most notable example is the x86* 80-bit extended precision
4097  *      which comes in byte sizes of 12 and 16 (for 32 and 64 bit
4098  *      platforms, respectively), but which only uses 10 bytes.
4099  *      Perl compiled with -Duselongdouble on x86* is like this.
4100  */
4101 /* NV_PRESERVES_UV:
4102  *      This symbol, if defined, indicates that a variable of type NVTYPE
4103  *      can preserve all the bits of a variable of type UVTYPE.
4104  */
4105 /* NV_PRESERVES_UV_BITS:
4106  *      This symbol contains the number of bits a variable of type NVTYPE
4107  *      can preserve of a variable of type UVTYPE.
4108  */
4109 /* NV_OVERFLOWS_INTEGERS_AT:
4110  *      This symbol gives the largest integer value that NVs can hold. This
4111  *      value + 1.0 cannot be stored accurately. It is expressed as constant
4112  *      floating point expression to reduce the chance of decimal/binary
4113  *      conversion issues. If it can not be determined, the value 0 is given.
4114  */
4115 /* NV_ZERO_IS_ALLBITS_ZERO:
4116  *      This symbol, if defined, indicates that a variable of type NVTYPE
4117  *      stores 0.0 in memory as all bits zero.
4118  */
4119 #define IVTYPE          $ivtype         /**/
4120 #define UVTYPE          $uvtype         /**/
4121 #define I8TYPE          $i8type         /**/
4122 #define U8TYPE          $u8type         /**/
4123 #define I16TYPE         $i16type        /**/
4124 #define U16TYPE         $u16type        /**/
4125 #define I32TYPE         $i32type        /**/
4126 #define U32TYPE         $u32type        /**/
4127 #ifdef HAS_QUAD
4128 #define I64TYPE         $i64type        /**/
4129 #define U64TYPE         $u64type        /**/
4130 #endif
4131 #define NVTYPE          $nvtype         /**/
4132 #define IVSIZE          $ivsize         /**/
4133 #define UVSIZE          $uvsize         /**/
4134 #define I8SIZE          $i8size         /**/
4135 #define U8SIZE          $u8size         /**/
4136 #define I16SIZE         $i16size        /**/
4137 #define U16SIZE         $u16size        /**/
4138 #define I32SIZE         $i32size        /**/
4139 #define U32SIZE         $u32size        /**/
4140 #ifdef HAS_QUAD
4141 #define I64SIZE         $i64size        /**/
4142 #define U64SIZE         $u64size        /**/
4143 #endif
4144 #define NVSIZE          $nvsize         /**/
4145 #$d_nv_preserves_uv     NV_PRESERVES_UV
4146 #define NV_PRESERVES_UV_BITS    $nv_preserves_uv_bits
4147 #define NV_OVERFLOWS_INTEGERS_AT        ($nv_overflows_integers_at)
4148 #$d_nv_zero_is_allbits_zero     NV_ZERO_IS_ALLBITS_ZERO
4149 #if UVSIZE == 8
4150 #   ifdef BYTEORDER
4151 #       if BYTEORDER == 0x1234
4152 #           undef BYTEORDER
4153 #           define BYTEORDER 0x12345678
4154 #       else
4155 #           if BYTEORDER == 0x4321
4156 #               undef BYTEORDER
4157 #               define BYTEORDER 0x87654321
4158 #           endif
4159 #       endif
4160 #   endif
4161 #endif
4162
4163 /* IVdf:
4164  *      This symbol defines the format string used for printing a Perl IV
4165  *      as a signed decimal integer.
4166  */
4167 /* UVuf:
4168  *      This symbol defines the format string used for printing a Perl UV
4169  *      as an unsigned decimal integer.
4170  */
4171 /* UVof:
4172  *      This symbol defines the format string used for printing a Perl UV
4173  *      as an unsigned octal integer.
4174  */
4175 /* UVxf:
4176  *      This symbol defines the format string used for printing a Perl UV
4177  *      as an unsigned hexadecimal integer in lowercase abcdef.
4178  */
4179 /* UVXf:
4180  *      This symbol defines the format string used for printing a Perl UV
4181  *      as an unsigned hexadecimal integer in uppercase ABCDEF.
4182  */
4183 /* NVef:
4184  *      This symbol defines the format string used for printing a Perl NV
4185  *      using %e-ish floating point format.
4186  */
4187 /* NVff:
4188  *      This symbol defines the format string used for printing a Perl NV
4189  *      using %f-ish floating point format.
4190  */
4191 /* NVgf:
4192  *      This symbol defines the format string used for printing a Perl NV
4193  *      using %g-ish floating point format.
4194  */
4195 #define IVdf            $ivdformat              /**/
4196 #define UVuf            $uvuformat              /**/
4197 #define UVof            $uvoformat              /**/
4198 #define UVxf            $uvxformat              /**/
4199 #define UVXf            $uvXUformat             /**/
4200 #define NVef            $nveformat              /**/
4201 #define NVff            $nvfformat              /**/
4202 #define NVgf            $nvgformat              /**/
4203
4204 /* SELECT_MIN_BITS:
4205  *      This symbol holds the minimum number of bits operated by select.
4206  *      That is, if you do select(n, ...), how many bits at least will be
4207  *      cleared in the masks if some activity is detected.  Usually this
4208  *      is either n or 32*ceil(n/32), especially many little-endians do
4209  *      the latter.  This is only useful if you have select(), naturally.
4210  */
4211 #define SELECT_MIN_BITS $selectminbits  /**/
4212
4213 /* ST_DEV_SIZE:
4214  *      This variable contains the size of struct stat's st_dev in bytes.
4215  */
4216 /* ST_DEV_SIGN:
4217  *      This symbol holds the signedness of struct stat's st_dev.
4218  *      1 for unsigned, -1 for signed.
4219  */
4220 /* ST_INO_SIZE:
4221  *      This variable contains the size of struct stat's st_ino in bytes.
4222  */
4223 /* ST_INO_SIGN:
4224  *      This symbol holds the signedness of struct stat's st_ino.
4225  *      1 for unsigned, -1 for signed.
4226  */
4227 #define ST_DEV_SIGN $st_dev_sign        /* st_dev sign */
4228 #define ST_DEV_SIZE $st_dev_size        /* st_dev size */
4229 #define ST_INO_SIGN $st_ino_sign        /* st_ino sign */
4230 #define ST_INO_SIZE $st_ino_size        /* st_ino size */
4231
4232 /* STARTPERL:
4233  *      This variable contains the string to put in front of a perl
4234  *      script to make sure (one hopes) that it runs with perl and not
4235  *      some shell.
4236  */
4237 #define STARTPERL "$startperl"          /**/
4238
4239 /* HAS_STDIO_STREAM_ARRAY:
4240  *      This symbol, if defined, tells that there is an array
4241  *      holding the stdio streams.
4242  */
4243 /* STDIO_STREAM_ARRAY:
4244  *      This symbol tells the name of the array holding the stdio streams.
4245  *      Usual values include _iob, __iob, and __sF.
4246  */
4247 #$d_stdio_stream_array  HAS_STDIO_STREAM_ARRAY  /**/
4248 #ifdef HAS_STDIO_STREAM_ARRAY
4249 #define STDIO_STREAM_ARRAY      $stdio_stream_array
4250 #endif
4251
4252 /* GMTIME_MAX:
4253  *      This symbol contains the maximum value for the time_t offset that
4254  *      the system function gmtime () accepts, and defaults to 0
4255  */
4256 /* GMTIME_MIN:
4257  *      This symbol contains the minimum value for the time_t offset that
4258  *      the system function gmtime () accepts, and defaults to 0
4259  */
4260 /* LOCALTIME_MAX:
4261  *      This symbol contains the maximum value for the time_t offset that
4262  *      the system function localtime () accepts, and defaults to 0
4263  */
4264 /* LOCALTIME_MIN:
4265  *      This symbol contains the minimum value for the time_t offset that
4266  *      the system function localtime () accepts, and defaults to 0
4267  */
4268 #define GMTIME_MAX              $sGMTIME_max    /**/
4269 #define GMTIME_MIN              $sGMTIME_min    /**/
4270 #define LOCALTIME_MAX   $sLOCALTIME_max /**/
4271 #define LOCALTIME_MIN   $sLOCALTIME_min /**/
4272
4273 /* USE_64_BIT_INT:
4274  *      This symbol, if defined, indicates that 64-bit integers should
4275  *      be used when available.  If not defined, the native integers
4276  *      will be employed (be they 32 or 64 bits).  The minimal possible
4277  *      64-bitness is used, just enough to get 64-bit integers into Perl.
4278  *      This may mean using for example "long longs", while your memory
4279  *      may still be limited to 2 gigabytes.
4280  */
4281 /* USE_64_BIT_ALL:
4282  *      This symbol, if defined, indicates that 64-bit integers should
4283  *      be used when available.  If not defined, the native integers
4284  *      will be used (be they 32 or 64 bits).  The maximal possible
4285  *      64-bitness is employed: LP64 or ILP64, meaning that you will
4286  *      be able to use more than 2 gigabytes of memory.  This mode is
4287  *      even more binary incompatible than USE_64_BIT_INT. You may not
4288  *      be able to run the resulting executable in a 32-bit CPU at all or
4289  *      you may need at least to reboot your OS to 64-bit mode.
4290  */
4291 #ifndef USE_64_BIT_INT
4292 #$use64bitint   USE_64_BIT_INT          /**/
4293 #endif
4294 #ifndef USE_64_BIT_ALL
4295 #$use64bitall   USE_64_BIT_ALL          /**/
4296 #endif
4297
4298 /* USE_C_BACKTRACE:
4299  *      This symbol, if defined, indicates that Perl should
4300  *      be built with support for backtrace.
4301  */
4302 #$usecbacktrace USE_C_BACKTRACE         /**/
4303
4304 /* USE_STRICT_BY_DEFAULT:
4305  *      This symbol, if defined, enables additional defaults.
4306  *      At this time it only enables implicit strict by default.
4307  */
4308 #$usedefaultstrict USE_STRICT_BY_DEFAULT        /* use strict by default */
4309
4310 /* USE_DTRACE:
4311  *      This symbol, if defined, indicates that Perl should
4312  *      be built with support for DTrace.
4313  */
4314 #$usedtrace USE_DTRACE          /**/
4315
4316 /* USE_FAST_STDIO:
4317  *      This symbol, if defined, indicates that Perl should
4318  *      be built to use 'fast stdio'.
4319  *      Defaults to define in Perls 5.8 and earlier, to undef later.
4320  */
4321 #ifndef USE_FAST_STDIO
4322 #$usefaststdio  USE_FAST_STDIO          /**/
4323 #endif
4324
4325 /* USE_KERN_PROC_PATHNAME:
4326  *      This symbol, if defined, indicates that we can use sysctl with
4327  *      KERN_PROC_PATHNAME to get a full path for the executable, and hence
4328  *      convert $^X to an absolute path.
4329  */
4330 #$usekernprocpathname USE_KERN_PROC_PATHNAME    /**/
4331
4332 /* USE_LARGE_FILES:
4333  *      This symbol, if defined, indicates that large file support
4334  *      should be used when available.
4335  */
4336 #ifndef USE_LARGE_FILES
4337 #$uselargefiles USE_LARGE_FILES         /**/
4338 #endif
4339
4340 /* USE_LONG_DOUBLE:
4341  *      This symbol, if defined, indicates that long doubles should
4342  *      be used when available.
4343  */
4344 #ifndef USE_LONG_DOUBLE
4345 #$uselongdouble USE_LONG_DOUBLE         /**/
4346 #endif
4347
4348 /* USE_MORE_BITS:
4349  *      This symbol, if defined, indicates that 64-bit interfaces and
4350  *      long doubles should be used when available.
4351  */
4352 #ifndef USE_MORE_BITS
4353 #$usemorebits   USE_MORE_BITS           /**/
4354 #endif
4355
4356 /* MULTIPLICITY:
4357  *      This symbol, if defined, indicates that Perl should
4358  *      be built to use multiplicity.
4359  */
4360 #ifndef MULTIPLICITY
4361 #$usemultiplicity       MULTIPLICITY            /**/
4362 #endif
4363
4364 /* USE_NSGETEXECUTABLEPATH:
4365  *      This symbol, if defined, indicates that we can use _NSGetExecutablePath
4366  *      and realpath to get a full path for the executable, and hence convert
4367  *      $^X to an absolute path.
4368  */
4369 #$usensgetexecutablepath USE_NSGETEXECUTABLEPATH        /**/
4370
4371 /* USE_PERLIO:
4372  *      This symbol, if defined, indicates that the PerlIO abstraction should
4373  *      be used throughout.  If not defined, stdio should be
4374  *      used in a fully backward compatible manner.
4375  */
4376 #ifndef USE_PERLIO
4377 #$useperlio     USE_PERLIO              /**/
4378 #endif
4379
4380 /* USE_QUADMATH:
4381  *      This symbol, if defined, indicates that the quadmath library should
4382  *      be used when available.
4383  */
4384 #ifndef USE_QUADMATH
4385 #$usequadmath   USE_QUADMATH            /**/
4386 #endif
4387
4388 /* USE_SOCKS:
4389  *      This symbol, if defined, indicates that Perl should
4390  *      be built to use socks.
4391  */
4392 #ifndef USE_SOCKS
4393 #$usesocks      USE_SOCKS               /**/
4394 #endif
4395
4396 /* HAS_DRAND48_PROTO:
4397  *      This symbol, if defined, indicates that the system provides
4398  *      a prototype for the drand48() function.  Otherwise, it is up
4399  *      to the program to supply one.  A good guess is
4400  *              extern double drand48(void);
4401  */
4402 #$d_drand48proto        HAS_DRAND48_PROTO       /**/
4403
4404 /* HAS_GETHOST_PROTOS:
4405  *      This symbol, if defined, indicates that <netdb.h> includes
4406  *      prototypes for gethostent(), gethostbyname(), and
4407  *      gethostbyaddr().  Otherwise, it is up to the program to guess
4408  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
4409  */
4410 #$d_gethostprotos       HAS_GETHOST_PROTOS      /**/
4411
4412 /* HAS_GETNET_PROTOS:
4413  *      This symbol, if defined, indicates that <netdb.h> includes
4414  *      prototypes for getnetent(), getnetbyname(), and
4415  *      getnetbyaddr().  Otherwise, it is up to the program to guess
4416  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
4417  */
4418 #$d_getnetprotos        HAS_GETNET_PROTOS       /**/
4419
4420 /* HAS_GETPROTO_PROTOS:
4421  *      This symbol, if defined, indicates that <netdb.h> includes
4422  *      prototypes for getprotoent(), getprotobyname(), and
4423  *      getprotobyaddr().  Otherwise, it is up to the program to guess
4424  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
4425  */
4426 #$d_getprotoprotos      HAS_GETPROTO_PROTOS     /**/
4427
4428 /* HAS_GETSERV_PROTOS:
4429  *      This symbol, if defined, indicates that <netdb.h> includes
4430  *      prototypes for getservent(), getservbyname(), and
4431  *      getservbyaddr().  Otherwise, it is up to the program to guess
4432  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
4433  */
4434 #$d_getservprotos       HAS_GETSERV_PROTOS      /**/
4435
4436 /* HAS_LSEEK_PROTO:
4437  *      This symbol, if defined, indicates that the system provides
4438  *      a prototype for the lseek() function.  Otherwise, it is up
4439  *      to the program to supply one.  A good guess is
4440  *              extern off_t lseek(int, off_t, int);
4441  */
4442 #$d_lseekproto  HAS_LSEEK_PROTO /**/
4443
4444 /* Netdb_host_t:
4445  *      This symbol holds the type used for the 1st argument
4446  *      to gethostbyaddr().
4447  */
4448 /* Netdb_hlen_t:
4449  *      This symbol holds the type used for the 2nd argument
4450  *      to gethostbyaddr().
4451  */
4452 /* Netdb_name_t:
4453  *      This symbol holds the type used for the argument to
4454  *      gethostbyname().
4455  */
4456 /* Netdb_net_t:
4457  *      This symbol holds the type used for the 1st argument to
4458  *      getnetbyaddr().
4459  */
4460 #define Netdb_host_t            $netdb_host_type /**/
4461 #define Netdb_hlen_t            $netdb_hlen_type /**/
4462 #define Netdb_name_t            $netdb_name_type /**/
4463 #define Netdb_net_t             $netdb_net_type /**/
4464
4465 /* Select_fd_set_t:
4466  *      This symbol holds the type used for the 2nd, 3rd, and 4th
4467  *      arguments to select.  Usually, this is 'fd_set *', if HAS_FD_SET
4468  *      is defined, and 'int *' otherwise.  This is only useful if you
4469  *      have select(), of course.
4470  */
4471 #define Select_fd_set_t $selecttype     /**/
4472
4473 /* Sock_size_t:
4474  *      This symbol holds the type used for the size argument of
4475  *      various socket calls (just the base type, not the pointer-to).
4476  */
4477 #define Sock_size_t             $socksizetype /**/
4478
4479 /* ARCHNAME:
4480  *      This symbol holds a string representing the architecture name.
4481  *      It may be used to construct an architecture-dependant pathname
4482  *      where library files may be held under a private library, for
4483  *      instance.
4484  */
4485 #define ARCHNAME "$archname"            /**/
4486
4487 /* HAS_ASCTIME_R:
4488  *      This symbol, if defined, indicates that the asctime_r routine
4489  *      is available to asctime re-entrantly.
4490  */
4491 /* ASCTIME_R_PROTO:
4492  *      This symbol encodes the prototype of asctime_r.
4493  *      It is zero if d_asctime_r is undef, and one of the
4494  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_asctime_r
4495  *      is defined.
4496  */
4497 #$d_asctime_r HAS_ASCTIME_R     /**/
4498 #define ASCTIME_R_PROTO $asctime_r_proto        /**/
4499
4500 /* HAS_CRYPT_R:
4501  *      This symbol, if defined, indicates that the crypt_r routine
4502  *      is available to crypt re-entrantly.
4503  */
4504 /* CRYPT_R_PROTO:
4505  *      This symbol encodes the prototype of crypt_r.
4506  *      It is zero if d_crypt_r is undef, and one of the
4507  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_crypt_r
4508  *      is defined.
4509  */
4510 #$d_crypt_r HAS_CRYPT_R /**/
4511 #define CRYPT_R_PROTO $crypt_r_proto    /**/
4512
4513 /* HAS_CTERMID_R:
4514  *      This symbol, if defined, indicates that the ctermid_r routine
4515  *      is available to ctermid re-entrantly.
4516  */
4517 /* CTERMID_R_PROTO:
4518  *      This symbol encodes the prototype of ctermid_r.
4519  *      It is zero if d_ctermid_r is undef, and one of the
4520  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctermid_r
4521  *      is defined.
4522  */
4523 #$d_ctermid_r HAS_CTERMID_R     /**/
4524 #define CTERMID_R_PROTO $ctermid_r_proto        /**/
4525
4526 /* HAS_CTIME_R:
4527  *      This symbol, if defined, indicates that the ctime_r routine
4528  *      is available to ctime re-entrantly.
4529  */
4530 /* CTIME_R_PROTO:
4531  *      This symbol encodes the prototype of ctime_r.
4532  *      It is zero if d_ctime_r is undef, and one of the
4533  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctime_r
4534  *      is defined.
4535  */
4536 #$d_ctime_r HAS_CTIME_R /**/
4537 #define CTIME_R_PROTO $ctime_r_proto    /**/
4538
4539 /* HAS_DRAND48_R:
4540  *      This symbol, if defined, indicates that the drand48_r routine
4541  *      is available to drand48 re-entrantly.
4542  */
4543 /* DRAND48_R_PROTO:
4544  *      This symbol encodes the prototype of drand48_r.
4545  *      It is zero if d_drand48_r is undef, and one of the
4546  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_drand48_r
4547  *      is defined.
4548  */
4549 #$d_drand48_r HAS_DRAND48_R     /**/
4550 #define DRAND48_R_PROTO $drand48_r_proto        /**/
4551
4552 /* HAS_ENDGRENT_R:
4553  *      This symbol, if defined, indicates that the endgrent_r routine
4554  *      is available to endgrent re-entrantly.
4555  */
4556 /* ENDGRENT_R_PROTO:
4557  *      This symbol encodes the prototype of endgrent_r.
4558  *      It is zero if d_endgrent_r is undef, and one of the
4559  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_endgrent_r
4560  *      is defined.
4561  */
4562 #$d_endgrent_r HAS_ENDGRENT_R   /**/
4563 #define ENDGRENT_R_PROTO $endgrent_r_proto      /**/
4564
4565 /* HAS_ENDHOSTENT_R:
4566  *      This symbol, if defined, indicates that the endhostent_r routine
4567  *      is available to endhostent re-entrantly.
4568  */
4569 /* ENDHOSTENT_R_PROTO:
4570  *      This symbol encodes the prototype of endhostent_r.
4571  *      It is zero if d_endhostent_r is undef, and one of the
4572  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_endhostent_r
4573  *      is defined.
4574  */
4575 #$d_endhostent_r HAS_ENDHOSTENT_R       /**/
4576 #define ENDHOSTENT_R_PROTO $endhostent_r_proto  /**/
4577
4578 /* HAS_ENDNETENT_R:
4579  *      This symbol, if defined, indicates that the endnetent_r routine
4580  *      is available to endnetent re-entrantly.
4581  */
4582 /* ENDNETENT_R_PROTO:
4583  *      This symbol encodes the prototype of endnetent_r.
4584  *      It is zero if d_endnetent_r is undef, and one of the
4585  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_endnetent_r
4586  *      is defined.
4587  */
4588 #$d_endnetent_r HAS_ENDNETENT_R /**/
4589 #define ENDNETENT_R_PROTO $endnetent_r_proto    /**/
4590
4591 /* HAS_ENDPROTOENT_R:
4592  *      This symbol, if defined, indicates that the endprotoent_r routine
4593  *      is available to endprotoent re-entrantly.
4594  */
4595 /* ENDPROTOENT_R_PROTO:
4596  *      This symbol encodes the prototype of endprotoent_r.
4597  *      It is zero if d_endprotoent_r is undef, and one of the
4598  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_endprotoent_r
4599  *      is defined.
4600  */
4601 #$d_endprotoent_r HAS_ENDPROTOENT_R     /**/
4602 #define ENDPROTOENT_R_PROTO $endprotoent_r_proto        /**/
4603
4604 /* HAS_ENDPWENT_R:
4605  *      This symbol, if defined, indicates that the endpwent_r routine
4606  *      is available to endpwent re-entrantly.
4607  */
4608 /* ENDPWENT_R_PROTO:
4609  *      This symbol encodes the prototype of endpwent_r.
4610  *      It is zero if d_endpwent_r is undef, and one of the
4611  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_endpwent_r
4612  *      is defined.
4613  */
4614 #$d_endpwent_r HAS_ENDPWENT_R   /**/
4615 #define ENDPWENT_R_PROTO $endpwent_r_proto      /**/
4616
4617 /* HAS_ENDSERVENT_R:
4618  *      This symbol, if defined, indicates that the endservent_r routine
4619  *      is available to endservent re-entrantly.
4620  */
4621 /* ENDSERVENT_R_PROTO:
4622  *      This symbol encodes the prototype of endservent_r.
4623  *      It is zero if d_endservent_r is undef, and one of the
4624  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_endservent_r
4625  *      is defined.
4626  */
4627 #$d_endservent_r HAS_ENDSERVENT_R       /**/
4628 #define ENDSERVENT_R_PROTO $endservent_r_proto  /**/
4629
4630 /* GETENV_PRESERVES_OTHER_THREAD:
4631  *      This symbol, if defined, indicates that the getenv system call doesn't
4632  *      zap the static buffer of getenv() in a different thread.
4633  *
4634  *      The typical getenv() implementation will return a pointer to the proper
4635  *      position in **environ.  But some may instead copy them to a static
4636  *      buffer in getenv().  If there is a per-thread instance of that buffer,
4637  *      or the return points to **environ, then a many-reader/1-writer mutex
4638  *      will work; otherwise an exclusive locking mutex is required to prevent
4639  *      races.
4640  */
4641 #$d_getenv_preserves_other_thread GETENV_PRESERVES_OTHER_THREAD /**/
4642
4643 /* HAS_GETGRENT_R:
4644  *      This symbol, if defined, indicates that the getgrent_r routine
4645  *      is available to getgrent re-entrantly.
4646  */
4647 /* GETGRENT_R_PROTO:
4648  *      This symbol encodes the prototype of getgrent_r.
4649  *      It is zero if d_getgrent_r is undef, and one of the
4650  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrent_r
4651  *      is defined.
4652  */
4653 #$d_getgrent_r HAS_GETGRENT_R   /**/
4654 #define GETGRENT_R_PROTO $getgrent_r_proto      /**/
4655
4656 /* HAS_GETGRGID_R:
4657  *      This symbol, if defined, indicates that the getgrgid_r routine
4658  *      is available to getgrgid re-entrantly.
4659  */
4660 /* GETGRGID_R_PROTO:
4661  *      This symbol encodes the prototype of getgrgid_r.
4662  *      It is zero if d_getgrgid_r is undef, and one of the
4663  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrgid_r
4664  *      is defined.
4665  */
4666 #$d_getgrgid_r HAS_GETGRGID_R   /**/
4667 #define GETGRGID_R_PROTO $getgrgid_r_proto      /**/
4668
4669 /* HAS_GETGRNAM_R:
4670  *      This symbol, if defined, indicates that the getgrnam_r routine
4671  *      is available to getgrnam re-entrantly.
4672  */
4673 /* GETGRNAM_R_PROTO:
4674  *      This symbol encodes the prototype of getgrnam_r.
4675  *      It is zero if d_getgrnam_r is undef, and one of the
4676  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrnam_r
4677  *      is defined.
4678  */
4679 #$d_getgrnam_r HAS_GETGRNAM_R   /**/
4680 #define GETGRNAM_R_PROTO $getgrnam_r_proto      /**/
4681
4682 /* HAS_GETHOSTBYADDR_R:
4683  *      This symbol, if defined, indicates that the gethostbyaddr_r routine
4684  *      is available to gethostbyaddr re-entrantly.
4685  */
4686 /* GETHOSTBYADDR_R_PROTO:
4687  *      This symbol encodes the prototype of gethostbyaddr_r.
4688  *      It is zero if d_gethostbyaddr_r is undef, and one of the
4689  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyaddr_r
4690  *      is defined.
4691  */
4692 #$d_gethostbyaddr_r HAS_GETHOSTBYADDR_R /**/
4693 #define GETHOSTBYADDR_R_PROTO $gethostbyaddr_r_proto    /**/
4694
4695 /* HAS_GETHOSTBYNAME_R:
4696  *      This symbol, if defined, indicates that the gethostbyname_r routine
4697  *      is available to gethostbyname re-entrantly.
4698  */
4699 /* GETHOSTBYNAME_R_PROTO:
4700  *      This symbol encodes the prototype of gethostbyname_r.
4701  *      It is zero if d_gethostbyname_r is undef, and one of the
4702  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyname_r
4703  *      is defined.
4704  */
4705 #$d_gethostbyname_r HAS_GETHOSTBYNAME_R /**/
4706 #define GETHOSTBYNAME_R_PROTO $gethostbyname_r_proto    /**/
4707
4708 /* HAS_GETHOSTENT_R:
4709  *      This symbol, if defined, indicates that the gethostent_r routine
4710  *      is available to gethostent re-entrantly.
4711  */
4712 /* GETHOSTENT_R_PROTO:
4713  *      This symbol encodes the prototype of gethostent_r.
4714  *      It is zero if d_gethostent_r is undef, and one of the
4715  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostent_r
4716  *      is defined.
4717  */
4718 #$d_gethostent_r HAS_GETHOSTENT_R       /**/
4719 #define GETHOSTENT_R_PROTO $gethostent_r_proto  /**/
4720
4721 /* HAS_GETLOGIN_R:
4722  *      This symbol, if defined, indicates that the getlogin_r routine
4723  *      is available to getlogin re-entrantly.
4724  */
4725 /* GETLOGIN_R_PROTO:
4726  *      This symbol encodes the prototype of getlogin_r.
4727  *      It is zero if d_getlogin_r is undef, and one of the
4728  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getlogin_r
4729  *      is defined.
4730  */
4731 #$d_getlogin_r HAS_GETLOGIN_R   /**/
4732 #define GETLOGIN_R_PROTO $getlogin_r_proto      /**/
4733
4734 /* HAS_GETNETBYADDR_R:
4735  *      This symbol, if defined, indicates that the getnetbyaddr_r routine
4736  *      is available to getnetbyaddr re-entrantly.
4737  */
4738 /* GETNETBYADDR_R_PROTO:
4739  *      This symbol encodes the prototype of getnetbyaddr_r.
4740  *      It is zero if d_getnetbyaddr_r is undef, and one of the
4741  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyaddr_r
4742  *      is defined.
4743  */
4744 #$d_getnetbyaddr_r HAS_GETNETBYADDR_R   /**/
4745 #define GETNETBYADDR_R_PROTO $getnetbyaddr_r_proto      /**/
4746
4747 /* HAS_GETNETBYNAME_R:
4748  *      This symbol, if defined, indicates that the getnetbyname_r routine
4749  *      is available to getnetbyname re-entrantly.
4750  */
4751 /* GETNETBYNAME_R_PROTO:
4752  *      This symbol encodes the prototype of getnetbyname_r.
4753  *      It is zero if d_getnetbyname_r is undef, and one of the
4754  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyname_r
4755  *      is defined.
4756  */
4757 #$d_getnetbyname_r HAS_GETNETBYNAME_R   /**/
4758 #define GETNETBYNAME_R_PROTO $getnetbyname_r_proto      /**/
4759
4760 /* HAS_GETNETENT_R:
4761  *      This symbol, if defined, indicates that the getnetent_r routine
4762  *      is available to getnetent re-entrantly.
4763  */
4764 /* GETNETENT_R_PROTO:
4765  *      This symbol encodes the prototype of getnetent_r.
4766  *      It is zero if d_getnetent_r is undef, and one of the
4767  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetent_r
4768  *      is defined.
4769  */
4770 #$d_getnetent_r HAS_GETNETENT_R /**/
4771 #define GETNETENT_R_PROTO $getnetent_r_proto    /**/
4772
4773 /* HAS_GETPROTOBYNAME_R:
4774  *      This symbol, if defined, indicates that the getprotobyname_r routine
4775  *      is available to getprotobyname re-entrantly.
4776  */
4777 /* GETPROTOBYNAME_R_PROTO:
4778  *      This symbol encodes the prototype of getprotobyname_r.
4779  *      It is zero if d_getprotobyname_r is undef, and one of the
4780  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobyname_r
4781  *      is defined.
4782  */
4783 #$d_getprotobyname_r HAS_GETPROTOBYNAME_R       /**/
4784 #define GETPROTOBYNAME_R_PROTO $getprotobyname_r_proto  /**/
4785
4786 /* HAS_GETPROTOBYNUMBER_R:
4787  *      This symbol, if defined, indicates that the getprotobynumber_r routine
4788  *      is available to getprotobynumber re-entrantly.
4789  */
4790 /* GETPROTOBYNUMBER_R_PROTO:
4791  *      This symbol encodes the prototype of getprotobynumber_r.
4792  *      It is zero if d_getprotobynumber_r is undef, and one of the
4793  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobynumber_r
4794  *      is defined.
4795  */
4796 #$d_getprotobynumber_r HAS_GETPROTOBYNUMBER_R   /**/
4797 #define GETPROTOBYNUMBER_R_PROTO $getprotobynumber_r_proto      /**/
4798
4799 /* HAS_GETPROTOENT_R:
4800  *      This symbol, if defined, indicates that the getprotoent_r routine
4801  *      is available to getprotoent re-entrantly.
4802  */
4803 /* GETPROTOENT_R_PROTO:
4804  *      This symbol encodes the prototype of getprotoent_r.
4805  *      It is zero if d_getprotoent_r is undef, and one of the
4806  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotoent_r
4807  *      is defined.
4808  */
4809 #$d_getprotoent_r HAS_GETPROTOENT_R     /**/
4810 #define GETPROTOENT_R_PROTO $getprotoent_r_proto        /**/
4811
4812 /* HAS_GETPWENT_R:
4813  *      This symbol, if defined, indicates that the getpwent_r routine
4814  *      is available to getpwent re-entrantly.
4815  */
4816 /* GETPWENT_R_PROTO:
4817  *      This symbol encodes the prototype of getpwent_r.
4818  *      It is zero if d_getpwent_r is undef, and one of the
4819  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwent_r
4820  *      is defined.
4821  */
4822 #$d_getpwent_r HAS_GETPWENT_R   /**/
4823 #define GETPWENT_R_PROTO $getpwent_r_proto      /**/
4824
4825 /* HAS_GETPWNAM_R:
4826  *      This symbol, if defined, indicates that the getpwnam_r routine
4827  *      is available to getpwnam re-entrantly.
4828  */
4829 /* GETPWNAM_R_PROTO:
4830  *      This symbol encodes the prototype of getpwnam_r.
4831  *      It is zero if d_getpwnam_r is undef, and one of the
4832  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwnam_r
4833  *      is defined.
4834  */
4835 #$d_getpwnam_r HAS_GETPWNAM_R   /**/
4836 #define GETPWNAM_R_PROTO $getpwnam_r_proto      /**/
4837
4838 /* HAS_GETPWUID_R:
4839  *      This symbol, if defined, indicates that the getpwuid_r routine
4840  *      is available to getpwuid re-entrantly.
4841  */
4842 /* GETPWUID_R_PROTO:
4843  *      This symbol encodes the prototype of getpwuid_r.
4844  *      It is zero if d_getpwuid_r is undef, and one of the
4845  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwuid_r
4846  *      is defined.
4847  */
4848 #$d_getpwuid_r HAS_GETPWUID_R   /**/
4849 #define GETPWUID_R_PROTO $getpwuid_r_proto      /**/
4850
4851 /* HAS_GETSERVBYNAME_R:
4852  *      This symbol, if defined, indicates that the getservbyname_r routine
4853  *      is available to getservbyname re-entrantly.
4854  */
4855 /* GETSERVBYNAME_R_PROTO:
4856  *      This symbol encodes the prototype of getservbyname_r.
4857  *      It is zero if d_getservbyname_r is undef, and one of the
4858  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyname_r
4859  *      is defined.
4860  */
4861 #$d_getservbyname_r HAS_GETSERVBYNAME_R /**/
4862 #define GETSERVBYNAME_R_PROTO $getservbyname_r_proto    /**/
4863
4864 /* HAS_GETSERVBYPORT_R:
4865  *      This symbol, if defined, indicates that the getservbyport_r routine
4866  *      is available to getservbyport re-entrantly.
4867  */
4868 /* GETSERVBYPORT_R_PROTO:
4869  *      This symbol encodes the prototype of getservbyport_r.
4870  *      It is zero if d_getservbyport_r is undef, and one of the
4871  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyport_r
4872  *      is defined.
4873  */
4874 #$d_getservbyport_r HAS_GETSERVBYPORT_R /**/
4875 #define GETSERVBYPORT_R_PROTO $getservbyport_r_proto    /**/
4876
4877 /* HAS_GETSERVENT_R:
4878  *      This symbol, if defined, indicates that the getservent_r routine
4879  *      is available to getservent re-entrantly.
4880  */
4881 /* GETSERVENT_R_PROTO:
4882  *      This symbol encodes the prototype of getservent_r.
4883  *      It is zero if d_getservent_r is undef, and one of the
4884  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservent_r
4885  *      is defined.
4886  */
4887 #$d_getservent_r HAS_GETSERVENT_R       /**/
4888 #define GETSERVENT_R_PROTO $getservent_r_proto  /**/
4889
4890 /* HAS_GETSPNAM_R:
4891  *      This symbol, if defined, indicates that the getspnam_r routine
4892  *      is available to getspnam re-entrantly.
4893  */
4894 /* GETSPNAM_R_PROTO:
4895  *      This symbol encodes the prototype of getspnam_r.
4896  *      It is zero if d_getspnam_r is undef, and one of the
4897  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_getspnam_r
4898  *      is defined.
4899  */
4900 #$d_getspnam_r HAS_GETSPNAM_R   /**/
4901 #define GETSPNAM_R_PROTO $getspnam_r_proto      /**/
4902
4903 /* HAS_GMTIME_R:
4904  *      This symbol, if defined, indicates that the gmtime_r routine
4905  *      is available to gmtime re-entrantly.
4906  */
4907 /* GMTIME_R_PROTO:
4908  *      This symbol encodes the prototype of gmtime_r.
4909  *      It is zero if d_gmtime_r is undef, and one of the
4910  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_gmtime_r
4911  *      is defined.
4912  */
4913 #$d_gmtime_r HAS_GMTIME_R       /**/
4914 #define GMTIME_R_PROTO $gmtime_r_proto  /**/
4915
4916 /* HAS_LOCALECONV_L:
4917  *      This symbol, if defined, indicates that the localeconv_l routine is
4918  *      available to query certain information about a locale.
4919  */
4920 #$d_localeconv_l HAS_LOCALECONV_L               /**/
4921
4922 /* HAS_LOCALTIME_R:
4923  *      This symbol, if defined, indicates that the localtime_r routine
4924  *      is available to localtime re-entrantly.
4925  */
4926 /* LOCALTIME_R_NEEDS_TZSET:
4927  *      Many libc's localtime_r implementations do not call tzset,
4928  *      making them differ from localtime(), and making timezone
4929  *      changes using \$ENV{TZ} without explicitly calling tzset
4930  *      impossible. This symbol makes us call tzset before localtime_r
4931  */
4932 #$d_localtime_r_needs_tzset LOCALTIME_R_NEEDS_TZSET /**/
4933 #ifdef LOCALTIME_R_NEEDS_TZSET
4934 #define L_R_TZSET tzset(),
4935 #else
4936 #define L_R_TZSET
4937 #endif
4938
4939 /* L_R_TZSET:
4940  *      If localtime_r() needs tzset, it is defined in this define
4941  */
4942 /* LOCALTIME_R_PROTO:
4943  *      This symbol encodes the prototype of localtime_r.
4944  *      It is zero if d_localtime_r is undef, and one of the
4945  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_localtime_r
4946  *      is defined.
4947  */
4948 #$d_localtime_r HAS_LOCALTIME_R /**/
4949 #define LOCALTIME_R_PROTO $localtime_r_proto    /**/
4950
4951 /* HAS_MBRLEN:
4952  *      This symbol, if defined, indicates that the mbrlen routine is
4953  *      available to get the length of multi-byte character strings.
4954  */
4955 #$d_mbrlen HAS_MBRLEN   /**/
4956
4957 /* HAS_MBRTOWC:
4958  *      This symbol, if defined, indicates that the mbrtowc routine is
4959  *      available to convert a multi-byte character into a wide character.
4960  */
4961 #$d_mbrtowc HAS_MBRTOWC /**/
4962
4963 /* HAS_NL_LANGINFO_L:
4964  *      This symbol, when defined, indicates presence of the nl_langinfo_l()
4965  *      function
4966  */
4967 /* HAS_THREAD_SAFE_NL_LANGINFO_L:
4968  *      This symbol, when defined, indicates presence of the nl_langinfo_l()
4969  *      function, and that it is thread-safe.
4970  */
4971 #$d_nl_langinfo_l HAS_NL_LANGINFO_L     /**/
4972 #$d_thread_safe_nl_langinfo_l HAS_THREAD_SAFE_NL_LANGINFO_L     /**/
4973
4974 /* OLD_PTHREAD_CREATE_JOINABLE:
4975  *      This symbol, if defined, indicates how to create pthread
4976  *      in joinable (aka undetached) state.  NOTE: not defined
4977  *      if pthread.h already has defined PTHREAD_CREATE_JOINABLE
4978  *      (the new version of the constant).
4979  *      If defined, known values are PTHREAD_CREATE_UNDETACHED
4980  *      and __UNDETACHED.
4981  */
4982 #$d_old_pthread_create_joinable OLD_PTHREAD_CREATE_JOINABLE $old_pthread_create_joinable /**/
4983
4984 /* HAS_PTHREAD_ATFORK:
4985  *      This symbol, if defined, indicates that the pthread_atfork routine
4986  *      is available to setup fork handlers.
4987  */
4988 #$d_pthread_atfork HAS_PTHREAD_ATFORK           /**/
4989
4990 /* HAS_PTHREAD_YIELD:
4991  *      This symbol, if defined, indicates that the pthread_yield
4992  *      routine is available to yield the execution of the current
4993  *      thread.  sched_yield is preferable to pthread_yield.
4994  */
4995 /* SCHED_YIELD:
4996  *      This symbol defines the way to yield the execution of
4997  *      the current thread.  Known ways are sched_yield,
4998  *      pthread_yield, and pthread_yield with NULL.
4999  */
5000 /* HAS_SCHED_YIELD:
5001  *      This symbol, if defined, indicates that the sched_yield
5002  *      routine is available to yield the execution of the current
5003  *      thread.  sched_yield is preferable to pthread_yield.
5004  */
5005 #$d_pthread_yield HAS_PTHREAD_YIELD     /**/
5006 #define SCHED_YIELD     $sched_yield    /**/
5007 #$d_sched_yield HAS_SCHED_YIELD /**/
5008
5009 /* HAS_RANDOM_R:
5010  *      This symbol, if defined, indicates that the random_r routine
5011  *      is available to random re-entrantly.
5012  */
5013 /* RANDOM_R_PROTO:
5014  *      This symbol encodes the prototype of random_r.
5015  *      It is zero if d_random_r is undef, and one of the
5016  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_random_r
5017  *      is defined.
5018  */
5019 #$d_random_r HAS_RANDOM_R       /**/
5020 #define RANDOM_R_PROTO $random_r_proto  /**/
5021
5022 /* HAS_READDIR64_R:
5023  *      This symbol, if defined, indicates that the readdir64_r routine
5024  *      is available to readdir64 re-entrantly.
5025  */
5026 /* READDIR64_R_PROTO:
5027  *      This symbol encodes the prototype of readdir64_r.
5028  *      It is zero if d_readdir64_r is undef, and one of the
5029  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir64_r
5030  *      is defined.
5031  */
5032 #$d_readdir64_r HAS_READDIR64_R /**/
5033 #define READDIR64_R_PROTO $readdir64_r_proto    /**/
5034
5035 /* HAS_READDIR_R:
5036  *      This symbol, if defined, indicates that the readdir_r routine
5037  *      is available to readdir re-entrantly.
5038  */
5039 /* READDIR_R_PROTO:
5040  *      This symbol encodes the prototype of readdir_r.
5041  *      It is zero if d_readdir_r is undef, and one of the
5042  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir_r
5043  *      is defined.
5044  */
5045 #$d_readdir_r HAS_READDIR_R     /**/
5046 #define READDIR_R_PROTO $readdir_r_proto        /**/
5047
5048 /* HAS_SETGRENT_R:
5049  *      This symbol, if defined, indicates that the setgrent_r routine
5050  *      is available to setgrent re-entrantly.
5051  */
5052 /* SETGRENT_R_PROTO:
5053  *      This symbol encodes the prototype of setgrent_r.
5054  *      It is zero if d_setgrent_r is undef, and one of the
5055  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_setgrent_r
5056  *      is defined.
5057  */
5058 #$d_setgrent_r HAS_SETGRENT_R   /**/
5059 #define SETGRENT_R_PROTO $setgrent_r_proto      /**/
5060
5061 /* HAS_SETHOSTENT_R:
5062  *      This symbol, if defined, indicates that the sethostent_r routine
5063  *      is available to sethostent re-entrantly.
5064  */
5065 /* SETHOSTENT_R_PROTO:
5066  *      This symbol encodes the prototype of sethostent_r.
5067  *      It is zero if d_sethostent_r is undef, and one of the
5068  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_sethostent_r
5069  *      is defined.
5070  */
5071 #$d_sethostent_r HAS_SETHOSTENT_R       /**/
5072 #define SETHOSTENT_R_PROTO $sethostent_r_proto  /**/
5073
5074 /* HAS_SETLOCALE_R:
5075  *      This symbol, if defined, indicates that the setlocale_r routine
5076  *      is available to setlocale re-entrantly.
5077  */
5078 /* SETLOCALE_R_PROTO:
5079  *      This symbol encodes the prototype of setlocale_r.
5080  *      It is zero if d_setlocale_r is undef, and one of the
5081  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_setlocale_r
5082  *      is defined.
5083  */
5084 #$d_setlocale_r HAS_SETLOCALE_R /**/
5085 #define SETLOCALE_R_PROTO $setlocale_r_proto    /**/
5086
5087 /* HAS_SETNETENT_R:
5088  *      This symbol, if defined, indicates that the setnetent_r routine
5089  *      is available to setnetent re-entrantly.
5090  */
5091 /* SETNETENT_R_PROTO:
5092  *      This symbol encodes the prototype of setnetent_r.
5093  *      It is zero if d_setnetent_r is undef, and one of the
5094  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_setnetent_r
5095  *      is defined.
5096  */
5097 #$d_setnetent_r HAS_SETNETENT_R /**/
5098 #define SETNETENT_R_PROTO $setnetent_r_proto    /**/
5099
5100 /* HAS_SETPROTOENT_R:
5101  *      This symbol, if defined, indicates that the setprotoent_r routine
5102  *      is available to setprotoent re-entrantly.
5103  */
5104 /* SETPROTOENT_R_PROTO:
5105  *      This symbol encodes the prototype of setprotoent_r.
5106  *      It is zero if d_setprotoent_r is undef, and one of the
5107  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_setprotoent_r
5108  *      is defined.
5109  */
5110 #$d_setprotoent_r HAS_SETPROTOENT_R     /**/
5111 #define SETPROTOENT_R_PROTO $setprotoent_r_proto        /**/
5112
5113 /* HAS_SETPWENT_R:
5114  *      This symbol, if defined, indicates that the setpwent_r routine
5115  *      is available to setpwent re-entrantly.
5116  */
5117 /* SETPWENT_R_PROTO:
5118  *      This symbol encodes the prototype of setpwent_r.
5119  *      It is zero if d_setpwent_r is undef, and one of the
5120  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_setpwent_r
5121  *      is defined.
5122  */
5123 #$d_setpwent_r HAS_SETPWENT_R   /**/
5124 #define SETPWENT_R_PROTO $setpwent_r_proto      /**/
5125
5126 /* HAS_SETSERVENT_R:
5127  *      This symbol, if defined, indicates that the setservent_r routine
5128  *      is available to setservent re-entrantly.
5129  */
5130 /* SETSERVENT_R_PROTO:
5131  *      This symbol encodes the prototype of setservent_r.
5132  *      It is zero if d_setservent_r is undef, and one of the
5133  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_setservent_r
5134  *      is defined.
5135  */
5136 #$d_setservent_r HAS_SETSERVENT_R       /**/
5137 #define SETSERVENT_R_PROTO $setservent_r_proto  /**/
5138
5139 /* HAS_SRAND48_R:
5140  *      This symbol, if defined, indicates that the srand48_r routine
5141  *      is available to srand48 re-entrantly.
5142  */
5143 /* SRAND48_R_PROTO:
5144  *      This symbol encodes the prototype of srand48_r.
5145  *      It is zero if d_srand48_r is undef, and one of the
5146  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_srand48_r
5147  *      is defined.
5148  */
5149 #$d_srand48_r HAS_SRAND48_R     /**/
5150 #define SRAND48_R_PROTO $srand48_r_proto        /**/
5151
5152 /* HAS_SRANDOM_R:
5153  *      This symbol, if defined, indicates that the srandom_r routine
5154  *      is available to srandom re-entrantly.
5155  */
5156 /* SRANDOM_R_PROTO:
5157  *      This symbol encodes the prototype of srandom_r.
5158  *      It is zero if d_srandom_r is undef, and one of the
5159  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_srandom_r
5160  *      is defined.
5161  */
5162 #$d_srandom_r HAS_SRANDOM_R     /**/
5163 #define SRANDOM_R_PROTO $srandom_r_proto        /**/
5164
5165 /* HAS_STRERROR_R:
5166  *      This symbol, if defined, indicates that the strerror_r routine
5167  *      is available to strerror re-entrantly.
5168  */
5169 /* STRERROR_R_PROTO:
5170  *      This symbol encodes the prototype of strerror_r.
5171  *      It is zero if d_strerror_r is undef, and one of the
5172  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_strerror_r
5173  *      is defined.
5174  */
5175 #$d_strerror_r HAS_STRERROR_R   /**/
5176 #define STRERROR_R_PROTO $strerror_r_proto      /**/
5177
5178 /* HAS_STRTOD_L:
5179  *      This symbol, if defined, indicates that the strtod_l routine is
5180  *      available to convert strings to long doubles.
5181  */
5182 #$d_strtod_l HAS_STRTOD_L               /**/
5183
5184 /* HAS_STRTOLD_L:
5185  *      This symbol, if defined, indicates that the strtold_l routine is
5186  *      available to convert strings to long doubles.
5187  */
5188 #$d_strtold_l HAS_STRTOLD_L             /**/
5189
5190 /* HAS_TMPNAM_R:
5191  *      This symbol, if defined, indicates that the tmpnam_r routine
5192  *      is available to tmpnam re-entrantly.
5193  */
5194 /* TMPNAM_R_PROTO:
5195  *      This symbol encodes the prototype of tmpnam_r.
5196  *      It is zero if d_tmpnam_r is undef, and one of the
5197  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_tmpnam_r
5198  *      is defined.
5199  */
5200 #$d_tmpnam_r HAS_TMPNAM_R       /**/
5201 #define TMPNAM_R_PROTO $tmpnam_r_proto  /**/
5202
5203 /* HAS_TTYNAME_R:
5204  *      This symbol, if defined, indicates that the ttyname_r routine
5205  *      is available to ttyname re-entrantly.
5206  */
5207 /* TTYNAME_R_PROTO:
5208  *      This symbol encodes the prototype of ttyname_r.
5209  *      It is zero if d_ttyname_r is undef, and one of the
5210  *      REENTRANT_PROTO_T_ABC macros of reentr.h if d_ttyname_r
5211  *      is defined.
5212  */
5213 #$d_ttyname_r HAS_TTYNAME_R     /**/
5214 #define TTYNAME_R_PROTO $ttyname_r_proto        /**/
5215
5216 /* HAS_WCRTOMB:
5217  *      This symbol, if defined, indicates that the wcrtomb routine is
5218  *      available to convert a wide character into a multi-byte character.
5219  */
5220 #$d_wcrtomb HAS_WCRTOMB /**/
5221
5222 /* I_MACH_CTHREADS:
5223  *      This symbol, if defined, indicates to the C program that it should
5224  *      include <mach/cthreads.h>.
5225  */
5226 #$i_machcthr   I_MACH_CTHREADS  /**/
5227
5228 /* I_PTHREAD:
5229  *      This symbol, if defined, indicates to the C program that it should
5230  *      include <pthread.h>.
5231  */
5232 #$i_pthread   I_PTHREAD /**/
5233
5234 /* USE_ITHREADS:
5235  *      This symbol, if defined, indicates that Perl should be built to
5236  *      use the interpreter-based threading implementation.
5237  */
5238 /* USE_THREADS:
5239  *      This symbol, if defined, indicates that Perl should
5240  *      be built to use threads.  At present, it is a synonym for
5241  *      and USE_ITHREADS, but eventually the source ought to be
5242  *      changed to use this to mean _any_ threading implementation.
5243  */
5244 /* OLD_PTHREADS_API:
5245  *      This symbol, if defined, indicates that Perl should
5246  *      be built to use the old draft POSIX threads API.
5247  */
5248 /* USE_REENTRANT_API:
5249  *      This symbol, if defined, indicates that Perl should
5250  *      try to use the various _r versions of library functions.
5251  *      This is extremely experimental.
5252  */
5253 #$useithreads   USE_ITHREADS            /**/
5254 #$usethreads            USE_THREADS             /**/
5255 #$d_oldpthreads OLD_PTHREADS_API                /**/
5256 #$usereentrant  USE_REENTRANT_API       /**/
5257
5258 /* HAS_TIME:
5259  *      This symbol, if defined, indicates that the time() routine exists.
5260  */
5261 /* Time_t:
5262  *      This symbol holds the type returned by time(). It can be long,
5263  *      or time_t on BSD sites (in which case <sys/types.h> should be
5264  *      included).
5265  */
5266 #$d_time HAS_TIME               /**/
5267 #define Time_t $timetype                /* Time type */
5268
5269 /* HAS_TIMES:
5270  *      This symbol, if defined, indicates that the times() routine exists.
5271  *      Note that this became obsolete on some systems (SUNOS), which now
5272  *      use getrusage(). It may be necessary to include <sys/times.h>.
5273  */
5274 #$d_times HAS_TIMES             /**/
5275
5276 /* Fpos_t:
5277  *      This symbol holds the type used to declare file positions in libc.
5278  *      It can be fpos_t, long, uint, etc... It may be necessary to include
5279  *      <sys/types.h> to get any typedef'ed information.
5280  */
5281 #define Fpos_t $fpostype                /* File position type */
5282
5283 /* Gid_t_f:
5284  *      This symbol defines the format string used for printing a Gid_t.
5285  */
5286 #define Gid_t_f         $gidformat              /**/
5287
5288 /* Gid_t_sign:
5289  *      This symbol holds the signedness of a Gid_t.
5290  *      1 for unsigned, -1 for signed.
5291  */
5292 #define Gid_t_sign      $gidsign                /* GID sign */
5293
5294 /* Gid_t_size:
5295  *      This symbol holds the size of a Gid_t in bytes.
5296  */
5297 #define Gid_t_size $gidsize             /* GID size */
5298
5299 /* Gid_t:
5300  *      This symbol holds the return type of getgid() and the type of
5301  *      argument to setrgid() and related functions.  Typically,
5302  *      it is the type of group ids in the kernel. It can be int, ushort,
5303  *      gid_t, etc... It may be necessary to include <sys/types.h> to get
5304  *      any typedef'ed information.
5305  */
5306 #define Gid_t $gidtype          /* Type for getgid(), etc... */
5307
5308 /* Off_t:
5309  *      This symbol holds the type used to declare offsets in the kernel.
5310  *      It can be int, long, off_t, etc... It may be necessary to include
5311  *      <sys/types.h> to get any typedef'ed information.
5312  */
5313 /* LSEEKSIZE:
5314  *      This symbol holds the number of bytes used by the Off_t.
5315  */
5316 /* Off_t_size:
5317  *      This symbol holds the number of bytes used by the Off_t.
5318  */
5319 #define Off_t $lseektype                /* <offset> type */
5320 #define LSEEKSIZE $lseeksize            /* <offset> size */
5321 #define Off_t_size $lseeksize   /* <offset> size */
5322
5323 /* Mode_t:
5324  *      This symbol holds the type used to declare file modes
5325  *      for systems calls.  It is usually mode_t, but may be
5326  *      int or unsigned short.  It may be necessary to include <sys/types.h>
5327  *      to get any typedef'ed information.
5328  */
5329 #define Mode_t $modetype         /* file mode parameter for system calls */
5330
5331 /* Pid_t:
5332  *      This symbol holds the type used to declare process ids in the kernel.
5333  *      It can be int, uint, pid_t, etc... It may be necessary to include
5334  *      <sys/types.h> to get any typedef'ed information.
5335  */
5336 #define Pid_t $pidtype          /* PID type */
5337
5338 /* Size_t_size:
5339  *      This symbol holds the size of a Size_t in bytes.
5340  */
5341 #define Size_t_size $sizesize           /**/
5342
5343 /* Size_t:
5344  *      This symbol holds the type used to declare length parameters
5345  *      for string functions.  It is usually size_t, but may be
5346  *      unsigned long, int, etc.  It may be necessary to include
5347  *      <sys/types.h> to get any typedef'ed information.
5348  */
5349 #define Size_t $sizetype         /* length parameter for string functions */
5350
5351 /* Uid_t_f:
5352  *      This symbol defines the format string used for printing a Uid_t.
5353  */
5354 #define Uid_t_f         $uidformat              /**/
5355
5356 /* Uid_t_sign:
5357  *      This symbol holds the signedness of a Uid_t.
5358  *      1 for unsigned, -1 for signed.
5359  */
5360 #define Uid_t_sign      $uidsign                /* UID sign */
5361
5362 /* Uid_t_size:
5363  *      This symbol holds the size of a Uid_t in bytes.
5364  */
5365 #define Uid_t_size $uidsize             /* UID size */
5366
5367 /* Uid_t:
5368  *      This symbol holds the type used to declare user ids in the kernel.
5369  *      It can be int, ushort, uid_t, etc... It may be necessary to include
5370  *      <sys/types.h> to get any typedef'ed information.
5371  */
5372 #define Uid_t $uidtype          /* UID type */
5373
5374 #endif
5375 !GROK!THIS!
5376 ;;
5377 esac