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