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