Use /proc/self/exe to set $^X on linux (or anywhere new
[p5sagit/p5-mst-13.2.git] / config_h.SH
1 case "$CONFIG_SH" in
2 '') CONFIG_SH=config.sh ;;
3 esac
4 case "$CONFIG_H" in
5 '') CONFIG_H=config.h ;;
6 esac
7 case $PERL_CONFIG_SH in
8 '')
9         if test -f $CONFIG_SH; then TOP=.;
10         elif test -f ../$CONFIG_SH; then TOP=..;
11         elif test -f ../../$CONFIG_SH; then TOP=../..;
12         elif test -f ../../../$CONFIG_SH; then TOP=../../..;
13         elif test -f ../../../../$CONFIG_SH; then TOP=../../../..;
14         else
15                 echo "Can't find $CONFIG_SH."; exit 1
16         fi
17         . $TOP/$CONFIG_SH
18         ;;
19 esac
20 case "$0" in
21 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
22 esac
23 echo "Extracting $CONFIG_H (with variable substitutions)"
24 sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un-def!#undef!'
25 /*
26  * This file was produced by running the config_h.SH script, which
27  * gets its values from $CONFIG_SH, which is generally produced by
28  * running Configure.
29  *
30  * Feel free to modify any of this as the need arises.  Note, however,
31  * that running config_h.SH again will wipe out any changes you've made.
32  * For a more permanent change edit $CONFIG_SH and rerun config_h.SH.
33  *
34  * \$Id: Config_h.U,v 3.0.1.5 1997/02/28 14:57:43 ram Exp $
35  */
36
37 /*
38  * Package name      : $package
39  * Source directory  : $src
40  * Configuration time: $cf_time
41  * Configured by     : $cf_by
42  * Target system     : $myuname
43  */
44
45 #ifndef _config_h_
46 #define _config_h_
47
48 /* LOC_SED:
49  *      This symbol holds the complete pathname to the sed program.
50  */
51 #define LOC_SED         "$full_sed"     /**/
52
53 /* HAS_ALARM:
54  *      This symbol, if defined, indicates that the alarm routine is
55  *      available.
56  */
57 #$d_alarm HAS_ALARM             /**/
58
59 /* HASATTRIBUTE:
60  *      This symbol indicates the C compiler can check for function attributes,
61  *      such as printf formats. This is normally only supported by GNU cc.
62  */
63 #$d_attribut HASATTRIBUTE       /**/
64 #ifndef HASATTRIBUTE
65 #define __attribute__(_arg_)
66 #endif
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 /* HASCONST:
105  *      This symbol, if defined, indicates that this C compiler knows about
106  *      the const type. There is no need to actually test for that symbol
107  *      within your programs. The mere use of the "const" keyword will
108  *      trigger the necessary tests.
109  */
110 #$d_const HASCONST      /**/
111 #ifndef HASCONST
112 #define const
113 #endif
114
115 /* HAS_CRYPT:
116  *      This symbol, if defined, indicates that the crypt routine is available
117  *      to encrypt passwords and the like.
118  */
119 #$d_crypt HAS_CRYPT             /**/
120
121 /* HAS_CUSERID:
122  *      This symbol, if defined, indicates that the cuserid routine is
123  *      available to get character login names.
124  */
125 #$d_cuserid HAS_CUSERID         /**/
126
127 /* HAS_DBL_DIG:
128  *      This symbol, if defined, indicates that this system's <float.h>
129  *      or <limits.h> defines the symbol DBL_DIG, which is the number
130  *      of significant digits in a double precision number.  If this
131  *      symbol is not defined, a guess of 15 is usually pretty good.
132  */
133 #$d_dbl_dig HAS_DBL_DIG         /* */
134
135 /* HAS_DIFFTIME:
136  *      This symbol, if defined, indicates that the difftime routine is
137  *      available.
138  */
139 #$d_difftime HAS_DIFFTIME               /**/
140
141 /* HAS_DLERROR:
142  *      This symbol, if defined, indicates that the dlerror routine is
143  *      available to return a string describing the last error that
144  *      occurred from a call to dlopen(), dlclose() or dlsym().
145  */
146 #$d_dlerror HAS_DLERROR /**/
147
148 /* SETUID_SCRIPTS_ARE_SECURE_NOW:
149  *      This symbol, if defined, indicates that the bug that prevents
150  *      setuid scripts from being secure is not present in this kernel.
151  */
152 /* DOSUID:
153  *      This symbol, if defined, indicates that the C program should
154  *      check the script that it is executing for setuid/setgid bits, and
155  *      attempt to emulate setuid/setgid on systems that have disabled
156  *      setuid #! scripts because the kernel can't do it securely.
157  *      It is up to the package designer to make sure that this emulation
158  *      is done securely.  Among other things, it should do an fstat on
159  *      the script it just opened to make sure it really is a setuid/setgid
160  *      script, it should make sure the arguments passed correspond exactly
161  *      to the argument on the #! line, and it should not trust any
162  *      subprocesses to which it must pass the filename rather than the
163  *      file descriptor of the script to be executed.
164  */
165 #$d_suidsafe SETUID_SCRIPTS_ARE_SECURE_NOW      /**/
166 #$d_dosuid DOSUID               /**/
167
168 /* HAS_DUP2:
169  *      This symbol, if defined, indicates that the dup2 routine is
170  *      available to duplicate file descriptors.
171  */
172 #$d_dup2 HAS_DUP2       /**/
173
174 /* HAS_FCHMOD:
175  *      This symbol, if defined, indicates that the fchmod routine is available
176  *      to change mode of opened files.  If unavailable, use chmod().
177  */
178 #$d_fchmod HAS_FCHMOD           /**/
179
180 /* HAS_FCHOWN:
181  *      This symbol, if defined, indicates that the fchown routine is available
182  *      to change ownership of opened files.  If unavailable, use chown().
183  */
184 #$d_fchown HAS_FCHOWN           /**/
185
186 /* HAS_FCNTL:
187  *      This symbol, if defined, indicates to the C program that
188  *      the fcntl() function exists.
189  */
190 #$d_fcntl HAS_FCNTL             /**/
191
192 /* HAS_FGETPOS:
193  *      This symbol, if defined, indicates that the fgetpos routine is
194  *      available to get the file position indicator, similar to ftell().
195  */
196 #$d_fgetpos HAS_FGETPOS /**/
197
198 /* HAS_FLOCK:
199  *      This symbol, if defined, indicates that the flock routine is
200  *      available to do file locking.
201  */
202 #$d_flock HAS_FLOCK             /**/
203
204 /* HAS_FORK:
205  *      This symbol, if defined, indicates that the fork routine is
206  *      available.
207  */
208 #$d_fork HAS_FORK               /**/
209
210 /* HAS_FSETPOS:
211  *      This symbol, if defined, indicates that the fsetpos routine is
212  *      available to set the file position indicator, similar to fseek().
213  */
214 #$d_fsetpos HAS_FSETPOS /**/
215
216 /* HAS_GETTIMEOFDAY:
217  *      This symbol, if defined, indicates that the gettimeofday() system
218  *      call is available for a sub-second accuracy clock. Usually, the file
219  *      <sys/resource.h> needs to be included (see I_SYS_RESOURCE).
220  *      The type "Timeval" should be used to refer to "struct timeval".
221  */
222 #$d_gettimeod HAS_GETTIMEOFDAY  /**/
223 #ifdef HAS_GETTIMEOFDAY
224 #define Timeval struct timeval  /* Structure used by gettimeofday() */
225 #endif
226
227 /* HAS_GETGROUPS:
228  *      This symbol, if defined, indicates that the getgroups() routine is
229  *      available to get the list of process groups.  If unavailable, multiple
230  *      groups are probably not supported.
231  */
232 #$d_getgrps HAS_GETGROUPS               /**/
233
234 /* HAS_GETLOGIN:
235  *      This symbol, if defined, indicates that the getlogin routine is
236  *      available to get the login name.
237  */
238 #$d_getlogin HAS_GETLOGIN               /**/
239
240 /* HAS_GETPGID:
241  *      This symbol, if defined, indicates to the C program that 
242  *      the getpgid(pid) function is available to get the
243  *      process group id.
244  */
245 #$d_getpgid HAS_GETPGID         /**/
246
247 /* HAS_GETPGRP2:
248  *      This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
249  *      routine is available to get the current process group.
250  */
251 #$d_getpgrp2 HAS_GETPGRP2               /**/
252
253 /* HAS_GETPPID:
254  *      This symbol, if defined, indicates that the getppid routine is
255  *      available to get the parent process ID.
256  */
257 #$d_getppid HAS_GETPPID         /**/
258
259 /* HAS_GETPRIORITY:
260  *      This symbol, if defined, indicates that the getpriority routine is
261  *      available to get a process's priority.
262  */
263 #$d_getprior HAS_GETPRIORITY            /**/
264
265 /* HAS_INET_ATON:
266  *      This symbol, if defined, indicates to the C program that the
267  *      inet_aton() function is available to parse IP address "dotted-quad"
268  *      strings.
269  */
270 #$d_inetaton HAS_INET_ATON              /**/
271
272 /* HAS_KILLPG:
273  *      This symbol, if defined, indicates that the killpg routine is available
274  *      to kill process groups.  If unavailable, you probably should use kill
275  *      with a negative process number.
276  */
277 #$d_killpg HAS_KILLPG   /**/
278
279 /* HAS_LINK:
280  *      This symbol, if defined, indicates that the link routine is
281  *      available to create hard links.
282  */
283 #$d_link HAS_LINK       /**/
284
285 /* HAS_LOCALECONV:
286  *      This symbol, if defined, indicates that the localeconv routine is
287  *      available for numeric and monetary formatting conventions.
288  */
289 #$d_locconv HAS_LOCALECONV      /**/
290
291 /* HAS_LOCKF:
292  *      This symbol, if defined, indicates that the lockf routine is
293  *      available to do file locking.
294  */
295 #$d_lockf HAS_LOCKF             /**/
296
297 /* HAS_LSTAT:
298  *      This symbol, if defined, indicates that the lstat routine is
299  *      available to do file stats on symbolic links.
300  */
301 #$d_lstat HAS_LSTAT             /**/
302
303 /* HAS_MBLEN:
304  *      This symbol, if defined, indicates that the mblen routine is available
305  *      to find the number of bytes in a multibye character.
306  */
307 #$d_mblen HAS_MBLEN             /**/
308
309 /* HAS_MBSTOWCS:
310  *      This symbol, if defined, indicates that the mbstowcs routine is
311  *      available to covert a multibyte string into a wide character string.
312  */
313 #$d_mbstowcs    HAS_MBSTOWCS            /**/
314
315 /* HAS_MBTOWC:
316  *      This symbol, if defined, indicates that the mbtowc routine is available
317  *      to covert a multibyte to a wide character.
318  */
319 #$d_mbtowc HAS_MBTOWC           /**/
320
321 /* HAS_MEMCMP:
322  *      This symbol, if defined, indicates that the memcmp routine is available
323  *      to compare blocks of memory.
324  */
325 #$d_memcmp HAS_MEMCMP   /**/
326
327 /* HAS_MEMCPY:
328  *      This symbol, if defined, indicates that the memcpy routine is available
329  *      to copy blocks of memory.
330  */
331 #$d_memcpy HAS_MEMCPY   /**/
332
333 /* HAS_MEMMOVE:
334  *      This symbol, if defined, indicates that the memmove routine is available
335  *      to copy potentially overlapping blocks of memory. This should be used
336  *      only when HAS_SAFE_BCOPY is not defined. If neither is there, roll your
337  *      own version.
338  */
339 #$d_memmove HAS_MEMMOVE /**/
340
341 /* HAS_MEMSET:
342  *      This symbol, if defined, indicates that the memset routine is available
343  *      to set blocks of memory.
344  */
345 #$d_memset HAS_MEMSET   /**/
346
347 /* HAS_MKDIR:
348  *      This symbol, if defined, indicates that the mkdir routine is available
349  *      to create directories.  Otherwise you should fork off a new process to
350  *      exec /bin/mkdir.
351  */
352 #$d_mkdir HAS_MKDIR             /**/
353
354 /* HAS_MKFIFO:
355  *      This symbol, if defined, indicates that the mkfifo routine is
356  *      available to create FIFOs. Otherwise, mknod should be able to
357  *      do it for you. However, if mkfifo is there, mknod might require
358  *      super-user privileges which mkfifo will not.
359  */
360 #$d_mkfifo HAS_MKFIFO           /**/
361
362 /* HAS_MKTIME:
363  *      This symbol, if defined, indicates that the mktime routine is
364  *      available.
365  */
366 #$d_mktime HAS_MKTIME           /**/
367
368 /* HAS_MSYNC:
369  *      This symbol, if defined, indicates that the msync system call is
370  *      available to synchronize a mapped file.
371  */
372 #$d_msync HAS_MSYNC             /**/
373
374 /* HAS_MUNMAP:
375  *      This symbol, if defined, indicates that the munmap system call is
376  *      available to unmap a region, usually mapped by mmap().
377  */
378 #$d_munmap HAS_MUNMAP           /**/
379
380 /* HAS_NICE:
381  *      This symbol, if defined, indicates that the nice routine is
382  *      available.
383  */
384 #$d_nice HAS_NICE               /**/
385
386 /* HAS_PATHCONF:
387  *      This symbol, if defined, indicates that pathconf() is available
388  *      to determine file-system related limits and options associated
389  *      with a given filename.
390  */
391 /* HAS_FPATHCONF:
392  *      This symbol, if defined, indicates that pathconf() is available
393  *      to determine file-system related limits and options associated
394  *      with a given open file descriptor.
395  */
396 #$d_pathconf HAS_PATHCONF               /**/
397 #$d_fpathconf HAS_FPATHCONF             /**/
398
399 /* HAS_PAUSE:
400  *      This symbol, if defined, indicates that the pause routine is
401  *      available to suspend a process until a signal is received.
402  */
403 #$d_pause HAS_PAUSE             /**/
404
405 /* HAS_PIPE:
406  *      This symbol, if defined, indicates that the pipe routine is
407  *      available to create an inter-process channel.
408  */
409 #$d_pipe HAS_PIPE               /**/
410
411 /* HAS_POLL:
412  *      This symbol, if defined, indicates that the poll routine is
413  *      available to poll active file descriptors. You may safely
414  *      include <poll.h> when this symbol is defined.
415  */
416 #$d_poll HAS_POLL               /**/
417
418 /* HAS_READDIR:
419  *      This symbol, if defined, indicates that the readdir routine is
420  *      available to read directory entries. You may have to include
421  *      <dirent.h>. See I_DIRENT.
422  */
423 #$d_readdir HAS_READDIR         /**/
424
425 /* HAS_SEEKDIR:
426  *      This symbol, if defined, indicates that the seekdir routine is
427  *      available. You may have to include <dirent.h>. See I_DIRENT.
428  */
429 #$d_seekdir HAS_SEEKDIR         /**/
430
431 /* HAS_TELLDIR:
432  *      This symbol, if defined, indicates that the telldir routine is
433  *      available. You may have to include <dirent.h>. See I_DIRENT.
434  */
435 #$d_telldir HAS_TELLDIR         /**/
436
437 /* HAS_REWINDDIR:
438  *      This symbol, if defined, indicates that the rewinddir routine is
439  *      available. You may have to include <dirent.h>. See I_DIRENT.
440  */
441 #$d_rewinddir HAS_REWINDDIR             /**/
442
443 /* HAS_READLINK:
444  *      This symbol, if defined, indicates that the readlink routine is
445  *      available to read the value of a symbolic link.
446  */
447 #$d_readlink HAS_READLINK               /**/
448
449 /* HAS_RENAME:
450  *      This symbol, if defined, indicates that the rename routine is available
451  *      to rename files.  Otherwise you should do the unlink(), link(), unlink()
452  *      trick.
453  */
454 #$d_rename HAS_RENAME   /**/
455
456 /* HAS_RMDIR:
457  *      This symbol, if defined, indicates that the rmdir routine is
458  *      available to remove directories. Otherwise you should fork off a
459  *      new process to exec /bin/rmdir.
460  */
461 #$d_rmdir HAS_RMDIR             /**/
462
463 /* HAS_SELECT:
464  *      This symbol, if defined, indicates that the select routine is
465  *      available to select active file descriptors. If the timeout field
466  *      is used, <sys/time.h> may need to be included.
467  */
468 #$d_select HAS_SELECT   /**/
469
470 /* HAS_SETEGID:
471  *      This symbol, if defined, indicates that the setegid routine is available
472  *      to change the effective gid of the current program.
473  */
474 #$d_setegid HAS_SETEGID         /**/
475
476 /* HAS_SETEUID:
477  *      This symbol, if defined, indicates that the seteuid routine is available
478  *      to change the effective uid of the current program.
479  */
480 #$d_seteuid HAS_SETEUID         /**/
481
482 /* HAS_SETLINEBUF:
483  *      This symbol, if defined, indicates that the setlinebuf routine is
484  *      available to change stderr or stdout from block-buffered or unbuffered
485  *      to a line-buffered mode.
486  */
487 #$d_setlinebuf HAS_SETLINEBUF           /**/
488
489 /* HAS_SETLOCALE:
490  *      This symbol, if defined, indicates that the setlocale routine is
491  *      available to handle locale-specific ctype implementations.
492  */
493 #$d_setlocale HAS_SETLOCALE     /**/
494
495 /* HAS_SETPGID:
496  *      This symbol, if defined, indicates that the setpgid(pid, gpid)
497  *      routine is available to set process group ID.
498  */
499 #$d_setpgid HAS_SETPGID /**/
500
501 /* HAS_SETPGRP2:
502  *      This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
503  *      routine is available to set the current process group.
504  */
505 #$d_setpgrp2 HAS_SETPGRP2               /**/
506
507 /* HAS_SETPRIORITY:
508  *      This symbol, if defined, indicates that the setpriority routine is
509  *      available to set a process's priority.
510  */
511 #$d_setprior HAS_SETPRIORITY            /**/
512
513 /* HAS_SETREGID:
514  *      This symbol, if defined, indicates that the setregid routine is
515  *      available to change the real and effective gid of the current
516  *      process.
517  */
518 /* HAS_SETRESGID:
519  *      This symbol, if defined, indicates that the setresgid routine is
520  *      available to change the real, effective and saved gid of the current
521  *      process.
522  */
523 #$d_setregid HAS_SETREGID               /**/
524 #$d_setresgid HAS_SETRESGID             /**/
525
526 /* HAS_SETREUID:
527  *      This symbol, if defined, indicates that the setreuid routine is
528  *      available to change the real and effective uid of the current
529  *      process.
530  */
531 /* HAS_SETRESUID:
532  *      This symbol, if defined, indicates that the setresuid routine is
533  *      available to change the real, effective and saved uid of the current
534  *      process.
535  */
536 #$d_setreuid HAS_SETREUID               /**/
537 #$d_setresuid HAS_SETRESUID             /**/
538
539 /* HAS_SETRGID:
540  *      This symbol, if defined, indicates that the setrgid routine is available
541  *      to change the real gid of the current program.
542  */
543 #$d_setrgid HAS_SETRGID         /**/
544
545 /* HAS_SETRUID:
546  *      This symbol, if defined, indicates that the setruid routine is available
547  *      to change the real uid of the current program.
548  */
549 #$d_setruid HAS_SETRUID         /**/
550
551 /* HAS_SETSID:
552  *      This symbol, if defined, indicates that the setsid routine is
553  *      available to set the process group ID.
554  */
555 #$d_setsid HAS_SETSID   /**/
556
557 /* Shmat_t:
558  *      This symbol holds the return type of the shmat() system call.
559  *      Usually set to 'void *' or 'char *'.
560  */
561 /* HAS_SHMAT_PROTOTYPE:
562  *      This symbol, if defined, indicates that the sys/shm.h includes
563  *      a prototype for shmat().  Otherwise, it is up to the program to
564  *      guess one.  Shmat_t shmat _((int, Shmat_t, int)) is a good guess,
565  *      but not always right so it should be emitted by the program only
566  *      when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
567  */
568 #define Shmat_t $shmattype      /**/
569 #$d_shmatprototype HAS_SHMAT_PROTOTYPE  /**/
570
571 /* HAS_STRCHR:
572  *      This symbol is defined to indicate that the strchr()/strrchr()
573  *      functions are available for string searching. If not, try the
574  *      index()/rindex() pair.
575  */
576 /* HAS_INDEX:
577  *      This symbol is defined to indicate that the index()/rindex()
578  *      functions are available for string searching.
579  */
580 #$d_strchr HAS_STRCHR   /**/
581 #$d_index HAS_INDEX     /**/
582
583 /* HAS_STRCOLL:
584  *      This symbol, if defined, indicates that the strcoll routine is
585  *      available to compare strings using collating information.
586  */
587 #$d_strcoll HAS_STRCOLL /**/
588
589 /* USE_STRUCT_COPY:
590  *      This symbol, if defined, indicates that this C compiler knows how
591  *      to copy structures.  If undefined, you'll need to use a block copy
592  *      routine of some sort instead.
593  */
594 #$d_strctcpy    USE_STRUCT_COPY /**/
595
596 /* HAS_STRTOD:
597  *      This symbol, if defined, indicates that the strtod routine is
598  *      available to provide better numeric string conversion than atof().
599  */
600 #$d_strtod HAS_STRTOD   /**/
601
602 /* HAS_STRTOL:
603  *      This symbol, if defined, indicates that the strtol routine is available
604  *      to provide better numeric string conversion than atoi() and friends.
605  */
606 #$d_strtol HAS_STRTOL   /**/
607
608 /* HAS_STRXFRM:
609  *      This symbol, if defined, indicates that the strxfrm() routine is
610  *      available to transform strings.
611  */
612 #$d_strxfrm HAS_STRXFRM /**/
613
614 /* HAS_SYMLINK:
615  *      This symbol, if defined, indicates that the symlink routine is available
616  *      to create symbolic links.
617  */
618 #$d_symlink HAS_SYMLINK /**/
619
620 /* HAS_SYSCALL:
621  *      This symbol, if defined, indicates that the syscall routine is
622  *      available to call arbitrary system calls. If undefined, that's tough.
623  */
624 #$d_syscall HAS_SYSCALL /**/
625
626 /* HAS_SYSCONF:
627  *      This symbol, if defined, indicates that sysconf() is available
628  *      to determine system related limits and options.
629  */
630 #$d_sysconf HAS_SYSCONF /**/
631
632 /* HAS_SYSTEM:
633  *      This symbol, if defined, indicates that the system routine is
634  *      available to issue a shell command.
635  */
636 #$d_system HAS_SYSTEM   /**/
637
638 /* HAS_TCGETPGRP:
639  *      This symbol, if defined, indicates that the tcgetpgrp routine is
640  *      available to get foreground process group ID.
641  */
642 #$d_tcgetpgrp HAS_TCGETPGRP             /**/
643
644 /* HAS_TCSETPGRP:
645  *      This symbol, if defined, indicates that the tcsetpgrp routine is
646  *      available to set foreground process group ID.
647  */
648 #$d_tcsetpgrp HAS_TCSETPGRP             /**/
649
650 /* HAS_TRUNCATE:
651  *      This symbol, if defined, indicates that the truncate routine is
652  *      available to truncate files.
653  */
654 #$d_truncate HAS_TRUNCATE       /**/
655
656 /* HAS_TZNAME:
657  *      This symbol, if defined, indicates that the tzname[] array is
658  *      available to access timezone names.
659  */
660 #$d_tzname HAS_TZNAME           /**/
661
662 /* HAS_UMASK:
663  *      This symbol, if defined, indicates that the umask routine is
664  *      available to set and get the value of the file creation mask.
665  */
666 #$d_umask HAS_UMASK             /**/
667
668 /* HAS_USLEEP:
669  *      This symbol, if defined, indicates that the usleep routine is
670  *      available to let the process sleep on a sub-second accuracy.
671  */
672 #$d_usleep HAS_USLEEP           /**/
673
674 /* HASVOLATILE:
675  *      This symbol, if defined, indicates that this C compiler knows about
676  *      the volatile declaration.
677  */
678 #$d_volatile    HASVOLATILE     /**/
679 #ifndef HASVOLATILE
680 #define volatile
681 #endif
682
683 /* HAS_WAIT4:
684  *      This symbol, if defined, indicates that wait4() exists.
685  */
686 #$d_wait4 HAS_WAIT4     /**/
687
688 /* HAS_WAITPID:
689  *      This symbol, if defined, indicates that the waitpid routine is
690  *      available to wait for child process.
691  */
692 #$d_waitpid HAS_WAITPID /**/
693
694 /* HAS_WCSTOMBS:
695  *      This symbol, if defined, indicates that the wcstombs routine is
696  *      available to convert wide character strings to multibyte strings.
697  */
698 #$d_wcstombs HAS_WCSTOMBS       /**/
699
700 /* HAS_WCTOMB:
701  *      This symbol, if defined, indicates that the wctomb routine is available
702  *      to covert a wide character to a multibyte.
703  */
704 #$d_wctomb HAS_WCTOMB           /**/
705
706 /* I_ARPA_INET:
707  *      This symbol, if defined, indicates to the C program that it should
708  *      include <arpa/inet.h> to get inet_addr and friends declarations.
709  */
710 #$i_arpainet    I_ARPA_INET             /**/
711
712 /* I_DBM:
713  *      This symbol, if defined, indicates that <dbm.h> exists and should
714  *      be included.
715  */
716 /* I_RPCSVC_DBM:
717  *      This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
718  *      should be included.
719  */
720 #$i_dbm I_DBM   /**/
721 #$i_rpcsvcdbm I_RPCSVC_DBM      /**/
722
723 /* I_DIRENT:
724  *      This symbol, if defined, indicates to the C program that it should
725  *      include <dirent.h>. Using this symbol also triggers the definition
726  *      of the Direntry_t define which ends up being 'struct dirent' or
727  *      'struct direct' depending on the availability of <dirent.h>.
728  */
729 /* DIRNAMLEN:
730  *      This symbol, if defined, indicates to the C program that the length
731  *      of directory entry names is provided by a d_namlen field.  Otherwise
732  *      you need to do strlen() on the d_name field.
733  */
734 /* Direntry_t:
735  *      This symbol is set to 'struct direct' or 'struct dirent' depending on
736  *      whether dirent is available or not. You should use this pseudo type to
737  *      portably declare your directory entries.
738  */
739 #$i_dirent I_DIRENT             /**/
740 #$d_dirnamlen DIRNAMLEN /**/
741 #define Direntry_t $direntrytype
742
743 /* I_DLFCN:
744  *      This symbol, if defined, indicates that <dlfcn.h> exists and should
745  *      be included.
746  */
747 #$i_dlfcn I_DLFCN               /**/
748
749 /* I_FCNTL:
750  *      This manifest constant tells the C program to include <fcntl.h>.
751  */
752 #$i_fcntl I_FCNTL       /**/
753
754 /* I_FLOAT:
755  *      This symbol, if defined, indicates to the C program that it should
756  *      include <float.h> to get definition of symbols like DBL_MAX or
757  *      DBL_MIN, i.e. machine dependent floating point values.
758  */
759 #$i_float I_FLOAT               /**/
760
761 /* I_LIMITS:
762  *      This symbol, if defined, indicates to the C program that it should
763  *      include <limits.h> to get definition of symbols like WORD_BIT or
764  *      LONG_MAX, i.e. machine dependant limitations.
765  */
766 #$i_limits I_LIMITS             /**/
767
768 /* I_LOCALE:
769  *      This symbol, if defined, indicates to the C program that it should
770  *      include <locale.h>.
771  */
772 #$i_locale      I_LOCALE                /**/
773
774 /* I_MATH:
775  *      This symbol, if defined, indicates to the C program that it should
776  *      include <math.h>.
777  */
778 #$i_math I_MATH         /**/
779
780 /* I_MEMORY:
781  *      This symbol, if defined, indicates to the C program that it should
782  *      include <memory.h>.
783  */
784 #$i_memory I_MEMORY             /**/
785
786 /* I_NDBM:
787  *      This symbol, if defined, indicates that <ndbm.h> exists and should
788  *      be included.
789  */
790 #$i_ndbm I_NDBM /**/
791
792 /* I_NET_ERRNO:
793  *      This symbol, if defined, indicates that <net/errno.h> exists and 
794  *      should be included.
795  */
796 #$i_neterrno I_NET_ERRNO                /**/
797
798 /* I_NETINET_IN:
799  *      This symbol, if defined, indicates to the C program that it should
800  *      include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
801  */
802 #$i_niin I_NETINET_IN   /**/
803
804 /* I_SFIO:
805  *      This symbol, if defined, indicates to the C program that it should
806  *      include <sfio.h>.
807  */
808 #$i_sfio        I_SFIO          /**/
809
810 /* I_STDDEF:
811  *      This symbol, if defined, indicates that <stddef.h> exists and should
812  *      be included.
813  */
814 #$i_stddef I_STDDEF     /**/
815
816 /* I_STDLIB:
817  *      This symbol, if defined, indicates that <stdlib.h> exists and should
818  *      be included.
819  */
820 #$i_stdlib I_STDLIB             /**/
821
822 /* I_STRING:
823  *      This symbol, if defined, indicates to the C program that it should
824  *      include <string.h> (USG systems) instead of <strings.h> (BSD systems).
825  */
826 #$i_string I_STRING             /**/
827
828 /* I_SYS_DIR:
829  *      This symbol, if defined, indicates to the C program that it should
830  *      include <sys/dir.h>.
831  */
832 #$i_sysdir I_SYS_DIR            /**/
833
834 /* I_SYS_FILE:
835  *      This symbol, if defined, indicates to the C program that it should
836  *      include <sys/file.h> to get definition of R_OK and friends.
837  */
838 #$i_sysfile I_SYS_FILE          /**/
839
840 /* I_SYS_IOCTL:
841  *      This symbol, if defined, indicates that <sys/ioctl.h> exists and should
842  *      be included. Otherwise, include <sgtty.h> or <termio.h>.
843  */
844 /* I_SYS_SOCKIO:
845  *      This symbol, if defined, indicates the <sys/sockio.h> should be included
846  *      to get socket ioctl options, like SIOCATMARK.
847  */
848 #$i_sysioctl    I_SYS_IOCTL             /**/
849 #$i_syssockio I_SYS_SOCKIO      /**/
850
851 /* I_SYS_NDIR:
852  *      This symbol, if defined, indicates to the C program that it should
853  *      include <sys/ndir.h>.
854  */
855 #$i_sysndir I_SYS_NDIR  /**/
856
857 /* I_SYS_PARAM:
858  *      This symbol, if defined, indicates to the C program that it should
859  *      include <sys/param.h>.
860  */
861 #$i_sysparam I_SYS_PARAM                /**/
862
863 /* I_SYS_RESOURCE:
864  *      This symbol, if defined, indicates to the C program that it should
865  *      include <sys/resource.h>.
866  */
867 #$i_sysresrc I_SYS_RESOURCE             /**/
868
869 /* I_SYS_SELECT:
870  *      This symbol, if defined, indicates to the C program that it should
871  *      include <sys/select.h> in order to get definition of struct timeval.
872  */
873 #$i_sysselct I_SYS_SELECT       /**/
874
875 /* I_SYS_STAT:
876  *      This symbol, if defined, indicates to the C program that it should
877  *      include <sys/stat.h>.
878  */
879 #$i_sysstat     I_SYS_STAT              /**/
880
881 /* I_SYS_TIMES:
882  *      This symbol, if defined, indicates to the C program that it should
883  *      include <sys/times.h>.
884  */
885 #$i_systimes    I_SYS_TIMES             /**/
886
887 /* I_SYS_TYPES:
888  *      This symbol, if defined, indicates to the C program that it should
889  *      include <sys/types.h>.
890  */
891 #$i_systypes    I_SYS_TYPES             /**/
892
893 /* I_SYS_UN:
894  *      This symbol, if defined, indicates to the C program that it should
895  *      include <sys/un.h> to get UNIX domain socket definitions.
896  */
897 #$i_sysun I_SYS_UN              /**/
898
899 /* I_SYS_WAIT:
900  *      This symbol, if defined, indicates to the C program that it should
901  *      include <sys/wait.h>.
902  */
903 #$i_syswait I_SYS_WAIT  /**/
904
905 /* I_TERMIO:
906  *      This symbol, if defined, indicates that the program should include
907  *      <termio.h> rather than <sgtty.h>.  There are also differences in
908  *      the ioctl() calls that depend on the value of this symbol.
909  */
910 /* I_TERMIOS:
911  *      This symbol, if defined, indicates that the program should include
912  *      the POSIX termios.h rather than sgtty.h or termio.h.
913  *      There are also differences in the ioctl() calls that depend on the
914  *      value of this symbol.
915  */
916 /* I_SGTTY:
917  *      This symbol, if defined, indicates that the program should include
918  *      <sgtty.h> rather than <termio.h>.  There are also differences in
919  *      the ioctl() calls that depend on the value of this symbol.
920  */
921 #$i_termio I_TERMIO             /**/
922 #$i_termios I_TERMIOS           /**/
923 #$i_sgtty I_SGTTY               /**/
924
925 /* I_UNISTD:
926  *      This symbol, if defined, indicates to the C program that it should
927  *      include <unistd.h>.
928  */
929 #$i_unistd I_UNISTD             /**/
930
931 /* I_UTIME:
932  *      This symbol, if defined, indicates to the C program that it should
933  *      include <utime.h>.
934  */
935 #$i_utime I_UTIME               /**/
936
937 /* I_VALUES:
938  *      This symbol, if defined, indicates to the C program that it should
939  *      include <values.h> to get definition of symbols like MINFLOAT or
940  *      MAXLONG, i.e. machine dependant limitations.  Probably, you
941  *      should use <limits.h> instead, if it is available.
942  */
943 #$i_values I_VALUES             /**/
944
945 /* I_VFORK:
946  *      This symbol, if defined, indicates to the C program that it should
947  *      include vfork.h.
948  */
949 #$i_vfork I_VFORK       /**/
950
951 /* CAN_PROTOTYPE:
952  *      If defined, this macro indicates that the C compiler can handle
953  *      function prototypes.
954  */
955 /* _:
956  *      This macro is used to declare function parameters for folks who want
957  *      to make declarations with prototypes using a different style than
958  *      the above macros.  Use double parentheses.  For example:
959  *
960  *              int main _((int argc, char *argv[]));
961  */
962 #$prototype     CAN_PROTOTYPE   /**/
963 #ifdef CAN_PROTOTYPE
964 #define _(args) args
965 #else
966 #define _(args) ()
967 #endif
968
969 /* SH_PATH:
970  *      This symbol contains the full pathname to the shell used on this
971  *      on this system to execute Bourne shell scripts.  Usually, this will be
972  *      /bin/sh, though it's possible that some systems will have /bin/ksh,
973  *      /bin/pdksh, /bin/ash, /bin/bash, or even something such as
974  *      D:/bin/sh.exe.
975  */
976 #define SH_PATH "$sh"  /**/
977
978 /* INTSIZE:
979  *      This symbol contains the value of sizeof(int) so that the C
980  *      preprocessor can make decisions based on it.
981  */
982 /* LONGSIZE:
983  *      This symbol contains the value of sizeof(long) so that the C
984  *      preprocessor can make decisions based on it.
985  */
986 /* SHORTSIZE:
987  *      This symbol contains the value of sizeof(short) so that the C
988  *      preprocessor can make decisions based on it.
989  */
990 #define INTSIZE $intsize                /**/
991 #define LONGSIZE $longsize              /**/
992 #define SHORTSIZE $shortsize            /**/
993
994 /* MULTIARCH:
995  *      This symbol, if defined, signifies that the build
996  *      process will produce some binary files that are going to be
997  *      used in a cross-platform environment.  This is the case for
998  *      example with the NeXT "fat" binaries that contain executables
999  *      for several CPUs.
1000  */
1001 #$multiarch MULTIARCH           /**/
1002
1003 /* HAS_QUAD:
1004  *      This symbol, if defined, tells that there's a 64-bit integer type,
1005  *      Quad_t, and its unsigned counterpar, Uquad_t. QUADKIND will be one
1006  *      of QUAD_IS_INT, QUAD_IS_LONG, QUAD_IS_LONG_LONG, or QUAD_IS_INT64_T.
1007  */
1008 #$d_quad HAS_QUAD       /**/
1009 #ifdef HAS_QUAD
1010 #   define Quad_t $quadtype     /**/
1011 #   define Uquad_t $uquadtype   /**/
1012 #   define QUADKIND $quadkind   /**/
1013 #   define QUAD_IS_INT  1
1014 #   define QUAD_IS_LONG 2
1015 #   define QUAD_IS_LONG_LONG    3
1016 #   define QUAD_IS_INT64_T      4
1017 #endif
1018
1019 /* HAS_ACCESSX:
1020  *      This symbol, if defined, indicates that the accessx routine is
1021  *      available to do extended access checks.
1022  */
1023 #$d_accessx HAS_ACCESSX         /**/
1024
1025 /* HAS_EACCESS:
1026  *      This symbol, if defined, indicates that the eaccess routine is
1027  *      available to do extended access checks.
1028  */
1029 #$d_eaccess HAS_EACCESS         /**/
1030
1031 /* I_SYS_ACCESS:
1032  *     This symbol, if defined, indicates to the C program that it should
1033  *     include <sys/access.h>.
1034  */
1035 #$i_sysaccess   I_SYS_ACCESS                /**/
1036
1037 /* I_SYS_SECURITY:
1038  *     This symbol, if defined, indicates to the C program that it should
1039  *     include <sys/security.h>.
1040  */
1041 #$i_syssecrt   I_SYS_SECURITY   /**/
1042
1043 /* MEM_ALIGNBYTES:
1044  *      This symbol contains the number of bytes required to align a
1045  *      double, or a long double when applicable. Usual values are 2,
1046  *      4 and 8. The default is eight, for safety.
1047  */
1048 #if defined(USE_CROSS_COMPILE) || defined(MULTIARCH)
1049 #  define MEM_ALIGNBYTES 8
1050 #else
1051 #define MEM_ALIGNBYTES $alignbytes
1052 #endif
1053
1054 /* BYTEORDER:
1055  *      This symbol holds the hexadecimal constant defined in byteorder,
1056  *      i.e. 0x1234 or 0x4321, etc...
1057  *      If the compiler supports cross-compiling or multiple-architecture
1058  *      binaries (eg. on NeXT systems), use compiler-defined macros to
1059  *      determine the byte order.
1060  *      On NeXT 3.2 (and greater), you can build "Fat" Multiple Architecture
1061  *      Binaries (MAB) on either big endian or little endian machines.
1062  *      The endian-ness is available at compile-time.  This only matters
1063  *      for perl, where the config.h can be generated and installed on 
1064  *      one system, and used by a different architecture to build an
1065  *      extension.  Older versions of NeXT that might not have
1066  *      defined either *_ENDIAN__ were all on Motorola 680x0 series,
1067  *      so the default case (for NeXT) is big endian to catch them. 
1068  *      This might matter for NeXT 3.0.
1069  */
1070 #if defined(USE_CROSS_COMPILE) || defined(MULTIARCH)
1071 #  ifdef __LITTLE_ENDIAN__
1072 #    if LONGSIZE == 4
1073 #      define BYTEORDER 0x1234
1074 #    else
1075 #      if LONGSIZE == 8
1076 #        define BYTEORDER 0x12345678
1077 #      endif
1078 #    endif
1079 #  else
1080 #    ifdef __BIG_ENDIAN__
1081 #      if LONGSIZE == 4
1082 #        define BYTEORDER 0x4321
1083 #      else
1084 #        if LONGSIZE == 8
1085 #          define BYTEORDER 0x87654321
1086 #        endif
1087 #      endif
1088 #    endif
1089 #  endif
1090 #  if !defined(BYTEORDER) && (defined(NeXT) || defined(__NeXT__))
1091 #    define BYTEORDER 0x4321
1092 #  endif
1093 #else
1094 #define BYTEORDER 0x$byteorder  /* large digits for MSB */
1095 #endif /* NeXT */
1096
1097 /* CASTI32:
1098  *      This symbol is defined if the C compiler can cast negative
1099  *      or large floating point numbers to 32-bit ints.
1100  */
1101 #$d_casti32     CASTI32         /**/
1102
1103 /* CASTNEGFLOAT:
1104  *      This symbol is defined if the C compiler can cast negative
1105  *      numbers to unsigned longs, ints and shorts.
1106  */
1107 /* CASTFLAGS:
1108  *      This symbol contains flags that say what difficulties the compiler
1109  *      has casting odd floating values to unsigned long:
1110  *              0 = ok
1111  *              1 = couldn't cast < 0
1112  *              2 = couldn't cast >= 0x80000000
1113  *              4 = couldn't cast in argument expression list
1114  */
1115 #$d_castneg     CASTNEGFLOAT            /**/
1116 #define CASTFLAGS $castflags            /**/
1117
1118 /* VOID_CLOSEDIR:
1119  *      This symbol, if defined, indicates that the closedir() routine
1120  *      does not return a value.
1121  */
1122 #$d_void_closedir VOID_CLOSEDIR         /**/
1123
1124 /* HAS_FD_SET:
1125  *      This symbol, when defined, indicates presence of the fd_set typedef
1126  *      in <sys/types.h>
1127  */
1128 #$d_fd_set HAS_FD_SET   /**/
1129
1130 /* Gconvert:
1131  *      This preprocessor macro is defined to convert a floating point
1132  *      number to a string without a trailing decimal point.  This
1133  *      emulates the behavior of sprintf("%g"), but is sometimes much more
1134  *      efficient.  If gconvert() is not available, but gcvt() drops the
1135  *      trailing decimal point, then gcvt() is used.  If all else fails,
1136  *      a macro using sprintf("%g") is used. Arguments for the Gconvert
1137  *      macro are: value, number of digits, whether trailing zeros should
1138  *      be retained, and the output buffer.
1139  *      Possible values are:
1140  *              d_Gconvert='gconvert((x),(n),(t),(b))'
1141  *              d_Gconvert='gcvt((x),(n),(b))'
1142  *              d_Gconvert='sprintf((b),"%.*g",(n),(x))'
1143  *      The last two assume trailing zeros should not be kept.
1144  */
1145 #define Gconvert(x,n,t,b) $d_Gconvert
1146
1147 /* HAS_GETPAGESIZE:
1148  *      This symbol, if defined, indicates that the getpagesize system call
1149  *      is available to get system page size, which is the granularity of
1150  *      many memory management calls.
1151  */
1152 #$d_getpagsz HAS_GETPAGESIZE            /**/
1153
1154 /* HAS_GNULIBC:
1155  *      This symbol, if defined, indicates to the C program that 
1156  *      the GNU C library is being used.
1157  */
1158 #$d_gnulibc HAS_GNULIBC         /**/
1159 #if defined(HAS_GNULIBC) && !defined(_GNU_SOURCE)
1160 #   define _GNU_SOURCE
1161 #endif
1162 /* HAS_ISASCII:
1163  *      This manifest constant lets the C program know that isascii 
1164  *      is available.
1165  */
1166 #$d_isascii HAS_ISASCII         /**/
1167
1168 /* HAS_LCHOWN:
1169  *      This symbol, if defined, indicates that the lchown routine is
1170  *      available to operate on a symbolic link (instead of following the
1171  *      link).
1172  */
1173 #$d_lchown HAS_LCHOWN           /**/
1174
1175 /* HAS_OPEN3:
1176  *      This manifest constant lets the C program know that the three
1177  *      argument form of open(2) is available.
1178  */
1179 #$d_open3 HAS_OPEN3             /**/
1180
1181 /* HAS_SAFE_BCOPY:
1182  *      This symbol, if defined, indicates that the bcopy routine is available
1183  *      to copy potentially overlapping memory blocks. Normally, you should
1184  *      probably use memmove() or memcpy(). If neither is defined, roll your
1185  *      own version.
1186  */
1187 #$d_safebcpy HAS_SAFE_BCOPY     /**/
1188
1189 /* HAS_SAFE_MEMCPY:
1190  *      This symbol, if defined, indicates that the memcpy routine is available
1191  *      to copy potentially overlapping memory blocks.  If you need to
1192  *      copy overlapping memory blocks, you should check HAS_MEMMOVE and
1193  *      use memmove() instead, if available.
1194  */
1195 #$d_safemcpy HAS_SAFE_MEMCPY    /**/
1196
1197 /* HAS_SANE_MEMCMP:
1198  *      This symbol, if defined, indicates that the memcmp routine is available
1199  *      and can be used to compare relative magnitudes of chars with their high
1200  *      bits set.  If it is not defined, roll your own version.
1201  */
1202 #$d_sanemcmp HAS_SANE_MEMCMP    /**/
1203
1204 /* HAS_SIGACTION:
1205  *      This symbol, if defined, indicates that Vr4's sigaction() routine
1206  *      is available.
1207  */
1208 #$d_sigaction HAS_SIGACTION     /**/
1209
1210 /* HAS_SIGSETJMP:
1211  *      This variable indicates to the C program that the sigsetjmp()
1212  *      routine is available to save the calling process's registers
1213  *      and stack environment for later use by siglongjmp(), and
1214  *      to optionally save the process's signal mask.  See
1215  *      Sigjmp_buf, Sigsetjmp, and Siglongjmp.
1216  */
1217 /* Sigjmp_buf:
1218  *      This is the buffer type to be used with Sigsetjmp and Siglongjmp.
1219  */
1220 /* Sigsetjmp:
1221  *      This macro is used in the same way as sigsetjmp(), but will invoke
1222  *      traditional setjmp() if sigsetjmp isn't available.
1223  *      See HAS_SIGSETJMP.
1224  */
1225 /* Siglongjmp:
1226  *      This macro is used in the same way as siglongjmp(), but will invoke
1227  *      traditional longjmp() if siglongjmp isn't available.
1228  *      See HAS_SIGSETJMP.
1229  */
1230 #$d_sigsetjmp HAS_SIGSETJMP     /**/
1231 #ifdef HAS_SIGSETJMP
1232 #define Sigjmp_buf sigjmp_buf
1233 #define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
1234 #define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
1235 #else
1236 #define Sigjmp_buf jmp_buf
1237 #define Sigsetjmp(buf,save_mask) setjmp((buf))
1238 #define Siglongjmp(buf,retval) longjmp((buf),(retval))
1239 #endif
1240
1241 /* USE_STDIO_PTR:
1242  *      This symbol is defined if the _ptr and _cnt fields (or similar)
1243  *      of the stdio FILE structure can be used to access the stdio buffer
1244  *      for a file handle.  If this is defined, then the FILE_ptr(fp)
1245  *      and FILE_cnt(fp) macros will also be defined and should be used
1246  *      to access these fields.
1247  */
1248 /* FILE_ptr:
1249  *      This macro is used to access the _ptr field (or equivalent) of the
1250  *      FILE structure pointed to by its argument. This macro will always be
1251  *      defined if USE_STDIO_PTR is defined.
1252  */
1253 /* STDIO_PTR_LVALUE:
1254  *      This symbol is defined if the FILE_ptr macro can be used as an
1255  *      lvalue.
1256  */
1257 /* FILE_cnt:
1258  *      This macro is used to access the _cnt field (or equivalent) of the
1259  *      FILE structure pointed to by its argument. This macro will always be
1260  *      defined if USE_STDIO_PTR is defined.
1261  */
1262 /* STDIO_CNT_LVALUE:
1263  *      This symbol is defined if the FILE_cnt macro can be used as an
1264  *      lvalue.
1265  */
1266 /* STDIO_PTR_LVAL_SETS_CNT:
1267  *      This symbol is defined if using the FILE_ptr macro as an lvalue
1268  *      to increase the pointer by n has the side effect of decreasing the
1269  *      value of File_cnt(fp) by n.
1270  */
1271 /* STDIO_PTR_LVAL_NOCHANGE_CNT:
1272  *      This symbol is defined if using the FILE_ptr macro as an lvalue
1273  *      to increase the pointer by n leaves File_cnt(fp) unchanged.
1274  */
1275 #$d_stdstdio USE_STDIO_PTR      /**/
1276 #ifdef USE_STDIO_PTR
1277 #define FILE_ptr(fp)    $stdio_ptr
1278 #$d_stdio_ptr_lval STDIO_PTR_LVALUE             /**/
1279 #define FILE_cnt(fp)    $stdio_cnt
1280 #$d_stdio_cnt_lval STDIO_CNT_LVALUE             /**/
1281 #$d_stdio_ptr_lval_sets_cnt STDIO_PTR_LVAL_SETS_CNT     /**/
1282 #$d_stdio_ptr_lval_nochange_cnt STDIO_PTR_LVAL_NOCHANGE_CNT     /**/
1283 #endif
1284
1285 /* USE_STDIO_BASE:
1286  *      This symbol is defined if the _base field (or similar) of the
1287  *      stdio FILE structure can be used to access the stdio buffer for
1288  *      a file handle.  If this is defined, then the FILE_base(fp) macro
1289  *      will also be defined and should be used to access this field.
1290  *      Also, the FILE_bufsiz(fp) macro will be defined and should be used
1291  *      to determine the number of bytes in the buffer.  USE_STDIO_BASE
1292  *      will never be defined unless USE_STDIO_PTR is.
1293  */
1294 /* FILE_base:
1295  *      This macro is used to access the _base field (or equivalent) of the
1296  *      FILE structure pointed to by its argument. This macro will always be
1297  *      defined if USE_STDIO_BASE is defined.
1298  */
1299 /* FILE_bufsiz:
1300  *      This macro is used to determine the number of bytes in the I/O
1301  *      buffer pointed to by _base field (or equivalent) of the FILE
1302  *      structure pointed to its argument. This macro will always be defined
1303  *      if USE_STDIO_BASE is defined.
1304  */
1305 #$d_stdiobase USE_STDIO_BASE    /**/
1306 #ifdef USE_STDIO_BASE
1307 #define FILE_base(fp)   $stdio_base
1308 #define FILE_bufsiz(fp) $stdio_bufsiz
1309 #endif
1310
1311 /* HAS_VPRINTF:
1312  *      This symbol, if defined, indicates that the vprintf routine is available
1313  *      to printf with a pointer to an argument list.  If unavailable, you
1314  *      may need to write your own, probably in terms of _doprnt().
1315  */
1316 /* USE_CHAR_VSPRINTF:
1317  *      This symbol is defined if this system has vsprintf() returning type
1318  *      (char*).  The trend seems to be to declare it as "int vsprintf()".  It
1319  *      is up to the package author to declare vsprintf correctly based on the
1320  *      symbol.
1321  */
1322 #$d_vprintf HAS_VPRINTF /**/
1323 #$d_charvspr USE_CHAR_VSPRINTF  /**/
1324
1325 /* DOUBLESIZE:
1326  *      This symbol contains the size of a double, so that the C preprocessor
1327  *      can make decisions based on it.
1328  */
1329 #define DOUBLESIZE $doublesize          /**/
1330
1331 /* I_TIME:
1332  *      This symbol, if defined, indicates to the C program that it should
1333  *      include <time.h>.
1334  */
1335 /* I_SYS_TIME:
1336  *      This symbol, if defined, indicates to the C program that it should
1337  *      include <sys/time.h>.
1338  */
1339 /* I_SYS_TIME_KERNEL:
1340  *      This symbol, if defined, indicates to the C program that it should
1341  *      include <sys/time.h> with KERNEL defined.
1342  */
1343 #$i_time I_TIME         /**/
1344 #$i_systime I_SYS_TIME          /**/
1345 #$i_systimek I_SYS_TIME_KERNEL          /**/
1346
1347 /* VAL_O_NONBLOCK:
1348  *      This symbol is to be used during open() or fcntl(F_SETFL) to turn on
1349  *      non-blocking I/O for the file descriptor. Note that there is no way
1350  *      back, i.e. you cannot turn it blocking again this way. If you wish to
1351  *      alternatively switch between blocking and non-blocking, use the
1352  *      ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
1353  */
1354 /* VAL_EAGAIN:
1355  *      This symbol holds the errno error code set by read() when no data was
1356  *      present on the non-blocking file descriptor.
1357  */
1358 /* RD_NODATA:
1359  *      This symbol holds the return code from read() when no data is present
1360  *      on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
1361  *      not defined, then you can't distinguish between no data and EOF by
1362  *      issuing a read(). You'll have to find another way to tell for sure!
1363  */
1364 /* EOF_NONBLOCK:
1365  *      This symbol, if defined, indicates to the C program that a read() on
1366  *      a non-blocking file descriptor will return 0 on EOF, and not the value
1367  *      held in RD_NODATA (-1 usually, in that case!).
1368  */
1369 #define VAL_O_NONBLOCK $o_nonblock
1370 #define VAL_EAGAIN $eagain
1371 #define RD_NODATA $rd_nodata
1372 #$d_eofnblk EOF_NONBLOCK
1373
1374 /* PTRSIZE:
1375  *      This symbol contains the size of a pointer, so that the C preprocessor
1376  *      can make decisions based on it.  It will be sizeof(void *) if
1377  *      the compiler supports (void *); otherwise it will be
1378  *      sizeof(char *).
1379  */
1380 #define PTRSIZE $ptrsize                /**/
1381
1382 /* Drand01:
1383  *      This macro is to be used to generate uniformly distributed
1384  *      random numbers over the range [0., 1.[.  You may have to supply
1385  *      an 'extern double drand48();' in your program since SunOS 4.1.3
1386  *      doesn't provide you with anything relevant in its headers.
1387  *      See HAS_DRAND48_PROTO.
1388  */
1389 /* Rand_seed_t:
1390  *      This symbol defines the type of the argument of the
1391  *      random seed function.
1392  */
1393 /* seedDrand01:
1394  *      This symbol defines the macro to be used in seeding the
1395  *      random number generator (see Drand01).
1396  */
1397 /* RANDBITS:
1398  *      This symbol indicates how many bits are produced by the
1399  *      function used to generate normalized random numbers.
1400  *      Values include 15, 16, 31, and 48.
1401  */
1402 #define Drand01()               $drand01                /**/
1403 #define Rand_seed_t             $randseedtype           /**/
1404 #define seedDrand01(x)  $seedfunc((Rand_seed_t)x)       /**/
1405 #define RANDBITS                $randbits               /**/
1406
1407 /* SSize_t:
1408  *      This symbol holds the type used by functions that return
1409  *      a count of bytes or an error condition.  It must be a signed type.
1410  *      It is usually ssize_t, but may be long or int, etc.
1411  *      It may be necessary to include <sys/types.h> or <unistd.h>
1412  *      to get any typedef'ed information.
1413  *      We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
1414  */
1415 #define SSize_t $ssizetype       /* signed count of bytes */
1416
1417 /* EBCDIC:
1418  *     This symbol, if defined, indicates that this system uses
1419  *      EBCDIC encoding.
1420  */
1421 #$ebcdic        EBCDIC          /**/
1422
1423 /* ARCHLIB:
1424  *      This variable, if defined, holds the name of the directory in
1425  *      which the user wants to put architecture-dependent public
1426  *      library files for $package.  It is most often a local directory
1427  *      such as /usr/local/lib.  Programs using this variable must be
1428  *      prepared to deal with filename expansion.  If ARCHLIB is the
1429  *      same as PRIVLIB, it is not defined, since presumably the
1430  *      program already searches PRIVLIB.
1431  */
1432 /* ARCHLIB_EXP:
1433  *      This symbol contains the ~name expanded version of ARCHLIB, to be used
1434  *      in programs that are not prepared to deal with ~ expansion at run-time.
1435  */
1436 #$d_archlib ARCHLIB "$archlib"          /**/
1437 #$d_archlib ARCHLIB_EXP "$archlibexp"           /**/
1438
1439 /* BIN:
1440  *      This symbol holds the path of the bin directory where the package will
1441  *      be installed. Program must be prepared to deal with ~name substitution.
1442  */
1443 /* BIN_EXP:
1444  *      This symbol is the filename expanded version of the BIN symbol, for
1445  *      programs that do not want to deal with that at run-time.
1446  */
1447 #define BIN "$bin"      /**/
1448 #define BIN_EXP "$binexp"       /**/
1449
1450 /* PERL_INC_VERSION_LIST:
1451  *      This variable specifies the list of subdirectories in over
1452  *      which perl.c:incpush() and lib/lib.pm will automatically
1453  *      search when adding directories to @INC, in a format suitable
1454  *      for a C initialization string.  See the inc_version_list entry
1455  *      in Porting/Glossary for more details.
1456  */
1457 #define PERL_INC_VERSION_LIST $inc_version_list_init            /**/
1458
1459 /* INSTALL_USR_BIN_PERL:
1460  *      This symbol, if defined, indicates that Perl is to be installed
1461  *      also as /usr/bin/perl.
1462  */
1463 #$installusrbinperl INSTALL_USR_BIN_PERL        /**/
1464
1465 /* PERL_OTHERLIBDIRS:
1466  *      This variable contains a colon-separated set of paths for the perl
1467  *      binary to search for additional library files or modules.
1468  *      These directories will be tacked to the end of @INC.
1469  *      Perl will automatically search below each path for version-
1470  *      and architecture-specific directories.  See PERL_INC_VERSION_LIST
1471  *      for more details.
1472  */
1473 #$d_perl_otherlibdirs PERL_OTHERLIBDIRS "$otherlibdirs"         /**/
1474
1475 /* PRIVLIB:
1476  *      This symbol contains the name of the private library for this package.
1477  *      The library is private in the sense that it needn't be in anyone's
1478  *      execution path, but it should be accessible by the world.  The program
1479  *      should be prepared to do ~ expansion.
1480  */
1481 /* PRIVLIB_EXP:
1482  *      This symbol contains the ~name expanded version of PRIVLIB, to be used
1483  *      in programs that are not prepared to deal with ~ expansion at run-time.
1484  */
1485 #define PRIVLIB "$privlib"              /**/
1486 #define PRIVLIB_EXP "$privlibexp"               /**/
1487
1488 /* SITEARCH:
1489  *      This symbol contains the name of the private library for this package.
1490  *      The library is private in the sense that it needn't be in anyone's
1491  *      execution path, but it should be accessible by the world.  The program
1492  *      should be prepared to do ~ expansion.
1493  *      The standard distribution will put nothing in this directory.
1494  *      After perl has been installed, users may install their own local
1495  *      architecture-dependent modules in this directory with
1496  *              MakeMaker Makefile.PL
1497  *      or equivalent.  See INSTALL for details.
1498  */
1499 /* SITEARCH_EXP:
1500  *      This symbol contains the ~name expanded version of SITEARCH, to be used
1501  *      in programs that are not prepared to deal with ~ expansion at run-time.
1502  */
1503 #define SITEARCH "$sitearch"            /**/
1504 #define SITEARCH_EXP "$sitearchexp"             /**/
1505
1506 /* SITELIB:
1507  *      This symbol contains the name of the private library for this package.
1508  *      The library is private in the sense that it needn't be in anyone's
1509  *      execution path, but it should be accessible by the world.  The program
1510  *      should be prepared to do ~ expansion.
1511  *      The standard distribution will put nothing in this directory.
1512  *      After perl has been installed, users may install their own local
1513  *      architecture-independent modules in this directory with
1514  *              MakeMaker Makefile.PL
1515  *      or equivalent.  See INSTALL for details.
1516  */
1517 /* SITELIB_EXP:
1518  *      This symbol contains the ~name expanded version of SITELIB, to be used
1519  *      in programs that are not prepared to deal with ~ expansion at run-time.
1520  */
1521 /* SITELIB_STEM:
1522  *      This define is SITELIB_EXP with any trailing version-specific component
1523  *      removed.  The elements in inc_version_list (inc_version_list.U) can
1524  *      be tacked onto this variable to generate a list of directories to search.
1525  */
1526 #define SITELIB "$sitelib"              /**/
1527 #define SITELIB_EXP "$sitelibexp"               /**/
1528 #define SITELIB_STEM "$sitelib_stem"            /**/
1529
1530 /* PERL_VENDORARCH:
1531  *      If defined, this symbol contains the name of a private library.
1532  *      The library is private in the sense that it needn't be in anyone's
1533  *      execution path, but it should be accessible by the world.
1534  *      It may have a ~ on the front. 
1535  *      The standard distribution will put nothing in this directory.
1536  *      Vendors who distribute perl may wish to place their own
1537  *      architecture-dependent modules and extensions in this directory with
1538  *              MakeMaker Makefile.PL INSTALLDIRS=vendor 
1539  *      or equivalent.  See INSTALL for details.
1540  */
1541 /* PERL_VENDORARCH_EXP:
1542  *      This symbol contains the ~name expanded version of PERL_VENDORARCH, to be used
1543  *      in programs that are not prepared to deal with ~ expansion at run-time.
1544  */
1545 #$d_vendorarch PERL_VENDORARCH "$vendorarch"            /**/
1546 #$d_vendorarch PERL_VENDORARCH_EXP "$vendorarchexp"             /**/
1547
1548 /* PERL_VENDORLIB_EXP:
1549  *      This symbol contains the ~name expanded version of VENDORLIB, to be used
1550  *      in programs that are not prepared to deal with ~ expansion at run-time.
1551  */
1552 /* PERL_VENDORLIB_STEM:
1553  *      This define is PERL_VENDORLIB_EXP with any trailing version-specific component
1554  *      removed.  The elements in inc_version_list (inc_version_list.U) can
1555  *      be tacked onto this variable to generate a list of directories to search.
1556  */
1557 #$d_vendorlib PERL_VENDORLIB_EXP "$vendorlibexp"                /**/
1558 #$d_vendorlib PERL_VENDORLIB_STEM "$vendorlib_stem"             /**/
1559
1560 /* OSNAME:
1561  *      This symbol contains the name of the operating system, as determined
1562  *      by Configure.  You shouldn't rely on it too much; the specific
1563  *      feature tests from Configure are generally more reliable.
1564  */
1565 /* OSVERS:
1566  *      This symbol contains the version of the operating system, as determined
1567  *      by Configure.  You shouldn't rely on it too much; the specific
1568  *      feature tests from Configure are generally more reliable.
1569  */
1570 #define OSNAME "$osname"                /**/
1571 #define OSVERS "$osvers"                /**/
1572
1573 /* CAT2:
1574  *      This macro catenates 2 tokens together.
1575  */
1576 /* STRINGIFY:
1577  *      This macro surrounds its token with double quotes.
1578  */
1579 #if $cpp_stuff == 1
1580 #define CAT2(a,b)       a/**/b
1581 #define STRINGIFY(a)    "a"
1582                 /* If you can get stringification with catify, tell me how! */
1583 #endif
1584 #if $cpp_stuff == 42
1585 #define PeRl_CaTiFy(a, b)       a ## b  
1586 #define PeRl_StGiFy(a)  #a
1587 /* the additional level of indirection enables these macros to be
1588  * used as arguments to other macros.  See K&R 2nd ed., page 231. */
1589 #define CAT2(a,b)       PeRl_CaTiFy(a,b)
1590 #define StGiFy(a)       PeRl_StGiFy(a)
1591 #define STRINGIFY(a)    PeRl_StGiFy(a)
1592 #endif
1593 #if $cpp_stuff != 1 && $cpp_stuff != 42
1594 #   include "Bletch: How does this C preprocessor catenate tokens?"
1595 #endif
1596
1597 /* CPPSTDIN:
1598  *      This symbol contains the first part of the string which will invoke
1599  *      the C preprocessor on the standard input and produce to standard
1600  *      output.  Typical value of "cc -E" or "/lib/cpp", but it can also
1601  *      call a wrapper. See CPPRUN.
1602  */
1603 /* CPPMINUS:
1604  *      This symbol contains the second part of the string which will invoke
1605  *      the C preprocessor on the standard input and produce to standard
1606  *      output.  This symbol will have the value "-" if CPPSTDIN needs a minus
1607  *      to specify standard input, otherwise the value is "".
1608  */
1609 /* CPPRUN:
1610  *      This symbol contains the string which will invoke a C preprocessor on
1611  *      the standard input and produce to standard output. It needs to end
1612  *      with CPPLAST, after all other preprocessor flags have been specified.
1613  *      The main difference with CPPSTDIN is that this program will never be a
1614  *      pointer to a shell wrapper, i.e. it will be empty if no preprocessor is
1615  *      available directly to the user. Note that it may well be different from
1616  *      the preprocessor used to compile the C program.
1617  */
1618 /* CPPLAST:
1619  *      This symbol is intended to be used along with CPPRUN in the same manner
1620  *      symbol CPPMINUS is used with CPPSTDIN. It contains either "-" or "".
1621  */
1622 #define CPPSTDIN "$cppstdin"
1623 #define CPPMINUS "$cppminus"
1624 #define CPPRUN "$cpprun"
1625 #define CPPLAST "$cpplast"
1626
1627 /* HAS_ACCESS:
1628  *      This manifest constant lets the C program know that the access()
1629  *      system call is available to check for accessibility using real UID/GID.
1630  *      (always present on UNIX.)
1631  */
1632 #$d_access HAS_ACCESS           /**/
1633
1634 /* HAS_CSH:
1635  *      This symbol, if defined, indicates that the C-shell exists.
1636  */
1637 /* CSH:
1638  *      This symbol, if defined, contains the full pathname of csh.
1639  */
1640 #$d_csh HAS_CSH         /**/
1641 #ifdef HAS_CSH
1642 #define CSH "$full_csh" /**/
1643 #endif
1644
1645 /* HAS_ENDGRENT:
1646  *      This symbol, if defined, indicates that the getgrent routine is
1647  *      available for finalizing sequential access of the group database.
1648  */
1649 #$d_endgrent HAS_ENDGRENT               /**/
1650
1651 /* HAS_ENDHOSTENT:
1652  *      This symbol, if defined, indicates that the endhostent() routine is
1653  *      available to close whatever was being used for host queries.
1654  */
1655 #$d_endhent HAS_ENDHOSTENT              /**/
1656
1657 /* HAS_ENDNETENT:
1658  *      This symbol, if defined, indicates that the endnetent() routine is
1659  *      available to close whatever was being used for network queries.
1660  */
1661 #$d_endnent HAS_ENDNETENT               /**/
1662
1663 /* HAS_ENDPROTOENT:
1664  *      This symbol, if defined, indicates that the endprotoent() routine is
1665  *      available to close whatever was being used for protocol queries.
1666  */
1667 #$d_endpent HAS_ENDPROTOENT             /**/
1668
1669 /* HAS_ENDPWENT:
1670  *      This symbol, if defined, indicates that the getgrent routine is
1671  *      available for finalizing sequential access of the passwd database.
1672  */
1673 #$d_endpwent HAS_ENDPWENT               /**/
1674
1675 /* HAS_ENDSERVENT:
1676  *      This symbol, if defined, indicates that the endservent() routine is
1677  *      available to close whatever was being used for service queries.
1678  */
1679 #$d_endsent HAS_ENDSERVENT              /**/
1680
1681 /* FLEXFILENAMES:
1682  *      This symbol, if defined, indicates that the system supports filenames
1683  *      longer than 14 characters.
1684  */
1685 #$d_flexfnam    FLEXFILENAMES           /**/
1686
1687 /* HAS_GETGRENT:
1688  *      This symbol, if defined, indicates that the getgrent routine is
1689  *      available for sequential access of the group database.
1690  */
1691 #$d_getgrent HAS_GETGRENT               /**/
1692
1693 /* HAS_GETHOSTBYADDR:
1694  *      This symbol, if defined, indicates that the gethostbyaddr() routine is
1695  *      available to look up hosts by their IP addresses.
1696  */
1697 #$d_gethbyaddr HAS_GETHOSTBYADDR                /**/
1698
1699 /* HAS_GETHOSTBYNAME:
1700  *      This symbol, if defined, indicates that the gethostbyname() routine is
1701  *      available to look up host names in some data base or other.
1702  */
1703 #$d_gethbyname HAS_GETHOSTBYNAME                /**/
1704
1705 /* HAS_GETHOSTENT:
1706  *      This symbol, if defined, indicates that the gethostent() routine is
1707  *      available to look up host names in some data base or another.
1708  */
1709 #$d_gethent HAS_GETHOSTENT              /**/
1710
1711 /* HAS_GETHOSTNAME:
1712  *      This symbol, if defined, indicates that the C program may use the
1713  *      gethostname() routine to derive the host name.  See also HAS_UNAME
1714  *      and PHOSTNAME.
1715  */
1716 /* HAS_UNAME:
1717  *      This symbol, if defined, indicates that the C program may use the
1718  *      uname() routine to derive the host name.  See also HAS_GETHOSTNAME
1719  *      and PHOSTNAME.
1720  */
1721 /* PHOSTNAME:
1722  *      This symbol, if defined, indicates the command to feed to the
1723  *      popen() routine to derive the host name.  See also HAS_GETHOSTNAME
1724  *      and HAS_UNAME.  Note that the command uses a fully qualified path,
1725  *      so that it is safe even if used by a process with super-user
1726  *      privileges.
1727  */
1728 /* HAS_PHOSTNAME:
1729  *      This symbol, if defined, indicates that the C program may use the
1730  *      contents of PHOSTNAME as a command to feed to the popen() routine
1731  *      to derive the host name.
1732  */
1733 #$d_gethname HAS_GETHOSTNAME    /**/
1734 #$d_uname HAS_UNAME             /**/
1735 #$d_phostname HAS_PHOSTNAME     /**/
1736 #ifdef HAS_PHOSTNAME
1737 #define PHOSTNAME "$aphostname" /* How to get the host name */
1738 #endif
1739
1740 /* HAS_GETNETBYADDR:
1741  *      This symbol, if defined, indicates that the getnetbyaddr() routine is
1742  *      available to look up networks by their IP addresses.
1743  */
1744 #$d_getnbyaddr HAS_GETNETBYADDR         /**/
1745
1746 /* HAS_GETNETBYNAME:
1747  *      This symbol, if defined, indicates that the getnetbyname() routine is
1748  *      available to look up networks by their names.
1749  */
1750 #$d_getnbyname HAS_GETNETBYNAME         /**/
1751
1752 /* HAS_GETNETENT:
1753  *      This symbol, if defined, indicates that the getnetent() routine is
1754  *      available to look up network names in some data base or another.
1755  */
1756 #$d_getnent HAS_GETNETENT               /**/
1757
1758 /* HAS_GETPROTOENT:
1759  *      This symbol, if defined, indicates that the getprotoent() routine is
1760  *      available to look up protocols in some data base or another.
1761  */
1762 #$d_getpent HAS_GETPROTOENT             /**/
1763
1764 /* HAS_GETPGRP:
1765  *      This symbol, if defined, indicates that the getpgrp routine is
1766  *      available to get the current process group.
1767  */
1768 /* USE_BSD_GETPGRP:
1769  *      This symbol, if defined, indicates that getpgrp needs one
1770  *      arguments whereas USG one needs none.
1771  */
1772 #$d_getpgrp HAS_GETPGRP         /**/
1773 #$d_bsdgetpgrp USE_BSD_GETPGRP  /**/
1774
1775 /* HAS_GETPROTOBYNAME:
1776  *      This symbol, if defined, indicates that the getprotobyname()
1777  *      routine is available to look up protocols by their name.
1778  */
1779 /* HAS_GETPROTOBYNUMBER:
1780  *      This symbol, if defined, indicates that the getprotobynumber()
1781  *      routine is available to look up protocols by their number.
1782  */
1783 #$d_getpbyname HAS_GETPROTOBYNAME               /**/
1784 #$d_getpbynumber HAS_GETPROTOBYNUMBER           /**/
1785
1786 /* HAS_GETPWENT:
1787  *      This symbol, if defined, indicates that the getpwent routine is
1788  *      available for sequential access of the passwd database.
1789  *      If this is not available, the older getpw() function may be available.
1790  */
1791 #$d_getpwent HAS_GETPWENT               /**/
1792
1793 /* HAS_GETSERVENT:
1794  *      This symbol, if defined, indicates that the getservent() routine is
1795  *      available to look up network services in some data base or another.
1796  */
1797 #$d_getsent HAS_GETSERVENT              /**/
1798
1799 /* HAS_GETSERVBYNAME:
1800  *      This symbol, if defined, indicates that the getservbyname()
1801  *      routine is available to look up services by their name.
1802  */
1803 /* HAS_GETSERVBYPORT:
1804  *      This symbol, if defined, indicates that the getservbyport()
1805  *      routine is available to look up services by their port.
1806  */
1807 #$d_getsbyname HAS_GETSERVBYNAME                /**/
1808 #$d_getsbyport HAS_GETSERVBYPORT                /**/
1809
1810 /* HAS_HTONL:
1811  *      This symbol, if defined, indicates that the htonl() routine (and
1812  *      friends htons() ntohl() ntohs()) are available to do network
1813  *      order byte swapping.
1814  */
1815 /* HAS_HTONS:
1816  *      This symbol, if defined, indicates that the htons() routine (and
1817  *      friends htonl() ntohl() ntohs()) are available to do network
1818  *      order byte swapping.
1819  */
1820 /* HAS_NTOHL:
1821  *      This symbol, if defined, indicates that the ntohl() routine (and
1822  *      friends htonl() htons() ntohs()) are available to do network
1823  *      order byte swapping.
1824  */
1825 /* HAS_NTOHS:
1826  *      This symbol, if defined, indicates that the ntohs() routine (and
1827  *      friends htonl() htons() ntohl()) are available to do network
1828  *      order byte swapping.
1829  */
1830 #$d_htonl HAS_HTONL             /**/
1831 #$d_htonl HAS_HTONS             /**/
1832 #$d_htonl HAS_NTOHL             /**/
1833 #$d_htonl HAS_NTOHS             /**/
1834
1835 /* HAS_LONG_DOUBLE:
1836  *      This symbol will be defined if the C compiler supports long
1837  *      doubles.
1838  */
1839 /* LONG_DOUBLESIZE:
1840  *      This symbol contains the size of a long double, so that the 
1841  *      C preprocessor can make decisions based on it.  It is only
1842  *      defined if the system supports long doubles.
1843  */
1844 #$d_longdbl HAS_LONG_DOUBLE             /**/
1845 #ifdef HAS_LONG_DOUBLE
1846 #define LONG_DOUBLESIZE $longdblsize            /**/
1847 #endif
1848
1849 /* HAS_LONG_LONG:
1850  *      This symbol will be defined if the C compiler supports long long.
1851  */
1852 /* LONGLONGSIZE:
1853  *      This symbol contains the size of a long long, so that the 
1854  *      C preprocessor can make decisions based on it.  It is only
1855  *      defined if the system supports long long.
1856  */
1857 #$d_longlong HAS_LONG_LONG              /**/
1858 #ifdef HAS_LONG_LONG
1859 #define LONGLONGSIZE $longlongsize              /**/
1860 #endif
1861
1862 /* HAS_MEMCHR:
1863  *      This symbol, if defined, indicates that the memchr routine is available
1864  *      to locate characters within a C string.
1865  */
1866 #$d_memchr HAS_MEMCHR   /**/
1867
1868 /* HAS_MKSTEMP:
1869  *      This symbol, if defined, indicates that the mkstemp routine is
1870  *      available to exclusively create and open a uniquely named
1871  *      temporary file.
1872  */
1873 #$d_mkstemp HAS_MKSTEMP         /**/
1874
1875 /* HAS_MMAP:
1876  *      This symbol, if defined, indicates that the mmap system call is
1877  *      available to map a file into memory.
1878  */
1879 /* Mmap_t:
1880  *      This symbol holds the return type of the mmap() system call
1881  *      (and simultaneously the type of the first argument).
1882  *      Usually set to 'void *' or 'cadd_t'.
1883  */
1884 #$d_mmap HAS_MMAP               /**/
1885 #define Mmap_t $mmaptype        /**/
1886
1887 /* HAS_MSG:
1888  *      This symbol, if defined, indicates that the entire msg*(2) library is
1889  *      supported (IPC mechanism based on message queues).
1890  */
1891 #$d_msg HAS_MSG         /**/
1892
1893 /* HAS_SEM:
1894  *      This symbol, if defined, indicates that the entire sem*(2) library is
1895  *      supported.
1896  */
1897 #$d_sem HAS_SEM         /**/
1898
1899 /* HAS_SETGRENT:
1900  *      This symbol, if defined, indicates that the setgrent routine is
1901  *      available for initializing sequential access of the group database.
1902  */
1903 #$d_setgrent HAS_SETGRENT               /**/
1904
1905 /* HAS_SETGROUPS:
1906  *      This symbol, if defined, indicates that the setgroups() routine is
1907  *      available to set the list of process groups.  If unavailable, multiple
1908  *      groups are probably not supported.
1909  */
1910 #$d_setgrps HAS_SETGROUPS               /**/
1911
1912 /* HAS_SETHOSTENT:
1913  *      This symbol, if defined, indicates that the sethostent() routine is
1914  *      available.
1915  */
1916 #$d_sethent HAS_SETHOSTENT              /**/
1917
1918 /* HAS_SETNETENT:
1919  *      This symbol, if defined, indicates that the setnetent() routine is
1920  *      available.
1921  */
1922 #$d_setnent HAS_SETNETENT               /**/
1923
1924 /* HAS_SETPROTOENT:
1925  *      This symbol, if defined, indicates that the setprotoent() routine is
1926  *      available.
1927  */
1928 #$d_setpent HAS_SETPROTOENT             /**/
1929
1930 /* HAS_SETPGRP:
1931  *      This symbol, if defined, indicates that the setpgrp routine is
1932  *      available to set the current process group.
1933  */
1934 /* USE_BSD_SETPGRP:
1935  *      This symbol, if defined, indicates that setpgrp needs two
1936  *      arguments whereas USG one needs none.  See also HAS_SETPGID
1937  *      for a POSIX interface.
1938  */
1939 #$d_setpgrp HAS_SETPGRP         /**/
1940 #$d_bsdsetpgrp USE_BSD_SETPGRP  /**/
1941
1942 /* HAS_SETPWENT:
1943  *      This symbol, if defined, indicates that the setpwent routine is
1944  *      available for initializing sequential access of the passwd database.
1945  */
1946 #$d_setpwent HAS_SETPWENT               /**/
1947
1948 /* HAS_SETSERVENT:
1949  *      This symbol, if defined, indicates that the setservent() routine is
1950  *      available.
1951  */
1952 #$d_setsent HAS_SETSERVENT              /**/
1953
1954 /* HAS_SETVBUF:
1955  *      This symbol, if defined, indicates that the setvbuf routine is
1956  *      available to change buffering on an open stdio stream.
1957  *      to a line-buffered mode.
1958  */
1959 #$d_setvbuf HAS_SETVBUF         /**/
1960
1961 /* HAS_SHM:
1962  *      This symbol, if defined, indicates that the entire shm*(2) library is
1963  *      supported.
1964  */
1965 #$d_shm HAS_SHM         /**/
1966
1967 /* HAS_SOCKET:
1968  *      This symbol, if defined, indicates that the BSD socket interface is
1969  *      supported.
1970  */
1971 /* HAS_SOCKETPAIR:
1972  *      This symbol, if defined, indicates that the BSD socketpair() call is
1973  *      supported.
1974  */
1975 /* HAS_MSG_CTRUNC:
1976  *      This symbol, if defined, indicates that the MSG_CTRUNC is supported.
1977  *      Checking just with #ifdef might not be enough because this symbol
1978  *      has been known to be an enum.
1979  */
1980 /* HAS_MSG_DONTROUTE:
1981  *      This symbol, if defined, indicates that the MSG_DONTROUTE is supported.
1982  *      Checking just with #ifdef might not be enough because this symbol
1983  *      has been known to be an enum.
1984  */
1985 /* HAS_MSG_OOB:
1986  *      This symbol, if defined, indicates that the MSG_OOB is supported.
1987  *      Checking just with #ifdef might not be enough because this symbol
1988  *      has been known to be an enum.
1989  */
1990 /* HAS_MSG_PEEK:
1991  *      This symbol, if defined, indicates that the MSG_PEEK is supported.
1992  *      Checking just with #ifdef might not be enough because this symbol
1993  *      has been known to be an enum.
1994  */
1995 /* HAS_MSG_PROXY:
1996  *      This symbol, if defined, indicates that the MSG_PROXY is supported.
1997  *      Checking just with #ifdef might not be enough because this symbol
1998  *      has been known to be an enum.
1999  */
2000 /* HAS_SCM_RIGHTS:
2001  *      This symbol, if defined, indicates that the SCM_RIGHTS is supported.
2002  *      Checking just with #ifdef might not be enough because this symbol
2003  *      has been known to be an enum.
2004  */
2005 #$d_socket      HAS_SOCKET              /**/
2006 #$d_sockpair    HAS_SOCKETPAIR  /**/
2007 #$d_msg_ctrunc  HAS_MSG_CTRUNC  /**/
2008 #$d_msg_dontroute       HAS_MSG_DONTROUTE       /**/
2009 #$d_msg_oob     HAS_MSG_OOB     /**/
2010 #$d_msg_peek    HAS_MSG_PEEK    /**/
2011 #$d_msg_proxy   HAS_MSG_PROXY   /**/
2012 #$d_scm_rights  HAS_SCM_RIGHTS  /**/
2013
2014 /* USE_STAT_BLOCKS:
2015  *      This symbol is defined if this system has a stat structure declaring
2016  *      st_blksize and st_blocks.
2017  */
2018 #ifndef USE_STAT_BLOCKS
2019 #$d_statblks USE_STAT_BLOCKS    /**/
2020 #endif
2021
2022 /* HAS_STRERROR:
2023  *      This symbol, if defined, indicates that the strerror routine is
2024  *      available to translate error numbers to strings. See the writeup
2025  *      of Strerror() in this file before you try to define your own.
2026  */
2027 /* HAS_SYS_ERRLIST:
2028  *      This symbol, if defined, indicates that the sys_errlist array is
2029  *      available to translate error numbers to strings. The extern int
2030  *      sys_nerr gives the size of that table.
2031  */
2032 /* Strerror:
2033  *      This preprocessor symbol is defined as a macro if strerror() is
2034  *      not available to translate error numbers to strings but sys_errlist[]
2035  *      array is there.
2036  */
2037 #$d_strerror HAS_STRERROR               /**/
2038 #$d_syserrlst HAS_SYS_ERRLIST   /**/
2039 #define Strerror(e) $d_strerrm
2040
2041 /* HAS_STRTOUL:
2042  *      This symbol, if defined, indicates that the strtoul routine is
2043  *      available to provide conversion of strings to unsigned long.
2044  */
2045 #$d_strtoul HAS_STRTOUL /**/
2046
2047 /* HAS_UNION_SEMUN:
2048  *      This symbol, if defined, indicates that the union semun is
2049  *      defined by including <sys/sem.h>.  If not, the user code
2050  *      probably needs to define it as:
2051  *      union semun {
2052  *          int val;
2053  *          struct semid_ds *buf;
2054  *          unsigned short *array;
2055  *      }
2056  */
2057 /* USE_SEMCTL_SEMUN:
2058  *      This symbol, if defined, indicates that union semun is
2059  *      used for semctl IPC_STAT.
2060  */
2061 /* USE_SEMCTL_SEMID_DS:
2062  *      This symbol, if defined, indicates that struct semid_ds * is
2063  *      used for semctl IPC_STAT.
2064  */
2065 #$d_union_semun HAS_UNION_SEMUN /**/
2066 #$d_semctl_semun USE_SEMCTL_SEMUN       /**/
2067 #$d_semctl_semid_ds USE_SEMCTL_SEMID_DS /**/
2068
2069 /* HAS_VFORK:
2070  *      This symbol, if defined, indicates that vfork() exists.
2071  */
2072 #$d_vfork HAS_VFORK     /**/
2073
2074 /* Signal_t:
2075  *      This symbol's value is either "void" or "int", corresponding to the
2076  *      appropriate return type of a signal handler.  Thus, you can declare
2077  *      a signal handler using "Signal_t (*handler)()", and define the
2078  *      handler using "Signal_t handler(sig)".
2079  */
2080 #define Signal_t $signal_t      /* Signal handler's return type */
2081
2082 /* Groups_t:
2083  *      This symbol holds the type used for the second argument to
2084  *      getgroups() and setgroups().  Usually, this is the same as
2085  *      gidtype (gid_t) , but sometimes it isn't.
2086  *      It can be int, ushort, gid_t, etc... 
2087  *      It may be necessary to include <sys/types.h> to get any 
2088  *      typedef'ed information.  This is only required if you have
2089  *      getgroups() or setgroups()..
2090  */
2091 #if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
2092 #define Groups_t $groupstype    /* Type for 2nd arg to [sg]etgroups() */
2093 #endif
2094
2095 /* I_GRP:
2096  *      This symbol, if defined, indicates to the C program that it should
2097  *      include <grp.h>.
2098  */
2099 /* GRPASSWD:
2100  *      This symbol, if defined, indicates to the C program that struct group
2101  *      in <grp.h> contains gr_passwd.
2102  */
2103 #$i_grp I_GRP           /**/
2104 #$d_grpasswd GRPASSWD   /**/
2105
2106 /* I_NETDB:
2107  *      This symbol, if defined, indicates that <netdb.h> exists and
2108  *      should be included.
2109  */
2110 #$i_netdb I_NETDB               /**/
2111
2112 /* I_PWD:
2113  *      This symbol, if defined, indicates to the C program that it should
2114  *      include <pwd.h>.
2115  */
2116 /* PWQUOTA:
2117  *      This symbol, if defined, indicates to the C program that struct passwd
2118  *      contains pw_quota.
2119  */
2120 /* PWAGE:
2121  *      This symbol, if defined, indicates to the C program that struct passwd
2122  *      contains pw_age.
2123  */
2124 /* PWCHANGE:
2125  *      This symbol, if defined, indicates to the C program that struct passwd
2126  *      contains pw_change.
2127  */
2128 /* PWCLASS:
2129  *      This symbol, if defined, indicates to the C program that struct passwd
2130  *      contains pw_class.
2131  */
2132 /* PWEXPIRE:
2133  *      This symbol, if defined, indicates to the C program that struct passwd
2134  *      contains pw_expire.
2135  */
2136 /* PWCOMMENT:
2137  *      This symbol, if defined, indicates to the C program that struct passwd
2138  *      contains pw_comment.
2139  */
2140 /* PWGECOS:
2141  *      This symbol, if defined, indicates to the C program that struct passwd
2142  *      contains pw_gecos.
2143  */
2144 /* PWPASSWD:
2145  *      This symbol, if defined, indicates to the C program that struct passwd
2146  *      contains pw_passwd.
2147  */
2148 #$i_pwd I_PWD           /**/
2149 #$d_pwquota PWQUOTA     /**/
2150 #$d_pwage PWAGE /**/
2151 #$d_pwchange PWCHANGE   /**/
2152 #$d_pwclass PWCLASS     /**/
2153 #$d_pwexpire PWEXPIRE   /**/
2154 #$d_pwcomment PWCOMMENT /**/
2155 #$d_pwgecos PWGECOS     /**/
2156 #$d_pwpasswd PWPASSWD   /**/
2157
2158 /* I_SYSUIO:
2159  *      This symbol, if defined, indicates that <sys/uio.h> exists and
2160  *      should be included.
2161  */
2162 #$i_sysuio      I_SYSUIO                /**/
2163
2164 /* I_STDARG:
2165  *      This symbol, if defined, indicates that <stdarg.h> exists and should
2166  *      be included.
2167  */
2168 /* I_VARARGS:
2169  *      This symbol, if defined, indicates to the C program that it should
2170  *      include <varargs.h>.
2171  */
2172 #$i_stdarg I_STDARG             /**/
2173 #$i_varargs I_VARARGS   /**/
2174
2175 /* Free_t:
2176  *      This variable contains the return type of free().  It is usually
2177  * void, but occasionally int.
2178  */
2179 /* Malloc_t:
2180  *      This symbol is the type of pointer returned by malloc and realloc.
2181  */
2182 #define Malloc_t $malloctype                    /**/
2183 #define Free_t $freetype                        /**/
2184
2185 /* MYMALLOC:
2186  *      This symbol, if defined, indicates that we're using our own malloc.
2187  */
2188 #$d_mymalloc MYMALLOC                   /**/
2189
2190 /* SIG_NAME:
2191  *      This symbol contains a list of signal names in order of
2192  *      signal number. This is intended
2193  *      to be used as a static array initialization, like this:
2194  *              char *sig_name[] = { SIG_NAME };
2195  *      The signals in the list are separated with commas, and each signal
2196  *      is surrounded by double quotes. There is no leading SIG in the signal
2197  *      name, i.e. SIGQUIT is known as "QUIT".
2198  *      Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
2199  *      etc., where nn is the actual signal number (e.g. NUM37).
2200  *      The signal number for sig_name[i] is stored in sig_num[i].
2201  *      The last element is 0 to terminate the list with a NULL.  This
2202  *      corresponds to the 0 at the end of the sig_num list.
2203  */
2204 /* SIG_NUM:
2205  *      This symbol contains a list of signal numbers, in the same order as the
2206  *      SIG_NAME list. It is suitable for static array initialization, as in:
2207  *              int sig_num[] = { SIG_NUM };
2208  *      The signals in the list are separated with commas, and the indices
2209  *      within that list and the SIG_NAME list match, so it's easy to compute
2210  *      the signal name from a number or vice versa at the price of a small
2211  *      dynamic linear lookup. 
2212  *      Duplicates are allowed, but are moved to the end of the list.
2213  *      The signal number corresponding to sig_name[i] is sig_number[i].
2214  *      if (i < NSIG) then sig_number[i] == i.  
2215  *      The last element is 0, corresponding to the 0 at the end of
2216  *      the sig_name list.
2217  */
2218 /* SIG_SIZE:
2219  *      This variable contains the number of elements of the sig_name
2220  *      and sig_num arrays, excluding the final NULL entry.
2221  */
2222 #define SIG_NAME $sig_name_init         /**/
2223 #define SIG_NUM  $sig_num_init          /**/
2224 #define SIG_SIZE $sig_size                      /**/
2225
2226 /* STDCHAR:
2227  *      This symbol is defined to be the type of char used in stdio.h.
2228  *      It has the values "unsigned char" or "char".
2229  */
2230 #define STDCHAR $stdchar        /**/
2231
2232 /* VOIDFLAGS:
2233  *      This symbol indicates how much support of the void type is given by this
2234  *      compiler.  What various bits mean:
2235  *
2236  *          1 = supports declaration of void
2237  *          2 = supports arrays of pointers to functions returning void
2238  *          4 = supports comparisons between pointers to void functions and
2239  *                  addresses of void functions
2240  *          8 = suports declaration of generic void pointers
2241  *
2242  *      The package designer should define VOIDUSED to indicate the requirements
2243  *      of the package.  This can be done either by #defining VOIDUSED before
2244  *      including config.h, or by defining defvoidused in Myinit.U.  If the
2245  *      latter approach is taken, only those flags will be tested.  If the
2246  *      level of void support necessary is not present, defines void to int.
2247  */
2248 #ifndef VOIDUSED
2249 #define VOIDUSED $defvoidused
2250 #endif
2251 #define VOIDFLAGS $voidflags
2252 #if (VOIDFLAGS & VOIDUSED) != VOIDUSED
2253 #define void int                /* is void to be avoided? */
2254 #define M_VOID                  /* Xenix strikes again */
2255 #endif
2256
2257 /* USE_CROSS_COMPILE:
2258  *      This symbol, if defined, indicates that Perl is being cross-compiled.
2259  */
2260 /* PERL_TARGETARCH:
2261  *      This symbol, if defined, indicates the target architecture
2262  *      Perl has been cross-compiled to.  Undefined if not a cross-compile.
2263  */
2264 #ifndef USE_CROSS_COMPILE
2265 #$usecrosscompile       USE_CROSS_COMPILE       /**/
2266 #define PERL_TARGETARCH "$targetarch"   /**/
2267 #endif
2268
2269 /* HAS_ATOLF:
2270  *      This symbol, if defined, indicates that the atolf routine is
2271  *      available to convert strings into long doubles.
2272  */
2273 #$d_atolf HAS_ATOLF             /**/
2274
2275 /* HAS_ATOLL:
2276  *      This symbol, if defined, indicates that the atoll routine is
2277  *      available to convert strings into long longs.
2278  */
2279 #$d_atoll HAS_ATOLL             /**/
2280
2281 /* PERL_BINCOMPAT_5005:
2282  *      This symbol, if defined, indicates that this version of Perl should be
2283  *      binary-compatible with Perl 5.005.  This is impossible for builds
2284  *      that use features like threads and multiplicity it is always $undef
2285  *      for those versions.
2286  */
2287 #$d_bincompat5005 PERL_BINCOMPAT_5005                   /**/
2288
2289 /* HAS__FWALK:
2290  *      This symbol, if defined, indicates that the _fwalk system call is
2291  *      available to apply a function to all the file handles.
2292  */
2293 #$d__fwalk HAS__FWALK           /**/
2294
2295 /* HAS_CLASS:
2296  *      This symbol, if defined, indicates that the class routine is
2297  *      available to classify doubles.  Available for example in AIX.
2298  *      The returned values are defined in <float.h> and are:
2299  *
2300  *      FP_PLUS_NORM    Positive normalized, nonzero
2301  *      FP_MINUS_NORM   Negative normalized, nonzero
2302  *      FP_PLUS_DENORM  Positive denormalized, nonzero
2303  *      FP_MINUS_DENORM Negative denormalized, nonzero
2304  *      FP_PLUS_ZERO    +0.0
2305  *      FP_MINUS_ZERO   -0.0
2306  *      FP_PLUS_INF     +INF
2307  *      FP_MINUS_INF    -INF
2308  *      FP_NANS         Signaling Not a Number (NaNS)
2309  *      FP_NANQ         Quiet Not a Number (NaNQ)
2310  */
2311 #$d_class HAS_CLASS             /**/
2312
2313 /* HAS_STRUCT_CMSGHDR:
2314  *      This symbol, if defined, indicates that the struct cmsghdr
2315  *      is supported.
2316  */
2317 #$d_cmsghdr_s HAS_STRUCT_CMSGHDR        /**/
2318
2319 /* HAS_DBMINIT_PROTO:
2320  *      This symbol, if defined, indicates that the system provides
2321  *      a prototype for the dbminit() function.  Otherwise, it is up
2322  *      to the program to supply one.  A good guess is
2323  *              extern int dbminit(char *);
2324  */
2325 #$d_dbminitproto        HAS_DBMINIT_PROTO       /**/
2326
2327 /* DLSYM_NEEDS_UNDERSCORE:
2328  *      This symbol, if defined, indicates that we need to prepend an
2329  *      underscore to the symbol name before calling dlsym().  This only
2330  *      makes sense if you *have* dlsym, which we will presume is the
2331  *      case if you're using dl_dlopen.xs.
2332  */
2333 #$d_dlsymun     DLSYM_NEEDS_UNDERSCORE  /**/
2334
2335 /* HAS_FCHDIR:
2336  *      This symbol, if defined, indicates that the fchdir routine is
2337  *      available to change directory using a file descriptor.
2338  */
2339 #$d_fchdir HAS_FCHDIR           /**/
2340
2341 /* FCNTL_CAN_LOCK:
2342  *      This symbol, if defined, indicates that fcntl() can be used
2343  *      for file locking.  Normally on Unix systems this is defined.
2344  *      It may be undefined on VMS.
2345  */
2346 #$d_fcntl_can_lock FCNTL_CAN_LOCK               /**/
2347
2348 /* HAS_FINITE:
2349  *      This symbol, if defined, indicates that the finite routine is
2350  *      available to check whether a double is finite (non-infinity non-NaN).
2351  */
2352 #$d_finite HAS_FINITE           /**/
2353
2354 /* HAS_FINITEL:
2355  *      This symbol, if defined, indicates that the finitel routine is
2356  *      available to check whether a long double is finite
2357  *      (non-infinity non-NaN).
2358  */
2359 #$d_finitel HAS_FINITEL         /**/
2360
2361 /* HAS_FLOCK_PROTO:
2362  *      This symbol, if defined, indicates that the system provides
2363  *      a prototype for the flock() function.  Otherwise, it is up
2364  *      to the program to supply one.  A good guess is
2365  *              extern int flock(int, int);
2366  */
2367 #$d_flockproto  HAS_FLOCK_PROTO /**/
2368
2369 /* HAS_FP_CLASS:
2370  *      This symbol, if defined, indicates that the fp_class routine is
2371  *      available to classify doubles.  Available for example in Digital UNIX.
2372  *      The returned values are defined in <math.h> and are:
2373  *
2374  *      FP_SNAN           Signaling NaN (Not-a-Number)
2375  *      FP_QNAN           Quiet NaN (Not-a-Number)
2376  *      FP_POS_INF        +infinity
2377  *      FP_NEG_INF        -infinity
2378  *      FP_POS_NORM       Positive normalized
2379  *      FP_NEG_NORM       Negative normalized
2380  *      FP_POS_DENORM     Positive denormalized
2381  *      FP_NEG_DENORM     Negative denormalized
2382  *      FP_POS_ZERO       +0.0 (positive zero)
2383  *      FP_NEG_ZERO       -0.0 (negative zero)
2384  */
2385 #$d_fp_class HAS_FP_CLASS               /**/
2386
2387 /* HAS_FPCLASS:
2388  *      This symbol, if defined, indicates that the fpclass routine is
2389  *      available to classify doubles.  Available for example in Solaris/SVR4.
2390  *      The returned values are defined in <ieeefp.h> and are:
2391  *
2392  *      FP_SNAN         signaling NaN
2393  *      FP_QNAN         quiet NaN
2394  *      FP_NINF         negative infinity
2395  *      FP_PINF         positive infinity
2396  *      FP_NDENORM      negative denormalized non-zero
2397  *      FP_PDENORM      positive denormalized non-zero
2398  *      FP_NZERO        negative zero
2399  *      FP_PZERO        positive zero
2400  *      FP_NNORM        negative normalized non-zero
2401  *      FP_PNORM        positive normalized non-zero
2402  */
2403 #$d_fpclass HAS_FPCLASS         /**/
2404
2405 /* HAS_FPCLASSIFY:
2406  *      This symbol, if defined, indicates that the fpclassify routine is
2407  *      available to classify doubles.  Available for example in HP-UX.
2408  *      The returned values are defined in <math.h> and are
2409  *
2410  *           FP_NORMAL     Normalized
2411  *           FP_ZERO       Zero
2412  *           FP_INFINITE   Infinity
2413  *           FP_SUBNORMAL  Denormalized
2414  *           FP_NAN        NaN
2415  *
2416  */
2417 #$d_fpclassify HAS_FPCLASSIFY           /**/
2418
2419 /* HAS_FPCLASSL:
2420  *      This symbol, if defined, indicates that the fpclassl routine is
2421  *      available to classify long doubles.  Available for example in IRIX.
2422  *      The returned values are defined in <ieeefp.h> and are:
2423  *
2424  *      FP_SNAN         signaling NaN
2425  *      FP_QNAN         quiet NaN
2426  *      FP_NINF         negative infinity
2427  *      FP_PINF         positive infinity
2428  *      FP_NDENORM      negative denormalized non-zero
2429  *      FP_PDENORM      positive denormalized non-zero
2430  *      FP_NZERO        negative zero
2431  *      FP_PZERO        positive zero
2432  *      FP_NNORM        negative normalized non-zero
2433  *      FP_PNORM        positive normalized non-zero
2434  */
2435 #$d_fpclassl HAS_FPCLASSL               /**/
2436
2437 /* HAS_FPOS64_T:
2438  *      This symbol will be defined if the C compiler supports fpos64_t.
2439  */
2440 #$d_fpos64_t    HAS_FPOS64_T            /**/
2441
2442 /* HAS_FREXPL:
2443  *      This symbol, if defined, indicates that the frexpl routine is
2444  *      available to break a long double floating-point number into
2445  *      a normalized fraction and an integral power of 2.
2446  */
2447 #$d_frexpl HAS_FREXPL           /**/
2448
2449 /* HAS_STRUCT_FS_DATA:
2450  *      This symbol, if defined, indicates that the struct fs_data
2451  *      to do statfs() is supported.
2452  */
2453 #$d_fs_data_s HAS_STRUCT_FS_DATA        /**/
2454
2455 /* HAS_FSEEKO:
2456  *      This symbol, if defined, indicates that the fseeko routine is
2457  *      available to fseek beyond 32 bits (useful for ILP32 hosts).
2458  */
2459 #$d_fseeko HAS_FSEEKO           /**/
2460
2461 /* HAS_FSTATFS:
2462  *      This symbol, if defined, indicates that the fstatfs routine is
2463  *      available to stat filesystems by file descriptors.
2464  */
2465 #$d_fstatfs HAS_FSTATFS         /**/
2466
2467 /* HAS_FSYNC:
2468  *      This symbol, if defined, indicates that the fsync routine is
2469  *      available to write a file's modified data and attributes to
2470  *      permanent storage.
2471  */
2472 #$d_fsync HAS_FSYNC             /**/
2473
2474 /* HAS_FTELLO:
2475  *      This symbol, if defined, indicates that the ftello routine is
2476  *      available to ftell beyond 32 bits (useful for ILP32 hosts).
2477  */
2478 #$d_ftello HAS_FTELLO           /**/
2479
2480 /* HAS_GETCWD:
2481  *      This symbol, if defined, indicates that the getcwd routine is
2482  *      available to get the current working directory.
2483  */
2484 #$d_getcwd HAS_GETCWD           /**/
2485
2486 /* HAS_GETESPWNAM:
2487  *      This symbol, if defined, indicates that the getespwnam system call is
2488  *      available to retrieve enchanced (shadow) password entries by name.
2489  */
2490 #$d_getespwnam HAS_GETESPWNAM           /**/
2491
2492 /* HAS_GETFSSTAT:
2493  *      This symbol, if defined, indicates that the getfsstat routine is
2494  *      available to stat filesystems in bulk.
2495  */
2496 #$d_getfsstat HAS_GETFSSTAT             /**/
2497
2498 /* HAS_GETITIMER:
2499  *      This symbol, if defined, indicates that the getitimer routine is
2500  *      available to return interval timers.
2501  */
2502 #$d_getitimer HAS_GETITIMER             /**/
2503
2504 /* HAS_GETMNT:
2505  *      This symbol, if defined, indicates that the getmnt routine is
2506  *      available to get filesystem mount info by filename.
2507  */
2508 #$d_getmnt HAS_GETMNT           /**/
2509
2510 /* HAS_GETMNTENT:
2511  *      This symbol, if defined, indicates that the getmntent routine is
2512  *      available to iterate through mounted file systems to get their info.
2513  */
2514 #$d_getmntent HAS_GETMNTENT             /**/
2515
2516 /* HAS_GETPRPWNAM:
2517  *      This symbol, if defined, indicates that the getprpwnam system call is
2518  *      available to retrieve protected (shadow) password entries by name.
2519  */
2520 #$d_getprpwnam HAS_GETPRPWNAM           /**/
2521
2522 /* HAS_GETSPNAM:
2523  *      This symbol, if defined, indicates that the getspnam system call is
2524  *      available to retrieve SysV shadow password entries by name.
2525  */
2526 #$d_getspnam HAS_GETSPNAM               /**/
2527
2528 /* HAS_HASMNTOPT:
2529  *      This symbol, if defined, indicates that the hasmntopt routine is
2530  *      available to query the mount options of file systems.
2531  */
2532 #$d_hasmntopt HAS_HASMNTOPT             /**/
2533
2534 /* HAS_INT64_T:
2535  *     This symbol will defined if the C compiler supports int64_t.
2536  *     Usually the <inttypes.h> needs to be included, but sometimes
2537  *      <sys/types.h> is enough.
2538  */
2539 #$d_int64_t     HAS_INT64_T               /**/
2540
2541 /* HAS_ISFINITE:
2542  *      This symbol, if defined, indicates that the isfinite routine is
2543  *      available to check whether a double is finite (non-infinity non-NaN).
2544  */
2545 #$d_isfinite HAS_ISFINITE               /**/
2546
2547 /* HAS_ISINF:
2548  *      This symbol, if defined, indicates that the isinf routine is
2549  *      available to check whether a double is an infinity.
2550  */
2551 #$d_isinf HAS_ISINF             /**/
2552
2553 /* HAS_ISNAN:
2554  *      This symbol, if defined, indicates that the isnan routine is
2555  *      available to check whether a double is a NaN.
2556  */
2557 #$d_isnan HAS_ISNAN             /**/
2558
2559 /* HAS_ISNANL:
2560  *      This symbol, if defined, indicates that the isnanl routine is
2561  *      available to check whether a long double is a NaN.
2562  */
2563 #$d_isnanl HAS_ISNANL           /**/
2564
2565 /* HAS_LDBL_DIG:
2566  *      This symbol, if defined, indicates that this system's <float.h>
2567  *      or <limits.h> defines the symbol LDBL_DIG, which is the number
2568  *      of significant digits in a long double precision number. Unlike
2569  *      for DBL_DIG, there's no good guess for LDBL_DIG if it is undefined.
2570  */
2571 #$d_ldbl_dig HAS_LDBL_DIG       /* */
2572
2573 /* HAS_MADVISE:
2574  *      This symbol, if defined, indicates that the madvise system call is
2575  *      available to map a file into memory.
2576  */
2577 #$d_madvise HAS_MADVISE         /**/
2578
2579 /* HAS_MKDTEMP:
2580  *      This symbol, if defined, indicates that the mkdtemp routine is
2581  *      available to exclusively create a uniquely named temporary directory.
2582  */
2583 #$d_mkdtemp HAS_MKDTEMP         /**/
2584
2585 /* HAS_MKSTEMPS:
2586  *      This symbol, if defined, indicates that the mkstemps routine is
2587  *      available to excluslvely create and open a uniquely named
2588  *      (with a suffix) temporary file.
2589  */
2590 #$d_mkstemps HAS_MKSTEMPS               /**/
2591
2592 /* HAS_MODFL:
2593  *      This symbol, if defined, indicates that the modfl routine is
2594  *      available to split a long double x into a fractional part f and
2595  *      an integer part i such that |f| < 1.0 and (f + i) = x.
2596  */
2597 /* HAS_MODFL_POW32_BUG:
2598  *      This symbol, if defined, indicates that the modfl routine is
2599  *      broken for long doubles >= pow(2, 32).
2600  *      For example from 4294967303.150000 one would get 4294967302.000000
2601  *      and 1.150000.  The bug has been seen in certain versions of glibc,
2602  *      release 2.2.2 is known to be okay.
2603  */
2604 #$d_modfl HAS_MODFL             /**/
2605 #$d_modfl_pow32_bug HAS_MODFL_POW32_BUG         /**/
2606
2607 /* HAS_MPROTECT:
2608  *      This symbol, if defined, indicates that the mprotect system call is
2609  *      available to modify the access protection of a memory mapped file.
2610  */
2611 #$d_mprotect HAS_MPROTECT               /**/
2612
2613 /* HAS_STRUCT_MSGHDR:
2614  *      This symbol, if defined, indicates that the struct msghdr
2615  *      is supported.
2616  */
2617 #$d_msghdr_s HAS_STRUCT_MSGHDR  /**/
2618
2619 /* HAS_NL_LANGINFO:
2620  *      This symbol, if defined, indicates that the nl_langinfo routine is
2621  *      available to return local data.  You will also need <langinfo.h>
2622  *      and therefore I_LANGINFO.
2623  */
2624 #$d_nl_langinfo HAS_NL_LANGINFO         /**/
2625
2626 /* HAS_OFF64_T:
2627  *      This symbol will be defined if the C compiler supports off64_t.
2628  */
2629 #$d_off64_t     HAS_OFF64_T             /**/
2630
2631 /* HAS_READV:
2632  *      This symbol, if defined, indicates that the readv routine is
2633  *      available to do gather reads.  You will also need <sys/uio.h>
2634  *      and there I_SYSUIO.
2635  */
2636 #$d_readv HAS_READV             /**/
2637
2638 /* HAS_RECVMSG:
2639  *      This symbol, if defined, indicates that the recvmsg routine is
2640  *      available to send structured socket messages.
2641  */
2642 #$d_recvmsg HAS_RECVMSG         /**/
2643
2644 /* HAS_SBRK_PROTO:
2645  *      This symbol, if defined, indicates that the system provides
2646  *      a prototype for the sbrk() function.  Otherwise, it is up
2647  *      to the program to supply one.  Good guesses are
2648  *              extern void* sbrk _((int));
2649  *              extern void* sbrk _((size_t));
2650  */
2651 #$d_sbrkproto   HAS_SBRK_PROTO  /**/
2652
2653 /* HAS_SENDMSG:
2654  *      This symbol, if defined, indicates that the sendmsg routine is
2655  *      available to send structured socket messages.
2656  */
2657 #$d_sendmsg HAS_SENDMSG         /**/
2658
2659 /* HAS_SETITIMER:
2660  *      This symbol, if defined, indicates that the setitimer routine is
2661  *      available to set interval timers.
2662  */
2663 #$d_setitimer HAS_SETITIMER             /**/
2664
2665 /* HAS_SETPROCTITLE:
2666  *      This symbol, if defined, indicates that the setproctitle routine is
2667  *      available to set process title.
2668  */
2669 #$d_setproctitle HAS_SETPROCTITLE               /**/
2670
2671 /* USE_SFIO:
2672  *      This symbol, if defined, indicates that sfio should
2673  *      be used.
2674  */
2675 #$d_sfio        USE_SFIO                /**/
2676
2677 /* HAS_SIGPROCMASK:
2678  *      This symbol, if defined, indicates that the sigprocmask
2679  *      system call is available to examine or change the signal mask
2680  *      of the calling process.
2681  */
2682 #$d_sigprocmask HAS_SIGPROCMASK         /**/
2683
2684 /* HAS_SOCKATMARK:
2685  *      This symbol, if defined, indicates that the sockatmark routine is
2686  *      available to test whether a socket is at the out-of-band mark.
2687  */
2688 #$d_sockatmark HAS_SOCKATMARK           /**/
2689
2690 /* HAS_SOCKATMARK_PROTO:
2691  *      This symbol, if defined, indicates that the system provides
2692  *      a prototype for the sockatmark() function.  Otherwise, it is up
2693  *      to the program to supply one.  A good guess is
2694  *              extern int sockatmark _((int));
2695  */
2696 #$d_sockatmarkproto     HAS_SOCKATMARK_PROTO    /**/
2697
2698 /* HAS_SOCKS5_INIT:
2699  *      This symbol, if defined, indicates that the socks5_init routine is
2700  *      available to initialize SOCKS 5.
2701  */
2702 #$d_socks5_init HAS_SOCKS5_INIT         /**/
2703
2704 /* HAS_SQRTL:
2705  *      This symbol, if defined, indicates that the sqrtl routine is
2706  *      available to do long double square roots.
2707  */
2708 #$d_sqrtl HAS_SQRTL             /**/
2709
2710 /* HAS_SETRESGID_PROTO:
2711  *      This symbol, if defined, indicates that the system provides
2712  *      a prototype for the setresgid() function.  Otherwise, it is up
2713  *      to the program to supply one.  Good guesses are
2714  *              extern int setresgid(uid_t ruid, uid_t euid, uid_t suid);
2715  */
2716 #$d_sresgproto  HAS_SETRESGID_PROTO     /**/
2717
2718 /* HAS_SETRESUID_PROTO:
2719  *      This symbol, if defined, indicates that the system provides
2720  *      a prototype for the setresuid() function.  Otherwise, it is up
2721  *      to the program to supply one.  Good guesses are
2722  *              extern int setresuid(uid_t ruid, uid_t euid, uid_t suid);
2723  */
2724 #$d_sresuproto  HAS_SETRESUID_PROTO     /**/
2725
2726 /* HAS_STRUCT_STATFS_F_FLAGS:
2727  *      This symbol, if defined, indicates that the struct statfs
2728  *      does have the f_flags member containing the mount flags of
2729  *      the filesystem containing the file.
2730  *      This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3),
2731  *      not from <sys/statfs.h> (SYSV).  Older BSDs (like Ultrix) do not
2732  *      have statfs() and struct statfs, they have ustat() and getmnt()
2733  *      with struct ustat and struct fs_data.
2734  */
2735 #$d_statfs_f_flags HAS_STRUCT_STATFS_F_FLAGS            /**/
2736
2737 /* HAS_STRUCT_STATFS:
2738  *      This symbol, if defined, indicates that the struct statfs
2739  *      to do statfs() is supported.
2740  */
2741 #$d_statfs_s HAS_STRUCT_STATFS  /**/
2742
2743 /* HAS_FSTATVFS:
2744  *      This symbol, if defined, indicates that the fstatvfs routine is
2745  *      available to stat filesystems by file descriptors.
2746  */
2747 #$d_fstatvfs HAS_FSTATVFS               /**/
2748
2749 /* HAS_STRFTIME:
2750  *      This symbol, if defined, indicates that the strftime routine is
2751  *      available to do time formatting.
2752  */
2753 #$d_strftime HAS_STRFTIME               /**/
2754
2755 /* HAS_STRTOLD:
2756  *      This symbol, if defined, indicates that the strtold routine is
2757  *      available to convert strings to long doubles.
2758  */
2759 #$d_strtold HAS_STRTOLD         /**/
2760
2761 /* HAS_STRTOLL:
2762  *      This symbol, if defined, indicates that the strtoll routine is
2763  *      available to convert strings to long longs.
2764  */
2765 #$d_strtoll HAS_STRTOLL         /**/
2766
2767 /* HAS_STRTOQ:
2768  *      This symbol, if defined, indicates that the strtoq routine is
2769  *      available to convert strings to long longs (quads).
2770  */
2771 #$d_strtoq HAS_STRTOQ           /**/
2772
2773 /* HAS_STRTOULL:
2774  *      This symbol, if defined, indicates that the strtoull routine is
2775  *      available to convert strings to unsigned long longs.
2776  */
2777 #$d_strtoull HAS_STRTOULL               /**/
2778
2779 /* HAS_STRTOUQ:
2780  *      This symbol, if defined, indicates that the strtouq routine is
2781  *      available to convert strings to unsigned long longs (quads).
2782  */
2783 #$d_strtouq HAS_STRTOUQ         /**/
2784
2785 /* HAS_SYSCALL_PROTO:
2786  *      This symbol, if defined, indicates that the system provides
2787  *      a prototype for the syscall() function.  Otherwise, it is up
2788  *      to the program to supply one.  Good guesses are
2789  *              extern int syscall(int,  ...);
2790  *              extern int syscall(long, ...);
2791  */
2792 #$d_syscallproto        HAS_SYSCALL_PROTO       /**/
2793
2794 /* HAS_TELLDIR_PROTO:
2795  *      This symbol, if defined, indicates that the system provides
2796  *      a prototype for the telldir() function.  Otherwise, it is up
2797  *      to the program to supply one.  A good guess is
2798  *              extern long telldir _((DIR*));
2799  */
2800 #$d_telldirproto        HAS_TELLDIR_PROTO       /**/
2801
2802 /* U32_ALIGNMENT_REQUIRED:
2803  *      This symbol, if defined, indicates that you must access
2804  *      character data through U32-aligned pointers.
2805  */
2806 #$d_u32align U32_ALIGNMENT_REQUIRED     /**/
2807
2808 /* HAS_UALARM:
2809  *      This symbol, if defined, indicates that the ualarm routine is
2810  *      available to do alarms with microsecond granularity.
2811  */
2812 #$d_ualarm HAS_UALARM           /**/
2813
2814 /* HAS_UNORDERED:
2815  *      This symbol, if defined, indicates that the unordered routine is
2816  *      available to check whether two doubles are unordered
2817  *      (effectively: whether either of them is NaN)
2818  */
2819 #$d_unordered HAS_UNORDERED             /**/
2820
2821 /* HAS_USLEEP_PROTO:
2822  *      This symbol, if defined, indicates that the system provides
2823  *      a prototype for the usleep() function.  Otherwise, it is up
2824  *      to the program to supply one.  A good guess is
2825  *              extern int usleep(useconds_t);
2826  */
2827 #$d_usleepproto HAS_USLEEP_PROTO        /**/
2828
2829 /* HAS_USTAT:
2830  *      This symbol, if defined, indicates that the ustat system call is
2831  *      available to query file system statistics by dev_t.
2832  */
2833 #$d_ustat HAS_USTAT             /**/
2834
2835 /* HAS_WRITEV:
2836  *      This symbol, if defined, indicates that the writev routine is
2837  *      available to do scatter writes.
2838  */
2839 #$d_writev HAS_WRITEV           /**/
2840
2841 /* USE_DYNAMIC_LOADING:
2842  *      This symbol, if defined, indicates that dynamic loading of
2843  *      some sort is available.
2844  */
2845 #$usedl USE_DYNAMIC_LOADING             /**/
2846
2847 /* FFLUSH_NULL:
2848  *      This symbol, if defined, tells that fflush(NULL) does flush
2849  *      all pending stdio output.
2850  */
2851 /* FFLUSH_ALL:
2852  *      This symbol, if defined, tells that to flush
2853  *      all pending stdio output one must loop through all
2854  *      the stdio file handles stored in an array and fflush them.
2855  *      Note that if fflushNULL is defined, fflushall will not
2856  *      even be probed for and will be left undefined.
2857  */
2858 #$fflushNULL    FFLUSH_NULL             /**/
2859 #$fflushall     FFLUSH_ALL              /**/
2860
2861 /* DB_Prefix_t:
2862  *      This symbol contains the type of the prefix structure element
2863  *      in the <db.h> header file.  In older versions of DB, it was
2864  *      int, while in newer ones it is u_int32_t.
2865  */
2866 /* DB_Hash_t:
2867  *      This symbol contains the type of the prefix structure element
2868  *      in the <db.h> header file.  In older versions of DB, it was
2869  *      int, while in newer ones it is size_t.
2870  */
2871 /* DB_VERSION_MAJOR_CFG:
2872  *      This symbol, if defined, defines the major version number of
2873  *      Berkeley DB found in the <db.h> header when Perl was configured.
2874  */
2875 /* DB_VERSION_MINOR_CFG:
2876  *      This symbol, if defined, defines the minor version number of
2877  *      Berkeley DB found in the <db.h> header when Perl was configured.
2878  *      For DB version 1 this is always 0.
2879  */
2880 /* DB_VERSION_PATCH_CFG:
2881  *      This symbol, if defined, defines the patch version number of
2882  *      Berkeley DB found in the <db.h> header when Perl was configured.
2883  *      For DB version 1 this is always 0.
2884  */
2885 #define DB_Hash_t       $db_hashtype            /**/
2886 #define DB_Prefix_t     $db_prefixtype          /**/
2887 #define DB_VERSION_MAJOR_CFG    $db_version_major       /**/
2888 #define DB_VERSION_MINOR_CFG    $db_version_minor       /**/
2889 #define DB_VERSION_PATCH_CFG    $db_version_patch       /**/
2890
2891 /* I_FP:
2892  *      This symbol, if defined, indicates that <fp.h> exists and
2893  *      should be included.
2894  */
2895 #$i_fp  I_FP            /**/
2896
2897 /* I_FP_CLASS:
2898  *      This symbol, if defined, indicates that <fp_class.h> exists and
2899  *      should be included.
2900  */
2901 #$i_fp_class    I_FP_CLASS              /**/
2902
2903 /* I_IEEEFP:
2904  *      This symbol, if defined, indicates that <ieeefp.h> exists and
2905  *      should be included.
2906  */
2907 #$i_ieeefp      I_IEEEFP                /**/
2908
2909 /* I_INTTYPES:
2910  *     This symbol, if defined, indicates to the C program that it should
2911  *     include <inttypes.h>.
2912  */
2913 #$i_inttypes   I_INTTYPES                /**/
2914
2915 /* I_LANGINFO:
2916  *      This symbol, if defined, indicates that <langinfo.h> exists and
2917  *      should be included.
2918  */
2919 #$i_langinfo    I_LANGINFO              /**/
2920
2921 /* I_LIBUTIL:
2922  *      This symbol, if defined, indicates that <libutil.h> exists and
2923  *      should be included.
2924  */
2925 #$i_libutil     I_LIBUTIL               /**/
2926
2927 /* I_MNTENT:
2928  *      This symbol, if defined, indicates that <mntent.h> exists and
2929  *      should be included.
2930  */
2931 #$i_mntent      I_MNTENT                /**/
2932
2933 /* I_NETINET_TCP:
2934  *     This symbol, if defined, indicates to the C program that it should
2935  *     include <netinet/tcp.h>.
2936  */
2937 #$i_netinettcp   I_NETINET_TCP                /**/
2938
2939 /* I_POLL:
2940  *      This symbol, if defined, indicates that <poll.h> exists and
2941  *      should be included.
2942  */
2943 #$i_poll        I_POLL          /**/
2944
2945 /* I_PROT:
2946  *      This symbol, if defined, indicates that <prot.h> exists and
2947  *      should be included.
2948  */
2949 #$i_prot        I_PROT          /**/
2950
2951 /* I_SHADOW:
2952  *      This symbol, if defined, indicates that <shadow.h> exists and
2953  *      should be included.
2954  */
2955 #$i_shadow      I_SHADOW                /**/
2956
2957 /* I_SOCKS:
2958  *      This symbol, if defined, indicates that <socks.h> exists and
2959  *      should be included.
2960  */
2961 #$i_socks       I_SOCKS         /**/
2962
2963 /* I_SUNMATH:
2964  *      This symbol, if defined, indicates that <sunmath.h> exists and
2965  *      should be included.
2966  */
2967 #$i_sunmath     I_SUNMATH               /**/
2968
2969 /* I_SYSLOG:
2970  *      This symbol, if defined, indicates that <syslog.h> exists and
2971  *      should be included.
2972  */
2973 #$i_syslog      I_SYSLOG                /**/
2974
2975 /* I_SYSMODE:
2976  *      This symbol, if defined, indicates that <sys/mode.h> exists and
2977  *      should be included.
2978  */
2979 #$i_sysmode     I_SYSMODE               /**/
2980
2981 /* I_SYS_MOUNT:
2982  *      This symbol, if defined, indicates that <sys/mount.h> exists and
2983  *      should be included.
2984  */
2985 #$i_sysmount    I_SYS_MOUNT             /**/
2986
2987 /* I_SYS_STATFS:
2988  *      This symbol, if defined, indicates that <sys/statfs.h> exists.
2989  */
2990 #$i_sysstatfs   I_SYS_STATFS            /**/
2991
2992 /* I_SYS_STATVFS:
2993  *      This symbol, if defined, indicates that <sys/statvfs.h> exists and
2994  *      should be included.
2995  */
2996 #$i_sysstatvfs  I_SYS_STATVFS           /**/
2997
2998 /* I_SYSUTSNAME:
2999  *      This symbol, if defined, indicates that <sys/utsname.h> exists and
3000  *      should be included.
3001  */
3002 #$i_sysutsname  I_SYSUTSNAME            /**/
3003
3004 /* I_SYS_VFS:
3005  *      This symbol, if defined, indicates that <sys/vfs.h> exists and
3006  *      should be included.
3007  */
3008 #$i_sysvfs      I_SYS_VFS               /**/
3009
3010 /* I_USTAT:
3011  *      This symbol, if defined, indicates that <ustat.h> exists and
3012  *      should be included.
3013  */
3014 #$i_ustat       I_USTAT         /**/
3015
3016 /* PERL_PRIfldbl:
3017  *      This symbol, if defined, contains the string used by stdio to
3018  *      format long doubles (format 'f') for output.
3019  */
3020 /* PERL_PRIgldbl:
3021  *      This symbol, if defined, contains the string used by stdio to
3022  *      format long doubles (format 'g') for output.
3023  */
3024 /* PERL_PRIeldbl:
3025  *      This symbol, if defined, contains the string used by stdio to
3026  *      format long doubles (format 'e') for output.
3027  */
3028 /* PERL_SCNfldbl:
3029  *      This symbol, if defined, contains the string used by stdio to
3030  *      format long doubles (format 'f') for input.
3031  */
3032 #$d_PRIfldbl PERL_PRIfldbl      $sPRIfldbl      /**/
3033 #$d_PRIgldbl PERL_PRIgldbl      $sPRIgldbl      /**/
3034 #$d_PRIeldbl PERL_PRIeldbl      $sPRIeldbl      /**/
3035 #$d_SCNfldbl PERL_SCNfldbl      $sSCNfldbl      /**/
3036
3037 /* NEED_VA_COPY:
3038  *      This symbol, if defined, indicates that the system stores
3039  *      the variable argument list datatype, va_list, in a format
3040  *      that cannot be copied by simple assignment, so that some
3041  *      other means must be used when copying is required.
3042  *      As such systems vary in their provision (or non-provision)
3043  *      of copying mechanisms, handy.h defines a platform-
3044  *      independent macro, Perl_va_copy(src, dst), to do the job.
3045  */
3046 #$need_va_copy  NEED_VA_COPY            /**/
3047
3048 /* IVTYPE:
3049  *      This symbol defines the C type used for Perl's IV.
3050  */
3051 /* UVTYPE:
3052  *      This symbol defines the C type used for Perl's UV.
3053  */
3054 /* I8TYPE:
3055  *      This symbol defines the C type used for Perl's I8.
3056  */
3057 /* U8TYPE:
3058  *      This symbol defines the C type used for Perl's U8.
3059  */
3060 /* I16TYPE:
3061  *      This symbol defines the C type used for Perl's I16.
3062  */
3063 /* U16TYPE:
3064  *      This symbol defines the C type used for Perl's U16.
3065  */
3066 /* I32TYPE:
3067  *      This symbol defines the C type used for Perl's I32.
3068  */
3069 /* U32TYPE:
3070  *      This symbol defines the C type used for Perl's U32.
3071  */
3072 /* I64TYPE:
3073  *      This symbol defines the C type used for Perl's I64.
3074  */
3075 /* U64TYPE:
3076  *      This symbol defines the C type used for Perl's U64.
3077  */
3078 /* NVTYPE:
3079  *      This symbol defines the C type used for Perl's NV.
3080  */
3081 /* IVSIZE:
3082  *      This symbol contains the sizeof(IV).
3083  */
3084 /* UVSIZE:
3085  *      This symbol contains the sizeof(UV).
3086  */
3087 /* I8SIZE:
3088  *      This symbol contains the sizeof(I8).
3089  */
3090 /* U8SIZE:
3091  *      This symbol contains the sizeof(U8).
3092  */
3093 /* I16SIZE:
3094  *      This symbol contains the sizeof(I16).
3095  */
3096 /* U16SIZE:
3097  *      This symbol contains the sizeof(U16).
3098  */
3099 /* I32SIZE:
3100  *      This symbol contains the sizeof(I32).
3101  */
3102 /* U32SIZE:
3103  *      This symbol contains the sizeof(U32).
3104  */
3105 /* I64SIZE:
3106  *      This symbol contains the sizeof(I64).
3107  */
3108 /* U64SIZE:
3109  *      This symbol contains the sizeof(U64).
3110  */
3111 /* NVSIZE:
3112  *      This symbol contains the sizeof(NV).
3113  */
3114 /* NV_PRESERVES_UV:
3115  *      This symbol, if defined, indicates that a variable of type NVTYPE
3116  *      can preserve all the bits of a variable of type UVTYPE.
3117  */
3118 /* NV_PRESERVES_UV_BITS:
3119  *      This symbol contains the number of bits a variable of type NVTYPE
3120  *      can preserve of a variable of type UVTYPE.
3121  */
3122 #define IVTYPE          $ivtype         /**/
3123 #define UVTYPE          $uvtype         /**/
3124 #define I8TYPE          $i8type         /**/
3125 #define U8TYPE          $u8type         /**/
3126 #define I16TYPE         $i16type        /**/
3127 #define U16TYPE         $u16type        /**/
3128 #define I32TYPE         $i32type        /**/
3129 #define U32TYPE         $u32type        /**/
3130 #ifdef HAS_QUAD
3131 #define I64TYPE         $i64type        /**/
3132 #define U64TYPE         $u64type        /**/
3133 #endif
3134 #define NVTYPE          $nvtype         /**/
3135 #define IVSIZE          $ivsize         /**/
3136 #define UVSIZE          $uvsize         /**/
3137 #define I8SIZE          $i8size         /**/
3138 #define U8SIZE          $u8size         /**/
3139 #define I16SIZE         $i16size        /**/
3140 #define U16SIZE         $u16size        /**/
3141 #define I32SIZE         $i32size        /**/
3142 #define U32SIZE         $u32size        /**/
3143 #ifdef HAS_QUAD
3144 #define I64SIZE         $i64size        /**/
3145 #define U64SIZE         $u64size        /**/
3146 #endif
3147 #define NVSIZE          $nvsize         /**/
3148 #$d_nv_preserves_uv     NV_PRESERVES_UV
3149 #define NV_PRESERVES_UV_BITS    $d_nv_preserves_uv_bits
3150
3151 /* IVdf:
3152  *      This symbol defines the format string used for printing a Perl IV
3153  *      as a signed decimal integer.
3154  */
3155 /* UVuf:
3156  *      This symbol defines the format string used for printing a Perl UV
3157  *      as an unsigned decimal integer.
3158  */
3159 /* UVof:
3160  *      This symbol defines the format string used for printing a Perl UV
3161  *      as an unsigned octal integer.
3162  */
3163 /* UVxf:
3164  *      This symbol defines the format string used for printing a Perl UV
3165  *      as an unsigned hexadecimal integer in lowercase abcdef.
3166  */
3167 /* UVXf:
3168  *      This symbol defines the format string used for printing a Perl UV
3169  *      as an unsigned hexadecimal integer in uppercase ABCDEF.
3170  */
3171 /* NVef:
3172  *      This symbol defines the format string used for printing a Perl NV
3173  *      using %e-ish floating point format.
3174  */
3175 /* NVff:
3176  *      This symbol defines the format string used for printing a Perl NV
3177  *      using %f-ish floating point format.
3178  */
3179 /* NVgf:
3180  *      This symbol defines the format string used for printing a Perl NV
3181  *      using %g-ish floating point format.
3182  */
3183 #define IVdf            $ivdformat              /**/
3184 #define UVuf            $uvuformat              /**/
3185 #define UVof            $uvoformat              /**/
3186 #define UVxf            $uvxformat              /**/
3187 #define UVXf            $uvXUformat             /**/
3188 #define NVef            $nveformat              /**/
3189 #define NVff            $nvfformat              /**/
3190 #define NVgf            $nvgformat              /**/
3191
3192 /* HAS_PROCSELFEXE:
3193  *      This symbol is defined if /proc/self/exe is a symlink
3194  *      to the executing program
3195  */
3196 #$d_procselfexe HAS_PROCSELFEXE /**/
3197
3198 /* SELECT_MIN_BITS:
3199  *      This symbol holds the minimum number of bits operated by select.
3200  *      That is, if you do select(n, ...), how many bits at least will be
3201  *      cleared in the masks if some activity is detected.  Usually this
3202  *      is either n or 32*ceil(n/32), especially many little-endians do
3203  *      the latter.  This is only useful if you have select(), naturally.
3204  */
3205 #define SELECT_MIN_BITS         $selectminbits  /**/
3206
3207 /* STARTPERL:
3208  *      This variable contains the string to put in front of a perl
3209  *      script to make sure (one hopes) that it runs with perl and not
3210  *      some shell.
3211  */
3212 #define STARTPERL "$startperl"          /**/
3213
3214 /* HAS_STDIO_STREAM_ARRAY:
3215  *      This symbol, if defined, tells that there is an array
3216  *      holding the stdio streams.
3217  */
3218 /* STDIO_STREAM_ARRAY:
3219  *      This symbol tells the name of the array holding the stdio streams.
3220  *      Usual values include _iob, __iob, and __sF.
3221  */
3222 #$d_stdio_stream_array  HAS_STDIO_STREAM_ARRAY  /**/
3223 #define STDIO_STREAM_ARRAY      $stdio_stream_array
3224
3225 /* USE_64_BIT_INT:
3226  *      This symbol, if defined, indicates that 64-bit integers should
3227  *      be used when available.  If not defined, the native integers
3228  *      will be employed (be they 32 or 64 bits).  The minimal possible
3229  *      64-bitness is used, just enough to get 64-bit integers into Perl.
3230  *      This may mean using for example "long longs", while your memory
3231  *      may still be limited to 2 gigabytes.
3232  */
3233 /* USE_64_BIT_ALL:
3234  *      This symbol, if defined, indicates that 64-bit integers should
3235  *      be used when available.  If not defined, the native integers
3236  *      will be used (be they 32 or 64 bits).  The maximal possible
3237  *      64-bitness is employed: LP64 or ILP64, meaning that you will
3238  *      be able to use more than 2 gigabytes of memory.  This mode is
3239  *      even more binary incompatible than USE_64_BIT_INT. You may not
3240  *      be able to run the resulting executable in a 32-bit CPU at all or
3241  *      you may need at least to reboot your OS to 64-bit mode.
3242  */
3243 #ifndef USE_64_BIT_INT
3244 #$use64bitint   USE_64_BIT_INT          /**/
3245 #endif
3246
3247 #ifndef USE_64_BIT_ALL
3248 #$use64bitall   USE_64_BIT_ALL          /**/
3249 #endif
3250
3251 /* USE_LARGE_FILES:
3252  *      This symbol, if defined, indicates that large file support
3253  *      should be used when available.
3254  */
3255 #ifndef USE_LARGE_FILES
3256 #$uselargefiles USE_LARGE_FILES         /**/
3257 #endif
3258
3259 /* USE_LONG_DOUBLE:
3260  *      This symbol, if defined, indicates that long doubles should
3261  *      be used when available.
3262  */
3263 #ifndef USE_LONG_DOUBLE
3264 #$uselongdouble USE_LONG_DOUBLE         /**/
3265 #endif
3266
3267 /* USE_MORE_BITS:
3268  *      This symbol, if defined, indicates that 64-bit interfaces and
3269  *      long doubles should be used when available.
3270  */
3271 #ifndef USE_MORE_BITS
3272 #$usemorebits   USE_MORE_BITS           /**/
3273 #endif
3274
3275 /* MULTIPLICITY:
3276  *      This symbol, if defined, indicates that Perl should
3277  *      be built to use multiplicity.
3278  */
3279 #ifndef MULTIPLICITY
3280 #$usemultiplicity       MULTIPLICITY            /**/
3281 #endif
3282
3283 /* USE_PERLIO:
3284  *      This symbol, if defined, indicates that the PerlIO abstraction should
3285  *      be used throughout.  If not defined, stdio should be
3286  *      used in a fully backward compatible manner.
3287  */
3288 #ifndef USE_PERLIO
3289 #$useperlio     USE_PERLIO              /**/
3290 #endif
3291
3292 /* USE_SOCKS:
3293  *      This symbol, if defined, indicates that Perl should
3294  *      be built to use socks.
3295  */
3296 #ifndef USE_SOCKS
3297 #$usesocks      USE_SOCKS               /**/
3298 #endif
3299
3300 /* PERL_XS_APIVERSION:
3301  *      This variable contains the version of the oldest perl binary
3302  *      compatible with the present perl.  perl.c:incpush() and
3303  *      lib/lib.pm will automatically search in $sitearch for older
3304  *      directories across major versions back to xs_apiversion.
3305  *      This is only useful if you have a perl library directory tree
3306  *      structured like the default one.
3307  *      See INSTALL for how this works.
3308  *      The versioned site_perl directory was introduced in 5.005,
3309  *      so that is the lowest possible value.
3310  *      Since this can depend on compile time options (such as
3311  *      bincompat) it is set by Configure.  Other non-default sources
3312  *      of potential incompatibility, such as multiplicity, threads,
3313  *      debugging, 64bits, sfio, etc., are not checked for currently,
3314  *      though in principle we could go snooping around in old
3315  *      Config.pm files.
3316  */
3317 /* PERL_PM_APIVERSION:
3318  *      This variable contains the version of the oldest perl
3319  *      compatible with the present perl.  (That is, pure perl modules
3320  *      written for pm_apiversion will still work for the current
3321  *      version).  perl.c:incpush() and lib/lib.pm will automatically
3322  *      search in $sitelib for older directories across major versions
3323  *      back to pm_apiversion.  This is only useful if you have a perl
3324  *      library directory tree structured like the default one.  The
3325  *      versioned site_perl library was introduced in 5.005, so that's
3326  *      the default setting for this variable.  It's hard to imagine
3327  *      it changing before Perl6.  It is included here for symmetry
3328  *      with xs_apiveprsion -- the searching algorithms will
3329  *      (presumably) be similar.
3330  *      See the INSTALL file for how this works.
3331  */
3332 #define PERL_XS_APIVERSION "$xs_apiversion"
3333 #define PERL_PM_APIVERSION "$pm_apiversion"
3334
3335 /* HAS_DRAND48_PROTO:
3336  *      This symbol, if defined, indicates that the system provides
3337  *      a prototype for the drand48() function.  Otherwise, it is up
3338  *      to the program to supply one.  A good guess is
3339  *              extern double drand48 _((void));
3340  */
3341 #$d_drand48proto        HAS_DRAND48_PROTO       /**/
3342
3343 /* HAS_GETHOST_PROTOS:
3344  *      This symbol, if defined, indicates that <netdb.h> includes
3345  *      prototypes for gethostent(), gethostbyname(), and
3346  *      gethostbyaddr().  Otherwise, it is up to the program to guess
3347  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
3348  */
3349 #$d_gethostprotos       HAS_GETHOST_PROTOS      /**/
3350
3351 /* HAS_GETNET_PROTOS:
3352  *      This symbol, if defined, indicates that <netdb.h> includes
3353  *      prototypes for getnetent(), getnetbyname(), and
3354  *      getnetbyaddr().  Otherwise, it is up to the program to guess
3355  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
3356  */
3357 #$d_getnetprotos        HAS_GETNET_PROTOS       /**/
3358
3359 /* HAS_GETPROTO_PROTOS:
3360  *      This symbol, if defined, indicates that <netdb.h> includes
3361  *      prototypes for getprotoent(), getprotobyname(), and
3362  *      getprotobyaddr().  Otherwise, it is up to the program to guess
3363  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
3364  */
3365 #$d_getprotoprotos      HAS_GETPROTO_PROTOS     /**/
3366
3367 /* HAS_GETSERV_PROTOS:
3368  *      This symbol, if defined, indicates that <netdb.h> includes
3369  *      prototypes for getservent(), getservbyname(), and
3370  *      getservbyaddr().  Otherwise, it is up to the program to guess
3371  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
3372  */
3373 #$d_getservprotos       HAS_GETSERV_PROTOS      /**/
3374
3375 /* HAS_LSEEK_PROTO:
3376  *      This symbol, if defined, indicates that the system provides
3377  *      a prototype for the lseek() function.  Otherwise, it is up
3378  *      to the program to supply one.  A good guess is
3379  *              extern off_t lseek(int, off_t, int);
3380  */
3381 #$d_lseekproto  HAS_LSEEK_PROTO /**/
3382
3383 /* Netdb_host_t:
3384  *      This symbol holds the type used for the 1st argument
3385  *      to gethostbyaddr().
3386  */
3387 /* Netdb_hlen_t:
3388  *      This symbol holds the type used for the 2nd argument
3389  *      to gethostbyaddr().
3390  */
3391 /* Netdb_name_t:
3392  *      This symbol holds the type used for the argument to
3393  *      gethostbyname().
3394  */
3395 /* Netdb_net_t:
3396  *      This symbol holds the type used for the 1st argument to
3397  *      getnetbyaddr().
3398  */
3399 #define Netdb_host_t            $netdb_host_type /**/
3400 #define Netdb_hlen_t            $netdb_hlen_type /**/
3401 #define Netdb_name_t            $netdb_name_type /**/
3402 #define Netdb_net_t             $netdb_net_type /**/
3403
3404 /* Select_fd_set_t:
3405  *      This symbol holds the type used for the 2nd, 3rd, and 4th
3406  *      arguments to select.  Usually, this is 'fd_set *', if HAS_FD_SET
3407  *      is defined, and 'int *' otherwise.  This is only useful if you 
3408  *      have select(), of course.
3409  */
3410 #define Select_fd_set_t         $selecttype     /**/
3411
3412 /* Sock_size_t:
3413  *      This symbol holds the type used for the size argument of
3414  *      various socket calls (just the base type, not the pointer-to).
3415  */
3416 #define Sock_size_t             $socksizetype /**/
3417
3418 /* ARCHNAME:
3419  *      This symbol holds a string representing the architecture name.
3420  *      It may be used to construct an architecture-dependant pathname
3421  *      where library files may be held under a private library, for
3422  *      instance.
3423  */
3424 #define ARCHNAME "$archname"            /**/
3425
3426 /* OLD_PTHREAD_CREATE_JOINABLE:
3427  *      This symbol, if defined, indicates how to create pthread
3428  *      in joinable (aka undetached) state.  NOTE: not defined
3429  *      if pthread.h already has defined PTHREAD_CREATE_JOINABLE
3430  *      (the new version of the constant).
3431  *      If defined, known values are PTHREAD_CREATE_UNDETACHED
3432  *      and __UNDETACHED.
3433  */
3434 #$d_old_pthread_create_joinable OLD_PTHREAD_CREATE_JOINABLE $old_pthread_create_joinable /**/
3435
3436 /* HAS_PTHREAD_ATFORK:
3437  *      This symbol, if defined, indicates that the pthread_atfork routine
3438  *      is available setup fork handlers.
3439  */
3440 #$d_pthread_atfork HAS_PTHREAD_ATFORK           /**/
3441
3442 /* HAS_PTHREAD_YIELD:
3443  *      This symbol, if defined, indicates that the pthread_yield 
3444  *      routine is available to yield the execution of the current
3445  *      thread.  sched_yield is preferable to pthread_yield.
3446  */
3447 /* SCHED_YIELD:
3448  *      This symbol defines the way to yield the execution of
3449  *      the current thread.  Known ways are sched_yield,
3450  *      pthread_yield, and pthread_yield with NULL.
3451  */
3452 /* HAS_SCHED_YIELD:
3453  *      This symbol, if defined, indicates that the sched_yield
3454  *      routine is available to yield the execution of the current
3455  *      thread.  sched_yield is preferable to pthread_yield.
3456  */
3457 #$d_pthread_yield HAS_PTHREAD_YIELD     /**/
3458 #define SCHED_YIELD     $sched_yield    /**/
3459 #$d_sched_yield HAS_SCHED_YIELD /**/
3460
3461 /* I_MACH_CTHREADS:
3462  *     This symbol, if defined, indicates to the C program that it should
3463  *     include <mach/cthreads.h>.
3464  */
3465 #$i_machcthr   I_MACH_CTHREADS  /**/
3466
3467 /* I_PTHREAD:
3468  *     This symbol, if defined, indicates to the C program that it should
3469  *     include <pthread.h>.
3470  */
3471 #$i_pthread   I_PTHREAD /**/
3472
3473 /* USE_ITHREADS:
3474  *      This symbol, if defined, indicates that Perl should be built to
3475  *      use the interpreter-based threading implementation.
3476  */
3477 /* USE_5005THREADS:
3478  *      This symbol, if defined, indicates that Perl should be built to
3479  *      use the 5.005-based threading implementation.
3480  */
3481 /* OLD_PTHREADS_API:
3482  *      This symbol, if defined, indicates that Perl should
3483  *      be built to use the old draft POSIX threads API.
3484  */
3485 /* USE_REENTRANT_API:
3486  *      This symbol, if defined, indicates that Perl should
3487  *      try to use the various _r versions of library functions.
3488  *      This is extremely experimental.
3489  */
3490 #$use5005threads        USE_5005THREADS         /**/
3491 #$useithreads   USE_ITHREADS            /**/
3492 #if defined(USE_5005THREADS) && !defined(USE_ITHREADS)
3493 #define         USE_THREADS             /* until src is revised*/
3494 #endif
3495 #$d_oldpthreads OLD_PTHREADS_API                /**/
3496 #$usereentrant  USE_REENTRANT_API       /**/
3497
3498 /* Time_t:
3499  *      This symbol holds the type returned by time(). It can be long,
3500  *      or time_t on BSD sites (in which case <sys/types.h> should be
3501  *      included).
3502  */
3503 #define Time_t $timetype                /* Time type */
3504
3505 /* HAS_TIMES:
3506  *      This symbol, if defined, indicates that the times() routine exists.
3507  *      Note that this became obsolete on some systems (SUNOS), which now
3508  * use getrusage(). It may be necessary to include <sys/times.h>.
3509  */
3510 #$d_times HAS_TIMES             /**/
3511
3512 /* Fpos_t:
3513  *      This symbol holds the type used to declare file positions in libc.
3514  *      It can be fpos_t, long, uint, etc... It may be necessary to include
3515  *      <sys/types.h> to get any typedef'ed information.
3516  */
3517 #define Fpos_t $fpostype                /* File position type */
3518
3519 /* Gid_t_f:
3520  *      This symbol defines the format string used for printing a Gid_t.
3521  */
3522 #define Gid_t_f         $gidformat              /**/
3523
3524 /* Gid_t_sign:
3525  *      This symbol holds the signedess of a Gid_t.
3526  *      1 for unsigned, -1 for signed.
3527  */
3528 #define Gid_t_sign      $gidsign                /* GID sign */
3529
3530 /* Gid_t_size:
3531  *      This symbol holds the size of a Gid_t in bytes.
3532  */
3533 #define Gid_t_size $gidsize             /* GID size */
3534
3535 /* Gid_t:
3536  *      This symbol holds the return type of getgid() and the type of
3537  *      argument to setrgid() and related functions.  Typically,
3538  *      it is the type of group ids in the kernel. It can be int, ushort,
3539  *      gid_t, etc... It may be necessary to include <sys/types.h> to get
3540  *      any typedef'ed information.
3541  */
3542 #define Gid_t $gidtype          /* Type for getgid(), etc... */
3543
3544 /* Off_t:
3545  *      This symbol holds the type used to declare offsets in the kernel.
3546  *      It can be int, long, off_t, etc... It may be necessary to include
3547  *      <sys/types.h> to get any typedef'ed information.
3548  */
3549 /* LSEEKSIZE:
3550  *      This symbol holds the number of bytes used by the Off_t.
3551  */
3552 /* Off_t_size:
3553  *      This symbol holds the number of bytes used by the Off_t.
3554  */
3555 #define Off_t $lseektype                /* <offset> type */
3556 #define LSEEKSIZE $lseeksize            /* <offset> size */
3557 #define Off_t_size $lseeksize   /* <offset> size */
3558
3559 /* Mode_t:
3560  *      This symbol holds the type used to declare file modes 
3561  *      for systems calls.  It is usually mode_t, but may be
3562  *      int or unsigned short.  It may be necessary to include <sys/types.h>
3563  *      to get any typedef'ed information.
3564  */
3565 #define Mode_t $modetype         /* file mode parameter for system calls */
3566
3567 /* Pid_t:
3568  *      This symbol holds the type used to declare process ids in the kernel.
3569  *      It can be int, uint, pid_t, etc... It may be necessary to include
3570  *      <sys/types.h> to get any typedef'ed information.
3571  */
3572 #define Pid_t $pidtype          /* PID type */
3573
3574 /* Size_t_size:
3575  *      This symbol holds the size of a Size_t in bytes.
3576  */
3577 #define Size_t_size $sizesize           /* */
3578
3579 /* Size_t:
3580  *      This symbol holds the type used to declare length parameters
3581  *      for string functions.  It is usually size_t, but may be
3582  *      unsigned long, int, etc.  It may be necessary to include
3583  *      <sys/types.h> to get any typedef'ed information.
3584  */
3585 #define Size_t $sizetype         /* length paramater for string functions */
3586
3587 /* Uid_t_f:
3588  *      This symbol defines the format string used for printing a Uid_t.
3589  */
3590 #define Uid_t_f         $uidformat              /**/
3591
3592 /* Uid_t_sign:
3593  *      This symbol holds the signedess of a Uid_t.
3594  *      1 for unsigned, -1 for signed.
3595  */
3596 #define Uid_t_sign      $uidsign                /* UID sign */
3597
3598 /* Uid_t_size:
3599  *      This symbol holds the size of a Uid_t in bytes.
3600  */
3601 #define Uid_t_size $uidsize             /* UID size */
3602
3603 /* Uid_t:
3604  *      This symbol holds the type used to declare user ids in the kernel.
3605  *      It can be int, ushort, uid_t, etc... It may be necessary to include
3606  *      <sys/types.h> to get any typedef'ed information.
3607  */
3608 #define Uid_t $uidtype          /* UID type */
3609
3610 #endif
3611 !GROK!THIS!