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