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