This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
typo in change#3768
[perl5.git] / config_h.SH
1 case $CONFIG in
2 '')
3         if test -f config.sh; then TOP=.;
4         elif test -f ../config.sh; then TOP=..;
5         elif test -f ../../config.sh; then TOP=../..;
6         elif test -f ../../../config.sh; then TOP=../../..;
7         elif test -f ../../../../config.sh; then TOP=../../../..;
8         else
9                 echo "Can't find config.sh."; exit 1
10         fi
11         . $TOP/config.sh
12         ;;
13 esac
14 case "$0" in
15 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
16 esac
17 echo "Extracting config.h (with variable substitutions)"
18 sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un-def!#undef!'
19 /*
20  * This file was produced by running the config_h.SH script, which
21  * gets its values from config.sh, which is generally produced by
22  * running Configure.
23  *
24  * Feel free to modify any of this as the need arises.  Note, however,
25  * that running config_h.SH again will wipe out any changes you've made.
26  * For a more permanent change edit config.sh and rerun config_h.SH.
27  *
28  * \$Id: Config_h.U,v 3.0.1.5 1997/02/28 14:57:43 ram Exp $
29  */
30
31 /*
32  * Package name      : $package
33  * Source directory  : $src
34  * Configuration time: $cf_time
35  * Configured by     : $cf_by
36  * Target system     : $myuname
37  */
38
39 #ifndef _config_h_
40 #define _config_h_
41
42 /* LOC_SED:
43  *      This symbol holds the complete pathname to the sed program.
44  */
45 #define LOC_SED         "$full_sed"     /**/
46
47 /* HAS_ALARM:
48  *      This symbol, if defined, indicates that the alarm routine is
49  *      available.
50  */
51 #$d_alarm HAS_ALARM             /**/
52
53 /* HASATTRIBUTE:
54  *      This symbol indicates the C compiler can check for function attributes,
55  *      such as printf formats. This is normally only supported by GNU cc.
56  */
57 #$d_attribut HASATTRIBUTE       /**/
58 #ifndef HASATTRIBUTE
59 #define __attribute__(_arg_)
60 #endif
61
62 /* HAS_BCMP:
63  *      This symbol is defined if the bcmp() routine is available to
64  *      compare blocks of memory.
65  */
66 #$d_bcmp HAS_BCMP       /**/
67
68 /* HAS_BCOPY:
69  *      This symbol is defined if the bcopy() routine is available to
70  *      copy blocks of memory.
71  */
72 #$d_bcopy HAS_BCOPY     /**/
73
74 /* HAS_BZERO:
75  *      This symbol is defined if the bzero() routine is available to
76  *      set a memory block to 0.
77  */
78 #$d_bzero HAS_BZERO     /**/
79
80 /* HAS_CHOWN:
81  *      This symbol, if defined, indicates that the chown routine is
82  *      available.
83  */
84 #$d_chown HAS_CHOWN             /**/
85
86 /* HAS_CHROOT:
87  *      This symbol, if defined, indicates that the chroot routine is
88  *      available.
89  */
90 #$d_chroot HAS_CHROOT           /**/
91
92 /* HAS_CHSIZE:
93  *      This symbol, if defined, indicates that the chsize routine is available
94  *      to truncate files.  You might need a -lx to get this routine.
95  */
96 #$d_chsize      HAS_CHSIZE              /**/
97
98 /* HASCONST:
99  *      This symbol, if defined, indicates that this C compiler knows about
100  *      the const type. There is no need to actually test for that symbol
101  *      within your programs. The mere use of the "const" keyword will
102  *      trigger the necessary tests.
103  */
104 #$d_const HASCONST      /**/
105 #ifndef HASCONST
106 #define const
107 #endif
108
109 /* HAS_CRYPT:
110  *      This symbol, if defined, indicates that the crypt routine is available
111  *      to encrypt passwords and the like.
112  */
113 #$d_crypt HAS_CRYPT             /**/
114
115 /* HAS_CUSERID:
116  *      This symbol, if defined, indicates that the cuserid routine is
117  *      available to get character login names.
118  */
119 #$d_cuserid HAS_CUSERID         /**/
120
121 /* HAS_DBL_DIG:
122  *      This symbol, if defined, indicates that this system's <float.h>
123  *      or <limits.h> defines the symbol DBL_DIG, which is the number
124  *      of significant digits in a double precision number.  If this
125  *      symbol is not defined, a guess of 15 is usually pretty good.
126  */
127 #$d_dbl_dig HAS_DBL_DIG         /* */
128
129 /* HAS_DIFFTIME:
130  *      This symbol, if defined, indicates that the difftime routine is
131  *      available.
132  */
133 #$d_difftime HAS_DIFFTIME               /**/
134
135 /* HAS_DLERROR:
136  *      This symbol, if defined, indicates that the dlerror routine is
137  *      available to return a string describing the last error that
138  *      occurred from a call to dlopen(), dlclose() or dlsym().
139  */
140 #$d_dlerror HAS_DLERROR /**/
141
142 /* SETUID_SCRIPTS_ARE_SECURE_NOW:
143  *      This symbol, if defined, indicates that the bug that prevents
144  *      setuid scripts from being secure is not present in this kernel.
145  */
146 /* DOSUID:
147  *      This symbol, if defined, indicates that the C program should
148  *      check the script that it is executing for setuid/setgid bits, and
149  *      attempt to emulate setuid/setgid on systems that have disabled
150  *      setuid #! scripts because the kernel can't do it securely.
151  *      It is up to the package designer to make sure that this emulation
152  *      is done securely.  Among other things, it should do an fstat on
153  *      the script it just opened to make sure it really is a setuid/setgid
154  *      script, it should make sure the arguments passed correspond exactly
155  *      to the argument on the #! line, and it should not trust any
156  *      subprocesses to which it must pass the filename rather than the
157  *      file descriptor of the script to be executed.
158  */
159 #$d_suidsafe SETUID_SCRIPTS_ARE_SECURE_NOW      /**/
160 #$d_dosuid DOSUID               /**/
161
162 /* HAS_DUP2:
163  *      This symbol, if defined, indicates that the dup2 routine is
164  *      available to duplicate file descriptors.
165  */
166 #$d_dup2 HAS_DUP2       /**/
167
168 /* HAS_FCHMOD:
169  *      This symbol, if defined, indicates that the fchmod routine is available
170  *      to change mode of opened files.  If unavailable, use chmod().
171  */
172 #$d_fchmod HAS_FCHMOD           /**/
173
174 /* HAS_FCHOWN:
175  *      This symbol, if defined, indicates that the fchown routine is available
176  *      to change ownership of opened files.  If unavailable, use chown().
177  */
178 #$d_fchown HAS_FCHOWN           /**/
179
180 /* HAS_FCNTL:
181  *      This symbol, if defined, indicates to the C program that
182  *      the fcntl() function exists.
183  */
184 #$d_fcntl HAS_FCNTL             /**/
185
186 /* HAS_FGETPOS:
187  *      This symbol, if defined, indicates that the fgetpos routine is
188  *      available to get the file position indicator, similar to ftell().
189  */
190 #$d_fgetpos HAS_FGETPOS /**/
191
192 /* FLEXFILENAMES:
193  *      This symbol, if defined, indicates that the system supports filenames
194  *      longer than 14 characters.
195  */
196 #$d_flexfnam    FLEXFILENAMES           /**/
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_GETPGRP:
248  *      This symbol, if defined, indicates that the getpgrp routine is
249  *      available to get the current process group.
250  */
251 /* USE_BSD_GETPGRP:
252  *      This symbol, if defined, indicates that getpgrp needs one
253  *      arguments whereas USG one needs none.
254  */
255 #$d_getpgrp HAS_GETPGRP         /**/
256 #$d_bsdgetpgrp USE_BSD_GETPGRP  /**/
257
258 /* HAS_GETPGRP2:
259  *      This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
260  *      routine is available to get the current process group.
261  */
262 #$d_getpgrp2 HAS_GETPGRP2               /**/
263
264 /* HAS_GETPPID:
265  *      This symbol, if defined, indicates that the getppid routine is
266  *      available to get the parent process ID.
267  */
268 #$d_getppid HAS_GETPPID         /**/
269
270 /* HAS_GETPRIORITY:
271  *      This symbol, if defined, indicates that the getpriority routine is
272  *      available to get a process's priority.
273  */
274 #$d_getprior HAS_GETPRIORITY            /**/
275
276 /* HAS_INET_ATON:
277  *      This symbol, if defined, indicates to the C program that the
278  *      inet_aton() function is available to parse IP address "dotted-quad"
279  *      strings.
280  */
281 #$d_inetaton HAS_INET_ATON              /**/
282
283 /* HAS_KILLPG:
284  *      This symbol, if defined, indicates that the killpg routine is available
285  *      to kill process groups.  If unavailable, you probably should use kill
286  *      with a negative process number.
287  */
288 #$d_killpg HAS_KILLPG   /**/
289
290 /* HAS_LINK:
291  *      This symbol, if defined, indicates that the link routine is
292  *      available to create hard links.
293  */
294 #$d_link HAS_LINK       /**/
295
296 /* HAS_LOCALECONV:
297  *      This symbol, if defined, indicates that the localeconv routine is
298  *      available for numeric and monetary formatting conventions.
299  */
300 #$d_locconv HAS_LOCALECONV      /**/
301
302 /* HAS_LOCKF:
303  *      This symbol, if defined, indicates that the lockf routine is
304  *      available to do file locking.
305  */
306 #$d_lockf HAS_LOCKF             /**/
307
308 /* HAS_LSTAT:
309  *      This symbol, if defined, indicates that the lstat routine is
310  *      available to do file stats on symbolic links.
311  */
312 #$d_lstat HAS_LSTAT             /**/
313
314 /* HAS_MBLEN:
315  *      This symbol, if defined, indicates that the mblen routine is available
316  *      to find the number of bytes in a multibye character.
317  */
318 #$d_mblen HAS_MBLEN             /**/
319
320 /* HAS_MBSTOWCS:
321  *      This symbol, if defined, indicates that the mbstowcs routine is
322  *      available to covert a multibyte string into a wide character string.
323  */
324 #$d_mbstowcs    HAS_MBSTOWCS            /**/
325
326 /* HAS_MBTOWC:
327  *      This symbol, if defined, indicates that the mbtowc routine is available
328  *      to covert a multibyte to a wide character.
329  */
330 #$d_mbtowc HAS_MBTOWC           /**/
331
332 /* HAS_MEMCMP:
333  *      This symbol, if defined, indicates that the memcmp routine is available
334  *      to compare blocks of memory.
335  */
336 #$d_memcmp HAS_MEMCMP   /**/
337
338 /* HAS_MEMCPY:
339  *      This symbol, if defined, indicates that the memcpy routine is available
340  *      to copy blocks of memory.
341  */
342 #$d_memcpy HAS_MEMCPY   /**/
343
344 /* HAS_MEMMOVE:
345  *      This symbol, if defined, indicates that the memmove routine is available
346  *      to copy potentially overlapping blocks of memory. This should be used
347  *      only when HAS_SAFE_BCOPY is not defined. If neither is there, roll your
348  *      own version.
349  */
350 #$d_memmove HAS_MEMMOVE /**/
351
352 /* HAS_MEMSET:
353  *      This symbol, if defined, indicates that the memset routine is available
354  *      to set blocks of memory.
355  */
356 #$d_memset HAS_MEMSET   /**/
357
358 /* HAS_MKDIR:
359  *      This symbol, if defined, indicates that the mkdir routine is available
360  *      to create directories.  Otherwise you should fork off a new process to
361  *      exec /bin/mkdir.
362  */
363 #$d_mkdir HAS_MKDIR             /**/
364
365 /* HAS_MKFIFO:
366  *      This symbol, if defined, indicates that the mkfifo routine is
367  *      available to create FIFOs. Otherwise, mknod should be able to
368  *      do it for you. However, if mkfifo is there, mknod might require
369  *      super-user privileges which mkfifo will not.
370  */
371 #$d_mkfifo HAS_MKFIFO           /**/
372
373 /* HAS_MKTIME:
374  *      This symbol, if defined, indicates that the mktime routine is
375  *      available.
376  */
377 #$d_mktime HAS_MKTIME           /**/
378
379 /* HAS_MSYNC:
380  *      This symbol, if defined, indicates that the msync system call is
381  *      available to synchronize a mapped file.
382  */
383 #$d_msync HAS_MSYNC             /**/
384
385 /* HAS_MUNMAP:
386  *      This symbol, if defined, indicates that the munmap system call is
387  *      available to unmap a region, usually mapped by mmap().
388  */
389 #$d_munmap HAS_MUNMAP           /**/
390
391 /* HAS_NICE:
392  *      This symbol, if defined, indicates that the nice routine is
393  *      available.
394  */
395 #$d_nice HAS_NICE               /**/
396
397 /* HAS_PATHCONF:
398  *      This symbol, if defined, indicates that pathconf() is available
399  *      to determine file-system related limits and options associated
400  *      with a given filename.
401  */
402 /* HAS_FPATHCONF:
403  *      This symbol, if defined, indicates that pathconf() is available
404  *      to determine file-system related limits and options associated
405  *      with a given open file descriptor.
406  */
407 #$d_pathconf HAS_PATHCONF               /**/
408 #$d_fpathconf HAS_FPATHCONF             /**/
409
410 /* HAS_PAUSE:
411  *      This symbol, if defined, indicates that the pause routine is
412  *      available to suspend a process until a signal is received.
413  */
414 #$d_pause HAS_PAUSE             /**/
415
416 /* HAS_PIPE:
417  *      This symbol, if defined, indicates that the pipe routine is
418  *      available to create an inter-process channel.
419  */
420 #$d_pipe HAS_PIPE               /**/
421
422 /* HAS_POLL:
423  *      This symbol, if defined, indicates that the poll routine is
424  *      available to poll active file descriptors. You may safely
425  *      include <poll.h> when this symbol is defined.
426  */
427 #$d_poll HAS_POLL               /**/
428
429 /* HAS_READDIR:
430  *      This symbol, if defined, indicates that the readdir routine is
431  *      available to read directory entries. You may have to include
432  *      <dirent.h>. See I_DIRENT.
433  */
434 #$d_readdir HAS_READDIR         /**/
435
436 /* HAS_SEEKDIR:
437  *      This symbol, if defined, indicates that the seekdir routine is
438  *      available. You may have to include <dirent.h>. See I_DIRENT.
439  */
440 #$d_seekdir HAS_SEEKDIR         /**/
441
442 /* HAS_TELLDIR:
443  *      This symbol, if defined, indicates that the telldir routine is
444  *      available. You may have to include <dirent.h>. See I_DIRENT.
445  */
446 #$d_telldir HAS_TELLDIR         /**/
447
448 /* HAS_REWINDDIR:
449  *      This symbol, if defined, indicates that the rewinddir routine is
450  *      available. You may have to include <dirent.h>. See I_DIRENT.
451  */
452 #$d_rewinddir HAS_REWINDDIR             /**/
453
454 /* HAS_READLINK:
455  *      This symbol, if defined, indicates that the readlink routine is
456  *      available to read the value of a symbolic link.
457  */
458 #$d_readlink HAS_READLINK               /**/
459
460 /* HAS_RENAME:
461  *      This symbol, if defined, indicates that the rename routine is available
462  *      to rename files.  Otherwise you should do the unlink(), link(), unlink()
463  *      trick.
464  */
465 #$d_rename HAS_RENAME   /**/
466
467 /* HAS_RMDIR:
468  *      This symbol, if defined, indicates that the rmdir routine is
469  *      available to remove directories. Otherwise you should fork off a
470  *      new process to exec /bin/rmdir.
471  */
472 #$d_rmdir HAS_RMDIR             /**/
473
474 /* HAS_SELECT:
475  *      This symbol, if defined, indicates that the select routine is
476  *      available to select active file descriptors. If the timeout field
477  *      is used, <sys/time.h> may need to be included.
478  */
479 #$d_select HAS_SELECT   /**/
480
481 /* HAS_SETEGID:
482  *      This symbol, if defined, indicates that the setegid routine is available
483  *      to change the effective gid of the current program.
484  */
485 #$d_setegid HAS_SETEGID         /**/
486
487 /* HAS_SETEUID:
488  *      This symbol, if defined, indicates that the seteuid routine is available
489  *      to change the effective uid of the current program.
490  */
491 #$d_seteuid HAS_SETEUID         /**/
492
493 /* HAS_SETLINEBUF:
494  *      This symbol, if defined, indicates that the setlinebuf routine is
495  *      available to change stderr or stdout from block-buffered or unbuffered
496  *      to a line-buffered mode.
497  */
498 #$d_setlinebuf HAS_SETLINEBUF           /**/
499
500 /* HAS_SETLOCALE:
501  *      This symbol, if defined, indicates that the setlocale routine is
502  *      available to handle locale-specific ctype implementations.
503  */
504 #$d_setlocale HAS_SETLOCALE     /**/
505
506 /* HAS_SETPGID:
507  *      This symbol, if defined, indicates that the setpgid(pid, gpid)
508  *      routine is available to set process group ID.
509  */
510 #$d_setpgid HAS_SETPGID /**/
511
512 /* HAS_SETPGRP:
513  *      This symbol, if defined, indicates that the setpgrp routine is
514  *      available to set the current process group.
515  */
516 /* USE_BSD_SETPGRP:
517  *      This symbol, if defined, indicates that setpgrp needs two
518  *      arguments whereas USG one needs none.  See also HAS_SETPGID
519  *      for a POSIX interface.
520  */
521 #$d_setpgrp HAS_SETPGRP         /**/
522 #$d_bsdsetpgrp USE_BSD_SETPGRP  /**/
523
524 /* HAS_SETPGRP2:
525  *      This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
526  *      routine is available to set the current process group.
527  */
528 #$d_setpgrp2 HAS_SETPGRP2               /**/
529
530 /* HAS_SETPRIORITY:
531  *      This symbol, if defined, indicates that the setpriority routine is
532  *      available to set a process's priority.
533  */
534 #$d_setprior HAS_SETPRIORITY            /**/
535
536 /* HAS_SETREGID:
537  *      This symbol, if defined, indicates that the setregid routine is
538  *      available to change the real and effective gid of the current
539  *      process.
540  */
541 /* HAS_SETRESGID:
542  *      This symbol, if defined, indicates that the setresgid routine is
543  *      available to change the real, effective and saved gid of the current
544  *      process.
545  */
546 #$d_setregid HAS_SETREGID               /**/
547 #$d_setresgid HAS_SETRESGID             /**/
548
549 /* HAS_SETREUID:
550  *      This symbol, if defined, indicates that the setreuid routine is
551  *      available to change the real and effective uid of the current
552  *      process.
553  */
554 /* HAS_SETRESUID:
555  *      This symbol, if defined, indicates that the setresuid routine is
556  *      available to change the real, effective and saved uid of the current
557  *      process.
558  */
559 #$d_setreuid HAS_SETREUID               /**/
560 #$d_setresuid HAS_SETRESUID             /**/
561
562 /* HAS_SETRGID:
563  *      This symbol, if defined, indicates that the setrgid routine is available
564  *      to change the real gid of the current program.
565  */
566 #$d_setrgid HAS_SETRGID         /**/
567
568 /* HAS_SETRUID:
569  *      This symbol, if defined, indicates that the setruid routine is available
570  *      to change the real uid of the current program.
571  */
572 #$d_setruid HAS_SETRUID         /**/
573
574 /* HAS_SETSID:
575  *      This symbol, if defined, indicates that the setsid routine is
576  *      available to set the process group ID.
577  */
578 #$d_setsid HAS_SETSID   /**/
579
580 /* Shmat_t:
581  *      This symbol holds the return type of the shmat() system call.
582  *      Usually set to 'void *' or 'char *'.
583  */
584 /* HAS_SHMAT_PROTOTYPE:
585  *      This symbol, if defined, indicates that the sys/shm.h includes
586  *      a prototype for shmat().  Otherwise, it is up to the program to
587  *      guess one.  Shmat_t shmat _((int, Shmat_t, int)) is a good guess,
588  *      but not always right so it should be emitted by the program only
589  *      when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
590  */
591 #define Shmat_t $shmattype      /**/
592 #$d_shmatprototype HAS_SHMAT_PROTOTYPE  /**/
593
594 /* HAS_STRCHR:
595  *      This symbol is defined to indicate that the strchr()/strrchr()
596  *      functions are available for string searching. If not, try the
597  *      index()/rindex() pair.
598  */
599 /* HAS_INDEX:
600  *      This symbol is defined to indicate that the index()/rindex()
601  *      functions are available for string searching.
602  */
603 #$d_strchr HAS_STRCHR   /**/
604 #$d_index HAS_INDEX     /**/
605
606 /* HAS_STRCOLL:
607  *      This symbol, if defined, indicates that the strcoll routine is
608  *      available to compare strings using collating information.
609  */
610 #$d_strcoll HAS_STRCOLL /**/
611
612 /* USE_STRUCT_COPY:
613  *      This symbol, if defined, indicates that this C compiler knows how
614  *      to copy structures.  If undefined, you'll need to use a block copy
615  *      routine of some sort instead.
616  */
617 #$d_strctcpy    USE_STRUCT_COPY /**/
618
619 /* HAS_STRTOD:
620  *      This symbol, if defined, indicates that the strtod routine is
621  *      available to provide better numeric string conversion than atof().
622  */
623 #$d_strtod HAS_STRTOD   /**/
624
625 /* HAS_STRTOL:
626  *      This symbol, if defined, indicates that the strtol routine is available
627  *      to provide better numeric string conversion than atoi() and friends.
628  */
629 #$d_strtol HAS_STRTOL   /**/
630
631 /* HAS_STRTOUL:
632  *      This symbol, if defined, indicates that the strtoul routine is
633  *      available to provide conversion of strings to unsigned long.
634  */
635 #$d_strtoul HAS_STRTOUL /**/
636
637 /* HAS_STRXFRM:
638  *      This symbol, if defined, indicates that the strxfrm() routine is
639  *      available to transform strings.
640  */
641 #$d_strxfrm HAS_STRXFRM /**/
642
643 /* HAS_SYMLINK:
644  *      This symbol, if defined, indicates that the symlink routine is available
645  *      to create symbolic links.
646  */
647 #$d_symlink HAS_SYMLINK /**/
648
649 /* HAS_SYSCALL:
650  *      This symbol, if defined, indicates that the syscall routine is
651  *      available to call arbitrary system calls. If undefined, that's tough.
652  */
653 #$d_syscall HAS_SYSCALL /**/
654
655 /* HAS_SYSCONF:
656  *      This symbol, if defined, indicates that sysconf() is available
657  *      to determine system related limits and options.
658  */
659 #$d_sysconf HAS_SYSCONF /**/
660
661 /* HAS_SYSTEM:
662  *      This symbol, if defined, indicates that the system routine is
663  *      available to issue a shell command.
664  */
665 #$d_system HAS_SYSTEM   /**/
666
667 /* HAS_TCGETPGRP:
668  *      This symbol, if defined, indicates that the tcgetpgrp routine is
669  *      available to get foreground process group ID.
670  */
671 #$d_tcgetpgrp HAS_TCGETPGRP             /**/
672
673 /* HAS_TCSETPGRP:
674  *      This symbol, if defined, indicates that the tcsetpgrp routine is
675  *      available to set foreground process group ID.
676  */
677 #$d_tcsetpgrp HAS_TCSETPGRP             /**/
678
679 /* HAS_TRUNCATE:
680  *      This symbol, if defined, indicates that the truncate routine is
681  *      available to truncate files.
682  */
683 #$d_truncate HAS_TRUNCATE       /**/
684
685 /* HAS_TZNAME:
686  *      This symbol, if defined, indicates that the tzname[] array is
687  *      available to access timezone names.
688  */
689 #$d_tzname HAS_TZNAME           /**/
690
691 /* HAS_UMASK:
692  *      This symbol, if defined, indicates that the umask routine is
693  *      available to set and get the value of the file creation mask.
694  */
695 #$d_umask HAS_UMASK             /**/
696
697 /* HASVOLATILE:
698  *      This symbol, if defined, indicates that this C compiler knows about
699  *      the volatile declaration.
700  */
701 #$d_volatile    HASVOLATILE     /**/
702 #ifndef HASVOLATILE
703 #define volatile
704 #endif
705
706 /* HAS_WAIT4:
707  *      This symbol, if defined, indicates that wait4() exists.
708  */
709 #$d_wait4 HAS_WAIT4     /**/
710
711 /* HAS_WAITPID:
712  *      This symbol, if defined, indicates that the waitpid routine is
713  *      available to wait for child process.
714  */
715 #$d_waitpid HAS_WAITPID /**/
716
717 /* HAS_WCSTOMBS:
718  *      This symbol, if defined, indicates that the wcstombs routine is
719  *      available to convert wide character strings to multibyte strings.
720  */
721 #$d_wcstombs HAS_WCSTOMBS       /**/
722
723 /* HAS_WCTOMB:
724  *      This symbol, if defined, indicates that the wctomb routine is available
725  *      to covert a wide character to a multibyte.
726  */
727 #$d_wctomb HAS_WCTOMB           /**/
728
729 /* I_ARPA_INET:
730  *      This symbol, if defined, indicates to the C program that it should
731  *      include <arpa/inet.h> to get inet_addr and friends declarations.
732  */
733 #$i_arpainet    I_ARPA_INET             /**/
734
735 /* I_DBM:
736  *      This symbol, if defined, indicates that <dbm.h> exists and should
737  *      be included.
738  */
739 /* I_RPCSVC_DBM:
740  *      This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
741  *      should be included.
742  */
743 #$i_dbm I_DBM   /**/
744 #$i_rpcsvcdbm I_RPCSVC_DBM      /**/
745
746 /* I_DIRENT:
747  *      This symbol, if defined, indicates to the C program that it should
748  *      include <dirent.h>. Using this symbol also triggers the definition
749  *      of the Direntry_t define which ends up being 'struct dirent' or
750  *      'struct direct' depending on the availability of <dirent.h>.
751  */
752 /* DIRNAMLEN:
753  *      This symbol, if defined, indicates to the C program that the length
754  *      of directory entry names is provided by a d_namlen field.  Otherwise
755  *      you need to do strlen() on the d_name field.
756  */
757 /* Direntry_t:
758  *      This symbol is set to 'struct direct' or 'struct dirent' depending on
759  *      whether dirent is available or not. You should use this pseudo type to
760  *      portably declare your directory entries.
761  */
762 #$i_dirent I_DIRENT             /**/
763 #$d_dirnamlen DIRNAMLEN /**/
764 #define Direntry_t $direntrytype
765
766 /* I_DLFCN:
767  *      This symbol, if defined, indicates that <dlfcn.h> exists and should
768  *      be included.
769  */
770 #$i_dlfcn I_DLFCN               /**/
771
772 /* I_FCNTL:
773  *      This manifest constant tells the C program to include <fcntl.h>.
774  */
775 #$i_fcntl I_FCNTL       /**/
776
777 /* I_FLOAT:
778  *      This symbol, if defined, indicates to the C program that it should
779  *      include <float.h> to get definition of symbols like DBL_MAX or
780  *      DBL_MIN, i.e. machine dependent floating point values.
781  */
782 #$i_float I_FLOAT               /**/
783
784 /* I_LIMITS:
785  *      This symbol, if defined, indicates to the C program that it should
786  *      include <limits.h> to get definition of symbols like WORD_BIT or
787  *      LONG_MAX, i.e. machine dependant limitations.
788  */
789 #$i_limits I_LIMITS             /**/
790
791 /* I_LOCALE:
792  *      This symbol, if defined, indicates to the C program that it should
793  *      include <locale.h>.
794  */
795 #$i_locale      I_LOCALE                /**/
796
797 /* I_MATH:
798  *      This symbol, if defined, indicates to the C program that it should
799  *      include <math.h>.
800  */
801 #$i_math I_MATH         /**/
802
803 /* I_MEMORY:
804  *      This symbol, if defined, indicates to the C program that it should
805  *      include <memory.h>.
806  */
807 #$i_memory I_MEMORY             /**/
808
809 /* I_NDBM:
810  *      This symbol, if defined, indicates that <ndbm.h> exists and should
811  *      be included.
812  */
813 #$i_ndbm I_NDBM /**/
814
815 /* I_NET_ERRNO:
816  *      This symbol, if defined, indicates that <net/errno.h> exists and 
817  *      should be included.
818  */
819 #$i_neterrno I_NET_ERRNO                /**/
820
821 /* I_NETINET_IN:
822  *      This symbol, if defined, indicates to the C program that it should
823  *      include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
824  */
825 #$i_niin I_NETINET_IN   /**/
826
827 /* I_SFIO:
828  *      This symbol, if defined, indicates to the C program that it should
829  *      include <sfio.h>.
830  */
831 #$i_sfio        I_SFIO          /**/
832
833 /* I_STDDEF:
834  *      This symbol, if defined, indicates that <stddef.h> exists and should
835  *      be included.
836  */
837 #$i_stddef I_STDDEF     /**/
838
839 /* I_STDLIB:
840  *      This symbol, if defined, indicates that <stdlib.h> exists and should
841  *      be included.
842  */
843 #$i_stdlib I_STDLIB             /**/
844
845 /* I_STRING:
846  *      This symbol, if defined, indicates to the C program that it should
847  *      include <string.h> (USG systems) instead of <strings.h> (BSD systems).
848  */
849 #$i_string I_STRING             /**/
850
851 /* I_SYS_DIR:
852  *      This symbol, if defined, indicates to the C program that it should
853  *      include <sys/dir.h>.
854  */
855 #$i_sysdir I_SYS_DIR            /**/
856
857 /* I_SYS_FILE:
858  *      This symbol, if defined, indicates to the C program that it should
859  *      include <sys/file.h> to get definition of R_OK and friends.
860  */
861 #$i_sysfile I_SYS_FILE          /**/
862
863 /* I_SYS_IOCTL:
864  *      This symbol, if defined, indicates that <sys/ioctl.h> exists and should
865  *      be included. Otherwise, include <sgtty.h> or <termio.h>.
866  */
867 #$i_sysioctl    I_SYS_IOCTL             /**/
868
869 /* I_SYS_NDIR:
870  *      This symbol, if defined, indicates to the C program that it should
871  *      include <sys/ndir.h>.
872  */
873 #$i_sysndir I_SYS_NDIR  /**/
874
875 /* I_SYS_PARAM:
876  *      This symbol, if defined, indicates to the C program that it should
877  *      include <sys/param.h>.
878  */
879 #$i_sysparam I_SYS_PARAM                /**/
880
881 /* I_SYS_RESOURCE:
882  *      This symbol, if defined, indicates to the C program that it should
883  *      include <sys/resource.h>.
884  */
885 #$i_sysresrc I_SYS_RESOURCE             /**/
886
887 /* I_SYS_SELECT:
888  *      This symbol, if defined, indicates to the C program that it should
889  *      include <sys/select.h> in order to get definition of struct timeval.
890  */
891 #$i_sysselct I_SYS_SELECT       /**/
892
893 /* I_SYS_STAT:
894  *      This symbol, if defined, indicates to the C program that it should
895  *      include <sys/stat.h>.
896  */
897 #$i_sysstat     I_SYS_STAT              /**/
898
899 /* I_SYS_TIMES:
900  *      This symbol, if defined, indicates to the C program that it should
901  *      include <sys/times.h>.
902  */
903 #$i_systimes    I_SYS_TIMES             /**/
904
905 /* I_SYS_TYPES:
906  *      This symbol, if defined, indicates to the C program that it should
907  *      include <sys/types.h>.
908  */
909 #$i_systypes    I_SYS_TYPES             /**/
910
911 /* I_SYS_UN:
912  *      This symbol, if defined, indicates to the C program that it should
913  *      include <sys/un.h> to get UNIX domain socket definitions.
914  */
915 #$i_sysun I_SYS_UN              /**/
916
917 /* I_SYS_WAIT:
918  *      This symbol, if defined, indicates to the C program that it should
919  *      include <sys/wait.h>.
920  */
921 #$i_syswait I_SYS_WAIT  /**/
922
923 /* I_TERMIO:
924  *      This symbol, if defined, indicates that the program should include
925  *      <termio.h> rather than <sgtty.h>.  There are also differences in
926  *      the ioctl() calls that depend on the value of this symbol.
927  */
928 /* I_TERMIOS:
929  *      This symbol, if defined, indicates that the program should include
930  *      the POSIX termios.h rather than sgtty.h or termio.h.
931  *      There are also differences in the ioctl() calls that depend on the
932  *      value of this symbol.
933  */
934 /* I_SGTTY:
935  *      This symbol, if defined, indicates that the program should include
936  *      <sgtty.h> rather than <termio.h>.  There are also differences in
937  *      the ioctl() calls that depend on the value of this symbol.
938  */
939 #$i_termio I_TERMIO             /**/
940 #$i_termios I_TERMIOS           /**/
941 #$i_sgtty I_SGTTY               /**/
942
943 /* I_UNISTD:
944  *      This symbol, if defined, indicates to the C program that it should
945  *      include <unistd.h>.
946  */
947 #$i_unistd I_UNISTD             /**/
948
949 /* I_UTIME:
950  *      This symbol, if defined, indicates to the C program that it should
951  *      include <utime.h>.
952  */
953 #$i_utime I_UTIME               /**/
954
955 /* I_VALUES:
956  *      This symbol, if defined, indicates to the C program that it should
957  *      include <values.h> to get definition of symbols like MINFLOAT or
958  *      MAXLONG, i.e. machine dependant limitations.  Probably, you
959  *      should use <limits.h> instead, if it is available.
960  */
961 #$i_values I_VALUES             /**/
962
963 /* I_STDARG:
964  *      This symbol, if defined, indicates that <stdarg.h> exists and should
965  *      be included.
966  */
967 /* I_VARARGS:
968  *      This symbol, if defined, indicates to the C program that it should
969  *      include <varargs.h>.
970  */
971 #$i_stdarg I_STDARG             /**/
972 #$i_varargs I_VARARGS   /**/
973
974 /* I_VFORK:
975  *      This symbol, if defined, indicates to the C program that it should
976  *      include vfork.h.
977  */
978 #$i_vfork I_VFORK       /**/
979
980 /* CAN_PROTOTYPE:
981  *      If defined, this macro indicates that the C compiler can handle
982  *      function prototypes.
983  */
984 /* _:
985  *      This macro is used to declare function parameters for folks who want
986  *      to make declarations with prototypes using a different style than
987  *      the above macros.  Use double parentheses.  For example:
988  *
989  *              int main _((int argc, char *argv[]));
990  */
991 #$prototype     CAN_PROTOTYPE   /**/
992 #ifdef CAN_PROTOTYPE
993 #define _(args) args
994 #else
995 #define _(args) ()
996 #endif
997
998 /* SH_PATH:
999  *      This symbol contains the full pathname to the shell used on this
1000  *      on this system to execute Bourne shell scripts.  Usually, this will be
1001  *      /bin/sh, though it's possible that some systems will have /bin/ksh,
1002  *      /bin/pdksh, /bin/ash, /bin/bash, or even something such as
1003  *      D:/bin/sh.exe.
1004  */
1005 #define SH_PATH "$sh"  /**/
1006
1007 /* STDCHAR:
1008  *      This symbol is defined to be the type of char used in stdio.h.
1009  *      It has the values "unsigned char" or "char".
1010  */
1011 #define STDCHAR $stdchar        /**/
1012
1013 /* HAS_ACCESSX:
1014  *      This symbol, if defined, indicates that the accessx routine is
1015  *      available to do extended access checks.
1016  */
1017 #$d_accessx HAS_ACCESSX         /**/
1018
1019 /* HAS_EACCESS:
1020  *      This symbol, if defined, indicates that the eaccess routine is
1021  *      available to do extended access checks.
1022  */
1023 #$d_eaccess HAS_EACCESS         /**/
1024
1025 /* I_SYS_ACCESS:
1026  *     This symbol, if defined, indicates to the C program that it should
1027  *     include <sys/access.h>.
1028  */
1029 #$i_sysaccess   I_SYS_ACCESS                /**/
1030
1031 /* I_SYS_SECURITY:
1032  *     This symbol, if defined, indicates to the C program that it should
1033  *     include <sys/security.h>.
1034  */
1035 #$i_syssecrt   I_SYS_SECURITY   /**/
1036
1037 /* CROSSCOMPILE:
1038  *      This symbol, if defined, signifies that we our
1039  *      build process is a cross-compilation.
1040  */
1041 #$crosscompile CROSSCOMPILE             /**/
1042
1043 /* INTSIZE:
1044  *      This symbol contains the value of sizeof(int) so that the C
1045  *      preprocessor can make decisions based on it.
1046  */
1047 /* LONGSIZE:
1048  *      This symbol contains the value of sizeof(long) so that the C
1049  *      preprocessor can make decisions based on it.
1050  */
1051 /* SHORTSIZE:
1052  *      This symbol contains the value of sizeof(short) so that the C
1053  *      preprocessor can make decisions based on it.
1054  */
1055 #define INTSIZE $intsize                /**/
1056 #define LONGSIZE $longsize              /**/
1057 #define SHORTSIZE $shortsize            /**/
1058
1059 /* MULTIARCH:
1060  *      This symbol, if defined, signifies that the build
1061  *      process will produce some binary files that are going to be
1062  *      used in a cross-platform environment.  This is the case for
1063  *      example with the NeXT "fat" binaries that contain executables
1064  *      for several CPUs.
1065  */
1066 #$multiarch MULTIARCH           /**/
1067
1068 /* MEM_ALIGNBYTES:
1069  *      This symbol contains the number of bytes required to align a
1070  *      double. Usual values are 2, 4 and 8. The default is eight,
1071  *      for safety.
1072  */
1073 #if defined(CROSSCOMPILE) || defined(MULTIARCH)
1074 #  define MEM_ALIGNBYTES 8
1075 #else
1076 #define MEM_ALIGNBYTES $alignbytes
1077 #endif
1078
1079 /* BYTEORDER:
1080  *      This symbol holds the hexadecimal constant defined in byteorder,
1081  *      i.e. 0x1234 or 0x4321, etc...
1082  *      If the compiler supports cross-compiling or multiple-architecture
1083  *      binaries (eg. on NeXT systems), use compiler-defined macros to
1084  *      determine the byte order.
1085  *      On NeXT 3.2 (and greater), you can build "Fat" Multiple Architecture
1086  *      Binaries (MAB) on either big endian or little endian machines.
1087  *      The endian-ness is available at compile-time.  This only matters
1088  *      for perl, where the config.h can be generated and installed on 
1089  *      one system, and used by a different architecture to build an
1090  *      extension.  Older versions of NeXT that might not have
1091  *      defined either *_ENDIAN__ were all on Motorola 680x0 series,
1092  *      so the default case (for NeXT) is big endian to catch them. 
1093  *      This might matter for NeXT 3.0.
1094  */
1095 #if defined(CROSSCOMPILE) || defined(MULTIARCH)
1096 #  ifdef __LITTLE_ENDIAN__
1097 #    if LONGSIZE == 4
1098 #      define BYTEORDER 0x1234
1099 #    else
1100 #      if LONGSIZE == 8
1101 #        define BYTEORDER 0x12345678
1102 #      endif
1103 #    endif
1104 #  else
1105 #    ifdef __BIG_ENDIAN__
1106 #      if LONGSIZE == 4
1107 #        define BYTEORDER 0x4321
1108 #      else
1109 #        if LONGSIZE == 8
1110 #          define BYTEORDER 0x87654321
1111 #        endif
1112 #      endif
1113 #    endif
1114 #  endif
1115 #  if !defined(BYTEORDER) && (defined(NeXT) || defined(__NeXT__))
1116 #    define BYTEORDER 0x4321
1117 #  endif
1118 #else
1119 #define BYTEORDER 0x$byteorder  /* large digits for MSB */
1120 #endif /* NeXT */
1121
1122 /* CASTI32:
1123  *      This symbol is defined if the C compiler can cast negative
1124  *      or large floating point numbers to 32-bit ints.
1125  */
1126 #$d_casti32     CASTI32         /**/
1127
1128 /* CASTNEGFLOAT:
1129  *      This symbol is defined if the C compiler can cast negative
1130  *      numbers to unsigned longs, ints and shorts.
1131  */
1132 /* CASTFLAGS:
1133  *      This symbol contains flags that say what difficulties the compiler
1134  *      has casting odd floating values to unsigned long:
1135  *              0 = ok
1136  *              1 = couldn't cast < 0
1137  *              2 = couldn't cast >= 0x80000000
1138  *              4 = couldn't cast in argument expression list
1139  */
1140 #$d_castneg     CASTNEGFLOAT            /**/
1141 #define CASTFLAGS $castflags            /**/
1142
1143 /* VOID_CLOSEDIR:
1144  *      This symbol, if defined, indicates that the closedir() routine
1145  *      does not return a value.
1146  */
1147 #$d_void_closedir VOID_CLOSEDIR         /**/
1148
1149 /* HAS_FD_SET:
1150  *      This symbol, when defined, indicates presence of the fd_set typedef
1151  *      in <sys/types.h>
1152  */
1153 #$d_fd_set HAS_FD_SET   /**/
1154
1155 /* Gconvert:
1156  *      This preprocessor macro is defined to convert a floating point
1157  *      number to a string without a trailing decimal point.  This
1158  *      emulates the behavior of sprintf("%g"), but is sometimes much more
1159  *      efficient.  If gconvert() is not available, but gcvt() drops the
1160  *      trailing decimal point, then gcvt() is used.  If all else fails,
1161  *      a macro using sprintf("%g") is used. Arguments for the Gconvert
1162  *      macro are: value, number of digits, whether trailing zeros should
1163  *      be retained, and the output buffer.
1164  *      Possible values are:
1165  *              d_Gconvert='gconvert((x),(n),(t),(b))'
1166  *              d_Gconvert='gcvt((x),(n),(b))'
1167  *              d_Gconvert='sprintf((b),"%.*g",(n),(x))'
1168  *      The last two assume trailing zeros should not be kept.
1169  */
1170 #define Gconvert(x,n,t,b) $d_Gconvert
1171
1172 /* HAS_GNULIBC:
1173  *      This symbol, if defined, indicates to the C program that 
1174  *      the GNU C library is being used.
1175  */
1176 #$d_gnulibc HAS_GNULIBC         /**/
1177 /* HAS_ISASCII:
1178  *      This manifest constant lets the C program know that isascii 
1179  *      is available.
1180  */
1181 #$d_isascii HAS_ISASCII         /**/
1182
1183 /* HAS_LCHOWN:
1184  *      This symbol, if defined, indicates that the lchown routine is
1185  *      available to operate on a symbolic link (instead of following the
1186  *      link).
1187  */
1188 #$d_lchown HAS_LCHOWN           /**/
1189
1190 /* HAS_OPEN3:
1191  *      This manifest constant lets the C program know that the three
1192  *      argument form of open(2) is available.
1193  */
1194 #$d_open3 HAS_OPEN3             /**/
1195
1196 /* HAS_SAFE_BCOPY:
1197  *      This symbol, if defined, indicates that the bcopy routine is available
1198  *      to copy potentially overlapping memory blocks. Otherwise you should
1199  *      probably use memmove() or memcpy(). If neither is defined, roll your
1200  *      own version.
1201  */
1202 #$d_safebcpy HAS_SAFE_BCOPY     /**/
1203
1204 /* HAS_SAFE_MEMCPY:
1205  *      This symbol, if defined, indicates that the memcpy routine is available
1206  *      to copy potentially overlapping memory blocks. Otherwise you should
1207  *      probably use memmove() or memcpy(). If neither is defined, roll your
1208  *      own version.
1209  */
1210 #$d_safemcpy HAS_SAFE_MEMCPY    /**/
1211
1212 /* HAS_SANE_MEMCMP:
1213  *      This symbol, if defined, indicates that the memcmp routine is available
1214  *      and can be used to compare relative magnitudes of chars with their high
1215  *      bits set.  If it is not defined, roll your own version.
1216  */
1217 #$d_sanemcmp HAS_SANE_MEMCMP    /**/
1218
1219 /* HAS_SIGACTION:
1220  *      This symbol, if defined, indicates that Vr4's sigaction() routine
1221  *      is available.
1222  */
1223 #$d_sigaction HAS_SIGACTION     /**/
1224
1225 /* HAS_SIGSETJMP:
1226  *      This variable indicates to the C program that the sigsetjmp()
1227  *      routine is available to save the calling process's registers
1228  *      and stack environment for later use by siglongjmp(), and
1229  *      to optionally save the process's signal mask.  See
1230  *      Sigjmp_buf, Sigsetjmp, and Siglongjmp.
1231  */
1232 /* Sigjmp_buf:
1233  *      This is the buffer type to be used with Sigsetjmp and Siglongjmp.
1234  */
1235 /* Sigsetjmp:
1236  *      This macro is used in the same way as sigsetjmp(), but will invoke
1237  *      traditional setjmp() if sigsetjmp isn't available.
1238  *      See HAS_SIGSETJMP.
1239  */
1240 /* Siglongjmp:
1241  *      This macro is used in the same way as siglongjmp(), but will invoke
1242  *      traditional longjmp() if siglongjmp isn't available.
1243  *      See HAS_SIGSETJMP.
1244  */
1245 #$d_sigsetjmp HAS_SIGSETJMP     /**/
1246 #ifdef HAS_SIGSETJMP
1247 #define Sigjmp_buf sigjmp_buf
1248 #define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
1249 #define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
1250 #else
1251 #define Sigjmp_buf jmp_buf
1252 #define Sigsetjmp(buf,save_mask) setjmp((buf))
1253 #define Siglongjmp(buf,retval) longjmp((buf),(retval))
1254 #endif
1255
1256 /* USE_STDIO_PTR:
1257  *      This symbol is defined if the _ptr and _cnt fields (or similar)
1258  *      of the stdio FILE structure can be used to access the stdio buffer
1259  *      for a file handle.  If this is defined, then the FILE_ptr(fp)
1260  *      and FILE_cnt(fp) macros will also be defined and should be used
1261  *      to access these fields.
1262  */
1263 /* FILE_ptr:
1264  *      This macro is used to access the _ptr field (or equivalent) of the
1265  *      FILE structure pointed to by its argument. This macro will always be
1266  *      defined if USE_STDIO_PTR is defined.
1267  */
1268 /* STDIO_PTR_LVALUE:
1269  *      This symbol is defined if the FILE_ptr macro can be used as an
1270  *      lvalue.
1271  */
1272 /* FILE_cnt:
1273  *      This macro is used to access the _cnt field (or equivalent) of the
1274  *      FILE structure pointed to by its argument. This macro will always be
1275  *      defined if USE_STDIO_PTR is defined.
1276  */
1277 /* STDIO_CNT_LVALUE:
1278  *      This symbol is defined if the FILE_cnt macro can be used as an
1279  *      lvalue.
1280  */
1281 #$d_stdstdio USE_STDIO_PTR      /**/
1282 #ifdef USE_STDIO_PTR
1283 #define FILE_ptr(fp)    $stdio_ptr
1284 #$d_stdio_ptr_lval STDIO_PTR_LVALUE             /**/
1285 #define FILE_cnt(fp)    $stdio_cnt
1286 #$d_stdio_cnt_lval STDIO_CNT_LVALUE             /**/
1287 #endif
1288
1289 /* USE_STDIO_BASE:
1290  *      This symbol is defined if the _base field (or similar) of the
1291  *      stdio FILE structure can be used to access the stdio buffer for
1292  *      a file handle.  If this is defined, then the FILE_base(fp) macro
1293  *      will also be defined and should be used to access this field.
1294  *      Also, the FILE_bufsiz(fp) macro will be defined and should be used
1295  *      to determine the number of bytes in the buffer.  USE_STDIO_BASE
1296  *      will never be defined unless USE_STDIO_PTR is.
1297  */
1298 /* FILE_base:
1299  *      This macro is used to access the _base field (or equivalent) of the
1300  *      FILE structure pointed to by its argument. This macro will always be
1301  *      defined if USE_STDIO_BASE is defined.
1302  */
1303 /* FILE_bufsiz:
1304  *      This macro is used to determine the number of bytes in the I/O
1305  *      buffer pointed to by _base field (or equivalent) of the FILE
1306  *      structure pointed to its argument. This macro will always be defined
1307  *      if USE_STDIO_BASE is defined.
1308  */
1309 #$d_stdiobase USE_STDIO_BASE    /**/
1310 #ifdef USE_STDIO_BASE
1311 #define FILE_base(fp)   $stdio_base
1312 #define FILE_bufsiz(fp) $stdio_bufsiz
1313 #endif
1314
1315 /* HAS_VPRINTF:
1316  *      This symbol, if defined, indicates that the vprintf routine is available
1317  *      to printf with a pointer to an argument list.  If unavailable, you
1318  *      may need to write your own, probably in terms of _doprnt().
1319  */
1320 /* USE_CHAR_VSPRINTF:
1321  *      This symbol is defined if this system has vsprintf() returning type
1322  *      (char*).  The trend seems to be to declare it as "int vsprintf()".  It
1323  *      is up to the package author to declare vsprintf correctly based on the
1324  *      symbol.
1325  */
1326 #$d_vprintf HAS_VPRINTF /**/
1327 #$d_charvspr USE_CHAR_VSPRINTF  /**/
1328
1329 /* DOUBLESIZE:
1330  *      This symbol contains the size of a double, so that the C preprocessor
1331  *      can make decisions based on it.
1332  */
1333 #define DOUBLESIZE $doublesize          /**/
1334
1335 /* I_TIME:
1336  *      This symbol, if defined, indicates to the C program that it should
1337  *      include <time.h>.
1338  */
1339 /* I_SYS_TIME:
1340  *      This symbol, if defined, indicates to the C program that it should
1341  *      include <sys/time.h>.
1342  */
1343 /* I_SYS_TIME_KERNEL:
1344  *      This symbol, if defined, indicates to the C program that it should
1345  *      include <sys/time.h> with KERNEL defined.
1346  */
1347 #$i_time I_TIME         /**/
1348 #$i_systime I_SYS_TIME          /**/
1349 #$i_systimek I_SYS_TIME_KERNEL          /**/
1350
1351 /* VAL_O_NONBLOCK:
1352  *      This symbol is to be used during open() or fcntl(F_SETFL) to turn on
1353  *      non-blocking I/O for the file descriptor. Note that there is no way
1354  *      back, i.e. you cannot turn it blocking again this way. If you wish to
1355  *      alternatively switch between blocking and non-blocking, use the
1356  *      ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
1357  */
1358 /* VAL_EAGAIN:
1359  *      This symbol holds the errno error code set by read() when no data was
1360  *      present on the non-blocking file descriptor.
1361  */
1362 /* RD_NODATA:
1363  *      This symbol holds the return code from read() when no data is present
1364  *      on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
1365  *      not defined, then you can't distinguish between no data and EOF by
1366  *      issuing a read(). You'll have to find another way to tell for sure!
1367  */
1368 /* EOF_NONBLOCK:
1369  *      This symbol, if defined, indicates to the C program that a read() on
1370  *      a non-blocking file descriptor will return 0 on EOF, and not the value
1371  *      held in RD_NODATA (-1 usually, in that case!).
1372  */
1373 #define VAL_O_NONBLOCK $o_nonblock
1374 #define VAL_EAGAIN $eagain
1375 #define RD_NODATA $rd_nodata
1376 #$d_eofnblk EOF_NONBLOCK
1377
1378 /* PTRSIZE:
1379  *      This symbol contains the size of a pointer, so that the C preprocessor
1380  *      can make decisions based on it.  It will be sizeof(void *) if
1381  *      the compiler supports (void *); otherwise it will be
1382  *      sizeof(char *).
1383  */
1384 #define PTRSIZE $ptrsize                /**/
1385
1386 /* Drand01:
1387  *      This macro is to be used to generate uniformly distributed
1388  *      random numbers over the range [0., 1.[.  You may have to supply
1389  *      an 'extern double drand48();' in your program since SunOS 4.1.3
1390  *      doesn't provide you with anything relevant in it's headers.
1391  *      See HAS_DRAND48_PROTO.
1392  */
1393 /* Rand_seed_t:
1394  *      This symbol defines the type of the argument of the
1395  *      random seed function.
1396  */
1397 /* seedDrand01:
1398  *      This symbol defines the macro to be used in seeding the
1399  *      random number generator (see Drand01).
1400  */
1401 /* RANDBITS:
1402  *      This symbol indicates how many bits are produced by the
1403  *      function used to generate normalized random numbers.
1404  *      Values include 15, 16, 31, and 48.
1405  */
1406 #define Drand01()               $drand01                /**/
1407 #define Rand_seed_t             $randseedtype           /**/
1408 #define seedDrand01(x)  $seedfunc((Rand_seed_t)x)       /**/
1409 #define RANDBITS                $randbits               /**/
1410
1411 /* SSize_t:
1412  *      This symbol holds the type used by functions that return
1413  *      a count of bytes or an error condition.  It must be a signed type.
1414  *      It is usually ssize_t, but may be long or int, etc.
1415  *      It may be necessary to include <sys/types.h> or <unistd.h>
1416  *      to get any typedef'ed information.
1417  *      We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
1418  */
1419 #define SSize_t $ssizetype       /* signed count of bytes */
1420
1421 /* EBCDIC:
1422  *     This symbol, if defined, indicates that this system uses
1423  *      EBCDIC encoding.
1424  */
1425 #$ebcdic        EBCDIC          /**/
1426
1427 /* ARCHLIB:
1428  *      This variable, if defined, holds the name of the directory in
1429  *      which the user wants to put architecture-dependent public
1430  *      library files for $package.  It is most often a local directory
1431  *      such as /usr/local/lib.  Programs using this variable must be
1432  *      prepared to deal with filename expansion.  If ARCHLIB is the
1433  *      same as PRIVLIB, it is not defined, since presumably the
1434  *      program already searches PRIVLIB.
1435  */
1436 /* ARCHLIB_EXP:
1437  *      This symbol contains the ~name expanded version of ARCHLIB, to be used
1438  *      in programs that are not prepared to deal with ~ expansion at run-time.
1439  */
1440 #$d_archlib ARCHLIB "$archlib"          /**/
1441 #$d_archlib ARCHLIB_EXP "$archlibexp"           /**/
1442
1443 /* BIN:
1444  *      This symbol holds the path of the bin directory where the package will
1445  *      be installed. Program must be prepared to deal with ~name substitution.
1446  */
1447 /* BIN_EXP:
1448  *      This symbol is the filename expanded version of the BIN symbol, for
1449  *      programs that do not want to deal with that at run-time.
1450  */
1451 #define BIN "$bin"      /**/
1452 #define BIN_EXP "$binexp"       /**/
1453
1454 /* INSTALL_USR_BIN_PERL:
1455  *      This symbol, if defined, indicates that Perl is to be installed
1456  *      also as /usr/bin/perl.
1457  */
1458 #$installusrbinperl INSTALL_USR_BIN_PERL        /**/
1459
1460 /* PRIVLIB:
1461  *      This symbol contains the name of the private library for this package.
1462  *      The library is private in the sense that it needn't be in anyone's
1463  *      execution path, but it should be accessible by the world.  The program
1464  *      should be prepared to do ~ expansion.
1465  */
1466 /* PRIVLIB_EXP:
1467  *      This symbol contains the ~name expanded version of PRIVLIB, to be used
1468  *      in programs that are not prepared to deal with ~ expansion at run-time.
1469  */
1470 #define PRIVLIB "$privlib"              /**/
1471 #define PRIVLIB_EXP "$privlibexp"               /**/
1472
1473 /* SITEARCH:
1474  *      This symbol contains the name of the private library for this package.
1475  *      The library is private in the sense that it needn't be in anyone's
1476  *      execution path, but it should be accessible by the world.  The program
1477  *      should be prepared to do ~ expansion.
1478  *      The standard distribution will put nothing in this directory.
1479  *      Individual sites may place their own extensions and modules in
1480  *      this directory.
1481  */
1482 /* SITEARCH_EXP:
1483  *      This symbol contains the ~name expanded version of SITEARCH, to be used
1484  *      in programs that are not prepared to deal with ~ expansion at run-time.
1485  */
1486 #define SITEARCH "$sitearch"            /**/
1487 #define SITEARCH_EXP "$sitearchexp"             /**/
1488
1489 /* SITELIB:
1490  *      This symbol contains the name of the private library for this package.
1491  *      The library is private in the sense that it needn't be in anyone's
1492  *      execution path, but it should be accessible by the world.  The program
1493  *      should be prepared to do ~ expansion.
1494  *      The standard distribution will put nothing in this directory.
1495  *      Individual sites may place their own extensions and modules in
1496  *      this directory.
1497  */
1498 /* SITELIB_EXP:
1499  *      This symbol contains the ~name expanded version of SITELIB, to be used
1500  *      in programs that are not prepared to deal with ~ expansion at run-time.
1501  */
1502 #define SITELIB "$sitelib"              /**/
1503 #define SITELIB_EXP "$sitelibexp"               /**/
1504
1505 /* PERL_VENDORLIB_EXP:
1506  *      This symbol contains the ~name expanded version of VENDORLIB, to be used
1507  *      in programs that are not prepared to deal with ~ expansion at run-time.
1508  */
1509 #$d_vendorlib PERL_VENDORLIB_EXP "$vendorlibexp"                /**/
1510
1511 /* OSNAME:
1512  *      This symbol contains the name of the operating system, as determined
1513  *      by Configure.  You shouldn't rely on it too much; the specific
1514  *      feature tests from Configure are generally more reliable.
1515  */
1516 #define OSNAME "$osname"                /**/
1517
1518 /* CAT2:
1519  *      This macro catenates 2 tokens together.
1520  */
1521 /* STRINGIFY:
1522  *      This macro surrounds its token with double quotes.
1523  */
1524 #if $cpp_stuff == 1
1525 #define CAT2(a,b)a/**/b
1526 #define STRINGIFY(a)"a"
1527                 /* If you can get stringification with catify, tell me how! */
1528 #endif
1529 #if $cpp_stuff == 42
1530 #define CAT2(a,b)a ## b
1531 #define StGiFy(a)# a
1532 #define STRINGIFY(a)StGiFy(a)
1533 #endif
1534 #if $cpp_stuff != 1 && $cpp_stuff != 42
1535 #include "Bletch: How does this C preprocessor catenate tokens?"
1536 #endif
1537
1538 /* CPPSTDIN:
1539  *      This symbol contains the first part of the string which will invoke
1540  *      the C preprocessor on the standard input and produce to standard
1541  *      output.  Typical value of "cc -E" or "/lib/cpp", but it can also
1542  *      call a wrapper. See CPPRUN.
1543  */
1544 /* CPPMINUS:
1545  *      This symbol contains the second part of the string which will invoke
1546  *      the C preprocessor on the standard input and produce to standard
1547  *      output.  This symbol will have the value "-" if CPPSTDIN needs a minus
1548  *      to specify standard input, otherwise the value is "".
1549  */
1550 /* CPPRUN:
1551  *      This symbol contains the string which will invoke a C preprocessor on
1552  *      the standard input and produce to standard output. It needs to end
1553  *      with CPPLAST, after all other preprocessor flags have been specified.
1554  *      The main difference with CPPSTDIN is that this program will never be a
1555  *      pointer to a shell wrapper, i.e. it will be empty if no preprocessor is
1556  *      available directly to the user. Note that it may well be different from
1557  *      the preprocessor used to compile the C program.
1558  */
1559 #define CPPSTDIN "$cppstdin"
1560 #define CPPMINUS "$cppminus"
1561 #define CPPRUN "$cpprun"
1562
1563 /* HAS_ACCESS:
1564  *      This manifest constant lets the C program know that the access()
1565  *      system call is available to check for accessibility using real UID/GID.
1566  *      (always present on UNIX.)
1567  */
1568 #$d_access HAS_ACCESS           /**/
1569
1570 /* HAS_CSH:
1571  *      This symbol, if defined, indicates that the C-shell exists.
1572  */
1573 /* CSH:
1574  *      This symbol, if defined, contains the full pathname of csh.
1575  */
1576 #$d_csh HAS_CSH         /**/
1577 #ifdef HAS_CSH
1578 #define CSH "$full_csh" /**/
1579 #endif
1580
1581 /* HAS_ENDGRENT:
1582  *      This symbol, if defined, indicates that the getgrent routine is
1583  *      available for finalizing sequential access of the group database.
1584  */
1585 #$d_endgrent HAS_ENDGRENT               /**/
1586
1587 /* HAS_ENDHOSTENT:
1588  *      This symbol, if defined, indicates that the endhostent() routine is
1589  *      available to close whatever was being used for host queries.
1590  */
1591 #$d_endhent HAS_ENDHOSTENT              /**/
1592
1593 /* HAS_ENDNETENT:
1594  *      This symbol, if defined, indicates that the endnetent() routine is
1595  *      available to close whatever was being used for network queries.
1596  */
1597 #$d_endnent HAS_ENDNETENT               /**/
1598
1599 /* HAS_ENDPROTOENT:
1600  *      This symbol, if defined, indicates that the endprotoent() routine is
1601  *      available to close whatever was being used for protocol queries.
1602  */
1603 #$d_endpent HAS_ENDPROTOENT             /**/
1604
1605 /* HAS_ENDPWENT:
1606  *      This symbol, if defined, indicates that the getgrent routine is
1607  *      available for finalizing sequential access of the passwd database.
1608  */
1609 #$d_endpwent HAS_ENDPWENT               /**/
1610
1611 /* HAS_ENDSERVENT:
1612  *      This symbol, if defined, indicates that the endservent() routine is
1613  *      available to close whatever was being used for service queries.
1614  */
1615 #$d_endsent HAS_ENDSERVENT              /**/
1616
1617 /* HAS_GETGRENT:
1618  *      This symbol, if defined, indicates that the getgrent routine is
1619  *      available for sequential access of the group database.
1620  */
1621 #$d_getgrent HAS_GETGRENT               /**/
1622
1623 /* HAS_GETHOSTBYADDR:
1624  *      This symbol, if defined, indicates that the gethostbyaddr() routine is
1625  *      available to look up hosts by their IP addresses.
1626  */
1627 #$d_gethbyaddr HAS_GETHOSTBYADDR                /**/
1628
1629 /* HAS_GETHOSTBYNAME:
1630  *      This symbol, if defined, indicates that the gethostbyname() routine is
1631  *      available to look up host names in some data base or other.
1632  */
1633 #$d_gethbyname HAS_GETHOSTBYNAME                /**/
1634
1635 /* HAS_GETHOSTENT:
1636  *      This symbol, if defined, indicates that the gethostent() routine is
1637  *      available to look up host names in some data base or another.
1638  */
1639 #$d_gethent HAS_GETHOSTENT              /**/
1640
1641 /* HAS_GETHOSTNAME:
1642  *      This symbol, if defined, indicates that the C program may use the
1643  *      gethostname() routine to derive the host name.  See also HAS_UNAME
1644  *      and PHOSTNAME.
1645  */
1646 /* HAS_UNAME:
1647  *      This symbol, if defined, indicates that the C program may use the
1648  *      uname() routine to derive the host name.  See also HAS_GETHOSTNAME
1649  *      and PHOSTNAME.
1650  */
1651 /* PHOSTNAME:
1652  *      This symbol, if defined, indicates the command to feed to the
1653  *      popen() routine to derive the host name.  See also HAS_GETHOSTNAME
1654  *      and HAS_UNAME.  Note that the command uses a fully qualified path,
1655  *      so that it is safe even if used by a process with super-user
1656  *      privileges.
1657  */
1658 #$d_gethname HAS_GETHOSTNAME    /**/
1659 #$d_uname HAS_UNAME             /**/
1660 #$d_phostname HAS_PHOSTNAME
1661 #ifdef HAS_PHOSTNAME
1662 #define PHOSTNAME "$aphostname" /* How to get the host name */
1663 #endif
1664
1665 /* HAS_GETNETBYADDR:
1666  *      This symbol, if defined, indicates that the getnetbyaddr() routine is
1667  *      available to look up networks by their IP addresses.
1668  */
1669 #$d_getnbyaddr HAS_GETNETBYADDR         /**/
1670
1671 /* HAS_GETNETBYNAME:
1672  *      This symbol, if defined, indicates that the getnetbyname() routine is
1673  *      available to look up networks by their names.
1674  */
1675 #$d_getnbyname HAS_GETNETBYNAME         /**/
1676
1677 /* HAS_GETNETENT:
1678  *      This symbol, if defined, indicates that the getnetent() routine is
1679  *      available to look up network names in some data base or another.
1680  */
1681 #$d_getnent HAS_GETNETENT               /**/
1682
1683 /* HAS_GETPROTOENT:
1684  *      This symbol, if defined, indicates that the getprotoent() routine is
1685  *      available to look up protocols in some data base or another.
1686  */
1687 #$d_getpent HAS_GETPROTOENT             /**/
1688
1689 /* HAS_GETPROTOBYNAME:
1690  *      This symbol, if defined, indicates that the getprotobyname()
1691  *      routine is available to look up protocols by their name.
1692  */
1693 /* HAS_GETPROTOBYNUMBER:
1694  *      This symbol, if defined, indicates that the getprotobynumber()
1695  *      routine is available to look up protocols by their number.
1696  */
1697 #$d_getpbyname HAS_GETPROTOBYNAME               /**/
1698 #$d_getpbynumber HAS_GETPROTOBYNUMBER           /**/
1699
1700 /* HAS_GETPWENT:
1701  *      This symbol, if defined, indicates that the getpwent routine is
1702  *      available for sequential access of the passwd database.
1703  *      If this is not available, the older getpw() function may be available.
1704  */
1705 #$d_getpwent HAS_GETPWENT               /**/
1706
1707 /* HAS_GETSERVENT:
1708  *      This symbol, if defined, indicates that the getservent() routine is
1709  *      available to look up network services in some data base or another.
1710  */
1711 #$d_getsent HAS_GETSERVENT              /**/
1712
1713 /* HAS_GETSERVBYNAME:
1714  *      This symbol, if defined, indicates that the getservbyname()
1715  *      routine is available to look up services by their name.
1716  */
1717 /* HAS_GETSERVBYPORT:
1718  *      This symbol, if defined, indicates that the getservbyport()
1719  *      routine is available to look up services by their port.
1720  */
1721 #$d_getsbyname HAS_GETSERVBYNAME                /**/
1722 #$d_getsbyport HAS_GETSERVBYPORT                /**/
1723
1724 /* HAS_HTONL:
1725  *      This symbol, if defined, indicates that the htonl() routine (and
1726  *      friends htons() ntohl() ntohs()) are available to do network
1727  *      order byte swapping.
1728  */
1729 /* HAS_HTONS:
1730  *      This symbol, if defined, indicates that the htons() routine (and
1731  *      friends htonl() ntohl() ntohs()) are available to do network
1732  *      order byte swapping.
1733  */
1734 /* HAS_NTOHL:
1735  *      This symbol, if defined, indicates that the ntohl() routine (and
1736  *      friends htonl() htons() ntohs()) are available to do network
1737  *      order byte swapping.
1738  */
1739 /* HAS_NTOHS:
1740  *      This symbol, if defined, indicates that the ntohs() routine (and
1741  *      friends htonl() htons() ntohl()) are available to do network
1742  *      order byte swapping.
1743  */
1744 #$d_htonl HAS_HTONL             /**/
1745 #$d_htonl HAS_HTONS             /**/
1746 #$d_htonl HAS_NTOHL             /**/
1747 #$d_htonl HAS_NTOHS             /**/
1748
1749 /* HAS_LONG_DOUBLE:
1750  *      This symbol will be defined if the C compiler supports long
1751  *      doubles.
1752  */
1753 /* LONG_DOUBLESIZE:
1754  *      This symbol contains the size of a long double, so that the 
1755  *      C preprocessor can make decisions based on it.  It is only
1756  *      defined if the system supports long doubles.
1757  */
1758 #$d_longdbl HAS_LONG_DOUBLE             /**/
1759 #ifdef HAS_LONG_DOUBLE
1760 #define LONG_DOUBLESIZE $longdblsize            /**/
1761 #endif
1762
1763 /* HAS_LONG_LONG:
1764  *      This symbol will be defined if the C compiler supports long long.
1765  */
1766 /* LONGLONGSIZE:
1767  *      This symbol contains the size of a long long, so that the 
1768  *      C preprocessor can make decisions based on it.  It is only
1769  *      defined if the system supports long long.
1770  */
1771 #$d_longlong HAS_LONG_LONG              /**/
1772 #ifdef HAS_LONG_LONG
1773 #define LONGLONGSIZE $longlongsize              /**/
1774 #endif
1775
1776 /* HAS_MEMCHR:
1777  *      This symbol, if defined, indicates that the memchr routine is available
1778  *      to locate characters within a C string.
1779  */
1780 #$d_memchr HAS_MEMCHR   /**/
1781
1782 /* HAS_MMAP:
1783  *      This symbol, if defined, indicates that the mmap system call is
1784  *      available to map a file into memory.
1785  */
1786 /* Mmap_t:
1787  *      This symbol holds the return type of the mmap() system call
1788  *      (and simultaneously the type of the first argument).
1789  *      Usually set to 'void *' or 'cadd_t'.
1790  */
1791 #$d_mmap HAS_MMAP               /**/
1792 #define Mmap_t $mmaptype        /**/
1793
1794 /* HAS_MSG:
1795  *      This symbol, if defined, indicates that the entire msg*(2) library is
1796  *      supported (IPC mechanism based on message queues).
1797  */
1798 #$d_msg HAS_MSG         /**/
1799
1800 /* HAS_SEM:
1801  *      This symbol, if defined, indicates that the entire sem*(2) library is
1802  *      supported.
1803  */
1804 #$d_sem HAS_SEM         /**/
1805
1806 /* HAS_SETGRENT:
1807  *      This symbol, if defined, indicates that the setgrent routine is
1808  *      available for initializing sequential access of the group database.
1809  */
1810 #$d_setgrent HAS_SETGRENT               /**/
1811
1812 /* HAS_SETGROUPS:
1813  *      This symbol, if defined, indicates that the setgroups() routine is
1814  *      available to set the list of process groups.  If unavailable, multiple
1815  *      groups are probably not supported.
1816  */
1817 #$d_setgrps HAS_SETGROUPS               /**/
1818
1819 /* HAS_SETHOSTENT:
1820  *      This symbol, if defined, indicates that the sethostent() routine is
1821  *      available.
1822  */
1823 #$d_sethent HAS_SETHOSTENT              /**/
1824
1825 /* HAS_SETNETENT:
1826  *      This symbol, if defined, indicates that the setnetent() routine is
1827  *      available.
1828  */
1829 #$d_setnent HAS_SETNETENT               /**/
1830
1831 /* HAS_SETPROTOENT:
1832  *      This symbol, if defined, indicates that the setprotoent() routine is
1833  *      available.
1834  */
1835 #$d_setpent HAS_SETPROTOENT             /**/
1836
1837 /* HAS_SETPWENT:
1838  *      This symbol, if defined, indicates that the setpwent routine is
1839  *      available for initializing sequential access of the passwd database.
1840  */
1841 #$d_setpwent HAS_SETPWENT               /**/
1842
1843 /* HAS_SETSERVENT:
1844  *      This symbol, if defined, indicates that the setservent() routine is
1845  *      available.
1846  */
1847 #$d_setsent HAS_SETSERVENT              /**/
1848
1849 /* HAS_SETVBUF:
1850  *      This symbol, if defined, indicates that the setvbuf routine is
1851  *      available to change buffering on an open stdio stream.
1852  *      to a line-buffered mode.
1853  */
1854 #$d_setvbuf HAS_SETVBUF         /**/
1855
1856 /* HAS_SHM:
1857  *      This symbol, if defined, indicates that the entire shm*(2) library is
1858  *      supported.
1859  */
1860 #$d_shm HAS_SHM         /**/
1861
1862 /* HAS_SOCKET:
1863  *      This symbol, if defined, indicates that the BSD socket interface is
1864  *      supported.
1865  */
1866 /* HAS_SOCKETPAIR:
1867  *      This symbol, if defined, indicates that the BSD socketpair() call is
1868  *      supported.
1869  */
1870 /* HAS_MSG_CTRUNC:
1871  *      This symbol, if defined, indicates that the MSG_CTRUNC is supported.
1872  *      Checking just with #ifdef might not be enough because this symbol
1873  *      has been known to be an enum.
1874  */
1875 /* HAS_MSG_DONTROUTE:
1876  *      This symbol, if defined, indicates that the MSG_DONTROUTE is supported.
1877  *      Checking just with #ifdef might not be enough because this symbol
1878  *      has been known to be an enum.
1879  */
1880 /* HAS_MSG_OOB:
1881  *      This symbol, if defined, indicates that the MSG_OOB is supported.
1882  *      Checking just with #ifdef might not be enough because this symbol
1883  *      has been known to be an enum.
1884  */
1885 /* HAS_MSG_PEEK:
1886  *      This symbol, if defined, indicates that the MSG_PEEK is supported.
1887  *      Checking just with #ifdef might not be enough because this symbol
1888  *      has been known to be an enum.
1889  */
1890 /* HAS_MSG_PROXY:
1891  *      This symbol, if defined, indicates that the MSG_PROXY is supported.
1892  *      Checking just with #ifdef might not be enough because this symbol
1893  *      has been known to be an enum.
1894  */
1895 /* HAS_SCM_RIGHTS:
1896  *      This symbol, if defined, indicates that the SCM_RIGHTS is supported.
1897  *      Checking just with #ifdef might not be enough because this symbol
1898  *      has been known to be an enum.
1899  */
1900 /* HAS_SENDMSG:
1901  *      This symbol, if defined, indicates that the sendmsg is supported
1902  *      to send messages between sockets.  You will also need struct
1903  *      iovec from <sys/uio.h>, HAS_STRUCT_IOVEC and I_SYSUIO.
1904  */
1905 /* HAS_RECVMSG:
1906  *      This symbol, if defined, indicates that the recvmsg is supported
1907  *      to send messages between sockets.  You will also need struct
1908  *      iovec from <sys/uio.h>, HAS_STRUCT_IOVEC and I_SYSUIO.
1909  */
1910 /* HAS_STRUCT_MSGHDR:
1911  *      This symbol, if defined, indicates that the struct msghdr
1912  *      (BSD 4.3 or 4.4) is supported.  You will also need struct
1913  *      iovec from <sys/uio.h>, HAS_STRUCT_IOVEC and I_SYSUIO.
1914  */
1915 /* HAS_STRUCT_CMSGHDR:
1916  *      This symbol, if defined, indicates that the struct cmsghdr
1917  *      (BSD 4.4) is supported.  You will also need struct
1918  *      iovec from <sys/uio.h>, HAS_STRUCT_IOVEC and I_SYSUIO.
1919  */
1920 #$d_socket      HAS_SOCKET              /**/
1921 #$d_sockpair    HAS_SOCKETPAIR  /**/
1922 #$d_msg_ctrunc  HAS_MSG_CTRUNC  /**/
1923 #$d_msg_dontroute       HAS_MSG_DONTROUTE       /**/
1924 #$d_msg_oob     HAS_MSG_OOB     /**/
1925 #$d_msg_peek    HAS_MSG_PEEK    /**/
1926 #$d_msg_proxy   HAS_MSG_PROXY   /**/
1927 #$d_scm_rights  HAS_SCM_RIGHTS  /**/
1928 #$d_sendmsg     HAS_SENDMSG     /**/
1929 #$d_recvmsg     HAS_RECVMSG     /**/
1930 #$d_msghdr_s    HAS_STRUCT_MSGHDR       /**/
1931 #$d_cmsghdr_s   HAS_STRUCT_CMSGHDR      /**/
1932
1933 /* USE_STAT_BLOCKS:
1934  *      This symbol is defined if this system has a stat structure declaring
1935  *      st_blksize and st_blocks.
1936  */
1937 #$d_statblks USE_STAT_BLOCKS    /**/
1938
1939 /* HAS_STRERROR:
1940  *      This symbol, if defined, indicates that the strerror routine is
1941  *      available to translate error numbers to strings. See the writeup
1942  *      of Strerror() in this file before you try to define your own.
1943  */
1944 /* HAS_SYS_ERRLIST:
1945  *      This symbol, if defined, indicates that the sys_errlist array is
1946  *      available to translate error numbers to strings. The extern int
1947  *      sys_nerr gives the size of that table.
1948  */
1949 /* Strerror:
1950  *      This preprocessor symbol is defined as a macro if strerror() is
1951  *      not available to translate error numbers to strings but sys_errlist[]
1952  *      array is there.
1953  */
1954 #$d_strerror HAS_STRERROR               /**/
1955 #$d_syserrlst HAS_SYS_ERRLIST   /**/
1956 #define Strerror(e) $d_strerrm
1957
1958 /* HAS_UNION_SEMUN:
1959  *      This symbol, if defined, indicates that the union semun is
1960  *      defined by including <sys/sem.h>.  If not, the user code
1961  *      probably needs to define it as:
1962  *      union semun {
1963  *          int val;
1964  *          struct semid_ds *buf;
1965  *          unsigned short *array;
1966  *      }
1967  */
1968 /* USE_SEMCTL_SEMUN:
1969  *      This symbol, if defined, indicates that union semun is
1970  *      used for semctl IPC_STAT.
1971  */
1972 /* USE_SEMCTL_SEMID_DS:
1973  *      This symbol, if defined, indicates that struct semid_ds * is
1974  *      used for semctl IPC_STAT.
1975  */
1976 #$d_union_semun HAS_UNION_SEMUN /**/
1977 #$d_semctl_semun USE_SEMCTL_SEMUN       /**/
1978 #$d_semctl_semid_ds USE_SEMCTL_SEMID_DS /**/
1979
1980 /* HAS_VFORK:
1981  *      This symbol, if defined, indicates that vfork() exists.
1982  */
1983 #$d_vfork HAS_VFORK     /**/
1984
1985 /* Signal_t:
1986  *      This symbol's value is either "void" or "int", corresponding to the
1987  *      appropriate return type of a signal handler.  Thus, you can declare
1988  *      a signal handler using "Signal_t (*handler)()", and define the
1989  *      handler using "Signal_t handler(sig)".
1990  */
1991 #define Signal_t $signal_t      /* Signal handler's return type */
1992
1993 /* Groups_t:
1994  *      This symbol holds the type used for the second argument to
1995  *      getgroups() and setgropus().  Usually, this is the same as
1996  *      gidtype (gid_t) , but sometimes it isn't.
1997  *      It can be int, ushort, uid_t, etc... 
1998  *      It may be necessary to include <sys/types.h> to get any 
1999  *      typedef'ed information.  This is only required if you have
2000  *      getgroups() or setgropus()..
2001  */
2002 #if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
2003 #define Groups_t $groupstype    /* Type for 2nd arg to [sg]etgroups() */
2004 #endif
2005
2006 /* I_GRP:
2007  *      This symbol, if defined, indicates to the C program that it should
2008  *      include <grp.h>.
2009  */
2010 /* GRPASSWD:
2011  *      This symbol, if defined, indicates to the C program that struct group
2012  *      in <grp.h> contains gr_passwd.
2013  */
2014 #$i_grp I_GRP           /**/
2015 #$d_grpasswd GRPASSWD   /**/
2016
2017 /* I_NETDB:
2018  *      This symbol, if defined, indicates that <netdb.h> exists and
2019  *      should be included.
2020  */
2021 #$i_netdb I_NETDB               /**/
2022
2023 /* I_PWD:
2024  *      This symbol, if defined, indicates to the C program that it should
2025  *      include <pwd.h>.
2026  */
2027 /* PWQUOTA:
2028  *      This symbol, if defined, indicates to the C program that struct passwd
2029  *      contains pw_quota.
2030  */
2031 /* PWAGE:
2032  *      This symbol, if defined, indicates to the C program that struct passwd
2033  *      contains pw_age.
2034  */
2035 /* PWCHANGE:
2036  *      This symbol, if defined, indicates to the C program that struct passwd
2037  *      contains pw_change.
2038  */
2039 /* PWCLASS:
2040  *      This symbol, if defined, indicates to the C program that struct passwd
2041  *      contains pw_class.
2042  */
2043 /* PWEXPIRE:
2044  *      This symbol, if defined, indicates to the C program that struct passwd
2045  *      contains pw_expire.
2046  */
2047 /* PWCOMMENT:
2048  *      This symbol, if defined, indicates to the C program that struct passwd
2049  *      contains pw_comment.
2050  */
2051 /* PWGECOS:
2052  *      This symbol, if defined, indicates to the C program that struct passwd
2053  *      contains pw_gecos.
2054  */
2055 /* PWPASSWD:
2056  *      This symbol, if defined, indicates to the C program that struct passwd
2057  *      contains pw_passwd.
2058  */
2059 #$i_pwd I_PWD           /**/
2060 #$d_pwquota PWQUOTA     /**/
2061 #$d_pwage PWAGE /**/
2062 #$d_pwchange PWCHANGE   /**/
2063 #$d_pwclass PWCLASS     /**/
2064 #$d_pwexpire PWEXPIRE   /**/
2065 #$d_pwcomment PWCOMMENT /**/
2066 #$d_pwgecos PWGECOS     /**/
2067 #$d_pwpasswd PWPASSWD   /**/
2068
2069 /* I_SYSUIO:
2070  *      This symbol, if defined, indicates that <sys/uio.h> exists and
2071  *      should be included.
2072  */
2073 #$i_sysuio      I_SYSUIO                /**/
2074
2075 /* Free_t:
2076  *      This variable contains the return type of free().  It is usually
2077  * void, but occasionally int.
2078  */
2079 /* Malloc_t:
2080  *      This symbol is the type of pointer returned by malloc and realloc.
2081  */
2082 #define Malloc_t $malloctype                    /**/
2083 #define Free_t $freetype                        /**/
2084
2085 /* MYMALLOC:
2086  *      This symbol, if defined, indicates that we're using our own malloc.
2087  */
2088 #$d_mymalloc MYMALLOC                   /**/
2089
2090 /* SIG_NAME:
2091  *      This symbol contains a list of signal names in order of
2092  *      signal number. This is intended
2093  *      to be used as a static array initialization, like this:
2094  *              char *sig_name[] = { SIG_NAME };
2095  *      The signals in the list are separated with commas, and each signal
2096  *      is surrounded by double quotes. There is no leading SIG in the signal
2097  *      name, i.e. SIGQUIT is known as "QUIT".
2098  *      Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
2099  *      etc., where nn is the actual signal number (e.g. NUM37).
2100  *      The signal number for sig_name[i] is stored in sig_num[i].
2101  *      The last element is 0 to terminate the list with a NULL.  This
2102  *      corresponds to the 0 at the end of the sig_num list.
2103  */
2104 /* SIG_NUM:
2105  *      This symbol contains a list of signal numbers, in the same order as the
2106  *      SIG_NAME list. It is suitable for static array initialization, as in:
2107  *              int sig_num[] = { SIG_NUM };
2108  *      The signals in the list are separated with commas, and the indices
2109  *      within that list and the SIG_NAME list match, so it's easy to compute
2110  *      the signal name from a number or vice versa at the price of a small
2111  *      dynamic linear lookup. 
2112  *      Duplicates are allowed, but are moved to the end of the list.
2113  *      The signal number corresponding to sig_name[i] is sig_number[i].
2114  *      if (i < NSIG) then sig_number[i] == i.  
2115  *      The last element is 0, corresponding to the 0 at the end of
2116  *      the sig_name list.
2117  */
2118 #define SIG_NAME $sig_name_init         /**/
2119 #define SIG_NUM  $sig_num_init          /**/
2120
2121 /* VOIDFLAGS:
2122  *      This symbol indicates how much support of the void type is given by this
2123  *      compiler.  What various bits mean:
2124  *
2125  *          1 = supports declaration of void
2126  *          2 = supports arrays of pointers to functions returning void
2127  *          4 = supports comparisons between pointers to void functions and
2128  *                  addresses of void functions
2129  *          8 = suports declaration of generic void pointers
2130  *
2131  *      The package designer should define VOIDUSED to indicate the requirements
2132  *      of the package.  This can be done either by #defining VOIDUSED before
2133  *      including config.h, or by defining defvoidused in Myinit.U.  If the
2134  *      latter approach is taken, only those flags will be tested.  If the
2135  *      level of void support necessary is not present, defines void to int.
2136  */
2137 #ifndef VOIDUSED
2138 #define VOIDUSED $defvoidused
2139 #endif
2140 #define VOIDFLAGS $voidflags
2141 #if (VOIDFLAGS & VOIDUSED) != VOIDUSED
2142 #define void int                /* is void to be avoided? */
2143 #define M_VOID                  /* Xenix strikes again */
2144 #endif
2145
2146 /* DLSYM_NEEDS_UNDERSCORE:
2147  *      This symbol, if defined, indicates that we need to prepend an
2148  *      underscore to the symbol name before calling dlsym().  This only
2149  *      makes sense if you *have* dlsym, which we will presume is the
2150  *      case if you're using dl_dlopen.xs.
2151  */
2152 #$d_dlsymun     DLSYM_NEEDS_UNDERSCORE  /**/
2153
2154 /* HAS_ENDSPENT:
2155  *      This symbol, if defined, indicates that the endspent system call is
2156  *      available to finalize the scan of SysV shadow password entries.
2157  */
2158 #$d_endspent HAS_ENDSPENT               /**/
2159
2160 /* HAS_FSEEKO:
2161  *      This symbol, if defined, indicates that the fseeko routine is
2162  *      available to fseek beyond 32 bits (useful for ILP32 hosts).
2163  */
2164 #$d_fseeko HAS_FSEEKO           /**/
2165
2166 /* HAS_FTELLO:
2167  *      This symbol, if defined, indicates that the ftello routine is
2168  *      available to ftell beyond 32 bits (useful for ILP32 hosts).
2169  */
2170 #$d_ftello HAS_FTELLO           /**/
2171
2172 /* HAS_GETMNTENT:
2173  *      This symbol, if defined, indicates that the getmntent routine is
2174  *      available to iterate through mounted file systems.
2175  */
2176 #$d_getmntent HAS_GETMNTENT             /**/
2177
2178 /* HAS_GETSPENT:
2179  *      This symbol, if defined, indicates that the getspent system call is
2180  *      available to retrieve SysV shadow password entries sequentially.
2181  */
2182 #$d_getspent HAS_GETSPENT               /**/
2183
2184 /* HAS_GETSPNAM:
2185  *      This symbol, if defined, indicates that the getspnam system call is
2186  *      available to retrieve SysV shadow password entries by name.
2187  */
2188 #$d_getspnam HAS_GETSPNAM               /**/
2189
2190 /* HAS_HASMNTOPT:
2191  *      This symbol, if defined, indicates that the hasmntopt routine is
2192  *      available to query the mount options of file systems.
2193  */
2194 #$d_hasmntopt HAS_HASMNTOPT             /**/
2195
2196 /* HAS_MADVISE:
2197  *      This symbol, if defined, indicates that the madvise system call is
2198  *      available to map a file into memory.
2199  */
2200 #$d_madvise HAS_MADVISE         /**/
2201
2202 /* HAS_MPROTECT:
2203  *      This symbol, if defined, indicates that the mprotect system call is
2204  *      available to modify the access protection of a memory mapped file.
2205  */
2206 #$d_mprotect HAS_MPROTECT               /**/
2207
2208 /* HAS_READV:
2209  *      This symbol, if defined, indicates that the readv routine is
2210  *      available to do gather reads.  You will also need <sys/uio.h>
2211  *      and there I_SYSUIO.
2212  */
2213 #$d_readv HAS_READV             /**/
2214
2215 /* HAS_SETSPENT:
2216  *      This symbol, if defined, indicates that the setspent system call is
2217  *      available to initialize the scan of SysV shadow password entries.
2218  */
2219 #$d_setspent HAS_SETSPENT               /**/
2220
2221 /* USE_SFIO:
2222  *      This symbol, if defined, indicates that sfio should
2223  *      be used.
2224  */
2225 #$d_sfio        USE_SFIO                /**/
2226
2227 /* HAS_FSTATFS:
2228  *      This symbol, if defined, indicates that the fstatfs routine is
2229  *      available to stat filesystems of file descriptors.
2230  */
2231 /* HAS_STRUCT_STATFS_FLAGS:
2232  *      This symbol, if defined, indicates that the struct statfs
2233  *      does have the f_flags member containing the mount flags of
2234  *      the filesystem holding the file.
2235  *      This kind of struct statfs is coming from sys/mount.h (BSD),
2236  *      not from sys/statfs.h (SYSV).
2237  */
2238 #$d_fstatfs HAS_FSTATFS         /**/
2239 #$d_statfsflags HAS_STRUCT_STATFS_FLAGS         /**/
2240
2241 /* HAS_FSTATVFS:
2242  *      This symbol, if defined, indicates that the fstatvfs routine is
2243  *      available to stat filesystems of file descriptors.
2244  */
2245 #$d_fstatvfs HAS_FSTATVFS               /**/
2246
2247 /* HAS_TELLDIR_PROTO:
2248  *      This symbol, if defined, indicates that the system provides
2249  *      a prototype for the telldir() function.  Otherwise, it is up
2250  *      to the program to supply one.  A good guess is
2251  *              extern long telldir _((DIR*));
2252  */
2253 #$d_telldirproto        HAS_TELLDIR_PROTO       /**/
2254
2255 /* HAS_WRITEV:
2256  *      This symbol, if defined, indicates that the writev routine is
2257  *      available to do scatter writes.
2258  */
2259 #$d_writev HAS_WRITEV           /**/
2260
2261 /* HAS_DBMINIT64:
2262  *      This symbol, if defined, indicates that the dbminit64 routine is
2263  *      available to open dbm files larger than 2 gigabytes.
2264  */
2265 /* HAS_DBMCLOSE64:
2266  *      This symbol, if defined, indicates that the dbmclose64 routine is
2267  *      available to close dbm files larger than 2 gigabytes.
2268  */
2269 /* HAS_FETCH64:
2270  *      This symbol, if defined, indicates that the fetch64 routine is
2271  *      available to fetch from dbm files larger than 2 gigabytes.
2272  */
2273 /* HAS_STORE64:
2274  *      This symbol, if defined, indicates that the store64 routine is
2275  *      available to store to dbm files larger than 2 gigabytes.
2276  */
2277 /* HAS_DELETE64:
2278  *      This symbol, if defined, indicates that the delete64 routine is
2279  *      available to delete from dbm files larger than 2 gigabytes.
2280  */
2281 /* HAS_FIRSTKEY64:
2282  *      This symbol, if defined, indicates that the firstkey64 routine is
2283  *      available to firstkey in dbm files larger than 2 gigabytes.
2284  */
2285 /* HAS_NEXTKEY64:
2286  *      This symbol, if defined, indicates that the nextkey64 routine is
2287  *      available to nextkey in dbm files larger than 2 gigabytes.
2288  */
2289 #$d_dbminit64   HAS_DBMINIT64   /**/
2290 #$d_dbmclose64  HAS_DBMCLOSE64  /**/
2291 #$d_fetch64     HAS_FETCH64             /**/
2292 #$d_store64     HAS_STORE64             /**/
2293 #$d_delete64    HAS_DELETE64            /**/
2294 #$d_firstkey64  HAS_FIRSTKEY64  /**/
2295 #$d_nextkey64   HAS_NEXTKEY64   /**/
2296
2297 /* USE_DYNAMIC_LOADING:
2298  *      This symbol, if defined, indicates that dynamic loading of
2299  *      some sort is available.
2300  */
2301 #$usedl USE_DYNAMIC_LOADING             /**/
2302
2303 /* FFLUSH_NULL:
2304  *      This symbol, if defined, tells that fflush(NULL) does flush
2305  *      all pending stdio output.
2306  */
2307 /* FFLUSH_ALL:
2308  *      This symbol, if defined, tells that to flush
2309  *      all pending stdio output one must loop through all
2310  *      the stdio file handles stored in an array and fflush them.
2311  *      Note that if fflushNULL is defined, fflushall will not
2312  *      even be probed for and will be left undefined.
2313  */
2314 #$fflushNULL    FFLUSH_NULL             /**/
2315 #$fflushall     FFLUSH_ALL              /**/
2316
2317 /* DB_Prefix_t:
2318  *      This symbol contains the type of the prefix structure element
2319  *      in the <db.h> header file.  In older versions of DB, it was
2320  *      int, while in newer ones it is u_int32_t.
2321  */
2322 /* DB_Hash_t:
2323  *      This symbol contains the type of the prefix structure element
2324  *      in the <db.h> header file.  In older versions of DB, it was
2325  *      int, while in newer ones it is size_t.
2326  */
2327 #define DB_Hash_t       $db_hashtype            /**/
2328 #define DB_Prefix_t     $db_prefixtype          /**/
2329
2330 /* I_INTTYPES:
2331  *     This symbol, if defined, indicates to the C program that it should
2332  *     include <inttypes.h>.
2333  */
2334 /* HAS_INT64_T:
2335  *     This symbol will defined if the C compiler supports int64_t.
2336  *     Usually the <inttypes.h> needs to be included, but sometimes
2337  *      <sys/types.h> is enough.
2338  */
2339 #$i_inttypes   I_INTTYPES                /**/
2340 #$d_int64t     HAS_INT64_T               /**/
2341
2342 /* I_MNTENT:
2343  *      This symbol, if defined, indicates that <mntent.h> exists and
2344  *      should be included.
2345  */
2346 #$i_mntent      I_MNTENT                /**/
2347
2348 /* I_NETINET_TCP:
2349  *     This symbol, if defined, indicates to the C program that it should
2350  *     include <netinet/tcp.h>.
2351  */
2352 #$i_netinettcp   I_NETINET_TCP                /**/
2353
2354 /* I_POLL:
2355  *      This symbol, if defined, indicates that <poll.h> exists and
2356  *      should be included.
2357  */
2358 #$i_poll        I_POLL          /**/
2359
2360 /* I_SHADOW:
2361  *      This symbol, if defined, indicates that <shadow.h> exists and
2362  *      should be included.
2363  */
2364 #$i_shadow      I_SHADOW                /**/
2365
2366 /* I_SOCKS:
2367  *      This symbol, if defined, indicates that <socks.h> exists and
2368  *      should be included.
2369  */
2370 #$i_socks       I_SOCKS         /**/
2371
2372 /* I_SYS_MMAN:
2373  *      This symbol, if defined, indicates that <sys/mman.h> exists and
2374  *      should be included.
2375  */
2376 #$i_sysmman     I_SYS_MMAN              /**/
2377
2378 /* I_SYS_MOUNT:
2379  *      This symbol, if defined, indicates that <sys/mount.h> exists and
2380  *      should be included.
2381  */
2382 #$i_sysmount    I_SYS_MOUNT             /**/
2383
2384 /* I_SYS_STATVFS:
2385  *      This symbol, if defined, indicates that <sys/statvfs.h> exists and
2386  *      should be included.
2387  */
2388 #$i_sysstatvfs  I_SYS_STATVFS           /**/
2389
2390 /* HAS_FSTAT64:
2391  *      This symbol, if defined, indicates that the fstat64 routine is
2392  *      available to stat files (fds) larger than 2 gigabytes.
2393  */
2394 /* HAS_FTRUNCATE64:
2395  *      This symbol, if defined, indicates that the ftruncate64 routine is
2396  *      available to tell files larger than 2 gigabytes.
2397  */
2398 /* HAS_LSEEK64:
2399  *      This symbol, if defined, indicates that the lseek64 routine is
2400  *      available to seek files larger than 2 gigabytes.
2401  */
2402 /* HAS_LSTAT64:
2403  *      This symbol, if defined, indicates that the lstat64 routine is
2404  *      available to stat files (symlinks) larger than 2 gigabytes.
2405  */
2406 /* HAS_OPEN64:
2407  *      This symbol, if defined, indicates that the open64 routine is
2408  *      available to open files larger than 2 gigabytes.
2409  */
2410 /* HAS_OPENDIR64:
2411  *      This symbol, if defined, indicates that the opendir64 routine is
2412  *      available to opendir files larger than 2 gigabytes.
2413  */
2414 /* HAS_READDIR64:
2415  *      This symbol, if defined, indicates that the readdir64 routine is
2416  *      available to readdir files larger than 2 gigabytes.
2417  */
2418 /* HAS_SEEKDIR64:
2419  *      This symbol, if defined, indicates that the seekdir64 routine is
2420  *      available to seekdir files larger than 2 gigabytes.
2421  */
2422 /* HAS_STAT64:
2423  *      This symbol, if defined, indicates that the stat64 routine is
2424  *      available to stat files larger than 2 gigabytes.
2425  */
2426 /* HAS_TELLDIR64:
2427  *      This symbol, if defined, indicates that the telldir64 routine is
2428  *      available to telldir files larger than 2 gigabytes.
2429  */
2430 /* HAS_TRUNCATE64:
2431  *      This symbol, if defined, indicates that the truncate64 routine is
2432  *      available to truncate files larger than 2 gigabytes.
2433  */
2434 /* HAS_OFF64_T:
2435  *      This symbol will be defined if the C compiler supports off64_t.
2436  */
2437 /* HAS_STRUCT_DIRENT64:
2438  *      This symbol will be defined if the C compiler supports struct dirent64.
2439  */
2440 #$d_fstat64     HAS_FSTAT64             /**/
2441 #$d_ftruncate64 HAS_FTRUNCATE64 /**/
2442 #$d_lseek64     HAS_LSEEK64             /**/
2443 #$d_lstat64     HAS_LSTAT64             /**/
2444 #$d_open64      HAS_OPEN64              /**/
2445 #$d_opendir64   HAS_OPENDIR64   /**/
2446 #$d_readdir64   HAS_READDIR64   /**/
2447 #$d_seekdir64   HAS_SEEKDIR64   /**/
2448 #$d_stat64      HAS_STAT64              /**/
2449 #$d_telldir64   HAS_TELLDIR64   /**/
2450 #$d_truncate64  HAS_TRUNCATE64  /**/
2451 #$d_off64_t      HAS_OFF64_T            /**/
2452 #$d_dirent64_s   HAS_STRUCT_DIRENT64    /**/
2453
2454 /* SELECT_MIN_BITS:
2455  *      This symbol holds the minimum number of bits operated by select.
2456  *      That is, if you do select(n, ...), how many bits at least will be
2457  *      cleared in the masks if some activity is detected.  Usually this
2458  *      is either n or 32*ceil(n/32), especially many little-endians do
2459  *      the latter.  This is only useful if you have select(), naturally.
2460  */
2461 #define SELECT_MIN_BITS         $selectminbits  /**/
2462
2463 /* STARTPERL:
2464  *      This variable contains the string to put in front of a perl
2465  *      script to make sure (one hopes) that it runs with perl and not
2466  *      some shell.
2467  */
2468 #define STARTPERL "$startperl"          /**/
2469
2470 /* HAS_FGETPOS64:
2471  *      This symbol, if defined, indicates that the fgetpos64 routine is
2472  *      available to getpos files larger than 2 gigabytes.
2473  */
2474 /* HAS_FOPEN64:
2475  *      This symbol, if defined, indicates that the fopen64 routine is
2476  *      available to open files larger than 2 gigabytes.
2477  */
2478 /* HAS_FREOPEN64:
2479  *      This symbol, if defined, indicates that the freopen64 routine is
2480  *      available to reopen files larger than 2 gigabytes.
2481  */
2482 /* HAS_FSEEK64:
2483  *      This symbol, if defined, indicates that the fseek64 routine is
2484  *      available to seek files larger than 2 gigabytes.
2485  */
2486 /* HAS_FSEEKO64:
2487  *      This symbol, if defined, indicates that the fseeko64 routine is
2488  *      available to seek files larger than 2 gigabytes.
2489  */
2490 /* HAS_FSETPOS64:
2491  *      This symbol, if defined, indicates that the fsetpos64 routine is
2492  *      available to setpos files larger than 2 gigabytes.
2493  */
2494 /* HAS_FTELL64:
2495  *      This symbol, if defined, indicates that the ftell64 routine is
2496  *      available to tell files larger than 2 gigabytes.
2497  */
2498 /* HAS_FTELLO64:
2499  *      This symbol, if defined, indicates that the ftello64 routine is
2500  *      available to tell files larger than 2 gigabytes.
2501  */
2502 /* HAS_TMPFILE64:
2503  *      This symbol, if defined, indicates that the tmpfile64 routine is
2504  *      available to tmpfile files larger than 2 gigabytes.
2505  */
2506 #$d_fgetpos64   HAS_FGETPOS64   /**/
2507 #$d_fopen64     HAS_FOPEN64             /**/
2508 #$d_freopen64   HAS_FREOPEN64   /**/
2509 #$d_fseek64     HAS_FSEEK64             /**/
2510 #$d_fseeko64    HAS_FSEEKO64            /**/
2511 #$d_fsetpos64   HAS_FSETPOS64   /**/
2512 #$d_ftell64     HAS_FTELL64             /**/
2513 #$d_ftello64    HAS_FTELLO64            /**/
2514 #$d_tmpfile64   HAS_TMPFILE64   /**/
2515
2516 /* HAS_STDIO_STREAM_ARRAY:
2517  *      This symbol, if defined, tells that there is an array
2518  *      holding the stdio streams.
2519  */
2520 /* STDIO_STREAM_ARRAY:
2521  *      This symbol tells the name of the array holding the stdio streams.
2522  *      Usual values include _iob, __iob, and __sF.
2523  */
2524 #$d_stdio_stream_array  HAS_STDIO_STREAM_ARRAY  /**/
2525 #define STDIO_STREAM_ARRAY      $stdio_stream_array
2526
2527 /* USE_64_BITS:
2528  *      This symbol, if defined, indicates that 64-bit interfaces should
2529  *      be used when available.  If not defined, the native default interfaces
2530  *      will be used (be they 32 or 64 bits).
2531  */
2532 #$use64bits     USE_64_BITS             /**/
2533
2534 /* MULTIPLICITY:
2535  *      This symbol, if defined, indicates that Perl should
2536  *      be built to use multiplicity.
2537  */
2538 #$usemultiplicity       MULTIPLICITY            /**/
2539
2540 /* USE_PERLIO:
2541  *      This symbol, if defined, indicates that the PerlIO abstraction should
2542  *      be used throughout.  If not defined, stdio should be
2543  *      used in a fully backward compatible manner.
2544  */
2545 #$useperlio     USE_PERLIO              /**/
2546
2547 /* USE_SOCKS:
2548  *      This symbol, if defined, indicates that Perl should
2549  *      be built to use socks.
2550  */
2551 #$usesocks      USE_SOCKS               /**/
2552
2553 /* HAS_DRAND48_PROTO:
2554  *      This symbol, if defined, indicates that the system provides
2555  *      a prototype for the drand48() function.  Otherwise, it is up
2556  *      to the program to supply one.  A good guess is
2557  *              extern double drand48 _((void));
2558  */
2559 #$d_drand48proto        HAS_DRAND48_PROTO       /**/
2560
2561 /* HAS_GETHOST_PROTOS:
2562  *      This symbol, if defined, indicates that <netdb.h> includes
2563  *      prototypes for gethostent(), gethostbyname(), and
2564  *      gethostbyaddr().  Otherwise, it is up to the program to guess
2565  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
2566  */
2567 #$d_gethostprotos       HAS_GETHOST_PROTOS      /**/
2568
2569 /* HAS_GETNET_PROTOS:
2570  *      This symbol, if defined, indicates that <netdb.h> includes
2571  *      prototypes for getnetent(), getnetbyname(), and
2572  *      getnetbyaddr().  Otherwise, it is up to the program to guess
2573  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
2574  */
2575 #$d_getnetprotos        HAS_GETNET_PROTOS       /**/
2576
2577 /* HAS_GETPROTO_PROTOS:
2578  *      This symbol, if defined, indicates that <netdb.h> includes
2579  *      prototypes for getprotoent(), getprotobyname(), and
2580  *      getprotobyaddr().  Otherwise, it is up to the program to guess
2581  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
2582  */
2583 #$d_getprotoprotos      HAS_GETPROTO_PROTOS     /**/
2584
2585 /* HAS_GETSERV_PROTOS:
2586  *      This symbol, if defined, indicates that <netdb.h> includes
2587  *      prototypes for getservent(), getservbyname(), and
2588  *      getservbyaddr().  Otherwise, it is up to the program to guess
2589  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
2590  */
2591 #$d_getservprotos       HAS_GETSERV_PROTOS      /**/
2592
2593 /* Netdb_host_t:
2594  *      This symbol holds the type used for the 1st argument
2595  *      to gethostbyaddr().
2596  */
2597 /* Netdb_hlen_t:
2598  *      This symbol holds the type used for the 2nd argument
2599  *      to gethostbyaddr().
2600  */
2601 /* Netdb_name_t:
2602  *      This symbol holds the type used for the argument to
2603  *      gethostbyname().
2604  */
2605 /* Netdb_net_t:
2606  *      This symbol holds the type used for the 1st argument to
2607  *      getnetbyaddr().
2608  */
2609 #define Netdb_host_t            $netdb_host_type /**/
2610 #define Netdb_hlen_t            $netdb_hlen_type /**/
2611 #define Netdb_name_t            $netdb_name_type /**/
2612 #define Netdb_net_t             $netdb_net_type /**/
2613
2614 /* Select_fd_set_t:
2615  *      This symbol holds the type used for the 2nd, 3rd, and 4th
2616  *      arguments to select.  Usually, this is 'fd_set *', if HAS_FD_SET
2617  *      is defined, and 'int *' otherwise.  This is only useful if you 
2618  *      have select(), of course.
2619  */
2620 #define Select_fd_set_t         $selecttype     /**/
2621
2622 /* ARCHNAME:
2623  *      This symbol holds a string representing the architecture name.
2624  *      It may be used to construct an architecture-dependant pathname
2625  *      where library files may be held under a private library, for
2626  *      instance.
2627  */
2628 #define ARCHNAME "$archname"            /**/
2629
2630 /* OLD_PTHREAD_CREATE_JOINABLE:
2631  *      This symbol, if defined, indicates how to create pthread
2632  *      in joinable (aka undetached) state.  NOTE: not defined
2633  *      if pthread.h already has defined PTHREAD_CREATE_JOINABLE
2634  *      (the new version of the constant).
2635  *      If defined, known values are PTHREAD_CREATE_UNDETACHED
2636  *      and __UNDETACHED.
2637  */
2638 #$d_old_pthread_create_joinable OLD_PTHREAD_CREATE_JOINABLE $old_pthread_create_joinable /**/
2639
2640 /* HAS_PTHREAD_YIELD:
2641  *      This symbol, if defined, indicates that the pthread_yield 
2642  *      routine is available to yield the execution of the current
2643  *      thread.  sched_yield is preferable to pthread_yield.
2644  */
2645 /* SCHED_YIELD:
2646  *      This symbol defines the way to yield the execution of
2647  *      the current thread.  Known ways are sched_yield,
2648  *      pthread_yield, and pthread_yield with NULL.
2649  */
2650 /* HAS_SCHED_YIELD:
2651  *      This symbol, if defined, indicates that the sched_yield
2652  *      routine is available to yield the execution of the current
2653  *      thread.  sched_yield is preferable to pthread_yield.
2654  */
2655 #$d_pthread_yield HAS_PTHREAD_YIELD     /**/
2656 #define SCHED_YIELD     $sched_yield    /**/
2657 #$d_sched_yield HAS_SCHED_YIELD /**/
2658
2659 /* I_MACH_CTHREADS:
2660  *     This symbol, if defined, indicates to the C program that it should
2661  *     include <mach/cthreads.h>.
2662  */
2663 #$i_machcthr   I_MACH_CTHREADS  /**/
2664
2665 /* USE_THREADS:
2666  *      This symbol, if defined, indicates that Perl should
2667  *      be built to use threads.
2668  */
2669 /* OLD_PTHREADS_API:
2670  *      This symbol, if defined, indicates that Perl should
2671  *      be built to use the old draft POSIX threads API.
2672  */
2673 #$usethreads    USE_THREADS             /**/
2674 #$d_oldpthreads OLD_PTHREADS_API                /**/
2675
2676 /* Time_t:
2677  *      This symbol holds the type returned by time(). It can be long,
2678  *      or time_t on BSD sites (in which case <sys/types.h> should be
2679  *      included).
2680  */
2681 #define Time_t $timetype                /* Time type */
2682
2683 /* HAS_TIMES:
2684  *      This symbol, if defined, indicates that the times() routine exists.
2685  *      Note that this became obsolete on some systems (SUNOS), which now
2686  * use getrusage(). It may be necessary to include <sys/times.h>.
2687  */
2688 #$d_times HAS_TIMES             /**/
2689
2690 /* Fpos_t:
2691  *      This symbol holds the type used to declare file positions in libc.
2692  *      It can be fpos_t, long, uint, etc... It may be necessary to include
2693  *      <sys/types.h> to get any typedef'ed information.
2694  */
2695 #define Fpos_t $fpostype                /* File position type */
2696
2697 /* Gid_t:
2698  *      This symbol holds the return type of getgid() and the type of
2699  *      argument to setrgid() and related functions.  Typically,
2700  *      it is the type of group ids in the kernel. It can be int, ushort,
2701  *      uid_t, etc... It may be necessary to include <sys/types.h> to get
2702  *      any typedef'ed information.
2703  */
2704 #define Gid_t $gidtype          /* Type for getgid(), etc... */
2705
2706 /* Off_t:
2707  *      This symbol holds the type used to declare offsets in the kernel.
2708  *      It can be int, long, off_t, etc... It may be necessary to include
2709  *      <sys/types.h> to get any typedef'ed information.
2710  */
2711 /* LSEEKSIZE:
2712  *      This symbol holds the number of bytes used by the Off_t.
2713  */
2714 #define Off_t $lseektype                /* <offset> type */
2715 #define LSEEKSIZE $lseeksize            /* <offset> size */
2716
2717 /* Mode_t:
2718  *      This symbol holds the type used to declare file modes 
2719  *      for systems calls.  It is usually mode_t, but may be
2720  *      int or unsigned short.  It may be necessary to include <sys/types.h>
2721  *      to get any typedef'ed information.
2722  */
2723 #define Mode_t $modetype         /* file mode parameter for system calls */
2724
2725 /* Pid_t:
2726  *      This symbol holds the type used to declare process ids in the kernel.
2727  *      It can be int, uint, pid_t, etc... It may be necessary to include
2728  *      <sys/types.h> to get any typedef'ed information.
2729  */
2730 #define Pid_t $pidtype          /* PID type */
2731
2732 /* Size_t:
2733  *      This symbol holds the type used to declare length parameters
2734  *      for string functions.  It is usually size_t, but may be
2735  *      unsigned long, int, etc.  It may be necessary to include
2736  *      <sys/types.h> to get any typedef'ed information.
2737  */
2738 #define Size_t $sizetype         /* length paramater for string functions */
2739
2740 /* Uid_t:
2741  *      This symbol holds the type used to declare user ids in the kernel.
2742  *      It can be int, ushort, uid_t, etc... It may be necessary to include
2743  *      <sys/types.h> to get any typedef'ed information.
2744  */
2745 #define Uid_t $uidtype          /* UID type */
2746
2747 #endif
2748 !GROK!THIS!