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