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