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