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