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