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