[win32] fix POSIX for mingw32
[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: undef
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 /* BIN:
30  *      This symbol holds the path of the bin directory where the package will
31  *      be installed. Program must be prepared to deal with ~name substitution.
32  */
33 /* BIN_EXP:
34  *      This symbol is the filename expanded version of the BIN symbol, for
35  *      programs that do not want to deal with that at run-time.
36  */
37 #define BIN "c:\\perl5004.5x\\bin"      /**/
38 #define BIN_EXP "c:\\perl5004.5x\\bin"  /**/
39
40 /* CPPSTDIN:
41  *      This symbol contains the first part of the string which will invoke
42  *      the C preprocessor on the standard input and produce to standard
43  *      output.  Typical value of "cc -E" or "/lib/cpp", but it can also
44  *      call a wrapper. See CPPRUN.
45  */
46 /* CPPMINUS:
47  *      This symbol contains the second part of the string which will invoke
48  *      the C preprocessor on the standard input and produce to standard
49  *      output.  This symbol will have the value "-" if CPPSTDIN needs a minus
50  *      to specify standard input, otherwise the value is "".
51  */
52 #define CPPSTDIN "gcc -E"
53 #define CPPMINUS "-"
54
55 /* HAS_ALARM:
56  *      This symbol, if defined, indicates that the alarm routine is
57  *      available.
58  */
59 /*#define HAS_ALARM             /**/
60
61 /* HASATTRIBUTE:
62  *      This symbol indicates the C compiler can check for function attributes,
63  *      such as printf formats. This is normally only supported by GNU cc.
64  */
65 #define HASATTRIBUTE    /**/
66 #ifndef HASATTRIBUTE
67 #define __attribute__(_arg_)
68 #endif
69
70 /* HAS_BCMP:
71  *      This symbol is defined if the bcmp() routine is available to
72  *      compare blocks of memory.
73  */
74 /*#define HAS_BCMP      /**/
75
76 /* HAS_BCOPY:
77  *      This symbol is defined if the bcopy() routine is available to
78  *      copy blocks of memory.
79  */
80 /*#define HAS_BCOPY     /**/
81
82 /* HAS_BZERO:
83  *      This symbol is defined if the bzero() routine is available to
84  *      set a memory block to 0.
85  */
86 /*#define HAS_BZERO     /**/
87
88 /* HAS_CHOWN:
89  *      This symbol, if defined, indicates that the chown routine is
90  *      available.
91  */
92 /*#define HAS_CHOWN             /**/
93
94 /* HAS_CHROOT:
95  *      This symbol, if defined, indicates that the chroot routine is
96  *      available.
97  */
98 /*#define HAS_CHROOT            /**/
99
100 /* HAS_CHSIZE:
101  *      This symbol, if defined, indicates that the chsize routine is available
102  *      to truncate files.  You might need a -lx to get this routine.
103  */
104 #define HAS_CHSIZE              /**/
105
106 /* HASCONST:
107  *      This symbol, if defined, indicates that this C compiler knows about
108  *      the const type. There is no need to actually test for that symbol
109  *      within your programs. The mere use of the "const" keyword will
110  *      trigger the necessary tests.
111  */
112 #define HASCONST        /**/
113 #ifndef HASCONST
114 #define const
115 #endif
116
117 /* HAS_CRYPT:
118  *      This symbol, if defined, indicates that the crypt routine is available
119  *      to encrypt passwords and the like.
120  */
121 /*#define HAS_CRYPT             /**/
122
123 /* HAS_CUSERID:
124  *      This symbol, if defined, indicates that the cuserid routine is
125  *      available to get character login names.
126  */
127 /*#define HAS_CUSERID           /**/
128
129 /* HAS_DBL_DIG:
130  *      This symbol, if defined, indicates that this system's <float.h>
131  *      or <limits.h> defines the symbol DBL_DIG, which is the number
132  *      of significant digits in a double precision number.  If this
133  *      symbol is not defined, a guess of 15 is usually pretty good.
134  */
135 #define HAS_DBL_DIG     /**/
136
137 /* HAS_DIFFTIME:
138  *      This symbol, if defined, indicates that the difftime routine is
139  *      available.
140  */
141 #define HAS_DIFFTIME            /**/
142
143 /* HAS_DLERROR:
144  *      This symbol, if defined, indicates that the dlerror routine is
145  *      available to return a string describing the last error that
146  *      occurred from a call to dlopen(), dlclose() or dlsym().
147  */
148 #define HAS_DLERROR     /**/
149
150 /* SETUID_SCRIPTS_ARE_SECURE_NOW:
151  *      This symbol, if defined, indicates that the bug that prevents
152  *      setuid scripts from being secure is not present in this kernel.
153  */
154 /* DOSUID:
155  *      This symbol, if defined, indicates that the C program should
156  *      check the script that it is executing for setuid/setgid bits, and
157  *      attempt to emulate setuid/setgid on systems that have disabled
158  *      setuid #! scripts because the kernel can't do it securely.
159  *      It is up to the package designer to make sure that this emulation
160  *      is done securely.  Among other things, it should do an fstat on
161  *      the script it just opened to make sure it really is a setuid/setgid
162  *      script, it should make sure the arguments passed correspond exactly
163  *      to the argument on the #! line, and it should not trust any
164  *      subprocesses to which it must pass the filename rather than the
165  *      file descriptor of the script to be executed.
166  */
167 /*#define SETUID_SCRIPTS_ARE_SECURE_NOW /**/
168 /*#define DOSUID                /**/
169
170 /* HAS_DUP2:
171  *      This symbol, if defined, indicates that the dup2 routine is
172  *      available to duplicate file descriptors.
173  */
174 #define HAS_DUP2        /**/
175
176 /* HAS_FCHMOD:
177  *      This symbol, if defined, indicates that the fchmod routine is available
178  *      to change mode of opened files.  If unavailable, use chmod().
179  */
180 /*#define HAS_FCHMOD            /**/
181
182 /* HAS_FCHOWN:
183  *      This symbol, if defined, indicates that the fchown routine is available
184  *      to change ownership of opened files.  If unavailable, use chown().
185  */
186 /*#define HAS_FCHOWN            /**/
187
188 /* HAS_FCNTL:
189  *      This symbol, if defined, indicates to the C program that
190  *      the fcntl() function exists.
191  */
192 /*#define HAS_FCNTL             /**/
193
194 /* HAS_FGETPOS:
195  *      This symbol, if defined, indicates that the fgetpos routine is
196  *      available to get the file position indicator, similar to ftell().
197  */
198 #define HAS_FGETPOS     /**/
199
200 /* FLEXFILENAMES:
201  *      This symbol, if defined, indicates that the system supports filenames
202  *      longer than 14 characters.
203  */
204 #define FLEXFILENAMES           /**/
205
206 /* HAS_FLOCK:
207  *      This symbol, if defined, indicates that the flock routine is
208  *      available to do file locking.
209  */
210 #define HAS_FLOCK               /**/
211
212 /* HAS_FORK:
213  *      This symbol, if defined, indicates that the fork routine is
214  *      available.
215  */
216 /*#define HAS_FORK              /**/
217
218 /* HAS_FSETPOS:
219  *      This symbol, if defined, indicates that the fsetpos routine is
220  *      available to set the file position indicator, similar to fseek().
221  */
222 #define HAS_FSETPOS     /**/
223
224 /* HAS_GETTIMEOFDAY:
225  *      This symbol, if defined, indicates that the gettimeofday() system
226  *      call is available for a sub-second accuracy clock. Usually, the file
227  *      <sys/resource.h> needs to be included (see I_SYS_RESOURCE).
228  *      The type "Timeval" should be used to refer to "struct timeval".
229  */
230 /*#define HAS_GETTIMEOFDAY      /**/
231 #ifdef HAS_GETTIMEOFDAY
232 #define Timeval struct timeval  /* Structure used by gettimeofday() */
233 #endif
234
235 /* HAS_GETGROUPS:
236  *      This symbol, if defined, indicates that the getgroups() routine is
237  *      available to get the list of process groups.  If unavailable, multiple
238  *      groups are probably not supported.
239  */
240 /*#define HAS_GETGROUPS         /**/
241
242 /* HAS_UNAME:
243  *      This symbol, if defined, indicates that the C program may use the
244  *      uname() routine to derive the host name.  See also HAS_GETHOSTNAME
245  *      and PHOSTNAME.
246  */
247 /*#define HAS_UNAME             /**/
248
249 /* HAS_GETLOGIN:
250  *      This symbol, if defined, indicates that the getlogin routine is
251  *      available to get the login name.
252  */
253 #define HAS_GETLOGIN            /**/
254
255 /* HAS_GETPGID:
256  *      This symbol, if defined, indicates to the C program that 
257  *      the getpgid(pid) function is available to get the
258  *      process group id.
259  */
260 /*#define HAS_GETPGID           /**/
261
262 /* HAS_GETPGRP:
263  *      This symbol, if defined, indicates that the getpgrp routine is
264  *      available to get the current process group.
265  */
266 /* USE_BSD_GETPGRP:
267  *      This symbol, if defined, indicates that getpgrp needs one
268  *      arguments whereas USG one needs none.
269  */
270 /*#define HAS_GETPGRP           /**/
271 /*#define USE_BSD_GETPGRP       /**/
272
273 /* HAS_GETPGRP2:
274  *      This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
275  *      routine is available to get the current process group.
276  */
277 /*#define HAS_GETPGRP2          /**/
278
279 /* HAS_GETPPID:
280  *      This symbol, if defined, indicates that the getppid routine is
281  *      available to get the parent process ID.
282  */
283 /*#define HAS_GETPPID           /**/
284
285 /* HAS_GETPRIORITY:
286  *      This symbol, if defined, indicates that the getpriority routine is
287  *      available to get a process's priority.
288  */
289 /*#define HAS_GETPRIORITY               /**/
290
291 /* HAS_HTONL:
292  *      This symbol, if defined, indicates that the htonl() routine (and
293  *      friends htons() ntohl() ntohs()) are available to do network
294  *      order byte swapping.
295  */
296 /* HAS_HTONS:
297  *      This symbol, if defined, indicates that the htons() routine (and
298  *      friends htonl() ntohl() ntohs()) are available to do network
299  *      order byte swapping.
300  */
301 /* HAS_NTOHL:
302  *      This symbol, if defined, indicates that the ntohl() routine (and
303  *      friends htonl() htons() ntohs()) are available to do network
304  *      order byte swapping.
305  */
306 /* HAS_NTOHS:
307  *      This symbol, if defined, indicates that the ntohs() routine (and
308  *      friends htonl() htons() ntohl()) are available to do network
309  *      order byte swapping.
310  */
311 #define HAS_HTONL               /**/
312 #define HAS_HTONS               /**/
313 #define HAS_NTOHL               /**/
314 #define HAS_NTOHS               /**/
315
316 /* HAS_INET_ATON:
317  *      This symbol, if defined, indicates to the C program that the
318  *      inet_aton() function is available to parse IP address "dotted-quad"
319  *      strings.
320  */
321 /*#define HAS_INET_ATON         /**/
322
323 /* HAS_KILLPG:
324  *      This symbol, if defined, indicates that the killpg routine is available
325  *      to kill process groups.  If unavailable, you probably should use kill
326  *      with a negative process number.
327  */
328 /*#define HAS_KILLPG    /**/
329
330 /* HAS_LINK:
331  *      This symbol, if defined, indicates that the link routine is
332  *      available to create hard links.
333  */
334 /*#define HAS_LINK      /**/
335
336 /* HAS_LOCALECONV:
337  *      This symbol, if defined, indicates that the localeconv routine is
338  *      available for numeric and monetary formatting conventions.
339  */
340 #define HAS_LOCALECONV  /**/
341
342 /* HAS_LOCKF:
343  *      This symbol, if defined, indicates that the lockf routine is
344  *      available to do file locking.
345  */
346 /*#define HAS_LOCKF             /**/
347
348 /* HAS_LSTAT:
349  *      This symbol, if defined, indicates that the lstat routine is
350  *      available to do file stats on symbolic links.
351  */
352 /*#define HAS_LSTAT             /**/
353
354 /* HAS_MBLEN:
355  *      This symbol, if defined, indicates that the mblen routine is available
356  *      to find the number of bytes in a multibye character.
357  */
358 #define HAS_MBLEN               /**/
359
360 /* HAS_MBSTOWCS:
361  *      This symbol, if defined, indicates that the mbstowcs routine is
362  *      available to covert a multibyte string into a wide character string.
363  */
364 #define HAS_MBSTOWCS            /**/
365
366 /* HAS_MBTOWC:
367  *      This symbol, if defined, indicates that the mbtowc routine is available
368  *      to covert a multibyte to a wide character.
369  */
370 #define HAS_MBTOWC              /**/
371
372 /* HAS_MEMCMP:
373  *      This symbol, if defined, indicates that the memcmp routine is available
374  *      to compare blocks of memory.
375  */
376 #define HAS_MEMCMP      /**/
377
378 /* HAS_MEMCPY:
379  *      This symbol, if defined, indicates that the memcpy routine is available
380  *      to copy blocks of memory.
381  */
382 #define HAS_MEMCPY      /**/
383
384 /* HAS_MEMMOVE:
385  *      This symbol, if defined, indicates that the memmove routine is available
386  *      to copy potentially overlapping blocks of memory. This should be used
387  *      only when HAS_SAFE_BCOPY is not defined. If neither is there, roll your
388  *      own version.
389  */
390 #define HAS_MEMMOVE     /**/
391
392 /* HAS_MEMSET:
393  *      This symbol, if defined, indicates that the memset routine is available
394  *      to set blocks of memory.
395  */
396 #define HAS_MEMSET      /**/
397
398 /* HAS_MKDIR:
399  *      This symbol, if defined, indicates that the mkdir routine is available
400  *      to create directories.  Otherwise you should fork off a new process to
401  *      exec /bin/mkdir.
402  */
403 #define HAS_MKDIR               /**/
404
405 /* HAS_MKFIFO:
406  *      This symbol, if defined, indicates that the mkfifo routine is
407  *      available to create FIFOs. Otherwise, mknod should be able to
408  *      do it for you. However, if mkfifo is there, mknod might require
409  *      super-user privileges which mkfifo will not.
410  */
411 /*#define HAS_MKFIFO            /**/
412
413 /* HAS_MKTIME:
414  *      This symbol, if defined, indicates that the mktime routine is
415  *      available.
416  */
417 #define HAS_MKTIME              /**/
418
419 /* HAS_MSG:
420  *      This symbol, if defined, indicates that the entire msg*(2) library is
421  *      supported (IPC mechanism based on message queues).
422  */
423 /*#define HAS_MSG               /**/
424
425 /* HAS_NICE:
426  *      This symbol, if defined, indicates that the nice routine is
427  *      available.
428  */
429 /*#define HAS_NICE              /**/
430
431 /* HAS_PATHCONF:
432  *      This symbol, if defined, indicates that pathconf() is available
433  *      to determine file-system related limits and options associated
434  *      with a given filename.
435  */
436 /* HAS_FPATHCONF:
437  *      This symbol, if defined, indicates that pathconf() is available
438  *      to determine file-system related limits and options associated
439  *      with a given open file descriptor.
440  */
441 /*#define HAS_PATHCONF          /**/
442 /*#define HAS_FPATHCONF         /**/
443
444 /* HAS_PAUSE:
445  *      This symbol, if defined, indicates that the pause routine is
446  *      available to suspend a process until a signal is received.
447  */
448 #define HAS_PAUSE               /**/
449
450 /* HAS_PIPE:
451  *      This symbol, if defined, indicates that the pipe routine is
452  *      available to create an inter-process channel.
453  */
454 #define HAS_PIPE                /**/
455
456 /* HAS_POLL:
457  *      This symbol, if defined, indicates that the poll routine is
458  *      available to poll active file descriptors. You may safely
459  *      include <poll.h> when this symbol is defined.
460  */
461 /*#define HAS_POLL              /**/
462
463 /* HAS_READDIR:
464  *      This symbol, if defined, indicates that the readdir routine is
465  *      available to read directory entries. You may have to include
466  *      <dirent.h>. See I_DIRENT.
467  */
468 #define HAS_READDIR             /**/
469
470 /* HAS_SEEKDIR:
471  *      This symbol, if defined, indicates that the seekdir routine is
472  *      available. You may have to include <dirent.h>. See I_DIRENT.
473  */
474 #define HAS_SEEKDIR             /**/
475
476 /* HAS_TELLDIR:
477  *      This symbol, if defined, indicates that the telldir routine is
478  *      available. You may have to include <dirent.h>. See I_DIRENT.
479  */
480 #define HAS_TELLDIR             /**/
481
482 /* HAS_REWINDDIR:
483  *      This symbol, if defined, indicates that the rewinddir routine is
484  *      available. You may have to include <dirent.h>. See I_DIRENT.
485  */
486 #define HAS_REWINDDIR           /**/
487
488 /* HAS_READLINK:
489  *      This symbol, if defined, indicates that the readlink routine is
490  *      available to read the value of a symbolic link.
491  */
492 /*#define HAS_READLINK          /**/
493
494 /* HAS_RENAME:
495  *      This symbol, if defined, indicates that the rename routine is available
496  *      to rename files.  Otherwise you should do the unlink(), link(), unlink()
497  *      trick.
498  */
499 #define HAS_RENAME      /**/
500
501 /* HAS_RMDIR:
502  *      This symbol, if defined, indicates that the rmdir routine is
503  *      available to remove directories. Otherwise you should fork off a
504  *      new process to exec /bin/rmdir.
505  */
506 #define HAS_RMDIR               /**/
507
508 /* HAS_SELECT:
509  *      This symbol, if defined, indicates that the select routine is
510  *      available to select active file descriptors. If the timeout field
511  *      is used, <sys/time.h> may need to be included.
512  */
513 #define HAS_SELECT      /**/
514
515 /* HAS_SEM:
516  *      This symbol, if defined, indicates that the entire sem*(2) library is
517  *      supported.
518  */
519 /*#define HAS_SEM               /**/
520
521 /* HAS_SETEGID:
522  *      This symbol, if defined, indicates that the setegid routine is available
523  *      to change the effective gid of the current program.
524  */
525 /*#define HAS_SETEGID           /**/
526
527 /* HAS_SETEUID:
528  *      This symbol, if defined, indicates that the seteuid routine is available
529  *      to change the effective uid of the current program.
530  */
531 /*#define HAS_SETEUID           /**/
532
533 /* HAS_SETLINEBUF:
534  *      This symbol, if defined, indicates that the setlinebuf routine is
535  *      available to change stderr or stdout from block-buffered or unbuffered
536  *      to a line-buffered mode.
537  */
538 /*#define HAS_SETLINEBUF                /**/
539
540 /* HAS_SETLOCALE:
541  *      This symbol, if defined, indicates that the setlocale routine is
542  *      available to handle locale-specific ctype implementations.
543  */
544 #define HAS_SETLOCALE   /**/
545
546 /* HAS_SETPGID:
547  *      This symbol, if defined, indicates that the setpgid(pid, gpid)
548  *      routine is available to set process group ID.
549  */
550 /*#define HAS_SETPGID   /**/
551
552 /* HAS_SETPGRP:
553  *      This symbol, if defined, indicates that the setpgrp routine is
554  *      available to set the current process group.
555  */
556 /* USE_BSD_SETPGRP:
557  *      This symbol, if defined, indicates that setpgrp needs two
558  *      arguments whereas USG one needs none.  See also HAS_SETPGID
559  *      for a POSIX interface.
560  */
561 /*#define HAS_SETPGRP           /**/
562 /*#define USE_BSD_SETPGRP       /**/
563
564 /* HAS_SETPGRP2:
565  *      This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
566  *      routine is available to set the current process group.
567  */
568 /*#define HAS_SETPGRP2          /**/
569
570 /* HAS_SETPRIORITY:
571  *      This symbol, if defined, indicates that the setpriority routine is
572  *      available to set a process's priority.
573  */
574 /*#define HAS_SETPRIORITY               /**/
575
576 /* HAS_SETREGID:
577  *      This symbol, if defined, indicates that the setregid routine is
578  *      available to change the real and effective gid of the current
579  *      process.
580  */
581 /* HAS_SETRESGID:
582  *      This symbol, if defined, indicates that the setresgid routine is
583  *      available to change the real, effective and saved gid of the current
584  *      process.
585  */
586 /*#define HAS_SETREGID          /**/
587 /*#define HAS_SETRESGID         /**/
588
589 /* HAS_SETREUID:
590  *      This symbol, if defined, indicates that the setreuid routine is
591  *      available to change the real and effective uid of the current
592  *      process.
593  */
594 /* HAS_SETRESUID:
595  *      This symbol, if defined, indicates that the setresuid routine is
596  *      available to change the real, effective and saved uid of the current
597  *      process.
598  */
599 /*#define HAS_SETREUID          /**/
600 /*#define HAS_SETRESUID         /**/
601
602 /* HAS_SETRGID:
603  *      This symbol, if defined, indicates that the setrgid routine is available
604  *      to change the real gid of the current program.
605  */
606 /*#define HAS_SETRGID           /**/
607
608 /* HAS_SETRUID:
609  *      This symbol, if defined, indicates that the setruid routine is available
610  *      to change the real uid of the current program.
611  */
612 /*#define HAS_SETRUID           /**/
613
614 /* HAS_SETSID:
615  *      This symbol, if defined, indicates that the setsid routine is
616  *      available to set the process group ID.
617  */
618 /*#define HAS_SETSID    /**/
619
620 /* HAS_SHM:
621  *      This symbol, if defined, indicates that the entire shm*(2) library is
622  *      supported.
623  */
624 /*#define HAS_SHM               /**/
625
626 /* Shmat_t:
627  *      This symbol holds the return type of the shmat() system call.
628  *      Usually set to 'void *' or 'char *'.
629  */
630 /* HAS_SHMAT_PROTOTYPE:
631  *      This symbol, if defined, indicates that the sys/shm.h includes
632  *      a prototype for shmat().  Otherwise, it is up to the program to
633  *      guess one.  Shmat_t shmat _((int, Shmat_t, int)) is a good guess,
634  *      but not always right so it should be emitted by the program only
635  *      when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
636  */
637 #define Shmat_t void *  /**/
638 /*#define HAS_SHMAT_PROTOTYPE   /**/
639
640 /* USE_STAT_BLOCKS:
641  *      This symbol is defined if this system has a stat structure declaring
642  *      st_blksize and st_blocks.
643  */
644 /*#define USE_STAT_BLOCKS       /**/
645
646 /* HAS_STRCHR:
647  *      This symbol is defined to indicate that the strchr()/strrchr()
648  *      functions are available for string searching. If not, try the
649  *      index()/rindex() pair.
650  */
651 /* HAS_INDEX:
652  *      This symbol is defined to indicate that the index()/rindex()
653  *      functions are available for string searching.
654  */
655 #define HAS_STRCHR      /**/
656 /*#define HAS_INDEX     /**/
657
658 /* HAS_STRCOLL:
659  *      This symbol, if defined, indicates that the strcoll routine is
660  *      available to compare strings using collating information.
661  */
662 #define HAS_STRCOLL     /**/
663
664 /* USE_STRUCT_COPY:
665  *      This symbol, if defined, indicates that this C compiler knows how
666  *      to copy structures.  If undefined, you'll need to use a block copy
667  *      routine of some sort instead.
668  */
669 #define USE_STRUCT_COPY /**/
670
671 /* HAS_STRERROR:
672  *      This symbol, if defined, indicates that the strerror routine is
673  *      available to translate error numbers to strings. See the writeup
674  *      of Strerror() in this file before you try to define your own.
675  */
676 /* HAS_SYS_ERRLIST:
677  *      This symbol, if defined, indicates that the sys_errlist array is
678  *      available to translate error numbers to strings. The extern int
679  *      sys_nerr gives the size of that table.
680  */
681 /* Strerror:
682  *      This preprocessor symbol is defined as a macro if strerror() is
683  *      not available to translate error numbers to strings but sys_errlist[]
684  *      array is there.
685  */
686 #define HAS_STRERROR            /**/
687 #define HAS_SYS_ERRLIST /**/
688 #define Strerror(e) strerror(e)
689
690 /* HAS_STRTOD:
691  *      This symbol, if defined, indicates that the strtod routine is
692  *      available to provide better numeric string conversion than atof().
693  */
694 #define HAS_STRTOD      /**/
695
696 /* HAS_STRTOL:
697  *      This symbol, if defined, indicates that the strtol routine is available
698  *      to provide better numeric string conversion than atoi() and friends.
699  */
700 #define HAS_STRTOL      /**/
701
702 /* HAS_STRTOUL:
703  *      This symbol, if defined, indicates that the strtoul routine is
704  *      available to provide conversion of strings to unsigned long.
705  */
706 #define HAS_STRTOUL     /**/
707
708 /* HAS_STRXFRM:
709  *      This symbol, if defined, indicates that the strxfrm() routine is
710  *      available to transform strings.
711  */
712 #define HAS_STRXFRM     /**/
713
714 /* HAS_SYMLINK:
715  *      This symbol, if defined, indicates that the symlink routine is available
716  *      to create symbolic links.
717  */
718 /*#define HAS_SYMLINK   /**/
719
720 /* HAS_SYSCALL:
721  *      This symbol, if defined, indicates that the syscall routine is
722  *      available to call arbitrary system calls. If undefined, that's tough.
723  */
724 /*#define HAS_SYSCALL   /**/
725
726 /* HAS_SYSCONF:
727  *      This symbol, if defined, indicates that sysconf() is available
728  *      to determine system related limits and options.
729  */
730 /*#define HAS_SYSCONF   /**/
731
732 /* HAS_SYSTEM:
733  *      This symbol, if defined, indicates that the system routine is
734  *      available to issue a shell command.
735  */
736 #define HAS_SYSTEM      /**/
737
738 /* HAS_TCGETPGRP:
739  *      This symbol, if defined, indicates that the tcgetpgrp routine is
740  *      available to get foreground process group ID.
741  */
742 /*#define HAS_TCGETPGRP         /**/
743
744 /* HAS_TCSETPGRP:
745  *      This symbol, if defined, indicates that the tcsetpgrp routine is
746  *      available to set foreground process group ID.
747  */
748 /*#define HAS_TCSETPGRP         /**/
749
750 /* HAS_TRUNCATE:
751  *      This symbol, if defined, indicates that the truncate routine is
752  *      available to truncate files.
753  */
754 /*#define HAS_TRUNCATE  /**/
755
756 /* HAS_TZNAME:
757  *      This symbol, if defined, indicates that the tzname[] array is
758  *      available to access timezone names.
759  */
760 /*#define HAS_TZNAME            /**/
761
762 /* HAS_UMASK:
763  *      This symbol, if defined, indicates that the umask routine is
764  *      available to set and get the value of the file creation mask.
765  */
766 #define HAS_UMASK               /**/
767
768 /* HAS_VFORK:
769  *      This symbol, if defined, indicates that vfork() exists.
770  */
771 /*#define HAS_VFORK     /**/
772
773 /* HASVOLATILE:
774  *      This symbol, if defined, indicates that this C compiler knows about
775  *      the volatile declaration.
776  */
777 #define HASVOLATILE     /**/
778 #ifndef HASVOLATILE
779 #define volatile
780 #endif
781
782 /* HAS_WAIT4:
783  *      This symbol, if defined, indicates that wait4() exists.
784  */
785 /*#define HAS_WAIT4     /**/
786
787 /* HAS_WAITPID:
788  *      This symbol, if defined, indicates that the waitpid routine is
789  *      available to wait for child process.
790  */
791 /*#define HAS_WAITPID   /**/
792
793 /* HAS_WCSTOMBS:
794  *      This symbol, if defined, indicates that the wcstombs routine is
795  *      available to convert wide character strings to multibyte strings.
796  */
797 #define HAS_WCSTOMBS    /**/
798
799 /* HAS_WCTOMB:
800  *      This symbol, if defined, indicates that the wctomb routine is available
801  *      to covert a wide character to a multibyte.
802  */
803 #define HAS_WCTOMB              /**/
804
805 /* I_DBM:
806  *      This symbol, if defined, indicates that <dbm.h> exists and should
807  *      be included.
808  */
809 /* I_RPCSVC_DBM:
810  *      This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
811  *      should be included.
812  */
813 /*#define I_DBM /**/
814 #define I_RPCSVC_DBM    /**/
815
816 /* I_DIRENT:
817  *      This symbol, if defined, indicates to the C program that it should
818  *      include <dirent.h>. Using this symbol also triggers the definition
819  *      of the Direntry_t define which ends up being 'struct dirent' or
820  *      'struct direct' depending on the availability of <dirent.h>.
821  */
822 /* DIRNAMLEN:
823  *      This symbol, if defined, indicates to the C program that the length
824  *      of directory entry names is provided by a d_namlen field.  Otherwise
825  *      you need to do strlen() on the d_name field.
826  */
827 /* Direntry_t:
828  *      This symbol is set to 'struct direct' or 'struct dirent' depending on
829  *      whether dirent is available or not. You should use this pseudo type to
830  *      portably declare your directory entries.
831  */
832 #define I_DIRENT                /**/
833 #define DIRNAMLEN       /**/
834 #define Direntry_t struct direct
835
836 /* I_DLFCN:
837  *      This symbol, if defined, indicates that <dlfcn.h> exists and should
838  *      be included.
839  */
840 #define I_DLFCN         /**/
841
842 /* I_FCNTL:
843  *      This manifest constant tells the C program to include <fcntl.h>.
844  */
845 #define I_FCNTL /**/
846
847 /* I_FLOAT:
848  *      This symbol, if defined, indicates to the C program that it should
849  *      include <float.h> to get definition of symbols like DBL_MAX or
850  *      DBL_MIN, i.e. machine dependent floating point values.
851  */
852 #define I_FLOAT         /**/
853
854 /* I_GRP:
855  *      This symbol, if defined, indicates to the C program that it should
856  *      include <grp.h>.
857  */
858 #define I_GRP           /**/
859
860 /* I_LIMITS:
861  *      This symbol, if defined, indicates to the C program that it should
862  *      include <limits.h> to get definition of symbols like WORD_BIT or
863  *      LONG_MAX, i.e. machine dependant limitations.
864  */
865 #define I_LIMITS                /**/
866
867 /* I_LOCALE:
868  *      This symbol, if defined, indicates to the C program that it should
869  *      include <locale.h>.
870  */
871 #define I_LOCALE                /**/
872
873 /* I_MATH:
874  *      This symbol, if defined, indicates to the C program that it should
875  *      include <math.h>.
876  */
877 #define I_MATH          /**/
878
879 /* I_MEMORY:
880  *      This symbol, if defined, indicates to the C program that it should
881  *      include <memory.h>.
882  */
883 /*#define I_MEMORY              /**/
884
885 /* I_NDBM:
886  *      This symbol, if defined, indicates that <ndbm.h> exists and should
887  *      be included.
888  */
889 /*#define I_NDBM        /**/
890
891 /* I_NET_ERRNO:
892  *      This symbol, if defined, indicates that <net/errno.h> exists and 
893  *      should be included.
894  */
895 /*#define I_NET_ERRNO           /**/
896
897 /* I_NETINET_IN:
898  *      This symbol, if defined, indicates to the C program that it should
899  *      include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
900  */
901 /*#define I_NETINET_IN  /**/
902
903 /* I_SFIO:
904  *      This symbol, if defined, indicates to the C program that it should
905  *      include <sfio.h>.
906  */
907 /*#define       I_SFIO          /**/
908
909 /* I_STDDEF:
910  *      This symbol, if defined, indicates that <stddef.h> exists and should
911  *      be included.
912  */
913 #define I_STDDEF        /**/
914
915 /* I_STDLIB:
916  *      This symbol, if defined, indicates that <stdlib.h> exists and should
917  *      be included.
918  */
919 #define I_STDLIB                /**/
920
921 /* I_STRING:
922  *      This symbol, if defined, indicates to the C program that it should
923  *      include <string.h> (USG systems) instead of <strings.h> (BSD systems).
924  */
925 #define I_STRING                /**/
926
927 /* I_SYS_DIR:
928  *      This symbol, if defined, indicates to the C program that it should
929  *      include <sys/dir.h>.
930  */
931 /*#define I_SYS_DIR             /**/
932
933 /* I_SYS_FILE:
934  *      This symbol, if defined, indicates to the C program that it should
935  *      include <sys/file.h> to get definition of R_OK and friends.
936  */
937 /*#define I_SYS_FILE            /**/
938
939 /* I_SYS_IOCTL:
940  *      This symbol, if defined, indicates that <sys/ioctl.h> exists and should
941  *      be included. Otherwise, include <sgtty.h> or <termio.h>.
942  */
943 /*#define       I_SYS_IOCTL             /**/
944
945 /* I_SYS_NDIR:
946  *      This symbol, if defined, indicates to the C program that it should
947  *      include <sys/ndir.h>.
948  */
949 /*#define I_SYS_NDIR    /**/
950
951 /* I_SYS_PARAM:
952  *      This symbol, if defined, indicates to the C program that it should
953  *      include <sys/param.h>.
954  */
955 /*#define I_SYS_PARAM           /**/
956
957 /* I_SYS_RESOURCE:
958  *      This symbol, if defined, indicates to the C program that it should
959  *      include <sys/resource.h>.
960  */
961 /*#define I_SYS_RESOURCE                /**/
962
963 /* I_SYS_SELECT:
964  *      This symbol, if defined, indicates to the C program that it should
965  *      include <sys/select.h> in order to get definition of struct timeval.
966  */
967 /*#define I_SYS_SELECT  /**/
968
969 /* I_SYS_STAT:
970  *      This symbol, if defined, indicates to the C program that it should
971  *      include <sys/stat.h>.
972  */
973 #define I_SYS_STAT              /**/
974
975 /* I_SYS_TIMES:
976  *      This symbol, if defined, indicates to the C program that it should
977  *      include <sys/times.h>.
978  */
979 /*#define       I_SYS_TIMES             /**/
980
981 /* I_SYS_UN:
982  *      This symbol, if defined, indicates to the C program that it should
983  *      include <sys/un.h> to get UNIX domain socket definitions.
984  */
985 /*#define I_SYS_UN              /**/
986
987 /* I_SYS_WAIT:
988  *      This symbol, if defined, indicates to the C program that it should
989  *      include <sys/wait.h>.
990  */
991 /*#define I_SYS_WAIT    /**/
992
993 /* I_TERMIO:
994  *      This symbol, if defined, indicates that the program should include
995  *      <termio.h> rather than <sgtty.h>.  There are also differences in
996  *      the ioctl() calls that depend on the value of this symbol.
997  */
998 /* I_TERMIOS:
999  *      This symbol, if defined, indicates that the program should include
1000  *      the POSIX termios.h rather than sgtty.h or termio.h.
1001  *      There are also differences in the ioctl() calls that depend on the
1002  *      value of this symbol.
1003  */
1004 /* I_SGTTY:
1005  *      This symbol, if defined, indicates that the program should include
1006  *      <sgtty.h> rather than <termio.h>.  There are also differences in
1007  *      the ioctl() calls that depend on the value of this symbol.
1008  */
1009 /*#define I_TERMIO              /**/
1010 /*#define I_TERMIOS             /**/
1011 /*#define I_SGTTY               /**/
1012
1013 /* I_UNISTD:
1014  *      This symbol, if defined, indicates to the C program that it should
1015  *      include <unistd.h>.
1016  */
1017 /*#define I_UNISTD              /**/
1018
1019 /* I_UTIME:
1020  *      This symbol, if defined, indicates to the C program that it should
1021  *      include <utime.h>.
1022  */
1023 #define I_UTIME         /**/
1024
1025 /* I_VALUES:
1026  *      This symbol, if defined, indicates to the C program that it should
1027  *      include <values.h> to get definition of symbols like MINFLOAT or
1028  *      MAXLONG, i.e. machine dependant limitations.  Probably, you
1029  *      should use <limits.h> instead, if it is available.
1030  */
1031 /*#define I_VALUES              /**/
1032
1033 /* I_STDARG:
1034  *      This symbol, if defined, indicates that <stdarg.h> exists and should
1035  *      be included.
1036  */
1037 /* I_VARARGS:
1038  *      This symbol, if defined, indicates to the C program that it should
1039  *      include <varargs.h>.
1040  */
1041 #define I_STDARG                /**/
1042 /*#define I_VARARGS     /**/
1043
1044 /* I_VFORK:
1045  *      This symbol, if defined, indicates to the C program that it should
1046  *      include vfork.h.
1047  */
1048 /*#define I_VFORK       /**/
1049
1050 /* Free_t:
1051  *      This variable contains the return type of free().  It is usually
1052  * void, but occasionally int.
1053  */
1054 /* Malloc_t:
1055  *      This symbol is the type of pointer returned by malloc and realloc.
1056  */
1057 #define Malloc_t void *                 /**/
1058 #define Free_t void                     /**/
1059
1060 /* MYMALLOC:
1061  *      This symbol, if defined, indicates that we're using our own malloc.
1062  */
1063 #define MYMALLOC                        /**/
1064
1065 /* CAN_PROTOTYPE:
1066  *      If defined, this macro indicates that the C compiler can handle
1067  *      function prototypes.
1068  */
1069 /* _:
1070  *      This macro is used to declare function parameters for folks who want
1071  *      to make declarations with prototypes using a different style than
1072  *      the above macros.  Use double parentheses.  For example:
1073  *
1074  *              int main _((int argc, char *argv[]));
1075  */
1076 #define CAN_PROTOTYPE   /**/
1077 #ifdef CAN_PROTOTYPE
1078 #define _(args) args
1079 #else
1080 #define _(args) ()
1081 #endif
1082
1083 /* SH_PATH:
1084  *      This symbol contains the full pathname to the shell used on this
1085  *      on this system to execute Bourne shell scripts.  Usually, this will be
1086  *      /bin/sh, though it's possible that some systems will have /bin/ksh,
1087  *      /bin/pdksh, /bin/ash, /bin/bash, or even something such as
1088  *      D:/bin/sh.exe.
1089  */
1090 #define SH_PATH "cmd /x /c"  /**/
1091
1092 /* STDCHAR:
1093  *      This symbol is defined to be the type of char used in stdio.h.
1094  *      It has the values "unsigned char" or "char".
1095  */
1096 #define STDCHAR char    /**/
1097
1098 /* VOIDFLAGS:
1099  *      This symbol indicates how much support of the void type is given by this
1100  *      compiler.  What various bits mean:
1101  *
1102  *          1 = supports declaration of void
1103  *          2 = supports arrays of pointers to functions returning void
1104  *          4 = supports comparisons between pointers to void functions and
1105  *                  addresses of void functions
1106  *          8 = suports declaration of generic void pointers
1107  *
1108  *      The package designer should define VOIDUSED to indicate the requirements
1109  *      of the package.  This can be done either by #defining VOIDUSED before
1110  *      including config.h, or by defining defvoidused in Myinit.U.  If the
1111  *      latter approach is taken, only those flags will be tested.  If the
1112  *      level of void support necessary is not present, defines void to int.
1113  */
1114 #ifndef VOIDUSED
1115 #define VOIDUSED 15
1116 #endif
1117 #define VOIDFLAGS 15
1118 #if (VOIDFLAGS & VOIDUSED) != VOIDUSED
1119 #define void int                /* is void to be avoided? */
1120 #define M_VOID                  /* Xenix strikes again */
1121 #endif
1122
1123 /* MEM_ALIGNBYTES:
1124  *       This symbol contains the number of bytes required to align a
1125  *       double. Usual values are 2, 4 and 8.
1126  *       On NeXT starting with 3.2, you can build "Fat" Multiple Architecture
1127  *       Binaries (MAB) for targets with varying alignment.  This only matters
1128  *       for perl, where the config.h can be generated and installed on one
1129  *       system, and used by a different architecture to build an extension.
1130  *       The default is eight, for safety.
1131  */
1132 #define MEM_ALIGNBYTES 8        /**/
1133
1134 /* BYTEORDER:
1135  *      This symbol holds the hexadecimal constant defined in byteorder,
1136  *      i.e. 0x1234 or 0x4321, etc...
1137  *      On NeXT 3.2 (and greater), you can build "Fat" Multiple Architecture
1138  *      Binaries (MAB) on either big endian or little endian machines.
1139  *      The endian-ness is available at compile-time.  This only matters
1140  *      for perl, where the config.h can be generated and installed on 
1141  *      one system, and used by a different architecture to build an
1142  *      extension.  Older versions of NeXT that might not have
1143  *      defined either *_ENDIAN__ were all on Motorola 680x0 series,
1144  *      so the default case (for NeXT) is big endian to catch them. 
1145  *      This might matter for NeXT 3.0.
1146  */
1147 #ifndef NeXT
1148 #define BYTEORDER 0x1234        /* large digits for MSB */
1149 #else  /* NeXT */
1150 #ifdef __LITTLE_ENDIAN__
1151 #define BYTEORDER 0x1234
1152 #else /* __BIG_ENDIAN__ */
1153 #define BYTEORDER 0x4321
1154 #endif /* ENDIAN CHECK */
1155 #endif /* NeXT */
1156
1157 /* CASTI32:
1158  *      This symbol is defined if the C compiler can cast negative
1159  *      or large floating point numbers to 32-bit ints.
1160  */
1161 #define CASTI32         /**/
1162
1163 /* CASTNEGFLOAT:
1164  *      This symbol is defined if the C compiler can cast negative
1165  *      numbers to unsigned longs, ints and shorts.
1166  */
1167 /* CASTFLAGS:
1168  *      This symbol contains flags that say what difficulties the compiler
1169  *      has casting odd floating values to unsigned long:
1170  *              0 = ok
1171  *              1 = couldn't cast < 0
1172  *              2 = couldn't cast >= 0x80000000
1173  *              4 = couldn't cast in argument expression list
1174  */
1175 #define CASTNEGFLOAT            /**/
1176 #define CASTFLAGS 0             /**/
1177
1178 /* VOID_CLOSEDIR:
1179  *      This symbol, if defined, indicates that the closedir() routine
1180  *      does not return a value.
1181  */
1182 /*#define VOID_CLOSEDIR         /**/
1183
1184 /* Gconvert:
1185  *      This preprocessor macro is defined to convert a floating point
1186  *      number to a string without a trailing decimal point.  This
1187  *      emulates the behavior of sprintf("%g"), but is sometimes much more
1188  *      efficient.  If gconvert() is not available, but gcvt() drops the
1189  *      trailing decimal point, then gcvt() is used.  If all else fails,
1190  *      a macro using sprintf("%g") is used. Arguments for the Gconvert
1191  *      macro are: value, number of digits, whether trailing zeros should
1192  *      be retained, and the output buffer.
1193  *      Possible values are:
1194  *              d_Gconvert='gconvert((x),(n),(t),(b))'
1195  *              d_Gconvert='gcvt((x),(n),(b))'
1196  *              d_Gconvert='sprintf((b),"%.*g",(n),(x))'
1197  *      The last two assume trailing zeros should not be kept.
1198  */
1199 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
1200
1201 /* HAS_GNULIBC:
1202  *      This symbol, if defined, indicates to the C program that 
1203  *      the GNU C library is being used.
1204  */
1205 /*#define HAS_GNULIBC   /**/
1206 /* HAS_ISASCII:
1207  *      This manifest constant lets the C program know that isascii 
1208  *      is available.
1209  */
1210 #define HAS_ISASCII             /**/
1211
1212 /* HAS_OPEN3:
1213  *      This manifest constant lets the C program know that the three
1214  *      argument form of open(2) is available.
1215  */
1216 /*#define HAS_OPEN3             /**/
1217
1218 /* HAS_SAFE_BCOPY:
1219  *      This symbol, if defined, indicates that the bcopy routine is available
1220  *      to copy potentially overlapping memory blocks. Otherwise you should
1221  *      probably use memmove() or memcpy(). If neither is defined, roll your
1222  *      own version.
1223  */
1224 /*#define HAS_SAFE_BCOPY        /**/
1225
1226 /* HAS_SAFE_MEMCPY:
1227  *      This symbol, if defined, indicates that the memcpy routine is available
1228  *      to copy potentially overlapping memory blocks. Otherwise you should
1229  *      probably use memmove() or memcpy(). If neither is defined, roll your
1230  *      own version.
1231  */
1232 /*#define HAS_SAFE_MEMCPY       /**/
1233
1234 /* HAS_SANE_MEMCMP:
1235  *      This symbol, if defined, indicates that the memcmp routine is available
1236  *      and can be used to compare relative magnitudes of chars with their high
1237  *      bits set.  If it is not defined, roll your own version.
1238  */
1239 #define HAS_SANE_MEMCMP /**/
1240
1241 /* HAS_SIGACTION:
1242  *      This symbol, if defined, indicates that Vr4's sigaction() routine
1243  *      is available.
1244  */
1245 /*#define HAS_SIGACTION /**/
1246
1247 /* Sigjmp_buf:
1248  *      This is the buffer type to be used with Sigsetjmp and Siglongjmp.
1249  */
1250 /* Sigsetjmp:
1251  *      This macro is used in the same way as sigsetjmp(), but will invoke
1252  *      traditional setjmp() if sigsetjmp isn't available.
1253  *      See HAS_SIGSETJMP.
1254  */
1255 /* Siglongjmp:
1256  *      This macro is used in the same way as siglongjmp(), but will invoke
1257  *      traditional longjmp() if siglongjmp isn't available.
1258  *      See HAS_SIGSETJMP.
1259  */
1260 /*#define HAS_SIGSETJMP /**/
1261 #ifdef HAS_SIGSETJMP
1262 #define Sigjmp_buf sigjmp_buf
1263 #define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
1264 #define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
1265 #else
1266 #define Sigjmp_buf jmp_buf
1267 #define Sigsetjmp(buf,save_mask) setjmp((buf))
1268 #define Siglongjmp(buf,retval) longjmp((buf),(retval))
1269 #endif
1270
1271 /* USE_STDIO_PTR:
1272  *      This symbol is defined if the _ptr and _cnt fields (or similar)
1273  *      of the stdio FILE structure can be used to access the stdio buffer
1274  *      for a file handle.  If this is defined, then the FILE_ptr(fp)
1275  *      and FILE_cnt(fp) macros will also be defined and should be used
1276  *      to access these fields.
1277  */
1278 /* FILE_ptr:
1279  *      This macro is used to access the _ptr field (or equivalent) of the
1280  *      FILE structure pointed to by its argument. This macro will always be
1281  *      defined if USE_STDIO_PTR is defined.
1282  */
1283 /* STDIO_PTR_LVALUE:
1284  *      This symbol is defined if the FILE_ptr macro can be used as an
1285  *      lvalue.
1286  */
1287 /* FILE_cnt:
1288  *      This macro is used to access the _cnt field (or equivalent) of the
1289  *      FILE structure pointed to by its argument. This macro will always be
1290  *      defined if USE_STDIO_PTR is defined.
1291  */
1292 /* STDIO_CNT_LVALUE:
1293  *      This symbol is defined if the FILE_cnt macro can be used as an
1294  *      lvalue.
1295  */
1296 /*#define USE_STDIO_PTR         /**/
1297 #ifdef USE_STDIO_PTR
1298 #define FILE_ptr(fp)    ((fp)->_ptr)
1299 #define STDIO_PTR_LVALUE                /**/
1300 #define FILE_cnt(fp)    ((fp)->_cnt)
1301 #define STDIO_CNT_LVALUE                /**/
1302 #endif
1303
1304 /* USE_STDIO_BASE:
1305  *      This symbol is defined if the _base field (or similar) of the
1306  *      stdio FILE structure can be used to access the stdio buffer for
1307  *      a file handle.  If this is defined, then the FILE_base(fp) macro
1308  *      will also be defined and should be used to access this field.
1309  *      Also, the FILE_bufsiz(fp) macro will be defined and should be used
1310  *      to determine the number of bytes in the buffer.  USE_STDIO_BASE
1311  *      will never be defined unless USE_STDIO_PTR is.
1312  */
1313 /* FILE_base:
1314  *      This macro is used to access the _base field (or equivalent) of the
1315  *      FILE structure pointed to by its argument. This macro will always be
1316  *      defined if USE_STDIO_BASE is defined.
1317  */
1318 /* FILE_bufsiz:
1319  *      This macro is used to determine the number of bytes in the I/O
1320  *      buffer pointed to by _base field (or equivalent) of the FILE
1321  *      structure pointed to its argument. This macro will always be defined
1322  *      if USE_STDIO_BASE is defined.
1323  */
1324 /*#define USE_STDIO_BASE        /**/
1325 #ifdef USE_STDIO_BASE
1326 #define FILE_base(fp)   ((fp)->_base)
1327 #define FILE_bufsiz(fp) ((fp)->_cnt + (fp)->_ptr - (fp)->_base)
1328 #endif
1329
1330 /* HAS_VPRINTF:
1331  *      This symbol, if defined, indicates that the vprintf routine is available
1332  *      to printf with a pointer to an argument list.  If unavailable, you
1333  *      may need to write your own, probably in terms of _doprnt().
1334  */
1335 /* USE_CHAR_VSPRINTF:
1336  *      This symbol is defined if this system has vsprintf() returning type
1337  *      (char*).  The trend seems to be to declare it as "int vsprintf()".  It
1338  *      is up to the package author to declare vsprintf correctly based on the
1339  *      symbol.
1340  */
1341 #define HAS_VPRINTF     /**/
1342 /*#define USE_CHAR_VSPRINTF     /**/
1343
1344 /* DOUBLESIZE:
1345  *      This symbol contains the size of a double, so that the C preprocessor
1346  *      can make decisions based on it.
1347  */
1348 #define DOUBLESIZE 8            /**/
1349
1350 /* I_TIME:
1351  *      This symbol, if defined, indicates to the C program that it should
1352  *      include <time.h>.
1353  */
1354 /* I_SYS_TIME:
1355  *      This symbol, if defined, indicates to the C program that it should
1356  *      include <sys/time.h>.
1357  */
1358 /* I_SYS_TIME_KERNEL:
1359  *      This symbol, if defined, indicates to the C program that it should
1360  *      include <sys/time.h> with KERNEL defined.
1361  */
1362 #define I_TIME          /**/
1363 /*#define I_SYS_TIME            /**/
1364 /*#define I_SYS_TIME_KERNEL             /**/
1365
1366 /* INTSIZE:
1367  *      This symbol contains the value of sizeof(int) so that the C
1368  *      preprocessor can make decisions based on it.
1369  */
1370 /* LONGSIZE:
1371  *      This symbol contains the value of sizeof(long) so that the C
1372  *      preprocessor can make decisions based on it.
1373  */
1374 /* SHORTSIZE:
1375  *      This symbol contains the value of sizeof(short) so that the C
1376  *      preprocessor can make decisions based on it.
1377  */
1378 #define INTSIZE 4               /**/
1379 #define LONGSIZE 4              /**/
1380 #define SHORTSIZE 2             /**/
1381
1382 /* VAL_O_NONBLOCK:
1383  *      This symbol is to be used during open() or fcntl(F_SETFL) to turn on
1384  *      non-blocking I/O for the file descriptor. Note that there is no way
1385  *      back, i.e. you cannot turn it blocking again this way. If you wish to
1386  *      alternatively switch between blocking and non-blocking, use the
1387  *      ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
1388  */
1389 /* VAL_EAGAIN:
1390  *      This symbol holds the errno error code set by read() when no data was
1391  *      present on the non-blocking file descriptor.
1392  */
1393 /* RD_NODATA:
1394  *      This symbol holds the return code from read() when no data is present
1395  *      on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
1396  *      not defined, then you can't distinguish between no data and EOF by
1397  *      issuing a read(). You'll have to find another way to tell for sure!
1398  */
1399 /* EOF_NONBLOCK:
1400  *      This symbol, if defined, indicates to the C program that a read() on
1401  *      a non-blocking file descriptor will return 0 on EOF, and not the value
1402  *      held in RD_NODATA (-1 usually, in that case!).
1403  */
1404 #define VAL_O_NONBLOCK O_NONBLOCK
1405 #define VAL_EAGAIN EAGAIN
1406 #define RD_NODATA -1
1407 #define EOF_NONBLOCK
1408
1409 /* PTRSIZE:
1410  *      This symbol contains the size of a pointer, so that the C preprocessor
1411  *      can make decisions based on it.  It will be sizeof(void *) if
1412  *      the compiler supports (void *); otherwise it will be
1413  *      sizeof(char *).
1414  */
1415 #define PTRSIZE 4               /**/
1416
1417 /* RANDBITS:
1418  *      This symbol contains the number of bits of random number the rand()
1419  *      function produces.  Usual values are 15, 16, and 31.
1420  */
1421 #define RANDBITS 15             /**/
1422
1423 /* SSize_t:
1424  *      This symbol holds the type used by functions that return
1425  *      a count of bytes or an error condition.  It must be a signed type.
1426  *      It is usually ssize_t, but may be long or int, etc.
1427  *      It may be necessary to include <sys/types.h> or <unistd.h>
1428  *      to get any typedef'ed information.
1429  *      We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
1430  */
1431 #define SSize_t int      /* signed count of bytes */
1432
1433 /* OSNAME:
1434  *      This symbol contains the name of the operating system, as determined
1435  *      by Configure.  You shouldn't rely on it too much; the specific
1436  *      feature tests from Configure are generally more reliable.
1437  */
1438 #define OSNAME "MSWin32"                /**/
1439
1440 /* ARCHLIB:
1441  *      This variable, if defined, holds the name of the directory in
1442  *      which the user wants to put architecture-dependent public
1443  *      library files for perl5.  It is most often a local directory
1444  *      such as /usr/local/lib.  Programs using this variable must be
1445  *      prepared to deal with filename expansion.  If ARCHLIB is the
1446  *      same as PRIVLIB, it is not defined, since presumably the
1447  *      program already searches PRIVLIB.
1448  */
1449 /* ARCHLIB_EXP:
1450  *      This symbol contains the ~name expanded version of ARCHLIB, to be used
1451  *      in programs that are not prepared to deal with ~ expansion at run-time.
1452  */
1453 #define ARCHLIB "c:\\perl5004.5x\\lib\\MSWin32-x86"             /**/
1454 #define ARCHLIB_EXP (win32_perllib_path(ARCHNAME,NULL)) /**/
1455
1456 /* CAT2:
1457  *      This macro catenates 2 tokens together.
1458  */
1459 /* STRINGIFY:
1460  *      This macro surrounds its token with double quotes.
1461  */
1462 #if 42 == 1
1463 #define CAT2(a,b)a/**/b
1464 #define STRINGIFY(a)"a"
1465                 /* If you can get stringification with catify, tell me how! */
1466 #endif
1467 #if 42 == 42
1468 #define CAT2(a,b)a ## b
1469 #define StGiFy(a)# a
1470 #define STRINGIFY(a)StGiFy(a)
1471 #endif
1472 #if 42 != 1 && 42 != 42
1473 #include "Bletch: How does this C preprocessor catenate tokens?"
1474 #endif
1475
1476 /* CSH:
1477  *      This symbol, if defined, contains the full pathname of csh.
1478  */
1479 /*#define HAS_CSH               /**/
1480 #ifdef HAS_CSH
1481 #define CSH ""  /**/
1482 #endif
1483
1484 /* HAS_ENDHOSTENT:
1485  *      This symbol, if defined, indicates that the endhostent() routine is
1486  *      available to close whatever was being used for host queries.
1487  */
1488 /*#define HAS_ENDHOSTENT                /**/
1489
1490 /* HAS_ENDNETENT:
1491  *      This symbol, if defined, indicates that the endnetent() routine is
1492  *      available to close whatever was being used for network queries.
1493  */
1494 /*#define HAS_ENDNETENT         /**/
1495
1496 /* HAS_ENDPROTOENT:
1497  *      This symbol, if defined, indicates that the endprotoent() routine is
1498  *      available to close whatever was being used for protocol queries.
1499  */
1500 /*#define HAS_ENDPROTOENT               /**/
1501
1502 /* HAS_ENDSERVENT:
1503  *      This symbol, if defined, indicates that the endservent() routine is
1504  *      available to close whatever was being used for service queries.
1505  */
1506 /*#define HAS_ENDSERVENT                /**/
1507
1508 /* HAS_GETHOSTBYADDR:
1509  *      This symbol, if defined, indicates that the gethostbyaddr() routine is
1510  *      available to look up hosts by their IP addresses.
1511  */
1512 #define HAS_GETHOSTBYADDR               /**/
1513
1514 /* HAS_GETHOSTBYNAME:
1515  *      This symbol, if defined, indicates that the gethostbyname() routine is
1516  *      available to look up host names in some data base or other.
1517  */
1518 #define HAS_GETHOSTBYNAME               /**/
1519
1520 /* HAS_GETHOSTENT:
1521  *      This symbol, if defined, indicates that the gethostent() routine is
1522  *      available to look up host names in some data base or another.
1523  */
1524 /*#define HAS_GETHOSTENT                /**/
1525
1526 /* HAS_GETNETBYADDR:
1527  *      This symbol, if defined, indicates that the getnetbyaddr() routine is
1528  *      available to look up networks by their IP addresses.
1529  */
1530 /*#define HAS_GETNETBYADDR              /**/
1531
1532 /* HAS_GETNETBYNAME:
1533  *      This symbol, if defined, indicates that the getnetbyname() routine is
1534  *      available to look up networks by their names.
1535  */
1536 /*#define HAS_GETNETBYNAME              /**/
1537
1538 /* HAS_GETNETENT:
1539  *      This symbol, if defined, indicates that the getnetent() routine is
1540  *      available to look up network names in some data base or another.
1541  */
1542 /*#define HAS_GETNETENT         /**/
1543
1544 /* HAS_GETPROTOENT:
1545  *      This symbol, if defined, indicates that the getprotoent() routine is
1546  *      available to look up protocols in some data base or another.
1547  */
1548 /*#define HAS_GETPROTOENT               /**/
1549
1550 /* HAS_GETPROTOBYNAME:
1551  *      This symbol, if defined, indicates that the getprotobyname()
1552  *      routine is available to look up protocols by their name.
1553  */
1554 /* HAS_GETPROTOBYNUMBER:
1555  *      This symbol, if defined, indicates that the getprotobynumber()
1556  *      routine is available to look up protocols by their number.
1557  */
1558 #define HAS_GETPROTOBYNAME              /**/
1559 #define HAS_GETPROTOBYNUMBER            /**/
1560
1561 /* HAS_GETSERVENT:
1562  *      This symbol, if defined, indicates that the getservent() routine is
1563  *      available to look up network services in some data base or another.
1564  */
1565 /*#define HAS_GETSERVENT                /**/
1566
1567 /* HAS_GETSERVBYNAME:
1568  *      This symbol, if defined, indicates that the getservbyname()
1569  *      routine is available to look up services by their name.
1570  */
1571 /* HAS_GETSERVBYPORT:
1572  *      This symbol, if defined, indicates that the getservbyport()
1573  *      routine is available to look up services by their port.
1574  */
1575 #define HAS_GETSERVBYNAME               /**/
1576 #define HAS_GETSERVBYPORT               /**/
1577
1578 /* HAS_LONG_DOUBLE:
1579  *      This symbol will be defined if the C compiler supports long
1580  *      doubles.
1581  */
1582 /* LONG_DOUBLESIZE:
1583  *      This symbol contains the size of a long double, so that the 
1584  *      C preprocessor can make decisions based on it.  It is only
1585  *      defined if the system supports long doubles.
1586  */
1587 #define HAS_LONG_DOUBLE         /**/
1588 #ifdef HAS_LONG_DOUBLE
1589 #define LONG_DOUBLESIZE 12              /**/
1590 #endif
1591
1592 /* HAS_LONG_LONG:
1593  *      This symbol will be defined if the C compiler supports
1594  *      long long.
1595  */
1596 /* LONGLONGSIZE:
1597  *      This symbol contains the size of a long long, so that the 
1598  *      C preprocessor can make decisions based on it.  It is only
1599  *      defined if the system supports long long.
1600  */
1601 /*#define HAS_LONG_LONG         /**/
1602 #ifdef HAS_LONG_LONG
1603 #define LONGLONGSIZE 8          /**/
1604 #endif
1605
1606 /* HAS_MKSTEMP:
1607  *      This symbol, if defined, indicates that the mkstemp routine is
1608  *      available to create and open a unique temporary file.
1609  */
1610 /*#define HAS_MKSTEMP           /**/
1611
1612 /* HAS_SETGROUPS:
1613  *      This symbol, if defined, indicates that the setgroups() routine is
1614  *      available to set the list of process groups.  If unavailable, multiple
1615  *      groups are probably not supported.
1616  */
1617 /*#define HAS_SETGROUPS         /**/
1618
1619 /* HAS_SETHOSTENT:
1620  *      This symbol, if defined, indicates that the sethostent() routine is
1621  *      available.
1622  */
1623 /*#define HAS_SETHOSTENT                /**/
1624
1625 /* HAS_SETNETENT:
1626  *      This symbol, if defined, indicates that the setnetent() routine is
1627  *      available.
1628  */
1629 /*#define HAS_SETNETENT         /**/
1630
1631 /* HAS_SETPROTOENT:
1632  *      This symbol, if defined, indicates that the setprotoent() routine is
1633  *      available.
1634  */
1635 /*#define HAS_SETPROTOENT               /**/
1636
1637 /* HAS_SETSERVENT:
1638  *      This symbol, if defined, indicates that the setservent() routine is
1639  *      available.
1640  */
1641 /*#define HAS_SETSERVENT                /**/
1642
1643 /* HAS_SETVBUF:
1644  *      This symbol, if defined, indicates that the setvbuf routine is
1645  *      available to change buffering on an open stdio stream.
1646  *      to a line-buffered mode.
1647  */
1648 #define HAS_SETVBUF             /**/
1649
1650 /* HAS_SOCKET:
1651  *      This symbol, if defined, indicates that the BSD socket interface is
1652  *      supported.
1653  */
1654 /* HAS_SOCKETPAIR:
1655  *      This symbol, if defined, indicates that the BSD socketpair() call is
1656  *      supported.
1657  */
1658 #define HAS_SOCKET              /**/
1659 /*#define HAS_SOCKETPAIR        /**/
1660
1661 /* Signal_t:
1662  *      This symbol's value is either "void" or "int", corresponding to the
1663  *      appropriate return type of a signal handler.  Thus, you can declare
1664  *      a signal handler using "Signal_t (*handler)()", and define the
1665  *      handler using "Signal_t handler(sig)".
1666  */
1667 #define Signal_t void   /* Signal handler's return type */
1668
1669 /* Groups_t:
1670  *      This symbol holds the type used for the second argument to
1671  *      getgroups() and setgropus().  Usually, this is the same as
1672  *      gidtype (gid_t) , but sometimes it isn't.
1673  *      It can be int, ushort, uid_t, etc... 
1674  *      It may be necessary to include <sys/types.h> to get any 
1675  *      typedef'ed information.  This is only required if you have
1676  *      getgroups() or setgropus()..
1677  */
1678 #if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
1679 #define Groups_t gid_t  /* Type for 2nd arg to [sg]etgroups() */
1680 #endif
1681
1682 /* I_NETDB:
1683  *      This symbol, if defined, indicates that <netdb.h> exists and
1684  *      should be included.
1685  */
1686 /*#define I_NETDB               /**/
1687
1688 /* I_PWD:
1689  *      This symbol, if defined, indicates to the C program that it should
1690  *      include <pwd.h>.
1691  */
1692 /* PWQUOTA:
1693  *      This symbol, if defined, indicates to the C program that struct passwd
1694  *      contains pw_quota.
1695  */
1696 /* PWAGE:
1697  *      This symbol, if defined, indicates to the C program that struct passwd
1698  *      contains pw_age.
1699  */
1700 /* PWCHANGE:
1701  *      This symbol, if defined, indicates to the C program that struct passwd
1702  *      contains pw_change.
1703  */
1704 /* PWCLASS:
1705  *      This symbol, if defined, indicates to the C program that struct passwd
1706  *      contains pw_class.
1707  */
1708 /* PWEXPIRE:
1709  *      This symbol, if defined, indicates to the C program that struct passwd
1710  *      contains pw_expire.
1711  */
1712 /* PWCOMMENT:
1713  *      This symbol, if defined, indicates to the C program that struct passwd
1714  *      contains pw_comment.
1715  */
1716 /* PWGECOS:
1717  *      This symbol, if defined, indicates to the C program that struct passwd
1718  *      contains pw_gecos.
1719  */
1720 /*#define I_PWD         /**/
1721 /*#define PWQUOTA       /**/
1722 /*#define PWAGE /**/
1723 /*#define PWCHANGE      /**/
1724 /*#define PWCLASS       /**/
1725 /*#define PWEXPIRE      /**/
1726 /*#define PWCOMMENT     /**/
1727 /*#define PWGECOS       /**/
1728
1729 /* I_SYS_TYPES:
1730  *      This symbol, if defined, indicates to the C program that it should
1731  *      include <sys/types.h>.
1732  */
1733 #define I_SYS_TYPES             /**/
1734
1735 /* PRIVLIB:
1736  *      This symbol contains the name of the private library for this package.
1737  *      The library is private in the sense that it needn't be in anyone's
1738  *      execution path, but it should be accessible by the world.  The program
1739  *      should be prepared to do ~ expansion.
1740  */
1741 /* PRIVLIB_EXP:
1742  *      This symbol contains the ~name expanded version of PRIVLIB, to be used
1743  *      in programs that are not prepared to deal with ~ expansion at run-time.
1744  */
1745 #define PRIVLIB "c:\\perl5004.5x\\lib"          /**/
1746 #define PRIVLIB_EXP (win32_perllib_path(NULL))  /**/
1747
1748 /* SIG_NAME:
1749  *      This symbol contains a list of signal names in order of
1750  *      signal number. This is intended
1751  *      to be used as a static array initialization, like this:
1752  *              char *sig_name[] = { SIG_NAME };
1753  *      The signals in the list are separated with commas, and each signal
1754  *      is surrounded by double quotes. There is no leading SIG in the signal
1755  *      name, i.e. SIGQUIT is known as "QUIT".
1756  *      Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
1757  *      etc., where nn is the actual signal number (e.g. NUM37).
1758  *      The signal number for sig_name[i] is stored in sig_num[i].
1759  *      The last element is 0 to terminate the list with a NULL.  This
1760  *      corresponds to the 0 at the end of the sig_num list.
1761  */
1762 /* SIG_NUM:
1763  *      This symbol contains a list of signal numbers, in the same order as the
1764  *      SIG_NAME list. It is suitable for static array initialization, as in:
1765  *              int sig_num[] = { SIG_NUM };
1766  *      The signals in the list are separated with commas, and the indices
1767  *      within that list and the SIG_NAME list match, so it's easy to compute
1768  *      the signal name from a number or vice versa at the price of a small
1769  *      dynamic linear lookup. 
1770  *      Duplicates are allowed, but are moved to the end of the list.
1771  *      The signal number corresponding to sig_name[i] is sig_number[i].
1772  *      if (i < NSIG) then sig_number[i] == i.  
1773  *      The last element is 0, corresponding to the 0 at the end of
1774  *      the sig_name list.
1775  */
1776 #define SIG_NAME "ZERO", "INT", "QUIT", "ILL", "FPE", "KILL", "SEGV", "PIPE", "ALRM", "TERM", "CHLD", "BREAK", "ABRT", "STOP", "CONT", "CLD", 0         /**/
1777 #define SIG_NUM  0, 2, 3, 4, 8, 9, 11, 13, 14, 15, 20, 21, 22, 23, 25, 20, 0                    /**/
1778
1779 /* SITEARCH:
1780  *      This symbol contains the name of the private library for this package.
1781  *      The library is private in the sense that it needn't be in anyone's
1782  *      execution path, but it should be accessible by the world.  The program
1783  *      should be prepared to do ~ expansion.
1784  *      The standard distribution will put nothing in this directory.
1785  *      Individual sites may place their own extensions and modules in
1786  *      this directory.
1787  */
1788 /* SITEARCH_EXP:
1789  *      This symbol contains the ~name expanded version of SITEARCH, to be used
1790  *      in programs that are not prepared to deal with ~ expansion at run-time.
1791  */
1792 #define SITEARCH "c:\\perl5004.5x\\lib\\site\\MSWin32-x86"              /**/
1793 #define SITEARCH_EXP (win32_perllib_path("site",ARCHNAME,NULL)) /**/
1794
1795 /* SITELIB:
1796  *      This symbol contains the name of the private library for this package.
1797  *      The library is private in the sense that it needn't be in anyone's
1798  *      execution path, but it should be accessible by the world.  The program
1799  *      should be prepared to do ~ expansion.
1800  *      The standard distribution will put nothing in this directory.
1801  *      Individual sites may place their own extensions and modules in
1802  *      this directory.
1803  */
1804 /* SITELIB_EXP:
1805  *      This symbol contains the ~name expanded version of SITELIB, to be used
1806  *      in programs that are not prepared to deal with ~ expansion at run-time.
1807  */
1808 #define SITELIB "c:\\perl5004.5x\\lib\\site"            /**/
1809 #define SITELIB_EXP (win32_perllib_path("site",NULL))   /**/
1810
1811 /* DLSYM_NEEDS_UNDERSCORE:
1812  *      This symbol, if defined, indicates that we need to prepend an
1813  *      underscore to the symbol name before calling dlsym().  This only
1814  *      makes sense if you *have* dlsym, which we will presume is the
1815  *      case if you're using dl_dlopen.xs.
1816  */
1817 /*#define       DLSYM_NEEDS_UNDERSCORE  /**/
1818
1819 /* USE_SFIO:
1820  *      This symbol, if defined, indicates that sfio should
1821  *      be used.
1822  */
1823 /*#define       USE_SFIO                /**/
1824
1825 /* USE_DYNAMIC_LOADING:
1826  *      This symbol, if defined, indicates that dynamic loading of
1827  *      some sort is available.
1828  */
1829 #define USE_DYNAMIC_LOADING             /**/
1830
1831 /* DB_Prefix_t:
1832  *      This symbol contains the type of the prefix structure element
1833  *      in the <db.h> header file.  In older versions of DB, it was
1834  *      int, while in newer ones it is u_int32_t.
1835  */
1836 /* DB_Hash_t:
1837  *      This symbol contains the type of the prefix structure element
1838  *      in the <db.h> header file.  In older versions of DB, it was
1839  *      int, while in newer ones it is size_t.
1840  */
1841 #define DB_Hash_t       int             /**/
1842 #define DB_Prefix_t     int     /**/
1843
1844 /* STARTPERL:
1845  *      This variable contains the string to put in front of a perl
1846  *      script to make sure (one hopes) that it runs with perl and not
1847  *      some shell.
1848  */
1849 #define STARTPERL "#!perl"              /**/
1850
1851 /* USE_PERLIO:
1852  *      This symbol, if defined, indicates that the PerlIO abstraction should
1853  *      be used throughout.  If not defined, stdio should be
1854  *      used in a fully backward compatible manner.
1855  */
1856 /*#define       USE_PERLIO              /**/
1857
1858 /* HAS_GETHOST_PROTOS:
1859  *      This symbol, if defined, indicates that <netdb.h> includes
1860  *      prototypes for gethostent(), gethostbyname(), and
1861  *      gethostbyaddr().  Otherwise, it is up to the program to guess
1862  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
1863  */
1864 #define HAS_GETHOST_PROTOS      /**/
1865
1866 /* HAS_GETNET_PROTOS:
1867  *      This symbol, if defined, indicates that <netdb.h> includes
1868  *      prototypes for getnetent(), getnetbyname(), and
1869  *      getnetbyaddr().  Otherwise, it is up to the program to guess
1870  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
1871  */
1872 /*#define       HAS_GETNET_PROTOS       /**/
1873
1874 /* HAS_GETPROTO_PROTOS:
1875  *      This symbol, if defined, indicates that <netdb.h> includes
1876  *      prototypes for getprotoent(), getprotobyname(), and
1877  *      getprotobyaddr().  Otherwise, it is up to the program to guess
1878  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
1879  */
1880 #define HAS_GETPROTO_PROTOS     /**/
1881
1882 /* HAS_GETSERV_PROTOS:
1883  *      This symbol, if defined, indicates that <netdb.h> includes
1884  *      prototypes for getservent(), getservbyname(), and
1885  *      getservbyaddr().  Otherwise, it is up to the program to guess
1886  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
1887  */
1888 #define HAS_GETSERV_PROTOS      /**/
1889
1890 /* Netdb_host_t:
1891  *      This symbol holds the type used for the 1st argument
1892  *      to gethostbyaddr().
1893  */
1894 /* Netdb_hlen_t:
1895  *      This symbol holds the type used for the 2nd argument
1896  *      to gethostbyaddr().
1897  */
1898 /* Netdb_name_t:
1899  *      This symbol holds the type used for the argument to
1900  *      gethostbyname().
1901  */
1902 /* Netdb_net_t:
1903  *      This symbol holds the type used for the 1st argument to
1904  *      getnetbyaddr().
1905  */
1906 #define Netdb_host_t            char * /**/
1907 #define Netdb_hlen_t            int /**/
1908 #define Netdb_name_t            char * /**/
1909 #define Netdb_net_t             long /**/
1910
1911 /* Select_fd_set_t:
1912  *      This symbol holds the type used for the 2nd, 3rd, and 4th
1913  *      arguments to select.  Usually, this is 'fd_set *', if HAS_FD_SET
1914  *      is defined, and 'int *' otherwise.  This is only useful if you 
1915  *      have select(), of course.
1916  */
1917 #define Select_fd_set_t         Perl_fd_set *   /**/
1918
1919 /* ARCHNAME:
1920  *      This symbol holds a string representing the architecture name.
1921  *      It may be used to construct an architecture-dependant pathname
1922  *      where library files may be held under a private library, for
1923  *      instance.
1924  */
1925 #define ARCHNAME "MSWin32-x86"          /**/
1926
1927 /* HAS_PTHREAD_YIELD:
1928  *      This symbol, if defined, indicates that the pthread_yield 
1929  *      routine is available to yield the execution of the current
1930  *      thread.
1931  */
1932 /* HAS_SCHED_YIELD:
1933  *      This symbol, if defined, indicates that the sched_yield
1934  *      routine is available to yield the execution of the current
1935  *      thread.
1936  */
1937 /*#define HAS_PTHREAD_YIELD     /**/
1938 /*#define HAS_SCHED_YIELD       /**/
1939
1940 /* PTHREADS_CREATED_JOINABLE:
1941  *      This symbol, if defined, indicates that pthreads are created
1942  *      in the joinable (aka undetached) state.
1943  */
1944 /*#define PTHREADS_CREATED_JOINABLE /**/
1945
1946 /* USE_THREADS:
1947  *      This symbol, if defined, indicates that Perl should
1948  *      be built to use threads.
1949  */
1950 /* OLD_PTHREADS_API:
1951  *      This symbol, if defined, indicates that Perl should
1952  *      be built to use the old draft POSIX threads API.
1953  */
1954 /*#define       USE_THREADS             /**/
1955 /*#define       OLD_PTHREADS_API                /**/
1956
1957 /* Time_t:
1958  *      This symbol holds the type returned by time(). It can be long,
1959  *      or time_t on BSD sites (in which case <sys/types.h> should be
1960  *      included).
1961  */
1962 #define Time_t time_t           /* Time type */
1963
1964 /* HAS_TIMES:
1965  *      This symbol, if defined, indicates that the times() routine exists.
1966  *      Note that this became obsolete on some systems (SUNOS), which now
1967  * use getrusage(). It may be necessary to include <sys/times.h>.
1968  */
1969 #define HAS_TIMES               /**/
1970
1971 /* Fpos_t:
1972  *      This symbol holds the type used to declare file positions in libc.
1973  *      It can be fpos_t, long, uint, etc... It may be necessary to include
1974  *      <sys/types.h> to get any typedef'ed information.
1975  */
1976 #define Fpos_t fpos_t           /* File position type */
1977
1978 /* Gid_t:
1979  *      This symbol holds the return type of getgid() and the type of
1980  *      argument to setrgid() and related functions.  Typically,
1981  *      it is the type of group ids in the kernel. It can be int, ushort,
1982  *      uid_t, etc... It may be necessary to include <sys/types.h> to get
1983  *      any typedef'ed information.
1984  */
1985 #define Gid_t gid_t             /* Type for getgid(), etc... */
1986
1987 /* Off_t:
1988  *      This symbol holds the type used to declare offsets in the kernel.
1989  *      It can be int, long, off_t, etc... It may be necessary to include
1990  *      <sys/types.h> to get any typedef'ed information.
1991  */
1992 #define Off_t off_t             /* <offset> type */
1993
1994 /* Mode_t:
1995  *      This symbol holds the type used to declare file modes 
1996  *      for systems calls.  It is usually mode_t, but may be
1997  *      int or unsigned short.  It may be necessary to include <sys/types.h>
1998  *      to get any typedef'ed information.
1999  */
2000 #define Mode_t mode_t    /* file mode parameter for system calls */
2001
2002 /* Pid_t:
2003  *      This symbol holds the type used to declare process ids in the kernel.
2004  *      It can be int, uint, pid_t, etc... It may be necessary to include
2005  *      <sys/types.h> to get any typedef'ed information.
2006  */
2007 #define Pid_t int               /* PID type */
2008
2009 /* Size_t:
2010  *      This symbol holds the type used to declare length parameters
2011  *      for string functions.  It is usually size_t, but may be
2012  *      unsigned long, int, etc.  It may be necessary to include
2013  *      <sys/types.h> to get any typedef'ed information.
2014  */
2015 #define Size_t size_t    /* length paramater for string functions */
2016
2017 /* Uid_t:
2018  *      This symbol holds the type used to declare user ids in the kernel.
2019  *      It can be int, ushort, uid_t, etc... It may be necessary to include
2020  *      <sys/types.h> to get any typedef'ed information.
2021  */
2022 #define Uid_t uid_t             /* UID type */
2023
2024 #endif
2025 #include <win32.h>