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