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