integrate mainline changes
[p5sagit/p5-mst-13.2.git] / win32 / config_H.gc
1 /*
2  * This file was produced by running the config_h.SH script, which
3  * gets its values from config.sh, 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 config.sh 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: Sun Oct 31 02:10:12 1999
17  * Configured by     : gsar
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_ALARM:
30  *      This symbol, if defined, indicates that the alarm routine is
31  *      available.
32  */
33 /*#define HAS_ALARM             /**/
34
35 /* HASATTRIBUTE:
36  *      This symbol indicates the C compiler can check for function attributes,
37  *      such as printf formats. This is normally only supported by GNU cc.
38  */
39 #define HASATTRIBUTE    /**/
40 #ifndef HASATTRIBUTE
41 #define __attribute__(_arg_)
42 #endif
43
44 /* HAS_BCMP:
45  *      This symbol is defined if the bcmp() routine is available to
46  *      compare blocks of memory.
47  */
48 /*#define HAS_BCMP      /**/
49
50 /* HAS_BCOPY:
51  *      This symbol is defined if the bcopy() routine is available to
52  *      copy blocks of memory.
53  */
54 /*#define HAS_BCOPY     /**/
55
56 /* HAS_BZERO:
57  *      This symbol is defined if the bzero() routine is available to
58  *      set a memory block to 0.
59  */
60 /*#define HAS_BZERO     /**/
61
62 /* HAS_CHOWN:
63  *      This symbol, if defined, indicates that the chown routine is
64  *      available.
65  */
66 /*#define HAS_CHOWN             /**/
67
68 /* HAS_CHROOT:
69  *      This symbol, if defined, indicates that the chroot routine is
70  *      available.
71  */
72 /*#define HAS_CHROOT            /**/
73
74 /* HAS_CHSIZE:
75  *      This symbol, if defined, indicates that the chsize routine is available
76  *      to truncate files.  You might need a -lx to get this routine.
77  */
78 #define HAS_CHSIZE              /**/
79
80 /* HASCONST:
81  *      This symbol, if defined, indicates that this C compiler knows about
82  *      the const type. There is no need to actually test for that symbol
83  *      within your programs. The mere use of the "const" keyword will
84  *      trigger the necessary tests.
85  */
86 #define HASCONST        /**/
87 #ifndef HASCONST
88 #define const
89 #endif
90
91 /* HAS_CRYPT:
92  *      This symbol, if defined, indicates that the crypt routine is available
93  *      to encrypt passwords and the like.
94  */
95 /*#define HAS_CRYPT             /**/
96
97 /* HAS_CUSERID:
98  *      This symbol, if defined, indicates that the cuserid routine is
99  *      available to get character login names.
100  */
101 /*#define HAS_CUSERID           /**/
102
103 /* HAS_DBL_DIG:
104  *      This symbol, if defined, indicates that this system's <float.h>
105  *      or <limits.h> defines the symbol DBL_DIG, which is the number
106  *      of significant digits in a double precision number.  If this
107  *      symbol is not defined, a guess of 15 is usually pretty good.
108  */
109 #define HAS_DBL_DIG     /**/
110
111 /* HAS_DIFFTIME:
112  *      This symbol, if defined, indicates that the difftime routine is
113  *      available.
114  */
115 #define HAS_DIFFTIME            /**/
116
117 /* HAS_DLERROR:
118  *      This symbol, if defined, indicates that the dlerror routine is
119  *      available to return a string describing the last error that
120  *      occurred from a call to dlopen(), dlclose() or dlsym().
121  */
122 #define HAS_DLERROR     /**/
123
124 /* SETUID_SCRIPTS_ARE_SECURE_NOW:
125  *      This symbol, if defined, indicates that the bug that prevents
126  *      setuid scripts from being secure is not present in this kernel.
127  */
128 /* DOSUID:
129  *      This symbol, if defined, indicates that the C program should
130  *      check the script that it is executing for setuid/setgid bits, and
131  *      attempt to emulate setuid/setgid on systems that have disabled
132  *      setuid #! scripts because the kernel can't do it securely.
133  *      It is up to the package designer to make sure that this emulation
134  *      is done securely.  Among other things, it should do an fstat on
135  *      the script it just opened to make sure it really is a setuid/setgid
136  *      script, it should make sure the arguments passed correspond exactly
137  *      to the argument on the #! line, and it should not trust any
138  *      subprocesses to which it must pass the filename rather than the
139  *      file descriptor of the script to be executed.
140  */
141 /*#define SETUID_SCRIPTS_ARE_SECURE_NOW /**/
142 /*#define DOSUID                /**/
143
144 /* HAS_DUP2:
145  *      This symbol, if defined, indicates that the dup2 routine is
146  *      available to duplicate file descriptors.
147  */
148 #define HAS_DUP2        /**/
149
150 /* HAS_FCHMOD:
151  *      This symbol, if defined, indicates that the fchmod routine is available
152  *      to change mode of opened files.  If unavailable, use chmod().
153  */
154 /*#define HAS_FCHMOD            /**/
155
156 /* HAS_FCHOWN:
157  *      This symbol, if defined, indicates that the fchown routine is available
158  *      to change ownership of opened files.  If unavailable, use chown().
159  */
160 /*#define HAS_FCHOWN            /**/
161
162 /* HAS_FCNTL:
163  *      This symbol, if defined, indicates to the C program that
164  *      the fcntl() function exists.
165  */
166 /*#define HAS_FCNTL             /**/
167
168 /* HAS_FGETPOS:
169  *      This symbol, if defined, indicates that the fgetpos routine is
170  *      available to get the file position indicator, similar to ftell().
171  */
172 #define HAS_FGETPOS     /**/
173
174 /* FLEXFILENAMES:
175  *      This symbol, if defined, indicates that the system supports filenames
176  *      longer than 14 characters.
177  */
178 #define FLEXFILENAMES           /**/
179
180 /* HAS_FLOCK:
181  *      This symbol, if defined, indicates that the flock routine is
182  *      available to do file locking.
183  */
184 #define HAS_FLOCK               /**/
185
186 /* HAS_FORK:
187  *      This symbol, if defined, indicates that the fork routine is
188  *      available.
189  */
190 /*#define HAS_FORK              /**/
191
192 /* HAS_FSETPOS:
193  *      This symbol, if defined, indicates that the fsetpos routine is
194  *      available to set the file position indicator, similar to fseek().
195  */
196 #define HAS_FSETPOS     /**/
197
198 /* HAS_GETTIMEOFDAY:
199  *      This symbol, if defined, indicates that the gettimeofday() system
200  *      call is available for a sub-second accuracy clock. Usually, the file
201  *      <sys/resource.h> needs to be included (see I_SYS_RESOURCE).
202  *      The type "Timeval" should be used to refer to "struct timeval".
203  */
204 /*#define HAS_GETTIMEOFDAY      /**/
205 #ifdef HAS_GETTIMEOFDAY
206 #define Timeval struct timeval  /* Structure used by gettimeofday() */
207 #endif
208
209 /* HAS_GETGROUPS:
210  *      This symbol, if defined, indicates that the getgroups() routine is
211  *      available to get the list of process groups.  If unavailable, multiple
212  *      groups are probably not supported.
213  */
214 /*#define HAS_GETGROUPS         /**/
215
216 /* HAS_GETLOGIN:
217  *      This symbol, if defined, indicates that the getlogin routine is
218  *      available to get the login name.
219  */
220 #define HAS_GETLOGIN            /**/
221
222 /* HAS_GETPGID:
223  *      This symbol, if defined, indicates to the C program that 
224  *      the getpgid(pid) function is available to get the
225  *      process group id.
226  */
227 /*#define HAS_GETPGID           /**/
228
229 /* HAS_GETPGRP:
230  *      This symbol, if defined, indicates that the getpgrp routine is
231  *      available to get the current process group.
232  */
233 /* USE_BSD_GETPGRP:
234  *      This symbol, if defined, indicates that getpgrp needs one
235  *      arguments whereas USG one needs none.
236  */
237 /*#define HAS_GETPGRP           /**/
238 /*#define USE_BSD_GETPGRP       /**/
239
240 /* HAS_GETPGRP2:
241  *      This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
242  *      routine is available to get the current process group.
243  */
244 /*#define HAS_GETPGRP2          /**/
245
246 /* HAS_GETPPID:
247  *      This symbol, if defined, indicates that the getppid routine is
248  *      available to get the parent process ID.
249  */
250 /*#define HAS_GETPPID           /**/
251
252 /* HAS_GETPRIORITY:
253  *      This symbol, if defined, indicates that the getpriority routine is
254  *      available to get a process's priority.
255  */
256 /*#define HAS_GETPRIORITY               /**/
257
258 /* HAS_INET_ATON:
259  *      This symbol, if defined, indicates to the C program that the
260  *      inet_aton() function is available to parse IP address "dotted-quad"
261  *      strings.
262  */
263 /*#define HAS_INET_ATON         /**/
264
265 /* HAS_KILLPG:
266  *      This symbol, if defined, indicates that the killpg routine is available
267  *      to kill process groups.  If unavailable, you probably should use kill
268  *      with a negative process number.
269  */
270 /*#define HAS_KILLPG    /**/
271
272 /* HAS_LINK:
273  *      This symbol, if defined, indicates that the link routine is
274  *      available to create hard links.
275  */
276 #define HAS_LINK        /**/
277
278 /* HAS_LOCALECONV:
279  *      This symbol, if defined, indicates that the localeconv routine is
280  *      available for numeric and monetary formatting conventions.
281  */
282 #define HAS_LOCALECONV  /**/
283
284 /* HAS_LOCKF:
285  *      This symbol, if defined, indicates that the lockf routine is
286  *      available to do file locking.
287  */
288 /*#define HAS_LOCKF             /**/
289
290 /* HAS_LSTAT:
291  *      This symbol, if defined, indicates that the lstat routine is
292  *      available to do file stats on symbolic links.
293  */
294 /*#define HAS_LSTAT             /**/
295
296 /* HAS_MBLEN:
297  *      This symbol, if defined, indicates that the mblen routine is available
298  *      to find the number of bytes in a multibye character.
299  */
300 #define HAS_MBLEN               /**/
301
302 /* HAS_MBSTOWCS:
303  *      This symbol, if defined, indicates that the mbstowcs routine is
304  *      available to covert a multibyte string into a wide character string.
305  */
306 #define HAS_MBSTOWCS            /**/
307
308 /* HAS_MBTOWC:
309  *      This symbol, if defined, indicates that the mbtowc routine is available
310  *      to covert a multibyte to a wide character.
311  */
312 #define HAS_MBTOWC              /**/
313
314 /* HAS_MEMCMP:
315  *      This symbol, if defined, indicates that the memcmp routine is available
316  *      to compare blocks of memory.
317  */
318 #define HAS_MEMCMP      /**/
319
320 /* HAS_MEMCPY:
321  *      This symbol, if defined, indicates that the memcpy routine is available
322  *      to copy blocks of memory.
323  */
324 #define HAS_MEMCPY      /**/
325
326 /* HAS_MEMMOVE:
327  *      This symbol, if defined, indicates that the memmove routine is available
328  *      to copy potentially overlapping blocks of memory. This should be used
329  *      only when HAS_SAFE_BCOPY is not defined. If neither is there, roll your
330  *      own version.
331  */
332 #define HAS_MEMMOVE     /**/
333
334 /* HAS_MEMSET:
335  *      This symbol, if defined, indicates that the memset routine is available
336  *      to set blocks of memory.
337  */
338 #define HAS_MEMSET      /**/
339
340 /* HAS_MKDIR:
341  *      This symbol, if defined, indicates that the mkdir routine is available
342  *      to create directories.  Otherwise you should fork off a new process to
343  *      exec /bin/mkdir.
344  */
345 #define HAS_MKDIR               /**/
346
347 /* HAS_MKFIFO:
348  *      This symbol, if defined, indicates that the mkfifo routine is
349  *      available to create FIFOs. Otherwise, mknod should be able to
350  *      do it for you. However, if mkfifo is there, mknod might require
351  *      super-user privileges which mkfifo will not.
352  */
353 /*#define HAS_MKFIFO            /**/
354
355 /* HAS_MKTIME:
356  *      This symbol, if defined, indicates that the mktime routine is
357  *      available.
358  */
359 #define HAS_MKTIME              /**/
360
361 /* HAS_NICE:
362  *      This symbol, if defined, indicates that the nice routine is
363  *      available.
364  */
365 /*#define HAS_NICE              /**/
366
367 /* HAS_PATHCONF:
368  *      This symbol, if defined, indicates that pathconf() is available
369  *      to determine file-system related limits and options associated
370  *      with a given filename.
371  */
372 /* HAS_FPATHCONF:
373  *      This symbol, if defined, indicates that pathconf() is available
374  *      to determine file-system related limits and options associated
375  *      with a given open file descriptor.
376  */
377 /*#define HAS_PATHCONF          /**/
378 /*#define HAS_FPATHCONF         /**/
379
380 /* HAS_PAUSE:
381  *      This symbol, if defined, indicates that the pause routine is
382  *      available to suspend a process until a signal is received.
383  */
384 #define HAS_PAUSE               /**/
385
386 /* HAS_PIPE:
387  *      This symbol, if defined, indicates that the pipe routine is
388  *      available to create an inter-process channel.
389  */
390 #define HAS_PIPE                /**/
391
392 /* HAS_POLL:
393  *      This symbol, if defined, indicates that the poll routine is
394  *      available to poll active file descriptors. You may safely
395  *      include <poll.h> when this symbol is defined.
396  */
397 /*#define HAS_POLL              /**/
398
399 /* HAS_READDIR:
400  *      This symbol, if defined, indicates that the readdir routine is
401  *      available to read directory entries. You may have to include
402  *      <dirent.h>. See I_DIRENT.
403  */
404 #define HAS_READDIR             /**/
405
406 /* HAS_SEEKDIR:
407  *      This symbol, if defined, indicates that the seekdir routine is
408  *      available. You may have to include <dirent.h>. See I_DIRENT.
409  */
410 #define HAS_SEEKDIR             /**/
411
412 /* HAS_TELLDIR:
413  *      This symbol, if defined, indicates that the telldir routine is
414  *      available. You may have to include <dirent.h>. See I_DIRENT.
415  */
416 #define HAS_TELLDIR             /**/
417
418 /* HAS_REWINDDIR:
419  *      This symbol, if defined, indicates that the rewinddir routine is
420  *      available. You may have to include <dirent.h>. See I_DIRENT.
421  */
422 #define HAS_REWINDDIR           /**/
423
424 /* HAS_READLINK:
425  *      This symbol, if defined, indicates that the readlink routine is
426  *      available to read the value of a symbolic link.
427  */
428 /*#define HAS_READLINK          /**/
429
430 /* HAS_RENAME:
431  *      This symbol, if defined, indicates that the rename routine is available
432  *      to rename files.  Otherwise you should do the unlink(), link(), unlink()
433  *      trick.
434  */
435 #define HAS_RENAME      /**/
436
437 /* HAS_RMDIR:
438  *      This symbol, if defined, indicates that the rmdir routine is
439  *      available to remove directories. Otherwise you should fork off a
440  *      new process to exec /bin/rmdir.
441  */
442 #define HAS_RMDIR               /**/
443
444 /* HAS_SELECT:
445  *      This symbol, if defined, indicates that the select routine is
446  *      available to select active file descriptors. If the timeout field
447  *      is used, <sys/time.h> may need to be included.
448  */
449 #define HAS_SELECT      /**/
450
451 /* HAS_SETEGID:
452  *      This symbol, if defined, indicates that the setegid routine is available
453  *      to change the effective gid of the current program.
454  */
455 /*#define HAS_SETEGID           /**/
456
457 /* HAS_SETEUID:
458  *      This symbol, if defined, indicates that the seteuid routine is available
459  *      to change the effective uid of the current program.
460  */
461 /*#define HAS_SETEUID           /**/
462
463 /* HAS_SETLINEBUF:
464  *      This symbol, if defined, indicates that the setlinebuf routine is
465  *      available to change stderr or stdout from block-buffered or unbuffered
466  *      to a line-buffered mode.
467  */
468 /*#define HAS_SETLINEBUF                /**/
469
470 /* HAS_SETLOCALE:
471  *      This symbol, if defined, indicates that the setlocale routine is
472  *      available to handle locale-specific ctype implementations.
473  */
474 #define HAS_SETLOCALE   /**/
475
476 /* HAS_SETPGID:
477  *      This symbol, if defined, indicates that the setpgid(pid, gpid)
478  *      routine is available to set process group ID.
479  */
480 /*#define HAS_SETPGID   /**/
481
482 /* HAS_SETPGRP:
483  *      This symbol, if defined, indicates that the setpgrp routine is
484  *      available to set the current process group.
485  */
486 /* USE_BSD_SETPGRP:
487  *      This symbol, if defined, indicates that setpgrp needs two
488  *      arguments whereas USG one needs none.  See also HAS_SETPGID
489  *      for a POSIX interface.
490  */
491 /*#define HAS_SETPGRP           /**/
492 /*#define USE_BSD_SETPGRP       /**/
493
494 /* HAS_SETPGRP2:
495  *      This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
496  *      routine is available to set the current process group.
497  */
498 /*#define HAS_SETPGRP2          /**/
499
500 /* HAS_SETPRIORITY:
501  *      This symbol, if defined, indicates that the setpriority routine is
502  *      available to set a process's priority.
503  */
504 /*#define HAS_SETPRIORITY               /**/
505
506 /* HAS_SETREGID:
507  *      This symbol, if defined, indicates that the setregid routine is
508  *      available to change the real and effective gid of the current
509  *      process.
510  */
511 /* HAS_SETRESGID:
512  *      This symbol, if defined, indicates that the setresgid routine is
513  *      available to change the real, effective and saved gid of the current
514  *      process.
515  */
516 /*#define HAS_SETREGID          /**/
517 /*#define HAS_SETRESGID         /**/
518
519 /* HAS_SETREUID:
520  *      This symbol, if defined, indicates that the setreuid routine is
521  *      available to change the real and effective uid of the current
522  *      process.
523  */
524 /* HAS_SETRESUID:
525  *      This symbol, if defined, indicates that the setresuid routine is
526  *      available to change the real, effective and saved uid of the current
527  *      process.
528  */
529 /*#define HAS_SETREUID          /**/
530 /*#define HAS_SETRESUID         /**/
531
532 /* HAS_SETRGID:
533  *      This symbol, if defined, indicates that the setrgid routine is available
534  *      to change the real gid of the current program.
535  */
536 /*#define HAS_SETRGID           /**/
537
538 /* HAS_SETRUID:
539  *      This symbol, if defined, indicates that the setruid routine is available
540  *      to change the real uid of the current program.
541  */
542 /*#define HAS_SETRUID           /**/
543
544 /* HAS_SETSID:
545  *      This symbol, if defined, indicates that the setsid routine is
546  *      available to set the process group ID.
547  */
548 /*#define HAS_SETSID    /**/
549
550 /* Shmat_t:
551  *      This symbol holds the return type of the shmat() system call.
552  *      Usually set to 'void *' or 'char *'.
553  */
554 /* HAS_SHMAT_PROTOTYPE:
555  *      This symbol, if defined, indicates that the sys/shm.h includes
556  *      a prototype for shmat().  Otherwise, it is up to the program to
557  *      guess one.  Shmat_t shmat _((int, Shmat_t, int)) is a good guess,
558  *      but not always right so it should be emitted by the program only
559  *      when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
560  */
561 #define Shmat_t void *  /**/
562 /*#define HAS_SHMAT_PROTOTYPE   /**/
563
564 /* HAS_STRCHR:
565  *      This symbol is defined to indicate that the strchr()/strrchr()
566  *      functions are available for string searching. If not, try the
567  *      index()/rindex() pair.
568  */
569 /* HAS_INDEX:
570  *      This symbol is defined to indicate that the index()/rindex()
571  *      functions are available for string searching.
572  */
573 #define HAS_STRCHR      /**/
574 /*#define HAS_INDEX     /**/
575
576 /* HAS_STRCOLL:
577  *      This symbol, if defined, indicates that the strcoll routine is
578  *      available to compare strings using collating information.
579  */
580 #define HAS_STRCOLL     /**/
581
582 /* USE_STRUCT_COPY:
583  *      This symbol, if defined, indicates that this C compiler knows how
584  *      to copy structures.  If undefined, you'll need to use a block copy
585  *      routine of some sort instead.
586  */
587 #define USE_STRUCT_COPY /**/
588
589 /* HAS_STRTOD:
590  *      This symbol, if defined, indicates that the strtod routine is
591  *      available to provide better numeric string conversion than atof().
592  */
593 #define HAS_STRTOD      /**/
594
595 /* HAS_STRTOL:
596  *      This symbol, if defined, indicates that the strtol routine is available
597  *      to provide better numeric string conversion than atoi() and friends.
598  */
599 #define HAS_STRTOL      /**/
600
601 /* HAS_STRTOUL:
602  *      This symbol, if defined, indicates that the strtoul routine is
603  *      available to provide conversion of strings to unsigned long.
604  */
605 #define HAS_STRTOUL     /**/
606
607 /* HAS_STRXFRM:
608  *      This symbol, if defined, indicates that the strxfrm() routine is
609  *      available to transform strings.
610  */
611 #define HAS_STRXFRM     /**/
612
613 /* HAS_SYMLINK:
614  *      This symbol, if defined, indicates that the symlink routine is available
615  *      to create symbolic links.
616  */
617 /*#define HAS_SYMLINK   /**/
618
619 /* HAS_SYSCALL:
620  *      This symbol, if defined, indicates that the syscall routine is
621  *      available to call arbitrary system calls. If undefined, that's tough.
622  */
623 /*#define HAS_SYSCALL   /**/
624
625 /* HAS_SYSCONF:
626  *      This symbol, if defined, indicates that sysconf() is available
627  *      to determine system related limits and options.
628  */
629 /*#define HAS_SYSCONF   /**/
630
631 /* HAS_SYSTEM:
632  *      This symbol, if defined, indicates that the system routine is
633  *      available to issue a shell command.
634  */
635 #define HAS_SYSTEM      /**/
636
637 /* HAS_TCGETPGRP:
638  *      This symbol, if defined, indicates that the tcgetpgrp routine is
639  *      available to get foreground process group ID.
640  */
641 /*#define HAS_TCGETPGRP         /**/
642
643 /* HAS_TCSETPGRP:
644  *      This symbol, if defined, indicates that the tcsetpgrp routine is
645  *      available to set foreground process group ID.
646  */
647 /*#define HAS_TCSETPGRP         /**/
648
649 /* HAS_TRUNCATE:
650  *      This symbol, if defined, indicates that the truncate routine is
651  *      available to truncate files.
652  */
653 /*#define HAS_TRUNCATE  /**/
654
655 /* HAS_TZNAME:
656  *      This symbol, if defined, indicates that the tzname[] array is
657  *      available to access timezone names.
658  */
659 /*#define HAS_TZNAME            /**/
660
661 /* HAS_UMASK:
662  *      This symbol, if defined, indicates that the umask routine is
663  *      available to set and get the value of the file creation mask.
664  */
665 #define HAS_UMASK               /**/
666
667 /* HASVOLATILE:
668  *      This symbol, if defined, indicates that this C compiler knows about
669  *      the volatile declaration.
670  */
671 #define HASVOLATILE     /**/
672 #ifndef HASVOLATILE
673 #define volatile
674 #endif
675
676 /* HAS_WAIT4:
677  *      This symbol, if defined, indicates that wait4() exists.
678  */
679 /*#define HAS_WAIT4     /**/
680
681 /* HAS_WAITPID:
682  *      This symbol, if defined, indicates that the waitpid routine is
683  *      available to wait for child process.
684  */
685 #define HAS_WAITPID     /**/
686
687 /* HAS_WCSTOMBS:
688  *      This symbol, if defined, indicates that the wcstombs routine is
689  *      available to convert wide character strings to multibyte strings.
690  */
691 #define HAS_WCSTOMBS    /**/
692
693 /* HAS_WCTOMB:
694  *      This symbol, if defined, indicates that the wctomb routine is available
695  *      to covert a wide character to a multibyte.
696  */
697 #define HAS_WCTOMB              /**/
698
699 /* I_ARPA_INET:
700  *      This symbol, if defined, indicates to the C program that it should
701  *      include <arpa/inet.h> to get inet_addr and friends declarations.
702  */
703 #define I_ARPA_INET             /**/
704
705 /* I_DBM:
706  *      This symbol, if defined, indicates that <dbm.h> exists and should
707  *      be included.
708  */
709 /* I_RPCSVC_DBM:
710  *      This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
711  *      should be included.
712  */
713 /*#define I_DBM /**/
714 #define I_RPCSVC_DBM    /**/
715
716 /* I_DIRENT:
717  *      This symbol, if defined, indicates to the C program that it should
718  *      include <dirent.h>. Using this symbol also triggers the definition
719  *      of the Direntry_t define which ends up being 'struct dirent' or
720  *      'struct direct' depending on the availability of <dirent.h>.
721  */
722 /* DIRNAMLEN:
723  *      This symbol, if defined, indicates to the C program that the length
724  *      of directory entry names is provided by a d_namlen field.  Otherwise
725  *      you need to do strlen() on the d_name field.
726  */
727 /* Direntry_t:
728  *      This symbol is set to 'struct direct' or 'struct dirent' depending on
729  *      whether dirent is available or not. You should use this pseudo type to
730  *      portably declare your directory entries.
731  */
732 #define I_DIRENT                /**/
733 #define DIRNAMLEN       /**/
734 #define Direntry_t struct direct
735
736 /* I_DLFCN:
737  *      This symbol, if defined, indicates that <dlfcn.h> exists and should
738  *      be included.
739  */
740 #define I_DLFCN         /**/
741
742 /* I_FCNTL:
743  *      This manifest constant tells the C program to include <fcntl.h>.
744  */
745 #define I_FCNTL /**/
746
747 /* I_FLOAT:
748  *      This symbol, if defined, indicates to the C program that it should
749  *      include <float.h> to get definition of symbols like DBL_MAX or
750  *      DBL_MIN, i.e. machine dependent floating point values.
751  */
752 #define I_FLOAT         /**/
753
754 /* I_LIMITS:
755  *      This symbol, if defined, indicates to the C program that it should
756  *      include <limits.h> to get definition of symbols like WORD_BIT or
757  *      LONG_MAX, i.e. machine dependant limitations.
758  */
759 #define I_LIMITS                /**/
760
761 /* I_LOCALE:
762  *      This symbol, if defined, indicates to the C program that it should
763  *      include <locale.h>.
764  */
765 #define I_LOCALE                /**/
766
767 /* I_MATH:
768  *      This symbol, if defined, indicates to the C program that it should
769  *      include <math.h>.
770  */
771 #define I_MATH          /**/
772
773 /* I_MEMORY:
774  *      This symbol, if defined, indicates to the C program that it should
775  *      include <memory.h>.
776  */
777 /*#define I_MEMORY              /**/
778
779 /* I_NDBM:
780  *      This symbol, if defined, indicates that <ndbm.h> exists and should
781  *      be included.
782  */
783 /*#define I_NDBM        /**/
784
785 /* I_NET_ERRNO:
786  *      This symbol, if defined, indicates that <net/errno.h> exists and 
787  *      should be included.
788  */
789 /*#define I_NET_ERRNO           /**/
790
791 /* I_NETINET_IN:
792  *      This symbol, if defined, indicates to the C program that it should
793  *      include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
794  */
795 /*#define I_NETINET_IN  /**/
796
797 /* I_SFIO:
798  *      This symbol, if defined, indicates to the C program that it should
799  *      include <sfio.h>.
800  */
801 /*#define       I_SFIO          /**/
802
803 /* I_STDDEF:
804  *      This symbol, if defined, indicates that <stddef.h> exists and should
805  *      be included.
806  */
807 #define I_STDDEF        /**/
808
809 /* I_STDLIB:
810  *      This symbol, if defined, indicates that <stdlib.h> exists and should
811  *      be included.
812  */
813 #define I_STDLIB                /**/
814
815 /* I_STRING:
816  *      This symbol, if defined, indicates to the C program that it should
817  *      include <string.h> (USG systems) instead of <strings.h> (BSD systems).
818  */
819 #define I_STRING                /**/
820
821 /* I_SYS_DIR:
822  *      This symbol, if defined, indicates to the C program that it should
823  *      include <sys/dir.h>.
824  */
825 /*#define I_SYS_DIR             /**/
826
827 /* I_SYS_FILE:
828  *      This symbol, if defined, indicates to the C program that it should
829  *      include <sys/file.h> to get definition of R_OK and friends.
830  */
831 /*#define I_SYS_FILE            /**/
832
833 /* I_SYS_IOCTL:
834  *      This symbol, if defined, indicates that <sys/ioctl.h> exists and should
835  *      be included. Otherwise, include <sgtty.h> or <termio.h>.
836  */
837 /*#define       I_SYS_IOCTL             /**/
838
839 /* I_SYS_NDIR:
840  *      This symbol, if defined, indicates to the C program that it should
841  *      include <sys/ndir.h>.
842  */
843 /*#define I_SYS_NDIR    /**/
844
845 /* I_SYS_PARAM:
846  *      This symbol, if defined, indicates to the C program that it should
847  *      include <sys/param.h>.
848  */
849 /*#define I_SYS_PARAM           /**/
850
851 /* I_SYS_RESOURCE:
852  *      This symbol, if defined, indicates to the C program that it should
853  *      include <sys/resource.h>.
854  */
855 /*#define I_SYS_RESOURCE                /**/
856
857 /* I_SYS_SELECT:
858  *      This symbol, if defined, indicates to the C program that it should
859  *      include <sys/select.h> in order to get definition of struct timeval.
860  */
861 /*#define I_SYS_SELECT  /**/
862
863 /* I_SYS_STAT:
864  *      This symbol, if defined, indicates to the C program that it should
865  *      include <sys/stat.h>.
866  */
867 #define I_SYS_STAT              /**/
868
869 /* I_SYS_TIMES:
870  *      This symbol, if defined, indicates to the C program that it should
871  *      include <sys/times.h>.
872  */
873 /*#define       I_SYS_TIMES             /**/
874
875 /* I_SYS_TYPES:
876  *      This symbol, if defined, indicates to the C program that it should
877  *      include <sys/types.h>.
878  */
879 #define I_SYS_TYPES             /**/
880
881 /* I_SYS_UN:
882  *      This symbol, if defined, indicates to the C program that it should
883  *      include <sys/un.h> to get UNIX domain socket definitions.
884  */
885 /*#define I_SYS_UN              /**/
886
887 /* I_SYS_WAIT:
888  *      This symbol, if defined, indicates to the C program that it should
889  *      include <sys/wait.h>.
890  */
891 /*#define I_SYS_WAIT    /**/
892
893 /* I_TERMIO:
894  *      This symbol, if defined, indicates that the program should include
895  *      <termio.h> rather than <sgtty.h>.  There are also differences in
896  *      the ioctl() calls that depend on the value of this symbol.
897  */
898 /* I_TERMIOS:
899  *      This symbol, if defined, indicates that the program should include
900  *      the POSIX termios.h rather than sgtty.h or termio.h.
901  *      There are also differences in the ioctl() calls that depend on the
902  *      value of this symbol.
903  */
904 /* I_SGTTY:
905  *      This symbol, if defined, indicates that the program should include
906  *      <sgtty.h> rather than <termio.h>.  There are also differences in
907  *      the ioctl() calls that depend on the value of this symbol.
908  */
909 /*#define I_TERMIO              /**/
910 /*#define I_TERMIOS             /**/
911 /*#define I_SGTTY               /**/
912
913 /* I_UNISTD:
914  *      This symbol, if defined, indicates to the C program that it should
915  *      include <unistd.h>.
916  */
917 /*#define I_UNISTD              /**/
918
919 /* I_UTIME:
920  *      This symbol, if defined, indicates to the C program that it should
921  *      include <utime.h>.
922  */
923 #define I_UTIME         /**/
924
925 /* I_VALUES:
926  *      This symbol, if defined, indicates to the C program that it should
927  *      include <values.h> to get definition of symbols like MINFLOAT or
928  *      MAXLONG, i.e. machine dependant limitations.  Probably, you
929  *      should use <limits.h> instead, if it is available.
930  */
931 /*#define I_VALUES              /**/
932
933 /* I_STDARG:
934  *      This symbol, if defined, indicates that <stdarg.h> exists and should
935  *      be included.
936  */
937 /* I_VARARGS:
938  *      This symbol, if defined, indicates to the C program that it should
939  *      include <varargs.h>.
940  */
941 #define I_STDARG                /**/
942 /*#define I_VARARGS     /**/
943
944 /* I_VFORK:
945  *      This symbol, if defined, indicates to the C program that it should
946  *      include vfork.h.
947  */
948 /*#define I_VFORK       /**/
949
950 /* CAN_PROTOTYPE:
951  *      If defined, this macro indicates that the C compiler can handle
952  *      function prototypes.
953  */
954 /* _:
955  *      This macro is used to declare function parameters for folks who want
956  *      to make declarations with prototypes using a different style than
957  *      the above macros.  Use double parentheses.  For example:
958  *
959  *              int main _((int argc, char *argv[]));
960  */
961 #define CAN_PROTOTYPE   /**/
962 #ifdef CAN_PROTOTYPE
963 #define _(args) args
964 #else
965 #define _(args) ()
966 #endif
967
968 /* SH_PATH:
969  *      This symbol contains the full pathname to the shell used on this
970  *      on this system to execute Bourne shell scripts.  Usually, this will be
971  *      /bin/sh, though it's possible that some systems will have /bin/ksh,
972  *      /bin/pdksh, /bin/ash, /bin/bash, or even something such as
973  *      D:/bin/sh.exe.
974  */
975 #define SH_PATH "cmd /x /c"  /**/
976
977 /* STDCHAR:
978  *      This symbol is defined to be the type of char used in stdio.h.
979  *      It has the values "unsigned char" or "char".
980  */
981 #define STDCHAR char    /**/
982
983 /* HAS_QUAD:
984  *      This symbol, if defined, tells that there's a 64-bit integer type,
985  *      Quad_t.
986  */
987 /* Quad_t:
988  *      This symbol holds the type used for 64-bit integers.
989  *      It can be int, long, long long, int64_t etc...
990  */
991 /* QUADCASE:
992  *      This symbol, if defined, encodes the type of a quad:
993  *      1 = int, 2 = long, 3 = long long, 4 = int64_t.
994  */
995 /* Uquad_t:
996  *      This symbol holds the type used for unsigned 64-bit integers.
997  *      It can be unsigned int, unsigned long, unsigned long long,
998  *      uint64_t etc...
999  */
1000 /*#define HAS_QUAD      /**/
1001 /*#define Quad_t long long      /**/
1002 /*#define Uquad_t unsigned long long    /**/
1003 /*#define QUADCASE 5    /**/
1004
1005 /* HAS_ACCESSX:
1006  *      This symbol, if defined, indicates that the accessx routine is
1007  *      available to do extended access checks.
1008  */
1009 /*#define HAS_ACCESSX           /**/
1010
1011 /* HAS_EACCESS:
1012  *      This symbol, if defined, indicates that the eaccess routine is
1013  *      available to do extended access checks.
1014  */
1015 /*#define HAS_EACCESS           /**/
1016
1017 /* I_SYS_ACCESS:
1018  *     This symbol, if defined, indicates to the C program that it should
1019  *     include <sys/access.h>.
1020  */
1021 /*#define   I_SYS_ACCESS                /**/
1022
1023 /* I_SYS_SECURITY:
1024  *     This symbol, if defined, indicates to the C program that it should
1025  *     include <sys/security.h>.
1026  */
1027 /*#define   I_SYS_SECURITY      /**/
1028
1029 /* CROSSCOMPILE:
1030  *      This symbol, if defined, signifies that we our
1031  *      build process is a cross-compilation.
1032  */
1033 /*#define CROSSCOMPILE          /**/
1034
1035 /* INTSIZE:
1036  *      This symbol contains the value of sizeof(int) so that the C
1037  *      preprocessor can make decisions based on it.
1038  */
1039 /* LONGSIZE:
1040  *      This symbol contains the value of sizeof(long) so that the C
1041  *      preprocessor can make decisions based on it.
1042  */
1043 /* SHORTSIZE:
1044  *      This symbol contains the value of sizeof(short) so that the C
1045  *      preprocessor can make decisions based on it.
1046  */
1047 #define INTSIZE 4               /**/
1048 #define LONGSIZE 4              /**/
1049 #define SHORTSIZE 2             /**/
1050
1051 /* MULTIARCH:
1052  *      This symbol, if defined, signifies that the build
1053  *      process will produce some binary files that are going to be
1054  *      used in a cross-platform environment.  This is the case for
1055  *      example with the NeXT "fat" binaries that contain executables
1056  *      for several CPUs.
1057  */
1058 /*#define MULTIARCH             /**/
1059
1060 /* MEM_ALIGNBYTES:
1061  *      This symbol contains the number of bytes required to align a
1062  *      double. Usual values are 2, 4 and 8. The default is eight,
1063  *      for safety.
1064  */
1065 #if defined(CROSSCOMPILE) || defined(MULTIARCH)
1066 #  define MEM_ALIGNBYTES 8
1067 #else
1068 #define MEM_ALIGNBYTES 8
1069 #endif
1070
1071 /* BYTEORDER:
1072  *      This symbol holds the hexadecimal constant defined in byteorder,
1073  *      i.e. 0x1234 or 0x4321, etc...
1074  *      If the compiler supports cross-compiling or multiple-architecture
1075  *      binaries (eg. on NeXT systems), use compiler-defined macros to
1076  *      determine the byte order.
1077  *      On NeXT 3.2 (and greater), you can build "Fat" Multiple Architecture
1078  *      Binaries (MAB) on either big endian or little endian machines.
1079  *      The endian-ness is available at compile-time.  This only matters
1080  *      for perl, where the config.h can be generated and installed on 
1081  *      one system, and used by a different architecture to build an
1082  *      extension.  Older versions of NeXT that might not have
1083  *      defined either *_ENDIAN__ were all on Motorola 680x0 series,
1084  *      so the default case (for NeXT) is big endian to catch them. 
1085  *      This might matter for NeXT 3.0.
1086  */
1087 #if defined(CROSSCOMPILE) || defined(MULTIARCH)
1088 #  ifdef __LITTLE_ENDIAN__
1089 #    if LONGSIZE == 4
1090 #      define BYTEORDER 0x1234
1091 #    else
1092 #      if LONGSIZE == 8
1093 #        define BYTEORDER 0x12345678
1094 #      endif
1095 #    endif
1096 #  else
1097 #    ifdef __BIG_ENDIAN__
1098 #      if LONGSIZE == 4
1099 #        define BYTEORDER 0x4321
1100 #      else
1101 #        if LONGSIZE == 8
1102 #          define BYTEORDER 0x87654321
1103 #        endif
1104 #      endif
1105 #    endif
1106 #  endif
1107 #  if !defined(BYTEORDER) && (defined(NeXT) || defined(__NeXT__))
1108 #    define BYTEORDER 0x4321
1109 #  endif
1110 #else
1111 #define BYTEORDER 0x1234        /* large digits for MSB */
1112 #endif /* NeXT */
1113
1114 /* CASTI32:
1115  *      This symbol is defined if the C compiler can cast negative
1116  *      or large floating point numbers to 32-bit ints.
1117  */
1118 #define CASTI32         /**/
1119
1120 /* CASTNEGFLOAT:
1121  *      This symbol is defined if the C compiler can cast negative
1122  *      numbers to unsigned longs, ints and shorts.
1123  */
1124 /* CASTFLAGS:
1125  *      This symbol contains flags that say what difficulties the compiler
1126  *      has casting odd floating values to unsigned long:
1127  *              0 = ok
1128  *              1 = couldn't cast < 0
1129  *              2 = couldn't cast >= 0x80000000
1130  *              4 = couldn't cast in argument expression list
1131  */
1132 #define CASTNEGFLOAT            /**/
1133 #define CASTFLAGS 0             /**/
1134
1135 /* VOID_CLOSEDIR:
1136  *      This symbol, if defined, indicates that the closedir() routine
1137  *      does not return a value.
1138  */
1139 /*#define VOID_CLOSEDIR         /**/
1140
1141 /* HAS_FD_SET:
1142  *      This symbol, when defined, indicates presence of the fd_set typedef
1143  *      in <sys/types.h>
1144  */
1145 #define HAS_FD_SET      /**/
1146
1147 /* Gconvert:
1148  *      This preprocessor macro is defined to convert a floating point
1149  *      number to a string without a trailing decimal point.  This
1150  *      emulates the behavior of sprintf("%g"), but is sometimes much more
1151  *      efficient.  If gconvert() is not available, but gcvt() drops the
1152  *      trailing decimal point, then gcvt() is used.  If all else fails,
1153  *      a macro using sprintf("%g") is used. Arguments for the Gconvert
1154  *      macro are: value, number of digits, whether trailing zeros should
1155  *      be retained, and the output buffer.
1156  *      Possible values are:
1157  *              d_Gconvert='gconvert((x),(n),(t),(b))'
1158  *              d_Gconvert='gcvt((x),(n),(b))'
1159  *              d_Gconvert='sprintf((b),"%.*g",(n),(x))'
1160  *      The last two assume trailing zeros should not be kept.
1161  */
1162 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
1163
1164 /* HAS_GNULIBC:
1165  *      This symbol, if defined, indicates to the C program that 
1166  *      the GNU C library is being used.
1167  */
1168 /*#define HAS_GNULIBC   /**/
1169 /* HAS_ISASCII:
1170  *      This manifest constant lets the C program know that isascii 
1171  *      is available.
1172  */
1173 #define HAS_ISASCII             /**/
1174
1175 /* HAS_LCHOWN:
1176  *      This symbol, if defined, indicates that the lchown routine is
1177  *      available to operate on a symbolic link (instead of following the
1178  *      link).
1179  */
1180 /*#define HAS_LCHOWN            /**/
1181
1182 /* HAS_OPEN3:
1183  *      This manifest constant lets the C program know that the three
1184  *      argument form of open(2) is available.
1185  */
1186 /*#define HAS_OPEN3             /**/
1187
1188 /* HAS_SAFE_BCOPY:
1189  *      This symbol, if defined, indicates that the bcopy routine is available
1190  *      to copy potentially overlapping memory blocks. Otherwise you should
1191  *      probably use memmove() or memcpy(). If neither is defined, roll your
1192  *      own version.
1193  */
1194 /*#define HAS_SAFE_BCOPY        /**/
1195
1196 /* HAS_SAFE_MEMCPY:
1197  *      This symbol, if defined, indicates that the memcpy routine is available
1198  *      to copy potentially overlapping memory blocks. Otherwise you should
1199  *      probably use memmove() or memcpy(). If neither is defined, roll your
1200  *      own version.
1201  */
1202 /*#define HAS_SAFE_MEMCPY       /**/
1203
1204 /* HAS_SANE_MEMCMP:
1205  *      This symbol, if defined, indicates that the memcmp routine is available
1206  *      and can be used to compare relative magnitudes of chars with their high
1207  *      bits set.  If it is not defined, roll your own version.
1208  */
1209 #define HAS_SANE_MEMCMP /**/
1210
1211 /* HAS_SIGACTION:
1212  *      This symbol, if defined, indicates that Vr4's sigaction() routine
1213  *      is available.
1214  */
1215 /*#define HAS_SIGACTION /**/
1216
1217 /* HAS_SIGSETJMP:
1218  *      This variable indicates to the C program that the sigsetjmp()
1219  *      routine is available to save the calling process's registers
1220  *      and stack environment for later use by siglongjmp(), and
1221  *      to optionally save the process's signal mask.  See
1222  *      Sigjmp_buf, Sigsetjmp, and Siglongjmp.
1223  */
1224 /* Sigjmp_buf:
1225  *      This is the buffer type to be used with Sigsetjmp and Siglongjmp.
1226  */
1227 /* Sigsetjmp:
1228  *      This macro is used in the same way as sigsetjmp(), but will invoke
1229  *      traditional setjmp() if sigsetjmp isn't available.
1230  *      See HAS_SIGSETJMP.
1231  */
1232 /* Siglongjmp:
1233  *      This macro is used in the same way as siglongjmp(), but will invoke
1234  *      traditional longjmp() if siglongjmp isn't available.
1235  *      See HAS_SIGSETJMP.
1236  */
1237 /*#define HAS_SIGSETJMP /**/
1238 #ifdef HAS_SIGSETJMP
1239 #define Sigjmp_buf sigjmp_buf
1240 #define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
1241 #define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
1242 #else
1243 #define Sigjmp_buf jmp_buf
1244 #define Sigsetjmp(buf,save_mask) setjmp((buf))
1245 #define Siglongjmp(buf,retval) longjmp((buf),(retval))
1246 #endif
1247
1248 /* USE_STDIO_PTR:
1249  *      This symbol is defined if the _ptr and _cnt fields (or similar)
1250  *      of the stdio FILE structure can be used to access the stdio buffer
1251  *      for a file handle.  If this is defined, then the FILE_ptr(fp)
1252  *      and FILE_cnt(fp) macros will also be defined and should be used
1253  *      to access these fields.
1254  */
1255 /* FILE_ptr:
1256  *      This macro is used to access the _ptr field (or equivalent) of the
1257  *      FILE structure pointed to by its argument. This macro will always be
1258  *      defined if USE_STDIO_PTR is defined.
1259  */
1260 /* STDIO_PTR_LVALUE:
1261  *      This symbol is defined if the FILE_ptr macro can be used as an
1262  *      lvalue.
1263  */
1264 /* FILE_cnt:
1265  *      This macro is used to access the _cnt field (or equivalent) of the
1266  *      FILE structure pointed to by its argument. This macro will always be
1267  *      defined if USE_STDIO_PTR is defined.
1268  */
1269 /* STDIO_CNT_LVALUE:
1270  *      This symbol is defined if the FILE_cnt macro can be used as an
1271  *      lvalue.
1272  */
1273 /*#define USE_STDIO_PTR         /**/
1274 #ifdef USE_STDIO_PTR
1275 #define FILE_ptr(fp)    ((fp)->_ptr)
1276 #define STDIO_PTR_LVALUE                /**/
1277 #define FILE_cnt(fp)    ((fp)->_cnt)
1278 #define STDIO_CNT_LVALUE                /**/
1279 #endif
1280
1281 /* USE_STDIO_BASE:
1282  *      This symbol is defined if the _base field (or similar) of the
1283  *      stdio FILE structure can be used to access the stdio buffer for
1284  *      a file handle.  If this is defined, then the FILE_base(fp) macro
1285  *      will also be defined and should be used to access this field.
1286  *      Also, the FILE_bufsiz(fp) macro will be defined and should be used
1287  *      to determine the number of bytes in the buffer.  USE_STDIO_BASE
1288  *      will never be defined unless USE_STDIO_PTR is.
1289  */
1290 /* FILE_base:
1291  *      This macro is used to access the _base field (or equivalent) of the
1292  *      FILE structure pointed to by its argument. This macro will always be
1293  *      defined if USE_STDIO_BASE is defined.
1294  */
1295 /* FILE_bufsiz:
1296  *      This macro is used to determine the number of bytes in the I/O
1297  *      buffer pointed to by _base field (or equivalent) of the FILE
1298  *      structure pointed to its argument. This macro will always be defined
1299  *      if USE_STDIO_BASE is defined.
1300  */
1301 /*#define USE_STDIO_BASE        /**/
1302 #ifdef USE_STDIO_BASE
1303 #define FILE_base(fp)   ((fp)->_base)
1304 #define FILE_bufsiz(fp) ((fp)->_cnt + (fp)->_ptr - (fp)->_base)
1305 #endif
1306
1307 /* HAS_VPRINTF:
1308  *      This symbol, if defined, indicates that the vprintf routine is available
1309  *      to printf with a pointer to an argument list.  If unavailable, you
1310  *      may need to write your own, probably in terms of _doprnt().
1311  */
1312 /* USE_CHAR_VSPRINTF:
1313  *      This symbol is defined if this system has vsprintf() returning type
1314  *      (char*).  The trend seems to be to declare it as "int vsprintf()".  It
1315  *      is up to the package author to declare vsprintf correctly based on the
1316  *      symbol.
1317  */
1318 #define HAS_VPRINTF     /**/
1319 /*#define USE_CHAR_VSPRINTF     /**/
1320
1321 /* DOUBLESIZE:
1322  *      This symbol contains the size of a double, so that the C preprocessor
1323  *      can make decisions based on it.
1324  */
1325 #define DOUBLESIZE 8            /**/
1326
1327 /* I_TIME:
1328  *      This symbol, if defined, indicates to the C program that it should
1329  *      include <time.h>.
1330  */
1331 /* I_SYS_TIME:
1332  *      This symbol, if defined, indicates to the C program that it should
1333  *      include <sys/time.h>.
1334  */
1335 /* I_SYS_TIME_KERNEL:
1336  *      This symbol, if defined, indicates to the C program that it should
1337  *      include <sys/time.h> with KERNEL defined.
1338  */
1339 #define I_TIME          /**/
1340 /*#define I_SYS_TIME            /**/
1341 /*#define I_SYS_TIME_KERNEL             /**/
1342
1343 /* VAL_O_NONBLOCK:
1344  *      This symbol is to be used during open() or fcntl(F_SETFL) to turn on
1345  *      non-blocking I/O for the file descriptor. Note that there is no way
1346  *      back, i.e. you cannot turn it blocking again this way. If you wish to
1347  *      alternatively switch between blocking and non-blocking, use the
1348  *      ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
1349  */
1350 /* VAL_EAGAIN:
1351  *      This symbol holds the errno error code set by read() when no data was
1352  *      present on the non-blocking file descriptor.
1353  */
1354 /* RD_NODATA:
1355  *      This symbol holds the return code from read() when no data is present
1356  *      on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
1357  *      not defined, then you can't distinguish between no data and EOF by
1358  *      issuing a read(). You'll have to find another way to tell for sure!
1359  */
1360 /* EOF_NONBLOCK:
1361  *      This symbol, if defined, indicates to the C program that a read() on
1362  *      a non-blocking file descriptor will return 0 on EOF, and not the value
1363  *      held in RD_NODATA (-1 usually, in that case!).
1364  */
1365 #define VAL_O_NONBLOCK O_NONBLOCK
1366 #define VAL_EAGAIN EAGAIN
1367 #define RD_NODATA -1
1368 #define EOF_NONBLOCK
1369
1370 /* PTRSIZE:
1371  *      This symbol contains the size of a pointer, so that the C preprocessor
1372  *      can make decisions based on it.  It will be sizeof(void *) if
1373  *      the compiler supports (void *); otherwise it will be
1374  *      sizeof(char *).
1375  */
1376 #define PTRSIZE 4               /**/
1377
1378 /* Drand01:
1379  *      This macro is to be used to generate uniformly distributed
1380  *      random numbers over the range [0., 1.[.  You may have to supply
1381  *      an 'extern double drand48();' in your program since SunOS 4.1.3
1382  *      doesn't provide you with anything relevant in it's headers.
1383  *      See HAS_DRAND48_PROTO.
1384  */
1385 /* Rand_seed_t:
1386  *      This symbol defines the type of the argument of the
1387  *      random seed function.
1388  */
1389 /* seedDrand01:
1390  *      This symbol defines the macro to be used in seeding the
1391  *      random number generator (see Drand01).
1392  */
1393 /* RANDBITS:
1394  *      This symbol indicates how many bits are produced by the
1395  *      function used to generate normalized random numbers.
1396  *      Values include 15, 16, 31, and 48.
1397  */
1398 #define Drand01()               (rand()/(double)((unsigned)1<<RANDBITS))                /**/
1399 #define Rand_seed_t             unsigned                /**/
1400 #define seedDrand01(x)  srand((Rand_seed_t)x)   /**/
1401 #define RANDBITS                15              /**/
1402
1403 /* SSize_t:
1404  *      This symbol holds the type used by functions that return
1405  *      a count of bytes or an error condition.  It must be a signed type.
1406  *      It is usually ssize_t, but may be long or int, etc.
1407  *      It may be necessary to include <sys/types.h> or <unistd.h>
1408  *      to get any typedef'ed information.
1409  *      We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
1410  */
1411 #define SSize_t int      /* signed count of bytes */
1412
1413 /* EBCDIC:
1414  *     This symbol, if defined, indicates that this system uses
1415  *      EBCDIC encoding.
1416  */
1417 /*#define       EBCDIC          /**/
1418
1419 /* ARCHLIB:
1420  *      This variable, if defined, holds the name of the directory in
1421  *      which the user wants to put architecture-dependent public
1422  *      library files for perl5.  It is most often a local directory
1423  *      such as /usr/local/lib.  Programs using this variable must be
1424  *      prepared to deal with filename expansion.  If ARCHLIB is the
1425  *      same as PRIVLIB, it is not defined, since presumably the
1426  *      program already searches PRIVLIB.
1427  */
1428 /* ARCHLIB_EXP:
1429  *      This symbol contains the ~name expanded version of ARCHLIB, to be used
1430  *      in programs that are not prepared to deal with ~ expansion at run-time.
1431  */
1432 #define ARCHLIB "c:\\perl\\5.00563\\lib\\MSWin32-x86"           /**/
1433 /*#define ARCHLIB_EXP ""        /**/
1434
1435 /* BIN:
1436  *      This symbol holds the path of the bin directory where the package will
1437  *      be installed. Program must be prepared to deal with ~name substitution.
1438  */
1439 /* BIN_EXP:
1440  *      This symbol is the filename expanded version of the BIN symbol, for
1441  *      programs that do not want to deal with that at run-time.
1442  */
1443 #define BIN "c:\\perl\\5.00563\\bin\\MSWin32-x86"       /**/
1444 #define BIN_EXP "c:\\perl\\5.00563\\bin\\MSWin32-x86"   /**/
1445
1446 /* INSTALL_USR_BIN_PERL:
1447  *      This symbol, if defined, indicates that Perl is to be installed
1448  *      also as /usr/bin/perl.
1449  */
1450 /*#define INSTALL_USR_BIN_PERL  /**/
1451
1452 /* PRIVLIB:
1453  *      This symbol contains the name of the private library for this package.
1454  *      The library is private in the sense that it needn't be in anyone's
1455  *      execution path, but it should be accessible by the world.  The program
1456  *      should be prepared to do ~ expansion.
1457  */
1458 /* PRIVLIB_EXP:
1459  *      This symbol contains the ~name expanded version of PRIVLIB, to be used
1460  *      in programs that are not prepared to deal with ~ expansion at run-time.
1461  */
1462 #define PRIVLIB "c:\\perl\\5.00563\\lib"                /**/
1463 #define PRIVLIB_EXP (win32_get_privlib("5.00563"))      /**/
1464
1465 /* SITEARCH:
1466  *      This symbol contains the name of the private library for this package.
1467  *      The library is private in the sense that it needn't be in anyone's
1468  *      execution path, but it should be accessible by the world.  The program
1469  *      should be prepared to do ~ expansion.
1470  *      The standard distribution will put nothing in this directory.
1471  *      After perl has been installed, users may install their own local
1472  *      architecture-dependent modules in this directory with
1473  *              MakeMaker Makefile.PL
1474  *      or equivalent.  See INSTALL for details.
1475  */
1476 /* SITEARCH_EXP:
1477  *      This symbol contains the ~name expanded version of SITEARCH, to be used
1478  *      in programs that are not prepared to deal with ~ expansion at run-time.
1479  */
1480 #define SITEARCH "c:\\perl\\site\\5.00563\\lib\\MSWin32-x86"            /**/
1481 /*#define SITEARCH_EXP ""       /**/
1482
1483 /* SITELIB:
1484  *      This symbol contains the name of the private library for this package.
1485  *      The library is private in the sense that it needn't be in anyone's
1486  *      execution path, but it should be accessible by the world.  The program
1487  *      should be prepared to do ~ expansion.
1488  *      The standard distribution will put nothing in this directory.
1489  *      After perl has been installed, users may install their own local
1490  *      architecture-independent modules in this directory with
1491  *              MakeMaker Makefile.PL
1492  *      or equivalent.  See INSTALL for details.
1493  */
1494 /* SITELIB_EXP:
1495  *      This symbol contains the ~name expanded version of SITELIB, to be used
1496  *      in programs that are not prepared to deal with ~ expansion at run-time.
1497  */
1498 #define SITELIB "c:\\perl\\site\\5.00563\\lib"          /**/
1499 #define SITELIB_EXP (win32_get_sitelib("5.00563"))      /**/
1500
1501 /* PERL_VENDORLIB_EXP:
1502  *      This symbol contains the ~name expanded version of VENDORLIB, to be used
1503  *      in programs that are not prepared to deal with ~ expansion at run-time.
1504  */
1505 /*#define PERL_VENDORLIB_EXP ""         /**/
1506
1507 /* OSNAME:
1508  *      This symbol contains the name of the operating system, as determined
1509  *      by Configure.  You shouldn't rely on it too much; the specific
1510  *      feature tests from Configure are generally more reliable.
1511  */
1512 #define OSNAME "MSWin32"                /**/
1513
1514 /* CAT2:
1515  *      This macro catenates 2 tokens together.
1516  */
1517 /* STRINGIFY:
1518  *      This macro surrounds its token with double quotes.
1519  */
1520 #if 42 == 1
1521 #define CAT2(a,b)a/**/b
1522 #define STRINGIFY(a)"a"
1523                 /* If you can get stringification with catify, tell me how! */
1524 #endif
1525 #if 42 == 42
1526 #define CAT2(a,b)a ## b
1527 #define StGiFy(a)# a
1528 #define STRINGIFY(a)StGiFy(a)
1529 #endif
1530 #if 42 != 1 && 42 != 42
1531 #include "Bletch: How does this C preprocessor catenate tokens?"
1532 #endif
1533
1534 /* CPPSTDIN:
1535  *      This symbol contains the first part of the string which will invoke
1536  *      the C preprocessor on the standard input and produce to standard
1537  *      output.  Typical value of "cc -E" or "/lib/cpp", but it can also
1538  *      call a wrapper. See CPPRUN.
1539  */
1540 /* CPPMINUS:
1541  *      This symbol contains the second part of the string which will invoke
1542  *      the C preprocessor on the standard input and produce to standard
1543  *      output.  This symbol will have the value "-" if CPPSTDIN needs a minus
1544  *      to specify standard input, otherwise the value is "".
1545  */
1546 /* CPPRUN:
1547  *      This symbol contains the string which will invoke a C preprocessor on
1548  *      the standard input and produce to standard output. It needs to end
1549  *      with CPPLAST, after all other preprocessor flags have been specified.
1550  *      The main difference with CPPSTDIN is that this program will never be a
1551  *      pointer to a shell wrapper, i.e. it will be empty if no preprocessor is
1552  *      available directly to the user. Note that it may well be different from
1553  *      the preprocessor used to compile the C program.
1554  */
1555 /* CPPLAST:
1556  *      This symbol is intended to be used along with CPPRUN in the same manner
1557  *      symbol CPPMINUS is used with CPPSTDIN. It contains either "-" or "".
1558  */
1559 #define CPPSTDIN "gcc -E"
1560 #define CPPMINUS "-"
1561 #define CPPRUN "gcc -E"
1562 #define CPPLAST ""
1563
1564 /* HAS_ACCESS:
1565  *      This manifest constant lets the C program know that the access()
1566  *      system call is available to check for accessibility using real UID/GID.
1567  *      (always present on UNIX.)
1568  */
1569 #define HAS_ACCESS              /**/
1570
1571 /* HAS_CSH:
1572  *      This symbol, if defined, indicates that the C-shell exists.
1573  */
1574 /* CSH:
1575  *      This symbol, if defined, contains the full pathname of csh.
1576  */
1577 /*#define HAS_CSH               /**/
1578 #ifdef HAS_CSH
1579 #define CSH ""  /**/
1580 #endif
1581
1582 /* HAS_ENDGRENT:
1583  *      This symbol, if defined, indicates that the getgrent routine is
1584  *      available for finalizing sequential access of the group database.
1585  */
1586 /*#define HAS_ENDGRENT          /**/
1587
1588 /* HAS_ENDHOSTENT:
1589  *      This symbol, if defined, indicates that the endhostent() routine is
1590  *      available to close whatever was being used for host queries.
1591  */
1592 /*#define HAS_ENDHOSTENT                /**/
1593
1594 /* HAS_ENDNETENT:
1595  *      This symbol, if defined, indicates that the endnetent() routine is
1596  *      available to close whatever was being used for network queries.
1597  */
1598 /*#define HAS_ENDNETENT         /**/
1599
1600 /* HAS_ENDPROTOENT:
1601  *      This symbol, if defined, indicates that the endprotoent() routine is
1602  *      available to close whatever was being used for protocol queries.
1603  */
1604 /*#define HAS_ENDPROTOENT               /**/
1605
1606 /* HAS_ENDPWENT:
1607  *      This symbol, if defined, indicates that the getgrent routine is
1608  *      available for finalizing sequential access of the passwd database.
1609  */
1610 /*#define HAS_ENDPWENT          /**/
1611
1612 /* HAS_ENDSERVENT:
1613  *      This symbol, if defined, indicates that the endservent() routine is
1614  *      available to close whatever was being used for service queries.
1615  */
1616 /*#define HAS_ENDSERVENT                /**/
1617
1618 /* HAS_GETGRENT:
1619  *      This symbol, if defined, indicates that the getgrent routine is
1620  *      available for sequential access of the group database.
1621  */
1622 /*#define HAS_GETGRENT          /**/
1623
1624 /* HAS_GETHOSTBYADDR:
1625  *      This symbol, if defined, indicates that the gethostbyaddr() routine is
1626  *      available to look up hosts by their IP addresses.
1627  */
1628 #define HAS_GETHOSTBYADDR               /**/
1629
1630 /* HAS_GETHOSTBYNAME:
1631  *      This symbol, if defined, indicates that the gethostbyname() routine is
1632  *      available to look up host names in some data base or other.
1633  */
1634 #define HAS_GETHOSTBYNAME               /**/
1635
1636 /* HAS_GETHOSTENT:
1637  *      This symbol, if defined, indicates that the gethostent() routine is
1638  *      available to look up host names in some data base or another.
1639  */
1640 /*#define HAS_GETHOSTENT                /**/
1641
1642 /* HAS_GETHOSTNAME:
1643  *      This symbol, if defined, indicates that the C program may use the
1644  *      gethostname() routine to derive the host name.  See also HAS_UNAME
1645  *      and PHOSTNAME.
1646  */
1647 /* HAS_UNAME:
1648  *      This symbol, if defined, indicates that the C program may use the
1649  *      uname() routine to derive the host name.  See also HAS_GETHOSTNAME
1650  *      and PHOSTNAME.
1651  */
1652 /* PHOSTNAME:
1653  *      This symbol, if defined, indicates the command to feed to the
1654  *      popen() routine to derive the host name.  See also HAS_GETHOSTNAME
1655  *      and HAS_UNAME.  Note that the command uses a fully qualified path,
1656  *      so that it is safe even if used by a process with super-user
1657  *      privileges.
1658  */
1659 /* HAS_PHOSTNAME:
1660  *      This symbol, if defined, indicates that the C program may use the
1661  *      contents of PHOSTNAME as a command to feed to the popen() routine
1662  *      to derive the host name.
1663  */
1664 #define HAS_GETHOSTNAME /**/
1665 #define HAS_UNAME               /**/
1666 #undef HAS_PHOSTNAME
1667 #ifdef HAS_PHOSTNAME
1668 #define PHOSTNAME ""    /* How to get the host name */
1669 #endif
1670
1671 /* HAS_GETNETBYADDR:
1672  *      This symbol, if defined, indicates that the getnetbyaddr() routine is
1673  *      available to look up networks by their IP addresses.
1674  */
1675 /*#define HAS_GETNETBYADDR              /**/
1676
1677 /* HAS_GETNETBYNAME:
1678  *      This symbol, if defined, indicates that the getnetbyname() routine is
1679  *      available to look up networks by their names.
1680  */
1681 /*#define HAS_GETNETBYNAME              /**/
1682
1683 /* HAS_GETNETENT:
1684  *      This symbol, if defined, indicates that the getnetent() routine is
1685  *      available to look up network names in some data base or another.
1686  */
1687 /*#define HAS_GETNETENT         /**/
1688
1689 /* HAS_GETPROTOENT:
1690  *      This symbol, if defined, indicates that the getprotoent() routine is
1691  *      available to look up protocols in some data base or another.
1692  */
1693 /*#define HAS_GETPROTOENT               /**/
1694
1695 /* HAS_GETPROTOBYNAME:
1696  *      This symbol, if defined, indicates that the getprotobyname()
1697  *      routine is available to look up protocols by their name.
1698  */
1699 /* HAS_GETPROTOBYNUMBER:
1700  *      This symbol, if defined, indicates that the getprotobynumber()
1701  *      routine is available to look up protocols by their number.
1702  */
1703 #define HAS_GETPROTOBYNAME              /**/
1704 #define HAS_GETPROTOBYNUMBER            /**/
1705
1706 /* HAS_GETPWENT:
1707  *      This symbol, if defined, indicates that the getpwent routine is
1708  *      available for sequential access of the passwd database.
1709  *      If this is not available, the older getpw() function may be available.
1710  */
1711 /*#define HAS_GETPWENT          /**/
1712
1713 /* HAS_GETSERVENT:
1714  *      This symbol, if defined, indicates that the getservent() routine is
1715  *      available to look up network services in some data base or another.
1716  */
1717 /*#define HAS_GETSERVENT                /**/
1718
1719 /* HAS_GETSERVBYNAME:
1720  *      This symbol, if defined, indicates that the getservbyname()
1721  *      routine is available to look up services by their name.
1722  */
1723 /* HAS_GETSERVBYPORT:
1724  *      This symbol, if defined, indicates that the getservbyport()
1725  *      routine is available to look up services by their port.
1726  */
1727 #define HAS_GETSERVBYNAME               /**/
1728 #define HAS_GETSERVBYPORT               /**/
1729
1730 /* HAS_HTONL:
1731  *      This symbol, if defined, indicates that the htonl() routine (and
1732  *      friends htons() ntohl() ntohs()) are available to do network
1733  *      order byte swapping.
1734  */
1735 /* HAS_HTONS:
1736  *      This symbol, if defined, indicates that the htons() routine (and
1737  *      friends htonl() ntohl() ntohs()) are available to do network
1738  *      order byte swapping.
1739  */
1740 /* HAS_NTOHL:
1741  *      This symbol, if defined, indicates that the ntohl() routine (and
1742  *      friends htonl() htons() ntohs()) are available to do network
1743  *      order byte swapping.
1744  */
1745 /* HAS_NTOHS:
1746  *      This symbol, if defined, indicates that the ntohs() routine (and
1747  *      friends htonl() htons() ntohl()) are available to do network
1748  *      order byte swapping.
1749  */
1750 #define HAS_HTONL               /**/
1751 #define HAS_HTONS               /**/
1752 #define HAS_NTOHL               /**/
1753 #define HAS_NTOHS               /**/
1754
1755 /* HAS_LONG_DOUBLE:
1756  *      This symbol will be defined if the C compiler supports long
1757  *      doubles.
1758  */
1759 /* LONG_DOUBLESIZE:
1760  *      This symbol contains the size of a long double, so that the 
1761  *      C preprocessor can make decisions based on it.  It is only
1762  *      defined if the system supports long doubles.
1763  */
1764 #define HAS_LONG_DOUBLE         /**/
1765 #ifdef HAS_LONG_DOUBLE
1766 #define LONG_DOUBLESIZE 12              /**/
1767 #endif
1768
1769 /* HAS_LONG_LONG:
1770  *      This symbol will be defined if the C compiler supports long long.
1771  */
1772 /* LONGLONGSIZE:
1773  *      This symbol contains the size of a long long, so that the 
1774  *      C preprocessor can make decisions based on it.  It is only
1775  *      defined if the system supports long long.
1776  */
1777 /*#define HAS_LONG_LONG         /**/
1778 #ifdef HAS_LONG_LONG
1779 #define LONGLONGSIZE 8          /**/
1780 #endif
1781
1782 /* HAS_MEMCHR:
1783  *      This symbol, if defined, indicates that the memchr routine is available
1784  *      to locate characters within a C string.
1785  */
1786 #define HAS_MEMCHR      /**/
1787
1788 /* HAS_MSG:
1789  *      This symbol, if defined, indicates that the entire msg*(2) library is
1790  *      supported (IPC mechanism based on message queues).
1791  */
1792 /*#define HAS_MSG               /**/
1793
1794 /* HAS_SEM:
1795  *      This symbol, if defined, indicates that the entire sem*(2) library is
1796  *      supported.
1797  */
1798 /*#define HAS_SEM               /**/
1799
1800 /* HAS_SETGRENT:
1801  *      This symbol, if defined, indicates that the setgrent routine is
1802  *      available for initializing sequential access of the group database.
1803  */
1804 /*#define HAS_SETGRENT          /**/
1805
1806 /* HAS_SETGROUPS:
1807  *      This symbol, if defined, indicates that the setgroups() routine is
1808  *      available to set the list of process groups.  If unavailable, multiple
1809  *      groups are probably not supported.
1810  */
1811 /*#define HAS_SETGROUPS         /**/
1812
1813 /* HAS_SETHOSTENT:
1814  *      This symbol, if defined, indicates that the sethostent() routine is
1815  *      available.
1816  */
1817 /*#define HAS_SETHOSTENT                /**/
1818
1819 /* HAS_SETNETENT:
1820  *      This symbol, if defined, indicates that the setnetent() routine is
1821  *      available.
1822  */
1823 /*#define HAS_SETNETENT         /**/
1824
1825 /* HAS_SETPROTOENT:
1826  *      This symbol, if defined, indicates that the setprotoent() routine is
1827  *      available.
1828  */
1829 /*#define HAS_SETPROTOENT               /**/
1830
1831 /* HAS_SETPWENT:
1832  *      This symbol, if defined, indicates that the setpwent routine is
1833  *      available for initializing sequential access of the passwd database.
1834  */
1835 /*#define HAS_SETPWENT          /**/
1836
1837 /* HAS_SETSERVENT:
1838  *      This symbol, if defined, indicates that the setservent() routine is
1839  *      available.
1840  */
1841 /*#define HAS_SETSERVENT                /**/
1842
1843 /* HAS_SETVBUF:
1844  *      This symbol, if defined, indicates that the setvbuf routine is
1845  *      available to change buffering on an open stdio stream.
1846  *      to a line-buffered mode.
1847  */
1848 #define HAS_SETVBUF             /**/
1849
1850 /* HAS_SHM:
1851  *      This symbol, if defined, indicates that the entire shm*(2) library is
1852  *      supported.
1853  */
1854 /*#define HAS_SHM               /**/
1855
1856 /* HAS_SOCKET:
1857  *      This symbol, if defined, indicates that the BSD socket interface is
1858  *      supported.
1859  */
1860 /* HAS_SOCKETPAIR:
1861  *      This symbol, if defined, indicates that the BSD socketpair() call is
1862  *      supported.
1863  */
1864 /* HAS_MSG_CTRUNC:
1865  *      This symbol, if defined, indicates that the MSG_CTRUNC is supported.
1866  *      Checking just with #ifdef might not be enough because this symbol
1867  *      has been known to be an enum.
1868  */
1869 /* HAS_MSG_DONTROUTE:
1870  *      This symbol, if defined, indicates that the MSG_DONTROUTE is supported.
1871  *      Checking just with #ifdef might not be enough because this symbol
1872  *      has been known to be an enum.
1873  */
1874 /* HAS_MSG_OOB:
1875  *      This symbol, if defined, indicates that the MSG_OOB is supported.
1876  *      Checking just with #ifdef might not be enough because this symbol
1877  *      has been known to be an enum.
1878  */
1879 /* HAS_MSG_PEEK:
1880  *      This symbol, if defined, indicates that the MSG_PEEK is supported.
1881  *      Checking just with #ifdef might not be enough because this symbol
1882  *      has been known to be an enum.
1883  */
1884 /* HAS_MSG_PROXY:
1885  *      This symbol, if defined, indicates that the MSG_PROXY is supported.
1886  *      Checking just with #ifdef might not be enough because this symbol
1887  *      has been known to be an enum.
1888  */
1889 /* HAS_SCM_RIGHTS:
1890  *      This symbol, if defined, indicates that the SCM_RIGHTS is supported.
1891  *      Checking just with #ifdef might not be enough because this symbol
1892  *      has been known to be an enum.
1893  */
1894 #define HAS_SOCKET              /**/
1895 /*#define       HAS_SOCKETPAIR  /**/
1896 /*#define       HAS_MSG_CTRUNC  /**/
1897 /*#define       HAS_MSG_DONTROUTE       /**/
1898 /*#define       HAS_MSG_OOB     /**/
1899 /*#define       HAS_MSG_PEEK    /**/
1900 /*#define       HAS_MSG_PROXY   /**/
1901 /*#define       HAS_SCM_RIGHTS  /**/
1902
1903 /* USE_STAT_BLOCKS:
1904  *      This symbol is defined if this system has a stat structure declaring
1905  *      st_blksize and st_blocks.
1906  */
1907 #ifndef USE_STAT_BLOCKS
1908 /*#define USE_STAT_BLOCKS       /**/
1909 #endif
1910
1911 /* HAS_STRERROR:
1912  *      This symbol, if defined, indicates that the strerror routine is
1913  *      available to translate error numbers to strings. See the writeup
1914  *      of Strerror() in this file before you try to define your own.
1915  */
1916 /* HAS_SYS_ERRLIST:
1917  *      This symbol, if defined, indicates that the sys_errlist array is
1918  *      available to translate error numbers to strings. The extern int
1919  *      sys_nerr gives the size of that table.
1920  */
1921 /* Strerror:
1922  *      This preprocessor symbol is defined as a macro if strerror() is
1923  *      not available to translate error numbers to strings but sys_errlist[]
1924  *      array is there.
1925  */
1926 #define HAS_STRERROR            /**/
1927 #define HAS_SYS_ERRLIST /**/
1928 #define Strerror(e) strerror(e)
1929
1930 /* HAS_UNION_SEMUN:
1931  *      This symbol, if defined, indicates that the union semun is
1932  *      defined by including <sys/sem.h>.  If not, the user code
1933  *      probably needs to define it as:
1934  *      union semun {
1935  *          int val;
1936  *          struct semid_ds *buf;
1937  *          unsigned short *array;
1938  *      }
1939  */
1940 /* USE_SEMCTL_SEMUN:
1941  *      This symbol, if defined, indicates that union semun is
1942  *      used for semctl IPC_STAT.
1943  */
1944 /* USE_SEMCTL_SEMID_DS:
1945  *      This symbol, if defined, indicates that struct semid_ds * is
1946  *      used for semctl IPC_STAT.
1947  */
1948 #define HAS_UNION_SEMUN /**/
1949 /*#define USE_SEMCTL_SEMUN      /**/
1950 /*#define USE_SEMCTL_SEMID_DS   /**/
1951
1952 /* HAS_VFORK:
1953  *      This symbol, if defined, indicates that vfork() exists.
1954  */
1955 /*#define HAS_VFORK     /**/
1956
1957 /* Signal_t:
1958  *      This symbol's value is either "void" or "int", corresponding to the
1959  *      appropriate return type of a signal handler.  Thus, you can declare
1960  *      a signal handler using "Signal_t (*handler)()", and define the
1961  *      handler using "Signal_t handler(sig)".
1962  */
1963 #define Signal_t void   /* Signal handler's return type */
1964
1965 /* Groups_t:
1966  *      This symbol holds the type used for the second argument to
1967  *      getgroups() and setgropus().  Usually, this is the same as
1968  *      gidtype (gid_t) , but sometimes it isn't.
1969  *      It can be int, ushort, uid_t, etc... 
1970  *      It may be necessary to include <sys/types.h> to get any 
1971  *      typedef'ed information.  This is only required if you have
1972  *      getgroups() or setgropus()..
1973  */
1974 #if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
1975 #define Groups_t gid_t  /* Type for 2nd arg to [sg]etgroups() */
1976 #endif
1977
1978 /* I_GRP:
1979  *      This symbol, if defined, indicates to the C program that it should
1980  *      include <grp.h>.
1981  */
1982 /* GRPASSWD:
1983  *      This symbol, if defined, indicates to the C program that struct group
1984  *      in <grp.h> contains gr_passwd.
1985  */
1986 /*#define I_GRP         /**/
1987 /*#define GRPASSWD      /**/
1988
1989 /* I_NETDB:
1990  *      This symbol, if defined, indicates that <netdb.h> exists and
1991  *      should be included.
1992  */
1993 /*#define I_NETDB               /**/
1994
1995 /* I_PWD:
1996  *      This symbol, if defined, indicates to the C program that it should
1997  *      include <pwd.h>.
1998  */
1999 /* PWQUOTA:
2000  *      This symbol, if defined, indicates to the C program that struct passwd
2001  *      contains pw_quota.
2002  */
2003 /* PWAGE:
2004  *      This symbol, if defined, indicates to the C program that struct passwd
2005  *      contains pw_age.
2006  */
2007 /* PWCHANGE:
2008  *      This symbol, if defined, indicates to the C program that struct passwd
2009  *      contains pw_change.
2010  */
2011 /* PWCLASS:
2012  *      This symbol, if defined, indicates to the C program that struct passwd
2013  *      contains pw_class.
2014  */
2015 /* PWEXPIRE:
2016  *      This symbol, if defined, indicates to the C program that struct passwd
2017  *      contains pw_expire.
2018  */
2019 /* PWCOMMENT:
2020  *      This symbol, if defined, indicates to the C program that struct passwd
2021  *      contains pw_comment.
2022  */
2023 /* PWGECOS:
2024  *      This symbol, if defined, indicates to the C program that struct passwd
2025  *      contains pw_gecos.
2026  */
2027 /* PWPASSWD:
2028  *      This symbol, if defined, indicates to the C program that struct passwd
2029  *      contains pw_passwd.
2030  */
2031 /*#define I_PWD         /**/
2032 /*#define PWQUOTA       /**/
2033 /*#define PWAGE /**/
2034 /*#define PWCHANGE      /**/
2035 /*#define PWCLASS       /**/
2036 /*#define PWEXPIRE      /**/
2037 /*#define PWCOMMENT     /**/
2038 /*#define PWGECOS       /**/
2039 /*#define PWPASSWD      /**/
2040
2041 /* I_SYSUIO:
2042  *      This symbol, if defined, indicates that <sys/uio.h> exists and
2043  *      should be included.
2044  */
2045 /*#define       I_SYSUIO                /**/
2046
2047 /* Free_t:
2048  *      This variable contains the return type of free().  It is usually
2049  * void, but occasionally int.
2050  */
2051 /* Malloc_t:
2052  *      This symbol is the type of pointer returned by malloc and realloc.
2053  */
2054 #define Malloc_t void *                 /**/
2055 #define Free_t void                     /**/
2056
2057 /* MYMALLOC:
2058  *      This symbol, if defined, indicates that we're using our own malloc.
2059  */
2060 /*#define MYMALLOC                      /**/
2061
2062 /* SIG_NAME:
2063  *      This symbol contains a list of signal names in order of
2064  *      signal number. This is intended
2065  *      to be used as a static array initialization, like this:
2066  *              char *sig_name[] = { SIG_NAME };
2067  *      The signals in the list are separated with commas, and each signal
2068  *      is surrounded by double quotes. There is no leading SIG in the signal
2069  *      name, i.e. SIGQUIT is known as "QUIT".
2070  *      Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
2071  *      etc., where nn is the actual signal number (e.g. NUM37).
2072  *      The signal number for sig_name[i] is stored in sig_num[i].
2073  *      The last element is 0 to terminate the list with a NULL.  This
2074  *      corresponds to the 0 at the end of the sig_num list.
2075  */
2076 /* SIG_NUM:
2077  *      This symbol contains a list of signal numbers, in the same order as the
2078  *      SIG_NAME list. It is suitable for static array initialization, as in:
2079  *              int sig_num[] = { SIG_NUM };
2080  *      The signals in the list are separated with commas, and the indices
2081  *      within that list and the SIG_NAME list match, so it's easy to compute
2082  *      the signal name from a number or vice versa at the price of a small
2083  *      dynamic linear lookup. 
2084  *      Duplicates are allowed, but are moved to the end of the list.
2085  *      The signal number corresponding to sig_name[i] is sig_number[i].
2086  *      if (i < NSIG) then sig_number[i] == i.  
2087  *      The last element is 0, corresponding to the 0 at the end of
2088  *      the sig_name list.
2089  */
2090 #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              /**/
2091 #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            /**/
2092
2093 /* VOIDFLAGS:
2094  *      This symbol indicates how much support of the void type is given by this
2095  *      compiler.  What various bits mean:
2096  *
2097  *          1 = supports declaration of void
2098  *          2 = supports arrays of pointers to functions returning void
2099  *          4 = supports comparisons between pointers to void functions and
2100  *                  addresses of void functions
2101  *          8 = suports declaration of generic void pointers
2102  *
2103  *      The package designer should define VOIDUSED to indicate the requirements
2104  *      of the package.  This can be done either by #defining VOIDUSED before
2105  *      including config.h, or by defining defvoidused in Myinit.U.  If the
2106  *      latter approach is taken, only those flags will be tested.  If the
2107  *      level of void support necessary is not present, defines void to int.
2108  */
2109 #ifndef VOIDUSED
2110 #define VOIDUSED 15
2111 #endif
2112 #define VOIDFLAGS 15
2113 #if (VOIDFLAGS & VOIDUSED) != VOIDUSED
2114 #define void int                /* is void to be avoided? */
2115 #define M_VOID                  /* Xenix strikes again */
2116 #endif
2117
2118 /* HAS_ATOLF:
2119  *      This symbol, if defined, indicates that the atolf routine is
2120  *      available to convert strings into long doubles.
2121  */
2122 /*#define HAS_ATOLF             /**/
2123
2124 /* HAS_ATOLL:
2125  *      This symbol, if defined, indicates that the atoll routine is
2126  *      available to convert strings into long longs.
2127  */
2128 /*#define HAS_ATOLL             /**/
2129
2130 /* PERL_BINCOMPAT_5005:
2131  *      This symbol, if defined, indicates that Perl 5.006 should be
2132  *      binary-compatible with Perl 5.005.  This is impossible for builds
2133  *      that use features like threads and multiplicity it is always undef
2134  *      for those versions.
2135  */
2136 /*#define PERL_BINCOMPAT_5005                   /**/
2137
2138 /* DLSYM_NEEDS_UNDERSCORE:
2139  *      This symbol, if defined, indicates that we need to prepend an
2140  *      underscore to the symbol name before calling dlsym().  This only
2141  *      makes sense if you *have* dlsym, which we will presume is the
2142  *      case if you're using dl_dlopen.xs.
2143  */
2144 /*#define       DLSYM_NEEDS_UNDERSCORE  /**/
2145
2146 /* HAS_ENDSPENT:
2147  *      This symbol, if defined, indicates that the endspent system call is
2148  *      available to finalize the scan of SysV shadow password entries.
2149  */
2150 /*#define HAS_ENDSPENT          /**/
2151
2152 /* HAS_STRUCT_FS_DATA:
2153  *      This symbol, if defined, indicates that the struct fs_data
2154  *      to do statfs() is supported.
2155  */
2156 /*#define HAS_STRUCT_FS_DATA    /**/
2157
2158 /* HAS_FSEEKO:
2159  *      This symbol, if defined, indicates that the fseeko routine is
2160  *      available to fseek beyond 32 bits (useful for ILP32 hosts).
2161  */
2162 /*#define HAS_FSEEKO            /**/
2163
2164 /* HAS_FSTATFS:
2165  *      This symbol, if defined, indicates that the fstatfs routine is
2166  *      available to stat filesystems by file descriptors.
2167  */
2168 /*#define HAS_FSTATFS           /**/
2169 /* HAS_FTELLO:
2170  *      This symbol, if defined, indicates that the ftello routine is
2171  *      available to ftell beyond 32 bits (useful for ILP32 hosts).
2172  */
2173 /*#define HAS_FTELLO            /**/
2174
2175 /* HAS_GETMNT:
2176  *      This symbol, if defined, indicates that the getmnt routine is
2177  *      available to get filesystem mount info by filename.
2178  */
2179 /*#define HAS_GETMNT            /**/
2180
2181 /* HAS_GETMNTENT:
2182  *      This symbol, if defined, indicates that the getmntent routine is
2183  *      available to iterate through mounted file systems to get their info.
2184  */
2185 /*#define HAS_GETMNTENT         /**/
2186
2187 /* HAS_GETSPENT:
2188  *      This symbol, if defined, indicates that the getspent system call is
2189  *      available to retrieve SysV shadow password entries sequentially.
2190  */
2191 /*#define HAS_GETSPENT          /**/
2192
2193 /* HAS_GETSPNAM:
2194  *      This symbol, if defined, indicates that the getspnam system call is
2195  *      available to retrieve SysV shadow password entries by name.
2196  */
2197 /*#define HAS_GETSPNAM          /**/
2198
2199 /* HAS_HASMNTOPT:
2200  *      This symbol, if defined, indicates that the hasmntopt routine is
2201  *      available to query the mount options of file systems.
2202  */
2203 /*#define HAS_HASMNTOPT         /**/
2204
2205 /* HAS_LDBL_DIG:
2206  *      This symbol, if defined, indicates that this system's <float.h>
2207  *      or <limits.h> defines the symbol LDBL_DIG, which is the number
2208  *      of significant digits in a long double precision number. Unlike
2209  *      for DBL_DIG, there's no good guess for LDBL_DIG if it is undefined.
2210  */
2211 #define HAS_LDBL_DIG    /**/
2212
2213 /* HAS_SETSPENT:
2214  *      This symbol, if defined, indicates that the setspent system call is
2215  *      available to initialize the scan of SysV shadow password entries.
2216  */
2217 /*#define HAS_SETSPENT          /**/
2218
2219 /* USE_SFIO:
2220  *      This symbol, if defined, indicates that sfio should
2221  *      be used.
2222  */
2223 /*#define       USE_SFIO                /**/
2224
2225 /* HAS_SQRTL:
2226  *      This symbol, if defined, indicates that the sqrtl routine is
2227  *      available to do long double square roots.
2228  */
2229 /*#define HAS_SQRTL             /**/
2230
2231 /* HAS_STRUCT_STATFS_F_FLAGS:
2232  *      This symbol, if defined, indicates that the struct statfs
2233  *      does have the f_flags member containing the mount flags of
2234  *      the filesystem containing the file.
2235  *      This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3),
2236  *      not from <sys/statfs.h> (SYSV).  Older BSDs (like Ultrix) do not
2237  *      have statfs() and struct statfs, they have ustat() and getmnt()
2238  *      with struct ustat and struct fs_data.
2239  */
2240 /*#define HAS_STRUCT_STATFS_F_FLAGS             /**/
2241
2242 /* HAS_STRUCT_STATFS:
2243  *      This symbol, if defined, indicates that the struct statfs
2244  *      to do statfs() is supported.
2245  */
2246 /*#define HAS_STRUCT_STATFS     /**/
2247
2248 /* HAS_FSTATVFS:
2249  *      This symbol, if defined, indicates that the fstatvfs routine is
2250  *      available to stat filesystems by file descriptors.
2251  */
2252 /*#define HAS_FSTATVFS          /**/
2253
2254 /* HAS_TELLDIR_PROTO:
2255  *      This symbol, if defined, indicates that the system provides
2256  *      a prototype for the telldir() function.  Otherwise, it is up
2257  *      to the program to supply one.  A good guess is
2258  *              extern long telldir _((DIR*));
2259  */
2260 #define HAS_TELLDIR_PROTO       /**/
2261
2262 /* HAS_USTAT:
2263  *      This symbol, if defined, indicates that the ustat system call is
2264  *      available to query file system statistics by dev_t.
2265  */
2266 /*#define HAS_USTAT             /**/
2267
2268 /* USE_DYNAMIC_LOADING:
2269  *      This symbol, if defined, indicates that dynamic loading of
2270  *      some sort is available.
2271  */
2272 #define USE_DYNAMIC_LOADING             /**/
2273
2274 /* FFLUSH_NULL:
2275  *      This symbol, if defined, tells that fflush(NULL) does flush
2276  *      all pending stdio output.
2277  */
2278 /* FFLUSH_ALL:
2279  *      This symbol, if defined, tells that to flush
2280  *      all pending stdio output one must loop through all
2281  *      the stdio file handles stored in an array and fflush them.
2282  *      Note that if fflushNULL is defined, fflushall will not
2283  *      even be probed for and will be left undefined.
2284  */
2285 #define FFLUSH_NULL             /**/
2286 /*#define       FFLUSH_ALL              /**/
2287
2288 /* DB_Prefix_t:
2289  *      This symbol contains the type of the prefix structure element
2290  *      in the <db.h> header file.  In older versions of DB, it was
2291  *      int, while in newer ones it is u_int32_t.
2292  */
2293 /* DB_Hash_t:
2294  *      This symbol contains the type of the prefix structure element
2295  *      in the <db.h> header file.  In older versions of DB, it was
2296  *      int, while in newer ones it is size_t.
2297  */
2298 #define DB_Hash_t       int             /**/
2299 #define DB_Prefix_t     int     /**/
2300
2301 /* I_INTTYPES:
2302  *     This symbol, if defined, indicates to the C program that it should
2303  *     include <inttypes.h>.
2304  */
2305 /* HAS_INT64_T:
2306  *     This symbol will defined if the C compiler supports int64_t.
2307  *     Usually the <inttypes.h> needs to be included, but sometimes
2308  *      <sys/types.h> is enough.
2309  */
2310 /*#define   I_INTTYPES                /**/
2311 /*#define     HAS_INT64_T               /**/
2312
2313 /* I_MNTENT:
2314  *      This symbol, if defined, indicates that <mntent.h> exists and
2315  *      should be included.
2316  */
2317 /*#define       I_MNTENT                /**/
2318
2319 /* I_NETINET_TCP:
2320  *     This symbol, if defined, indicates to the C program that it should
2321  *     include <netinet/tcp.h>.
2322  */
2323 /*#define   I_NETINET_TCP                /**/
2324
2325 /* I_POLL:
2326  *      This symbol, if defined, indicates that <poll.h> exists and
2327  *      should be included.
2328  */
2329 /*#define       I_POLL          /**/
2330
2331 /* I_SHADOW:
2332  *      This symbol, if defined, indicates that <shadow.h> exists and
2333  *      should be included.
2334  */
2335 /*#define       I_SHADOW                /**/
2336
2337 /* I_SOCKS:
2338  *      This symbol, if defined, indicates that <socks.h> exists and
2339  *      should be included.
2340  */
2341 /*#define       I_SOCKS         /**/
2342
2343 /* I_SYS_MOUNT:
2344  *      This symbol, if defined, indicates that <sys/mount.h> exists and
2345  *      should be included.
2346  */
2347 /*#define       I_SYS_MOUNT             /**/
2348
2349 /* I_SYS_STATFS:
2350  *      This symbol, if defined, indicates that <sys/statfs.h> exists.
2351  */
2352 /*#define       I_SYS_STATFS            /**/
2353
2354 /* I_SYS_STATVFS:
2355  *      This symbol, if defined, indicates that <sys/statvfs.h> exists and
2356  *      should be included.
2357  */
2358 /*#define       I_SYS_STATVFS           /**/
2359
2360 /* I_SYS_VFS:
2361  *      This symbol, if defined, indicates that <sys/vfs.h> exists and
2362  *      should be included.
2363  */
2364 /*#define       I_SYS_VFS               /**/
2365
2366 /* I_USTAT:
2367  *      This symbol, if defined, indicates that <ustat.h> exists and
2368  *      should be included.
2369  */
2370 /*#define       I_USTAT         /**/
2371
2372 /* HAS_OFF64_T:
2373  *      This symbol will be defined if the C compiler supports off64_t.
2374  */
2375 /* HAS_FPOS64_T:
2376  *      This symbol will be defined if the C compiler supports fpos64_t.
2377  */
2378 /*#define       HAS_OFF64_T             /**/
2379 /*#define       HAS_FPOS64_T            /**/
2380
2381 /* PERL_PRIfldbl:
2382  *      This symbol, if defined, contains the string used by stdio to
2383  *      format long doubles (format 'f') for output.
2384  */
2385 /* PERL_PRIgldbl:
2386  *      This symbol, if defined, contains the string used by stdio to
2387  *      format long doubles (format 'g') for output.
2388  */
2389 /*#define PERL_PRIfldbl "f"     /**/
2390 /*#define PERL_PRIgldbl "g"     /**/
2391
2392 /* IVTYPE:
2393  *      This symbol defines the C type used for Perl's IV.
2394  */
2395 /* UVTYPE:
2396  *      This symbol defines the C type used for Perl's UV.
2397  */
2398 /* I8TYPE:
2399  *      This symbol defines the C type used for Perl's I8.
2400  */
2401 /* U8TYPE:
2402  *      This symbol defines the C type used for Perl's U8.
2403  */
2404 /* I16TYPE:
2405  *      This symbol defines the C type used for Perl's I16.
2406  */
2407 /* U16TYPE:
2408  *      This symbol defines the C type used for Perl's U16.
2409  */
2410 /* I32TYPE:
2411  *      This symbol defines the C type used for Perl's I32.
2412  */
2413 /* U32TYPE:
2414  *      This symbol defines the C type used for Perl's U32.
2415  */
2416 /* I64TYPE:
2417  *      This symbol defines the C type used for Perl's I64.
2418  */
2419 /* U64TYPE:
2420  *      This symbol defines the C type used for Perl's U64.
2421  */
2422 /* NVTYPE:
2423  *      This symbol defines the C type used for Perl's NV.
2424  */
2425 /* IVSIZE:
2426  *      This symbol contains the sizeof(IV).
2427  */
2428 /* UVSIZE:
2429  *      This symbol contains the sizeof(UV).
2430  */
2431 /* I8SIZE:
2432  *      This symbol contains the sizeof(I8).
2433  */
2434 /* U8SIZE:
2435  *      This symbol contains the sizeof(U8).
2436  */
2437 /* I16SIZE:
2438  *      This symbol contains the sizeof(I16).
2439  */
2440 /* U16SIZE:
2441  *      This symbol contains the sizeof(U16).
2442  */
2443 /* I32SIZE:
2444  *      This symbol contains the sizeof(I32).
2445  */
2446 /* U32SIZE:
2447  *      This symbol contains the sizeof(U32).
2448  */
2449 /* I64SIZE:
2450  *      This symbol contains the sizeof(I64).
2451  */
2452 /* U64SIZE:
2453  *      This symbol contains the sizeof(U64).
2454  */
2455 /* NVSIZE:
2456  *      This symbol contains the sizeof(NV).
2457  */
2458 #define IVTYPE          long            /**/
2459 #define UVTYPE          unsigned long           /**/
2460 #define I8TYPE          char            /**/
2461 #define U8TYPE          unsigned char           /**/
2462 #define I16TYPE         short   /**/
2463 #define U16TYPE         unsigned short  /**/
2464 #define I32TYPE         long    /**/
2465 #define U32TYPE         unsigned long   /**/
2466 #ifdef HAS_QUAD
2467 #define I64TYPE         long long       /**/
2468 #define U64TYPE         unsigned long long      /**/
2469 #endif
2470 #define NVTYPE          double          /**/
2471 #define IVSIZE          4               /**/
2472 #define UVSIZE          4               /**/
2473 #define I8SIZE          1               /**/
2474 #define U8SIZE          1               /**/
2475 #define I16SIZE         2       /**/
2476 #define U16SIZE         2       /**/
2477 #define I32SIZE         4       /**/
2478 #define U32SIZE         4       /**/
2479 #ifdef HAS_QUAD
2480 #define I64SIZE         8       /**/
2481 #define U64SIZE         8       /**/
2482 #endif
2483 #define NVSIZE          8               /**/
2484
2485 /* IVdf:
2486  *      This symbol defines the format string used for printing a Perl IV
2487  *      as a signed decimal integer.
2488  */
2489 /* UVuf:
2490  *      This symbol defines the format string used for printing a Perl UV
2491  *      as an unsigned decimal integer.
2492  */
2493 /* UVof:
2494  *      This symbol defines the format string used for printing a Perl UV
2495  *      as an unsigned octal integer.
2496  */
2497 /* UVxf:
2498  *      This symbol defines the format string used for printing a Perl UV
2499  *      as an unsigned hexadecimal integer.
2500  */
2501 #define IVdf            "ld"            /**/
2502 #define UVuf            "lu"            /**/
2503 #define UVof            "lo"            /**/
2504 #define UVxf            "lx"            /**/
2505
2506 /* SELECT_MIN_BITS:
2507  *      This symbol holds the minimum number of bits operated by select.
2508  *      That is, if you do select(n, ...), how many bits at least will be
2509  *      cleared in the masks if some activity is detected.  Usually this
2510  *      is either n or 32*ceil(n/32), especially many little-endians do
2511  *      the latter.  This is only useful if you have select(), naturally.
2512  */
2513 #define SELECT_MIN_BITS         32      /**/
2514
2515 /* STARTPERL:
2516  *      This variable contains the string to put in front of a perl
2517  *      script to make sure (one hopes) that it runs with perl and not
2518  *      some shell.
2519  */
2520 #define STARTPERL "#!perl"              /**/
2521
2522 /* HAS_STDIO_STREAM_ARRAY:
2523  *      This symbol, if defined, tells that there is an array
2524  *      holding the stdio streams.
2525  */
2526 /* STDIO_STREAM_ARRAY:
2527  *      This symbol tells the name of the array holding the stdio streams.
2528  *      Usual values include _iob, __iob, and __sF.
2529  */
2530 /*#define       HAS_STDIO_STREAM_ARRAY  /**/
2531 #define STDIO_STREAM_ARRAY      
2532
2533 /* HAS_STRTOULL:
2534  *      This symbol, if defined, indicates that the strtoull routine is
2535  *      available to convert strings into unsigned long longs.
2536  */
2537 /*#define HAS_STRTOULL          /**/
2538
2539 /* USE_64_BITS:
2540  *      This symbol, if defined, indicates that 64-bit interfaces should
2541  *      be used when available.  If not defined, the native default interfaces
2542  *      will be used (be they 32 or 64 bits).
2543  */
2544 #ifndef USE_64_BITS
2545 /*#define       USE_64_BITS             /**/
2546 #endif
2547
2548 /* USE_LARGE_FILES:
2549  *      This symbol, if defined, indicates that large file support
2550  *      should be used when available.  The USE_64_BITS symbol will
2551  *      also be turned on if necessary.
2552  */
2553 #ifndef USE_LARGE_FILES
2554 /*#define       USE_LARGE_FILES         /**/
2555 #endif
2556
2557 /* USE_LONG_DOUBLE:
2558  *      This symbol, if defined, indicates that long doubles should
2559  *      be used when available.
2560  */
2561 #ifndef USE_LONG_DOUBLE
2562 /*#define       USE_LONG_DOUBLE         /**/
2563 #endif
2564
2565 /* USE_LONG_LONG:
2566  *      This symbol, if defined, indicates that long longs should
2567  *      be used when available.
2568  */
2569 #ifndef USE_LONG_LONG
2570 /*#define       USE_LONG_LONG           /**/
2571 #endif
2572
2573 #ifndef USE_MORE_BITS
2574 /*#define       USE_MORE_BITS           /**/
2575 #endif
2576
2577 /* MULTIPLICITY:
2578  *      This symbol, if defined, indicates that Perl should
2579  *      be built to use multiplicity.
2580  */
2581 #ifndef MULTIPLICTY
2582 /*#define       MULTIPLICITY            /**/
2583 #endif
2584
2585 /* USE_PERLIO:
2586  *      This symbol, if defined, indicates that the PerlIO abstraction should
2587  *      be used throughout.  If not defined, stdio should be
2588  *      used in a fully backward compatible manner.
2589  */
2590 #ifndef USE_PERLIO
2591 /*#define       USE_PERLIO              /**/
2592 #endif
2593
2594 /* USE_SOCKS:
2595  *      This symbol, if defined, indicates that Perl should
2596  *      be built to use socks.
2597  */
2598 #ifndef USE_SOCKS
2599 /*#define       USE_SOCKS               /**/
2600 #endif
2601
2602 /* PERL_XS_APIVERSION:
2603  *      This variable contains the version of the oldest perl binary
2604  *      compatible with the present perl.  perl.c:incpush() and
2605  *      lib/lib.pm will automatically search in c:\\perl\\site\\5.00563\\lib\\MSWin32-x86 for older
2606  *      directories across major versions back to xs_apiversion.
2607  *      This is only useful if you have a perl library directory tree
2608  *      structured like the default one.
2609  *      See INSTALL for how this works.
2610  *      The versioned site_perl directory was introduced in 5.005,
2611  *      so that is the lowest possible value.
2612  *      Since this can depend on compile time options (such as
2613  *      bincompat) it is set by Configure.  Other non-default sources
2614  *      of potential incompatibility, such as multiplicity, threads,
2615  *      debugging, 64bits, sfio, etc., are not checked for currently,
2616  *      though in principle we could go snooping around in old
2617  *      Config.pm files.
2618  */
2619 /* PERL_PM_APIVERSION:
2620  *      This variable contains the version of the oldest perl
2621  *      compatible with the present perl.  (That is, pure perl modules
2622  *      written for pm_apiversion will still work for the current
2623  *      version).  perl.c:incpush() and lib/lib.pm will automatically
2624  *      search in c:\\perl\\site\\5.00563\\lib for older directories across major versions
2625  *      back to pm_apiversion.  This is only useful if you have a perl
2626  *      library directory tree structured like the default one.  The
2627  *      versioned site_perl library was introduced in 5.005, so that's
2628  *      the default setting for this variable.  It's hard to imagine
2629  *      it changing before Perl6.  It is included here for symmetry
2630  *      with xs_apiveprsion -- the searching algorithms will
2631  *      (presumably) be similar.
2632  *      See the INSTALL file for how this works.
2633  */
2634 #define PERL_XS_APIVERSION 5.00563 /* Change to string for tuples?*/
2635 #define PERL_PM_APIVERSION 5.005 /* Change to string for tuples?*/
2636
2637 /* HAS_DRAND48_PROTO:
2638  *      This symbol, if defined, indicates that the system provides
2639  *      a prototype for the drand48() function.  Otherwise, it is up
2640  *      to the program to supply one.  A good guess is
2641  *              extern double drand48 _((void));
2642  */
2643 /*#define       HAS_DRAND48_PROTO       /**/
2644
2645 /* HAS_GETHOST_PROTOS:
2646  *      This symbol, if defined, indicates that <netdb.h> includes
2647  *      prototypes for gethostent(), gethostbyname(), and
2648  *      gethostbyaddr().  Otherwise, it is up to the program to guess
2649  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
2650  */
2651 #define HAS_GETHOST_PROTOS      /**/
2652
2653 /* HAS_GETNET_PROTOS:
2654  *      This symbol, if defined, indicates that <netdb.h> includes
2655  *      prototypes for getnetent(), getnetbyname(), and
2656  *      getnetbyaddr().  Otherwise, it is up to the program to guess
2657  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
2658  */
2659 /*#define       HAS_GETNET_PROTOS       /**/
2660
2661 /* HAS_GETPROTO_PROTOS:
2662  *      This symbol, if defined, indicates that <netdb.h> includes
2663  *      prototypes for getprotoent(), getprotobyname(), and
2664  *      getprotobyaddr().  Otherwise, it is up to the program to guess
2665  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
2666  */
2667 #define HAS_GETPROTO_PROTOS     /**/
2668
2669 /* HAS_GETSERV_PROTOS:
2670  *      This symbol, if defined, indicates that <netdb.h> includes
2671  *      prototypes for getservent(), getservbyname(), and
2672  *      getservbyaddr().  Otherwise, it is up to the program to guess
2673  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
2674  */
2675 #define HAS_GETSERV_PROTOS      /**/
2676
2677 /* Netdb_host_t:
2678  *      This symbol holds the type used for the 1st argument
2679  *      to gethostbyaddr().
2680  */
2681 /* Netdb_hlen_t:
2682  *      This symbol holds the type used for the 2nd argument
2683  *      to gethostbyaddr().
2684  */
2685 /* Netdb_name_t:
2686  *      This symbol holds the type used for the argument to
2687  *      gethostbyname().
2688  */
2689 /* Netdb_net_t:
2690  *      This symbol holds the type used for the 1st argument to
2691  *      getnetbyaddr().
2692  */
2693 #define Netdb_host_t            char * /**/
2694 #define Netdb_hlen_t            int /**/
2695 #define Netdb_name_t            char * /**/
2696 #define Netdb_net_t             long /**/
2697
2698 /* Select_fd_set_t:
2699  *      This symbol holds the type used for the 2nd, 3rd, and 4th
2700  *      arguments to select.  Usually, this is 'fd_set *', if HAS_FD_SET
2701  *      is defined, and 'int *' otherwise.  This is only useful if you 
2702  *      have select(), of course.
2703  */
2704 #define Select_fd_set_t         Perl_fd_set *   /**/
2705
2706 /* ARCHNAME:
2707  *      This symbol holds a string representing the architecture name.
2708  *      It may be used to construct an architecture-dependant pathname
2709  *      where library files may be held under a private library, for
2710  *      instance.
2711  */
2712 #define ARCHNAME "MSWin32-x86"          /**/
2713
2714 /* OLD_PTHREAD_CREATE_JOINABLE:
2715  *      This symbol, if defined, indicates how to create pthread
2716  *      in joinable (aka undetached) state.  NOTE: not defined
2717  *      if pthread.h already has defined PTHREAD_CREATE_JOINABLE
2718  *      (the new version of the constant).
2719  *      If defined, known values are PTHREAD_CREATE_UNDETACHED
2720  *      and __UNDETACHED.
2721  */
2722 /*#define OLD_PTHREAD_CREATE_JOINABLE  /**/
2723
2724 /* HAS_PTHREAD_YIELD:
2725  *      This symbol, if defined, indicates that the pthread_yield 
2726  *      routine is available to yield the execution of the current
2727  *      thread.  sched_yield is preferable to pthread_yield.
2728  */
2729 /* SCHED_YIELD:
2730  *      This symbol defines the way to yield the execution of
2731  *      the current thread.  Known ways are sched_yield,
2732  *      pthread_yield, and pthread_yield with NULL.
2733  */
2734 /* HAS_SCHED_YIELD:
2735  *      This symbol, if defined, indicates that the sched_yield
2736  *      routine is available to yield the execution of the current
2737  *      thread.  sched_yield is preferable to pthread_yield.
2738  */
2739 /*#define HAS_PTHREAD_YIELD     /**/
2740 #define SCHED_YIELD             /**/
2741 /*#define HAS_SCHED_YIELD       /**/
2742
2743 /* I_MACH_CTHREADS:
2744  *     This symbol, if defined, indicates to the C program that it should
2745  *     include <mach/cthreads.h>.
2746  */
2747 /*#define   I_MACH_CTHREADS     /**/
2748
2749 /* I_PTHREAD:
2750  *     This symbol, if defined, indicates to the C program that it should
2751  *     include <pthread.h>.
2752  */
2753 /*#define   I_PTHREAD   /**/
2754
2755 /* USE_THREADS:
2756  *      This symbol, if defined, indicates that Perl should
2757  *      be built to use threads.
2758  */
2759 /* OLD_PTHREADS_API:
2760  *      This symbol, if defined, indicates that Perl should
2761  *      be built to use the old draft POSIX threads API.
2762  */
2763 #ifndef USE_TTHREADS
2764 /*#define       USE_THREADS             /**/
2765 #endif
2766 /*#define       OLD_PTHREADS_API                /**/
2767
2768 /* Time_t:
2769  *      This symbol holds the type returned by time(). It can be long,
2770  *      or time_t on BSD sites (in which case <sys/types.h> should be
2771  *      included).
2772  */
2773 #define Time_t time_t           /* Time type */
2774
2775 /* HAS_TIMES:
2776  *      This symbol, if defined, indicates that the times() routine exists.
2777  *      Note that this became obsolete on some systems (SUNOS), which now
2778  * use getrusage(). It may be necessary to include <sys/times.h>.
2779  */
2780 #define HAS_TIMES               /**/
2781
2782 /* Fpos_t:
2783  *      This symbol holds the type used to declare file positions in libc.
2784  *      It can be fpos_t, long, uint, etc... It may be necessary to include
2785  *      <sys/types.h> to get any typedef'ed information.
2786  */
2787 #define Fpos_t fpos_t           /* File position type */
2788
2789 /* Gid_t_f:
2790  *      This symbol defines the format string used for printing a Gid_t.
2791  */
2792 #define Gid_t_f         "ld"            /**/
2793
2794 /* Gid_t:
2795  *      This symbol holds the return type of getgid() and the type of
2796  *      argument to setrgid() and related functions.  Typically,
2797  *      it is the type of group ids in the kernel. It can be int, ushort,
2798  *      uid_t, etc... It may be necessary to include <sys/types.h> to get
2799  *      any typedef'ed information.
2800  */
2801 #define Gid_t gid_t             /* Type for getgid(), etc... */
2802
2803 /* Off_t:
2804  *      This symbol holds the type used to declare offsets in the kernel.
2805  *      It can be int, long, off_t, etc... It may be necessary to include
2806  *      <sys/types.h> to get any typedef'ed information.
2807  */
2808 /* LSEEKSIZE:
2809  *      This symbol holds the number of bytes used by the Off_t.
2810  */
2811 #define Off_t off_t             /* <offset> type */
2812 #define LSEEKSIZE 4             /* <offset> size */
2813
2814 /* Mode_t:
2815  *      This symbol holds the type used to declare file modes 
2816  *      for systems calls.  It is usually mode_t, but may be
2817  *      int or unsigned short.  It may be necessary to include <sys/types.h>
2818  *      to get any typedef'ed information.
2819  */
2820 #define Mode_t mode_t    /* file mode parameter for system calls */
2821
2822 /* Pid_t:
2823  *      This symbol holds the type used to declare process ids in the kernel.
2824  *      It can be int, uint, pid_t, etc... It may be necessary to include
2825  *      <sys/types.h> to get any typedef'ed information.
2826  */
2827 #define Pid_t int               /* PID type */
2828
2829 /* Size_t:
2830  *      This symbol holds the type used to declare length parameters
2831  *      for string functions.  It is usually size_t, but may be
2832  *      unsigned long, int, etc.  It may be necessary to include
2833  *      <sys/types.h> to get any typedef'ed information.
2834  */
2835 #define Size_t size_t    /* length paramater for string functions */
2836
2837 /* Uid_t_f:
2838  *      This symbol defines the format string used for printing a Uid_t.
2839  */
2840 #define Uid_t_f         "ld"            /**/
2841
2842 /* Uid_t:
2843  *      This symbol holds the type used to declare user ids in the kernel.
2844  *      It can be int, ushort, uid_t, etc... It may be necessary to include
2845  *      <sys/types.h> to get any typedef'ed information.
2846  */
2847 #define Uid_t uid_t             /* UID type */
2848
2849 #endif