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