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