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