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