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