This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
AUTHORS update.
[perl5.git] / wince / config_H.ce
CommitLineData
e1caacb4
JH
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
e1caacb4
JH
1612/* HAS_INT64_T:
1613 * This symbol will defined if the C compiler supports int64_t.
1614 * Usually the <inttypes.h> needs to be included, but sometimes
1615 * <sys/types.h> is enough.
1616 */
1617/*#define HAS_INT64_T /**/
1618
1619/* HAS_ISASCII:
1620 * This manifest constant lets the C program know that isascii
1621 * is available.
1622 */
1623#define HAS_ISASCII /**/
1624
1625/* HAS_LDBL_DIG:
1626 * This symbol, if defined, indicates that this system's <float.h>
1627 * or <limits.h> defines the symbol LDBL_DIG, which is the number
1628 * of significant digits in a long double precision number. Unlike
1629 * for DBL_DIG, there's no good guess for LDBL_DIG if it is undefined.
1630 */
1631#define HAS_LDBL_DIG /**/
1632
1633/* HAS_LONG_DOUBLE:
1634 * This symbol will be defined if the C compiler supports long
1635 * doubles.
1636 */
1637/* LONG_DOUBLESIZE:
1638 * This symbol contains the size of a long double, so that the
1639 * C preprocessor can make decisions based on it. It is only
1640 * defined if the system supports long doubles.
1641 */
1642
1643// long double is 8 on WINCE
1644
1645#define HAS_LONG_DOUBLE /**/
1646#ifdef HAS_LONG_DOUBLE
1647#define LONG_DOUBLESIZE 8 /**/
1648#endif
1649
1650/* HAS_LONG_LONG:
1651 * This symbol will be defined if the C compiler supports long long.
1652 */
1653/* LONGLONGSIZE:
1654 * This symbol contains the size of a long long, so that the
1655 * C preprocessor can make decisions based on it. It is only
1656 * defined if the system supports long long.
1657 */
1658/*#define HAS_LONG_LONG /**/
1659#ifdef HAS_LONG_LONG
1660#define LONGLONGSIZE 8 /**/
1661#endif
1662
1663/* HAS_LSEEK_PROTO:
1664 * This symbol, if defined, indicates that the system provides
1665 * a prototype for the lseek() function. Otherwise, it is up
1666 * to the program to supply one. A good guess is
1667 * extern off_t lseek(int, off_t, int);
1668 */
1669#define HAS_LSEEK_PROTO /**/
1670
1671/* HAS_MADVISE:
1672 * This symbol, if defined, indicates that the madvise system call is
1673 * available to map a file into memory.
1674 */
1675/*#define HAS_MADVISE /**/
1676
1677/* HAS_MEMCHR:
1678 * This symbol, if defined, indicates that the memchr routine is available
1679 * to locate characters within a C string.
1680 */
1681#define HAS_MEMCHR /**/
1682
1683/* HAS_MKDTEMP:
1684 * This symbol, if defined, indicates that the mkdtemp routine is
1685 * available to exclusively create a uniquely named temporary directory.
1686 */
1687/*#define HAS_MKDTEMP /**/
1688
1689/* HAS_MKSTEMP:
1690 * This symbol, if defined, indicates that the mkstemp routine is
1691 * available to exclusively create and open a uniquely named
1692 * temporary file.
1693 */
1694/*#define HAS_MKSTEMP /**/
1695
1696/* HAS_MKSTEMPS:
1697 * This symbol, if defined, indicates that the mkstemps routine is
1698 * available to excluslvely create and open a uniquely named
1699 * (with a suffix) temporary file.
1700 */
1701/*#define HAS_MKSTEMPS /**/
1702
1703/* HAS_MMAP:
1704 * This symbol, if defined, indicates that the mmap system call is
1705 * available to map a file into memory.
1706 */
1707/* Mmap_t:
1708 * This symbol holds the return type of the mmap() system call
1709 * (and simultaneously the type of the first argument).
1710 * Usually set to 'void *' or 'cadd_t'.
1711 */
1712/*#define HAS_MMAP /**/
1713#define Mmap_t void * /**/
1714
1715/* HAS_MPROTECT:
1716 * This symbol, if defined, indicates that the mprotect system call is
1717 * available to modify the access protection of a memory mapped file.
1718 */
1719/*#define HAS_MPROTECT /**/
1720
1721/* HAS_MSG:
1722 * This symbol, if defined, indicates that the entire msg*(2) library is
1723 * supported (IPC mechanism based on message queues).
1724 */
1725/*#define HAS_MSG /**/
1726
1727/* HAS_OFF64_T:
1728 * This symbol will be defined if the C compiler supports off64_t.
1729 */
1730/*#define HAS_OFF64_T /**/
1731
1732/* HAS_OPEN3:
1733 * This manifest constant lets the C program know that the three
1734 * argument form of open(2) is available.
1735 */
1736/*#define HAS_OPEN3 /**/
1737
1738/* OLD_PTHREAD_CREATE_JOINABLE:
1739 * This symbol, if defined, indicates how to create pthread
1740 * in joinable (aka undetached) state. NOTE: not defined
1741 * if pthread.h already has defined PTHREAD_CREATE_JOINABLE
1742 * (the new version of the constant).
1743 * If defined, known values are PTHREAD_CREATE_UNDETACHED
1744 * and __UNDETACHED.
1745 */
1746/*#define OLD_PTHREAD_CREATE_JOINABLE /**/
1747
1748/* HAS_PTHREAD_YIELD:
1749 * This symbol, if defined, indicates that the pthread_yield
1750 * routine is available to yield the execution of the current
1751 * thread. sched_yield is preferable to pthread_yield.
1752 */
1753/* SCHED_YIELD:
1754 * This symbol defines the way to yield the execution of
1755 * the current thread. Known ways are sched_yield,
1756 * pthread_yield, and pthread_yield with NULL.
1757 */
1758/* HAS_SCHED_YIELD:
1759 * This symbol, if defined, indicates that the sched_yield
1760 * routine is available to yield the execution of the current
1761 * thread. sched_yield is preferable to pthread_yield.
1762 */
1763/*#define HAS_PTHREAD_YIELD /**/
1764#define SCHED_YIELD /**/
1765/*#define HAS_SCHED_YIELD /**/
1766
1767/* HAS_SAFE_BCOPY:
1768 * This symbol, if defined, indicates that the bcopy routine is available
1769 * to copy potentially overlapping memory blocks. Otherwise you should
1770 * probably use memmove() or memcpy(). If neither is defined, roll your
1771 * own version.
1772 */
1773/*#define HAS_SAFE_BCOPY /**/
1774
1775/* HAS_SAFE_MEMCPY:
1776 * This symbol, if defined, indicates that the memcpy routine is available
1777 * to copy potentially overlapping memory blocks. Otherwise you should
1778 * probably use memmove() or memcpy(). If neither is defined, roll your
1779 * own version.
1780 */
1781/*#define HAS_SAFE_MEMCPY /**/
1782
1783/* HAS_SANE_MEMCMP:
1784 * This symbol, if defined, indicates that the memcmp routine is available
1785 * and can be used to compare relative magnitudes of chars with their high
1786 * bits set. If it is not defined, roll your own version.
1787 */
1788#define HAS_SANE_MEMCMP /**/
1789
1790/* HAS_SEM:
1791 * This symbol, if defined, indicates that the entire sem*(2) library is
1792 * supported.
1793 */
1794/*#define HAS_SEM /**/
1795
1796/* HAS_SETGRENT:
1797 * This symbol, if defined, indicates that the setgrent routine is
1798 * available for initializing sequential access of the group database.
1799 */
1800/*#define HAS_SETGRENT /**/
1801
1802/* HAS_SETGROUPS:
1803 * This symbol, if defined, indicates that the setgroups() routine is
1804 * available to set the list of process groups. If unavailable, multiple
1805 * groups are probably not supported.
1806 */
1807/*#define HAS_SETGROUPS /**/
1808
1809/* HAS_SETHOSTENT:
1810 * This symbol, if defined, indicates that the sethostent() routine is
1811 * available.
1812 */
1813/*#define HAS_SETHOSTENT /**/
1814
1815/* HAS_SETNETENT:
1816 * This symbol, if defined, indicates that the setnetent() routine is
1817 * available.
1818 */
1819/*#define HAS_SETNETENT /**/
1820
1821/* HAS_SETPROTOENT:
1822 * This symbol, if defined, indicates that the setprotoent() routine is
1823 * available.
1824 */
1825/*#define HAS_SETPROTOENT /**/
1826
1827/* HAS_SETPWENT:
1828 * This symbol, if defined, indicates that the setpwent routine is
1829 * available for initializing sequential access of the passwd database.
1830 */
1831/*#define HAS_SETPWENT /**/
1832
1833/* HAS_SETSERVENT:
1834 * This symbol, if defined, indicates that the setservent() routine is
1835 * available.
1836 */
1837/*#define HAS_SETSERVENT /**/
1838
1839/* HAS_SETSPENT:
1840 * This symbol, if defined, indicates that the setspent system call is
1841 * available to initialize the scan of SysV shadow password entries.
1842 */
1843/*#define HAS_SETSPENT /**/
1844
1845/* HAS_SETVBUF:
1846 * This symbol, if defined, indicates that the setvbuf routine is
1847 * available to change buffering on an open stdio stream.
1848 * to a line-buffered mode.
1849 */
1850#define HAS_SETVBUF /**/
1851
1852/* USE_SFIO:
1853 * This symbol, if defined, indicates that sfio should
1854 * be used.
1855 */
1856/*#define USE_SFIO /**/
1857
1858/* HAS_SHM:
1859 * This symbol, if defined, indicates that the entire shm*(2) library is
1860 * supported.
1861 */
1862/*#define HAS_SHM /**/
1863
1864/* HAS_SIGACTION:
1865 * This symbol, if defined, indicates that Vr4's sigaction() routine
1866 * is available.
1867 */
1868/*#define HAS_SIGACTION /**/
1869
1870/* HAS_SIGSETJMP:
1871 * This variable indicates to the C program that the sigsetjmp()
1872 * routine is available to save the calling process's registers
1873 * and stack environment for later use by siglongjmp(), and
1874 * to optionally save the process's signal mask. See
1875 * Sigjmp_buf, Sigsetjmp, and Siglongjmp.
1876 */
1877/* Sigjmp_buf:
1878 * This is the buffer type to be used with Sigsetjmp and Siglongjmp.
1879 */
1880/* Sigsetjmp:
1881 * This macro is used in the same way as sigsetjmp(), but will invoke
1882 * traditional setjmp() if sigsetjmp isn't available.
1883 * See HAS_SIGSETJMP.
1884 */
1885/* Siglongjmp:
1886 * This macro is used in the same way as siglongjmp(), but will invoke
1887 * traditional longjmp() if siglongjmp isn't available.
1888 * See HAS_SIGSETJMP.
1889 */
1890/*#define HAS_SIGSETJMP /**/
1891#ifdef HAS_SIGSETJMP
1892#define Sigjmp_buf sigjmp_buf
1893#define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
1894#define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
1895#else
1896#define Sigjmp_buf jmp_buf
1897#define Sigsetjmp(buf,save_mask) setjmp((buf))
1898#define Siglongjmp(buf,retval) longjmp((buf),(retval))
1899#endif
1900
1901/* HAS_SOCKET:
1902 * This symbol, if defined, indicates that the BSD socket interface is
1903 * supported.
1904 */
1905/* HAS_SOCKETPAIR:
1906 * This symbol, if defined, indicates that the BSD socketpair() call is
1907 * supported.
1908 */
1909/* HAS_MSG_CTRUNC:
1910 * This symbol, if defined, indicates that the MSG_CTRUNC is supported.
1911 * Checking just with #ifdef might not be enough because this symbol
1912 * has been known to be an enum.
1913 */
1914/* HAS_MSG_DONTROUTE:
1915 * This symbol, if defined, indicates that the MSG_DONTROUTE is supported.
1916 * Checking just with #ifdef might not be enough because this symbol
1917 * has been known to be an enum.
1918 */
1919/* HAS_MSG_OOB:
1920 * This symbol, if defined, indicates that the MSG_OOB is supported.
1921 * Checking just with #ifdef might not be enough because this symbol
1922 * has been known to be an enum.
1923 */
1924/* HAS_MSG_PEEK:
1925 * This symbol, if defined, indicates that the MSG_PEEK is supported.
1926 * Checking just with #ifdef might not be enough because this symbol
1927 * has been known to be an enum.
1928 */
1929/* HAS_MSG_PROXY:
1930 * This symbol, if defined, indicates that the MSG_PROXY is supported.
1931 * Checking just with #ifdef might not be enough because this symbol
1932 * has been known to be an enum.
1933 */
1934/* HAS_SCM_RIGHTS:
1935 * This symbol, if defined, indicates that the SCM_RIGHTS is supported.
1936 * Checking just with #ifdef might not be enough because this symbol
1937 * has been known to be an enum.
1938 */
1939#define HAS_SOCKET /**/
1940/*#define HAS_SOCKETPAIR /**/
1941/*#define HAS_MSG_CTRUNC /**/
1942/*#define HAS_MSG_DONTROUTE /**/
1943/*#define HAS_MSG_OOB /**/
1944/*#define HAS_MSG_PEEK /**/
1945/*#define HAS_MSG_PROXY /**/
1946/*#define HAS_SCM_RIGHTS /**/
1947
1948/* HAS_SQRTL:
1949 * This symbol, if defined, indicates that the sqrtl routine is
1950 * available to do long double square roots.
1951 */
1952/*#define HAS_SQRTL /**/
1953
1954/* USE_STAT_BLOCKS:
1955 * This symbol is defined if this system has a stat structure declaring
1956 * st_blksize and st_blocks.
1957 */
1958#ifndef USE_STAT_BLOCKS
1959/*#define USE_STAT_BLOCKS /**/
1960#endif
1961
1962/* HAS_STRUCT_STATFS_F_FLAGS:
1963 * This symbol, if defined, indicates that the struct statfs
1964 * does have the f_flags member containing the mount flags of
1965 * the filesystem containing the file.
1966 * This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3),
1967 * not from <sys/statfs.h> (SYSV). Older BSDs (like Ultrix) do not
1968 * have statfs() and struct statfs, they have ustat() and getmnt()
1969 * with struct ustat and struct fs_data.
1970 */
1971/*#define HAS_STRUCT_STATFS_F_FLAGS /**/
1972
1973/* HAS_STRUCT_STATFS:
1974 * This symbol, if defined, indicates that the struct statfs
1975 * to do statfs() is supported.
1976 */
1977/*#define HAS_STRUCT_STATFS /**/
1978
1979/* HAS_FSTATVFS:
1980 * This symbol, if defined, indicates that the fstatvfs routine is
1981 * available to stat filesystems by file descriptors.
1982 */
1983/*#define HAS_FSTATVFS /**/
1984
1985/* USE_STDIO_PTR:
1986 * This symbol is defined if the _ptr and _cnt fields (or similar)
1987 * of the stdio FILE structure can be used to access the stdio buffer
1988 * for a file handle. If this is defined, then the FILE_ptr(fp)
1989 * and FILE_cnt(fp) macros will also be defined and should be used
1990 * to access these fields.
1991 */
1992/* FILE_ptr:
1993 * This macro is used to access the _ptr field (or equivalent) of the
1994 * FILE structure pointed to by its argument. This macro will always be
1995 * defined if USE_STDIO_PTR is defined.
1996 */
1997/* STDIO_PTR_LVALUE:
1998 * This symbol is defined if the FILE_ptr macro can be used as an
1999 * lvalue.
2000 */
2001/* FILE_cnt:
2002 * This macro is used to access the _cnt field (or equivalent) of the
2003 * FILE structure pointed to by its argument. This macro will always be
2004 * defined if USE_STDIO_PTR is defined.
2005 */
2006/* STDIO_CNT_LVALUE:
2007 * This symbol is defined if the FILE_cnt macro can be used as an
2008 * lvalue.
2009 */
2010#define USE_STDIO_PTR /**/
2011#ifdef USE_STDIO_PTR
2012#define FILE_ptr(fp) ((fp)->_ptr)
2013#define STDIO_PTR_LVALUE /**/
2014#define FILE_cnt(fp) ((fp)->_cnt)
2015#define STDIO_CNT_LVALUE /**/
2016#endif
2017
2018/* USE_STDIO_BASE:
2019 * This symbol is defined if the _base field (or similar) of the
2020 * stdio FILE structure can be used to access the stdio buffer for
2021 * a file handle. If this is defined, then the FILE_base(fp) macro
2022 * will also be defined and should be used to access this field.
2023 * Also, the FILE_bufsiz(fp) macro will be defined and should be used
2024 * to determine the number of bytes in the buffer. USE_STDIO_BASE
2025 * will never be defined unless USE_STDIO_PTR is.
2026 */
2027/* FILE_base:
2028 * This macro is used to access the _base field (or equivalent) of the
2029 * FILE structure pointed to by its argument. This macro will always be
2030 * defined if USE_STDIO_BASE is defined.
2031 */
2032/* FILE_bufsiz:
2033 * This macro is used to determine the number of bytes in the I/O
2034 * buffer pointed to by _base field (or equivalent) of the FILE
2035 * structure pointed to its argument. This macro will always be defined
2036 * if USE_STDIO_BASE is defined.
2037 */
2038#define USE_STDIO_BASE /**/
2039#ifdef USE_STDIO_BASE
2040#define FILE_base(fp) ((fp)->_base)
2041#define FILE_bufsiz(fp) ((fp)->_cnt + (fp)->_ptr - (fp)->_base)
2042#endif
2043
2044/* HAS_STRERROR:
2045 * This symbol, if defined, indicates that the strerror routine is
2046 * available to translate error numbers to strings. See the writeup
2047 * of Strerror() in this file before you try to define your own.
2048 */
2049/* HAS_SYS_ERRLIST:
2050 * This symbol, if defined, indicates that the sys_errlist array is
2051 * available to translate error numbers to strings. The extern int
2052 * sys_nerr gives the size of that table.
2053 */
2054/* Strerror:
2055 * This preprocessor symbol is defined as a macro if strerror() is
2056 * not available to translate error numbers to strings but sys_errlist[]
2057 * array is there.
2058 */
2059#define HAS_STRERROR /**/
2060#define HAS_SYS_ERRLIST /**/
2061#define Strerror(e) strerror(e)
2062
2063/* HAS_STRTOLD:
2064 * This symbol, if defined, indicates that the strtold routine is
2065 * available to convert strings to long doubles.
2066 */
2067/*#define HAS_STRTOLD /**/
2068
2069/* HAS_STRTOLL:
2070 * This symbol, if defined, indicates that the strtoll routine is
2071 * available to convert strings to long longs.
2072 */
2073/*#define HAS_STRTOLL /**/
2074
2075/* HAS_STRTOULL:
2076 * This symbol, if defined, indicates that the strtoull routine is
2077 * available to convert strings to unsigned long longs.
2078 */
2079/*#define HAS_STRTOULL /**/
2080
2081/* HAS_STRTOUQ:
2082 * This symbol, if defined, indicates that the strtouq routine is
2083 * available to convert strings to unsigned long longs (quads).
2084 */
2085/*#define HAS_STRTOUQ /**/
2086
2087/* HAS_TELLDIR_PROTO:
2088 * This symbol, if defined, indicates that the system provides
2089 * a prototype for the telldir() function. Otherwise, it is up
2090 * to the program to supply one. A good guess is
2091 * extern long telldir _((DIR*));
2092 */
2093#define HAS_TELLDIR_PROTO /**/
2094
2095/* Time_t:
2096 * This symbol holds the type returned by time(). It can be long,
2097 * or time_t on BSD sites (in which case <sys/types.h> should be
2098 * included).
2099 */
2100#define Time_t time_t /* Time type */
2101
2102/* HAS_TIMES:
2103 * This symbol, if defined, indicates that the times() routine exists.
2104 * Note that this became obsolete on some systems (SUNOS), which now
2105 * use getrusage(). It may be necessary to include <sys/times.h>.
2106 */
2107#define HAS_TIMES /**/
2108
2109/* HAS_UNION_SEMUN:
2110 * This symbol, if defined, indicates that the union semun is
2111 * defined by including <sys/sem.h>. If not, the user code
2112 * probably needs to define it as:
2113 * union semun {
2114 * int val;
2115 * struct semid_ds *buf;
2116 * unsigned short *array;
2117 * }
2118 */
2119/* USE_SEMCTL_SEMUN:
2120 * This symbol, if defined, indicates that union semun is
2121 * used for semctl IPC_STAT.
2122 */
2123/* USE_SEMCTL_SEMID_DS:
2124 * This symbol, if defined, indicates that struct semid_ds * is
2125 * used for semctl IPC_STAT.
2126 */
2127#define HAS_UNION_SEMUN /**/
2128/*#define USE_SEMCTL_SEMUN /**/
2129/*#define USE_SEMCTL_SEMID_DS /**/
2130
2131/* HAS_USTAT:
2132 * This symbol, if defined, indicates that the ustat system call is
2133 * available to query file system statistics by dev_t.
2134 */
2135/*#define HAS_USTAT /**/
2136
2137/* HAS_VFORK:
2138 * This symbol, if defined, indicates that vfork() exists.
2139 */
2140/*#define HAS_VFORK /**/
2141
2142/* Signal_t:
2143 * This symbol's value is either "void" or "int", corresponding to the
2144 * appropriate return type of a signal handler. Thus, you can declare
2145 * a signal handler using "Signal_t (*handler)()", and define the
2146 * handler using "Signal_t handler(sig)".
2147 */
2148#define Signal_t void /* Signal handler's return type */
2149
2150/* HAS_VPRINTF:
2151 * This symbol, if defined, indicates that the vprintf routine is available
2152 * to printf with a pointer to an argument list. If unavailable, you
2153 * may need to write your own, probably in terms of _doprnt().
2154 */
2155/* USE_CHAR_VSPRINTF:
2156 * This symbol is defined if this system has vsprintf() returning type
2157 * (char*). The trend seems to be to declare it as "int vsprintf()". It
2158 * is up to the package author to declare vsprintf correctly based on the
2159 * symbol.
2160 */
2161#define HAS_VPRINTF /**/
2162/*#define USE_CHAR_VSPRINTF /**/
2163
2164/* USE_DYNAMIC_LOADING:
2165 * This symbol, if defined, indicates that dynamic loading of
2166 * some sort is available.
2167 */
2168#define USE_DYNAMIC_LOADING /**/
2169
2170/* DOUBLESIZE:
2171 * This symbol contains the size of a double, so that the C preprocessor
2172 * can make decisions based on it.
2173 */
2174#define DOUBLESIZE 8 /**/
2175
2176/* EBCDIC:
2177 * This symbol, if defined, indicates that this system uses
2178 * EBCDIC encoding.
2179 */
2180/*#define EBCDIC /**/
2181
2182/* FFLUSH_NULL:
2183 * This symbol, if defined, tells that fflush(NULL) does flush
2184 * all pending stdio output.
2185 */
2186/* FFLUSH_ALL:
2187 * This symbol, if defined, tells that to flush
2188 * all pending stdio output one must loop through all
2189 * the stdio file handles stored in an array and fflush them.
2190 * Note that if fflushNULL is defined, fflushall will not
2191 * even be probed for and will be left undefined.
2192 */
2193#define FFLUSH_NULL /**/
2194/*#define FFLUSH_ALL /**/
2195
2196/* Fpos_t:
2197 * This symbol holds the type used to declare file positions in libc.
2198 * It can be fpos_t, long, uint, etc... It may be necessary to include
2199 * <sys/types.h> to get any typedef'ed information.
2200 */
2201#define Fpos_t fpos_t /* File position type */
2202
2203/* Gid_t_f:
2204 * This symbol defines the format string used for printing a Gid_t.
2205 */
2206#define Gid_t_f "ld" /**/
2207
2208/* Gid_t_sign:
2209 * This symbol holds the signedess of a Gid_t.
2210 * 1 for unsigned, -1 for signed.
2211 */
2212#define Gid_t_sign -1 /* GID sign */
2213
2214/* Gid_t_size:
2215 * This symbol holds the size of a Gid_t in bytes.
2216 */
2217#define Gid_t_size 4 /* GID size */
2218
2219/* Gid_t:
2220 * This symbol holds the return type of getgid() and the type of
2221 * argument to setrgid() and related functions. Typically,
2222 * it is the type of group ids in the kernel. It can be int, ushort,
2223 * gid_t, etc... It may be necessary to include <sys/types.h> to get
2224 * any typedef'ed information.
2225 */
2226#define Gid_t gid_t /* Type for getgid(), etc... */
2227
2228/* Groups_t:
2229 * This symbol holds the type used for the second argument to
2230 * getgroups() and setgroups(). Usually, this is the same as
2231 * gidtype (gid_t) , but sometimes it isn't.
2232 * It can be int, ushort, gid_t, etc...
2233 * It may be necessary to include <sys/types.h> to get any
2234 * typedef'ed information. This is only required if you have
2235 * getgroups() or setgroups()..
2236 */
2237#if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
2238#define Groups_t gid_t /* Type for 2nd arg to [sg]etgroups() */
2239#endif
2240
2241/* DB_Prefix_t:
2242 * This symbol contains the type of the prefix structure element
2243 * in the <db.h> header file. In older versions of DB, it was
2244 * int, while in newer ones it is u_int32_t.
2245 */
2246/* DB_Hash_t:
2247 * This symbol contains the type of the prefix structure element
2248 * in the <db.h> header file. In older versions of DB, it was
2249 * int, while in newer ones it is size_t.
2250 */
2251#define DB_Hash_t int /**/
2252#define DB_Prefix_t int /**/
2253
2254/* I_GRP:
2255 * This symbol, if defined, indicates to the C program that it should
2256 * include <grp.h>.
2257 */
2258/* GRPASSWD:
2259 * This symbol, if defined, indicates to the C program that struct group
2260 * in <grp.h> contains gr_passwd.
2261 */
2262/*#define I_GRP /**/
2263/*#define GRPASSWD /**/
2264
e1caacb4
JH
2265/* I_IEEEFP:
2266 * This symbol, if defined, indicates that <ieeefp.h> exists and
2267 * should be included.
2268 */
2269/*#define I_IEEEFP /**/
2270
2271/* I_INTTYPES:
2272 * This symbol, if defined, indicates to the C program that it should
2273 * include <inttypes.h>.
2274 */
2275/*#define I_INTTYPES /**/
2276
2277/* I_MACH_CTHREADS:
2278 * This symbol, if defined, indicates to the C program that it should
2279 * include <mach/cthreads.h>.
2280 */
2281/*#define I_MACH_CTHREADS /**/
2282
2283/* I_MNTENT:
2284 * This symbol, if defined, indicates that <mntent.h> exists and
2285 * should be included.
2286 */
2287/*#define I_MNTENT /**/
2288
2289/* I_NETDB:
2290 * This symbol, if defined, indicates that <netdb.h> exists and
2291 * should be included.
2292 */
2293/*#define I_NETDB /**/
2294
2295/* I_NETINET_TCP:
2296 * This symbol, if defined, indicates to the C program that it should
2297 * include <netinet/tcp.h>.
2298 */
2299/*#define I_NETINET_TCP /**/
2300
2301/* I_POLL:
2302 * This symbol, if defined, indicates that <poll.h> exists and
2303 * should be included.
2304 */
2305/*#define I_POLL /**/
2306
2307/* I_PTHREAD:
2308 * This symbol, if defined, indicates to the C program that it should
2309 * include <pthread.h>.
2310 */
2311/*#define I_PTHREAD /**/
2312
2313/* I_PWD:
2314 * This symbol, if defined, indicates to the C program that it should
2315 * include <pwd.h>.
2316 */
2317/* PWQUOTA:
2318 * This symbol, if defined, indicates to the C program that struct passwd
2319 * contains pw_quota.
2320 */
2321/* PWAGE:
2322 * This symbol, if defined, indicates to the C program that struct passwd
2323 * contains pw_age.
2324 */
2325/* PWCHANGE:
2326 * This symbol, if defined, indicates to the C program that struct passwd
2327 * contains pw_change.
2328 */
2329/* PWCLASS:
2330 * This symbol, if defined, indicates to the C program that struct passwd
2331 * contains pw_class.
2332 */
2333/* PWEXPIRE:
2334 * This symbol, if defined, indicates to the C program that struct passwd
2335 * contains pw_expire.
2336 */
2337/* PWCOMMENT:
2338 * This symbol, if defined, indicates to the C program that struct passwd
2339 * contains pw_comment.
2340 */
2341/* PWGECOS:
2342 * This symbol, if defined, indicates to the C program that struct passwd
2343 * contains pw_gecos.
2344 */
2345/* PWPASSWD:
2346 * This symbol, if defined, indicates to the C program that struct passwd
2347 * contains pw_passwd.
2348 */
2349/*#define I_PWD /**/
2350/*#define PWQUOTA /**/
2351/*#define PWAGE /**/
2352/*#define PWCHANGE /**/
2353/*#define PWCLASS /**/
2354/*#define PWEXPIRE /**/
2355/*#define PWCOMMENT /**/
2356/*#define PWGECOS /**/
2357/*#define PWPASSWD /**/
2358
2359/* I_SHADOW:
2360 * This symbol, if defined, indicates that <shadow.h> exists and
2361 * should be included.
2362 */
2363/*#define I_SHADOW /**/
2364
2365/* I_SOCKS:
2366 * This symbol, if defined, indicates that <socks.h> exists and
2367 * should be included.
2368 */
2369/*#define I_SOCKS /**/
2370
2371/* I_SUNMATH:
2372 * This symbol, if defined, indicates that <sunmath.h> exists and
2373 * should be included.
2374 */
2375/*#define I_SUNMATH /**/
2376
2377/* I_SYSLOG:
2378 * This symbol, if defined, indicates that <syslog.h> exists and
2379 * should be included.
2380 */
2381/*#define I_SYSLOG /**/
2382
2383/* I_SYSMODE:
2384 * This symbol, if defined, indicates that <sys/mode.h> exists and
2385 * should be included.
2386 */
2387/*#define I_SYSMODE /**/
2388
2389/* I_SYS_MOUNT:
2390 * This symbol, if defined, indicates that <sys/mount.h> exists and
2391 * should be included.
2392 */
2393/*#define I_SYS_MOUNT /**/
2394
2395/* I_SYS_STATFS:
2396 * This symbol, if defined, indicates that <sys/statfs.h> exists.
2397 */
2398/*#define I_SYS_STATFS /**/
2399
2400/* I_SYS_STATVFS:
2401 * This symbol, if defined, indicates that <sys/statvfs.h> exists and
2402 * should be included.
2403 */
2404/*#define I_SYS_STATVFS /**/
2405
2406/* I_SYSUIO:
2407 * This symbol, if defined, indicates that <sys/uio.h> exists and
2408 * should be included.
2409 */
2410/*#define I_SYSUIO /**/
2411
2412/* I_SYSUTSNAME:
2413 * This symbol, if defined, indicates that <sys/utsname.h> exists and
2414 * should be included.
2415 */
2416/*#define I_SYSUTSNAME /**/
2417
2418/* I_SYS_VFS:
2419 * This symbol, if defined, indicates that <sys/vfs.h> exists and
2420 * should be included.
2421 */
2422/*#define I_SYS_VFS /**/
2423
2424/* I_TIME:
2425 * This symbol, if defined, indicates to the C program that it should
2426 * include <time.h>.
2427 */
2428/* I_SYS_TIME:
2429 * This symbol, if defined, indicates to the C program that it should
2430 * include <sys/time.h>.
2431 */
2432/* I_SYS_TIME_KERNEL:
2433 * This symbol, if defined, indicates to the C program that it should
2434 * include <sys/time.h> with KERNEL defined.
2435 */
2436#define I_TIME /**/
2437/*#define I_SYS_TIME /**/
2438/*#define I_SYS_TIME_KERNEL /**/
2439
2440/* I_USTAT:
2441 * This symbol, if defined, indicates that <ustat.h> exists and
2442 * should be included.
2443 */
2444/*#define I_USTAT /**/
2445
2446/* PERL_INC_VERSION_LIST:
2447 * This variable specifies the list of subdirectories in over
2448 * which perl.c:incpush() and lib/lib.pm will automatically
2449 * search when adding directories to @INC, in a format suitable
2450 * for a C initialization string. See the inc_version_list entry
2451 * in Porting/Glossary for more details.
2452 */
2453#define PERL_INC_VERSION_LIST 0 /**/
2454
2455/* INSTALL_USR_BIN_PERL:
2456 * This symbol, if defined, indicates that Perl is to be installed
2457 * also as /usr/bin/perl.
2458 */
2459/*#define INSTALL_USR_BIN_PERL /**/
2460
2461/* PERL_PRIfldbl:
2462 * This symbol, if defined, contains the string used by stdio to
2463 * format long doubles (format 'f') for output.
2464 */
2465/* PERL_PRIgldbl:
2466 * This symbol, if defined, contains the string used by stdio to
2467 * format long doubles (format 'g') for output.
2468 */
2469/*#define PERL_PRIfldbl "f" /**/
2470/*#define PERL_PRIgldbl "g" /**/
2471
2472/* Off_t:
2473 * This symbol holds the type used to declare offsets in the kernel.
2474 * It can be int, long, off_t, etc... It may be necessary to include
2475 * <sys/types.h> to get any typedef'ed information.
2476 */
2477/* LSEEKSIZE:
2478 * This symbol holds the number of bytes used by the Off_t.
2479 */
2480/* Off_t_size:
2481 * This symbol holds the number of bytes used by the Off_t.
2482 */
2483#define Off_t off_t /* <offset> type */
2484#define LSEEKSIZE 4 /* <offset> size */
2485#define Off_t_size 4 /* <offset> size */
2486
2487/* Free_t:
2488 * This variable contains the return type of free(). It is usually
2489 * void, but occasionally int.
2490 */
2491/* Malloc_t:
2492 * This symbol is the type of pointer returned by malloc and realloc.
2493 */
2494#define Malloc_t void * /**/
2495#define Free_t void /**/
2496
2497/* MYMALLOC:
2498 * This symbol, if defined, indicates that we're using our own malloc.
2499 */
2500/*#define MYMALLOC /**/
2501
2502/* Mode_t:
2503 * This symbol holds the type used to declare file modes
2504 * for systems calls. It is usually mode_t, but may be
2505 * int or unsigned short. It may be necessary to include <sys/types.h>
2506 * to get any typedef'ed information.
2507 */
2508#define Mode_t mode_t /* file mode parameter for system calls */
2509
2510/* VAL_O_NONBLOCK:
2511 * This symbol is to be used during open() or fcntl(F_SETFL) to turn on
2512 * non-blocking I/O for the file descriptor. Note that there is no way
2513 * back, i.e. you cannot turn it blocking again this way. If you wish to
2514 * alternatively switch between blocking and non-blocking, use the
2515 * ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
2516 */
2517/* VAL_EAGAIN:
2518 * This symbol holds the errno error code set by read() when no data was
2519 * present on the non-blocking file descriptor.
2520 */
2521/* RD_NODATA:
2522 * This symbol holds the return code from read() when no data is present
2523 * on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
2524 * not defined, then you can't distinguish between no data and EOF by
2525 * issuing a read(). You'll have to find another way to tell for sure!
2526 */
2527/* EOF_NONBLOCK:
2528 * This symbol, if defined, indicates to the C program that a read() on
2529 * a non-blocking file descriptor will return 0 on EOF, and not the value
2530 * held in RD_NODATA (-1 usually, in that case!).
2531 */
2532#define VAL_O_NONBLOCK O_NONBLOCK
2533#define VAL_EAGAIN EAGAIN
2534#define RD_NODATA -1
2535#define EOF_NONBLOCK
2536
2537/* Netdb_host_t:
2538 * This symbol holds the type used for the 1st argument
2539 * to gethostbyaddr().
2540 */
2541/* Netdb_hlen_t:
2542 * This symbol holds the type used for the 2nd argument
2543 * to gethostbyaddr().
2544 */
2545/* Netdb_name_t:
2546 * This symbol holds the type used for the argument to
2547 * gethostbyname().
2548 */
2549/* Netdb_net_t:
2550 * This symbol holds the type used for the 1st argument to
2551 * getnetbyaddr().
2552 */
2553#define Netdb_host_t char * /**/
2554#define Netdb_hlen_t int /**/
2555#define Netdb_name_t char * /**/
2556#define Netdb_net_t long /**/
2557
2558/* IVTYPE:
2559 * This symbol defines the C type used for Perl's IV.
2560 */
2561/* UVTYPE:
2562 * This symbol defines the C type used for Perl's UV.
2563 */
2564/* I8TYPE:
2565 * This symbol defines the C type used for Perl's I8.
2566 */
2567/* U8TYPE:
2568 * This symbol defines the C type used for Perl's U8.
2569 */
2570/* I16TYPE:
2571 * This symbol defines the C type used for Perl's I16.
2572 */
2573/* U16TYPE:
2574 * This symbol defines the C type used for Perl's U16.
2575 */
2576/* I32TYPE:
2577 * This symbol defines the C type used for Perl's I32.
2578 */
2579/* U32TYPE:
2580 * This symbol defines the C type used for Perl's U32.
2581 */
2582/* I64TYPE:
2583 * This symbol defines the C type used for Perl's I64.
2584 */
2585/* U64TYPE:
2586 * This symbol defines the C type used for Perl's U64.
2587 */
2588/* NVTYPE:
2589 * This symbol defines the C type used for Perl's NV.
2590 */
2591/* IVSIZE:
2592 * This symbol contains the sizeof(IV).
2593 */
2594/* UVSIZE:
2595 * This symbol contains the sizeof(UV).
2596 */
2597/* I8SIZE:
2598 * This symbol contains the sizeof(I8).
2599 */
2600/* U8SIZE:
2601 * This symbol contains the sizeof(U8).
2602 */
2603/* I16SIZE:
2604 * This symbol contains the sizeof(I16).
2605 */
2606/* U16SIZE:
2607 * This symbol contains the sizeof(U16).
2608 */
2609/* I32SIZE:
2610 * This symbol contains the sizeof(I32).
2611 */
2612/* U32SIZE:
2613 * This symbol contains the sizeof(U32).
2614 */
2615/* I64SIZE:
2616 * This symbol contains the sizeof(I64).
2617 */
2618/* U64SIZE:
2619 * This symbol contains the sizeof(U64).
2620 */
2621/* NV_PRESERVES_UV:
2622 * This symbol, if defined, indicates that a variable of type NVTYPE
2623 * can preserve all the bit of a variable of type UVSIZE.
2624 */
2625#define IVTYPE long /**/
2626#define UVTYPE unsigned long /**/
2627#define I8TYPE char /**/
2628#define U8TYPE unsigned char /**/
2629#define I16TYPE short /**/
2630#define U16TYPE unsigned short /**/
2631#define I32TYPE long /**/
2632#define U32TYPE unsigned long /**/
2633#ifdef HAS_QUAD
2634#define I64TYPE __int64 /**/
2635#define U64TYPE unsigned __int64 /**/
2636#endif
2637#define NVTYPE double /**/
2638#define IVSIZE 4 /**/
2639#define UVSIZE 4 /**/
2640#define I8SIZE 1 /**/
2641#define U8SIZE 1 /**/
2642#define I16SIZE 2 /**/
2643#define U16SIZE 2 /**/
2644#define I32SIZE 4 /**/
2645#define U32SIZE 4 /**/
2646#ifdef HAS_QUAD
2647#define I64SIZE 8 /**/
2648#define U64SIZE 8 /**/
2649#endif
2650#define NV_PRESERVES_UV
2651
2652/* IVdf:
2653 * This symbol defines the format string used for printing a Perl IV
2654 * as a signed decimal integer.
2655 */
2656/* UVuf:
2657 * This symbol defines the format string used for printing a Perl UV
2658 * as an unsigned decimal integer.
2659 */
2660/* UVof:
2661 * This symbol defines the format string used for printing a Perl UV
2662 * as an unsigned octal integer.
2663 */
2664/* UVxf:
2665 * This symbol defines the format string used for printing a Perl UV
2666 * as an unsigned hexadecimal integer.
2667 */
2668#define IVdf "ld" /**/
2669#define UVuf "lu" /**/
2670#define UVof "lo" /**/
2671#define UVxf "lx" /**/
2672
2673/* Pid_t:
2674 * This symbol holds the type used to declare process ids in the kernel.
2675 * It can be int, uint, pid_t, etc... It may be necessary to include
2676 * <sys/types.h> to get any typedef'ed information.
2677 */
2678#define Pid_t int /* PID type */
2679
2680/* PRIVLIB:
2681 * This symbol contains the name of the private library for this package.
2682 * The library is private in the sense that it needn't be in anyone's
2683 * execution path, but it should be accessible by the world. The program
2684 * should be prepared to do ~ expansion.
2685 */
2686/* PRIVLIB_EXP:
2687 * This symbol contains the ~name expanded version of PRIVLIB, to be used
2688 * in programs that are not prepared to deal with ~ expansion at run-time.
2689 */
2690#define PRIVLIB "c:\\perl\\5.6.0\\lib" /**/
2691#define PRIVLIB_EXP (win32_get_privlib("5.6.0")) /**/
2692
2693/* PTRSIZE:
2694 * This symbol contains the size of a pointer, so that the C preprocessor
2695 * can make decisions based on it. It will be sizeof(void *) if
2696 * the compiler supports (void *); otherwise it will be
2697 * sizeof(char *).
2698 */
2699#define PTRSIZE 4 /**/
2700
2701/* Drand01:
2702 * This macro is to be used to generate uniformly distributed
2703 * random numbers over the range [0., 1.[. You may have to supply
2704 * an 'extern double drand48();' in your program since SunOS 4.1.3
2705 * doesn't provide you with anything relevant in it's headers.
2706 * See HAS_DRAND48_PROTO.
2707 */
2708/* Rand_seed_t:
2709 * This symbol defines the type of the argument of the
2710 * random seed function.
2711 */
2712/* seedDrand01:
2713 * This symbol defines the macro to be used in seeding the
2714 * random number generator (see Drand01).
2715 */
2716/* RANDBITS:
2717 * This symbol indicates how many bits are produced by the
2718 * function used to generate normalized random numbers.
2719 * Values include 15, 16, 31, and 48.
2720 */
2721#define Drand01() (rand()/(double)((unsigned)1<<RANDBITS)) /**/
2722#define Rand_seed_t unsigned /**/
2723#define seedDrand01(x) srand((Rand_seed_t)x) /**/
2724#define RANDBITS 15 /**/
2725
2726/* SELECT_MIN_BITS:
2727 * This symbol holds the minimum number of bits operated by select.
2728 * That is, if you do select(n, ...), how many bits at least will be
2729 * cleared in the masks if some activity is detected. Usually this
2730 * is either n or 32*ceil(n/32), especially many little-endians do
2731 * the latter. This is only useful if you have select(), naturally.
2732 */
2733#define SELECT_MIN_BITS 32 /**/
2734
2735/* Select_fd_set_t:
2736 * This symbol holds the type used for the 2nd, 3rd, and 4th
2737 * arguments to select. Usually, this is 'fd_set *', if HAS_FD_SET
2738 * is defined, and 'int *' otherwise. This is only useful if you
2739 * have select(), of course.
2740 */
2741#define Select_fd_set_t Perl_fd_set * /**/
2742
2743/* SIG_NAME:
2744 * This symbol contains a list of signal names in order of
2745 * signal number. This is intended
2746 * to be used as a static array initialization, like this:
2747 * char *sig_name[] = { SIG_NAME };
2748 * The signals in the list are separated with commas, and each signal
2749 * is surrounded by double quotes. There is no leading SIG in the signal
2750 * name, i.e. SIGQUIT is known as "QUIT".
2751 * Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
2752 * etc., where nn is the actual signal number (e.g. NUM37).
2753 * The signal number for sig_name[i] is stored in sig_num[i].
2754 * The last element is 0 to terminate the list with a NULL. This
2755 * corresponds to the 0 at the end of the sig_num list.
2756 */
2757/* SIG_NUM:
2758 * This symbol contains a list of signal numbers, in the same order as the
2759 * SIG_NAME list. It is suitable for static array initialization, as in:
2760 * int sig_num[] = { SIG_NUM };
2761 * The signals in the list are separated with commas, and the indices
2762 * within that list and the SIG_NAME list match, so it's easy to compute
2763 * the signal name from a number or vice versa at the price of a small
2764 * dynamic linear lookup.
2765 * Duplicates are allowed, but are moved to the end of the list.
2766 * The signal number corresponding to sig_name[i] is sig_number[i].
2767 * if (i < NSIG) then sig_number[i] == i.
2768 * The last element is 0, corresponding to the 0 at the end of
2769 * the sig_name list.
2770 */
2771#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 /**/
2772#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 /**/
2773
2774/* SITEARCH:
2775 * This symbol contains the name of the private library for this package.
2776 * The library is private in the sense that it needn't be in anyone's
2777 * execution path, but it should be accessible by the world. The program
2778 * should be prepared to do ~ expansion.
2779 * The standard distribution will put nothing in this directory.
2780 * After perl has been installed, users may install their own local
2781 * architecture-dependent modules in this directory with
2782 * MakeMaker Makefile.PL
2783 * or equivalent. See INSTALL for details.
2784 */
2785/* SITEARCH_EXP:
2786 * This symbol contains the ~name expanded version of SITEARCH, to be used
2787 * in programs that are not prepared to deal with ~ expansion at run-time.
2788 */
2789#define SITEARCH "c:\\perl\\site\\5.6.0\\lib\\MSWin32-x86" /**/
2790/*#define SITEARCH_EXP "" /**/
2791
2792/* SITELIB:
2793 * This symbol contains the name of the private library for this package.
2794 * The library is private in the sense that it needn't be in anyone's
2795 * execution path, but it should be accessible by the world. The program
2796 * should be prepared to do ~ expansion.
2797 * The standard distribution will put nothing in this directory.
2798 * After perl has been installed, users may install their own local
2799 * architecture-independent modules in this directory with
2800 * MakeMaker Makefile.PL
2801 * or equivalent. See INSTALL for details.
2802 */
2803/* SITELIB_EXP:
2804 * This symbol contains the ~name expanded version of SITELIB, to be used
2805 * in programs that are not prepared to deal with ~ expansion at run-time.
2806 */
2807/* SITELIB_STEM:
2808 * This define is SITELIB_EXP with any trailing version-specific component
2809 * removed. The elements in inc_version_list (inc_version_list.U) can
2810 * be tacked onto this variable to generate a list of directories to search.
2811 */
2812#define SITELIB "c:\\perl\\site\\5.6.0\\lib" /**/
2813#define SITELIB_EXP (win32_get_sitelib("5.6.0")) /**/
2814#define SITELIB_STEM "" /**/
2815
2816/* Size_t_size:
2817 * This symbol holds the size of a Size_t in bytes.
2818 */
2819#define Size_t_size 4 /**/
2820
2821/* Size_t:
2822 * This symbol holds the type used to declare length parameters
2823 * for string functions. It is usually size_t, but may be
2824 * unsigned long, int, etc. It may be necessary to include
2825 * <sys/types.h> to get any typedef'ed information.
2826 */
2827#define Size_t size_t /* length paramater for string functions */
2828
2829/* Sock_size_t:
2830 * This symbol holds the type used for the size argument of
2831 * various socket calls (just the base type, not the pointer-to).
2832 */
2833#define Sock_size_t int /**/
2834
2835/* SSize_t:
2836 * This symbol holds the type used by functions that return
2837 * a count of bytes or an error condition. It must be a signed type.
2838 * It is usually ssize_t, but may be long or int, etc.
2839 * It may be necessary to include <sys/types.h> or <unistd.h>
2840 * to get any typedef'ed information.
2841 * We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
2842 */
2843#define SSize_t int /* signed count of bytes */
2844
2845/* STARTPERL:
2846 * This variable contains the string to put in front of a perl
2847 * script to make sure (one hopes) that it runs with perl and not
2848 * some shell.
2849 */
2850#define STARTPERL "#!perl" /**/
2851
2852/* HAS_STDIO_STREAM_ARRAY:
2853 * This symbol, if defined, tells that there is an array
2854 * holding the stdio streams.
2855 */
2856/* STDIO_STREAM_ARRAY:
2857 * This symbol tells the name of the array holding the stdio streams.
2858 * Usual values include _iob, __iob, and __sF.
2859 */
2860/*#define HAS_STDIO_STREAM_ARRAY /**/
2861#define STDIO_STREAM_ARRAY
2862
2863/* Uid_t_f:
2864 * This symbol defines the format string used for printing a Uid_t.
2865 */
2866#define Uid_t_f "ld" /**/
2867
2868/* Uid_t_sign:
2869 * This symbol holds the signedess of a Uid_t.
2870 * 1 for unsigned, -1 for signed.
2871 */
2872#define Uid_t_sign -1 /* UID sign */
2873
2874/* Uid_t_size:
2875 * This symbol holds the size of a Uid_t in bytes.
2876 */
2877#define Uid_t_size 4 /* UID size */
2878
2879/* Uid_t:
2880 * This symbol holds the type used to declare user ids in the kernel.
2881 * It can be int, ushort, uid_t, etc... It may be necessary to include
2882 * <sys/types.h> to get any typedef'ed information.
2883 */
2884#define Uid_t uid_t /* UID type */
2885
2886/* USE_64_BIT_INT:
2887 * This symbol, if defined, indicates that 64-bit integers should
2888 * be used when available. If not defined, the native integers
2889 * will be employed (be they 32 or 64 bits). The minimal possible
2890 * 64-bitness is used, just enough to get 64-bit integers into Perl.
2891 * This may mean using for example "long longs", while your memory
2892 * may still be limited to 2 gigabytes.
2893 */
2894/* USE_64_BIT_ALL:
2895 * This symbol, if defined, indicates that 64-bit integers should
2896 * be used when available. If not defined, the native integers
2897 * will be used (be they 32 or 64 bits). The maximal possible
2898 * 64-bitness is employed: LP64 or ILP64, meaning that you will
2899 * be able to use more than 2 gigabytes of memory. This mode is
2900 * even more binary incompatible than USE_64_BIT_INT. You may not
2901 * be able to run the resulting executable in a 32-bit CPU at all or
2902 * you may need at least to reboot your OS to 64-bit mode.
2903 */
2904#ifndef USE_64_BIT_INT
2905/*#define USE_64_BIT_INT /**/
2906#endif
2907
2908#ifndef USE_64_BIT_ALL
2909/*#define USE_64_BIT_ALL /**/
2910#endif
2911
2912/* USE_LARGE_FILES:
2913 * This symbol, if defined, indicates that large file support
2914 * should be used when available.
2915 */
2916#ifndef USE_LARGE_FILES
2917/*#define USE_LARGE_FILES /**/
2918#endif
2919
2920/* USE_LONG_DOUBLE:
2921 * This symbol, if defined, indicates that long doubles should
2922 * be used when available.
2923 */
2924#ifndef USE_LONG_DOUBLE
2925/*#define USE_LONG_DOUBLE /**/
2926#endif
2927
2928/* USE_MORE_BITS:
2929 * This symbol, if defined, indicates that 64-bit interfaces and
2930 * long doubles should be used when available.
2931 */
2932#ifndef USE_MORE_BITS
2933/*#define USE_MORE_BITS /**/
2934#endif
2935
2936/* MULTIPLICITY:
2937 * This symbol, if defined, indicates that Perl should
2938 * be built to use multiplicity.
2939 */
2940#ifndef MULTIPLICITY
2941/*#define MULTIPLICITY /**/
2942#endif
2943
2944/* USE_PERLIO:
2945 * This symbol, if defined, indicates that the PerlIO abstraction should
2946 * be used throughout. If not defined, stdio should be
2947 * used in a fully backward compatible manner.
2948 */
2949#ifndef USE_PERLIO
2950/*#define USE_PERLIO /**/
2951#endif
2952
2953/* USE_SOCKS:
2954 * This symbol, if defined, indicates that Perl should
2955 * be built to use socks.
2956 */
2957#ifndef USE_SOCKS
2958/*#define USE_SOCKS /**/
2959#endif
2960
2961/* USE_ITHREADS:
2962 * This symbol, if defined, indicates that Perl should be built to
2963 * use the interpreter-based threading implementation.
2964 */
2965/* USE_5005THREADS:
2966 * This symbol, if defined, indicates that Perl should be built to
2967 * use the 5.005-based threading implementation.
2968 */
2969/* OLD_PTHREADS_API:
2970 * This symbol, if defined, indicates that Perl should
2971 * be built to use the old draft POSIX threads API.
2972 */
2973/*#define USE_5005THREADS /**/
2974/*#define USE_ITHREADS /**/
2975#if defined(USE_5005THREADS) && !defined(USE_ITHREADS)
4d1ff10f 2976#define USE_5005THREADS /* until src is revised*/
e1caacb4
JH
2977#endif
2978/*#define OLD_PTHREADS_API /**/
2979
2980/* PERL_VENDORARCH:
2981 * If defined, this symbol contains the name of a private library.
2982 * The library is private in the sense that it needn't be in anyone's
2983 * execution path, but it should be accessible by the world.
2984 * It may have a ~ on the front.
2985 * The standard distribution will put nothing in this directory.
2986 * Vendors who distribute perl may wish to place their own
2987 * architecture-dependent modules and extensions in this directory with
2988 * MakeMaker Makefile.PL INSTALLDIRS=vendor
2989 * or equivalent. See INSTALL for details.
2990 */
2991/* PERL_VENDORARCH_EXP:
2992 * This symbol contains the ~name expanded version of PERL_VENDORARCH, to be used
2993 * in programs that are not prepared to deal with ~ expansion at run-time.
2994 */
2995/*#define PERL_VENDORARCH "" /**/
2996/*#define PERL_VENDORARCH_EXP "" /**/
2997
2998/* PERL_VENDORLIB_EXP:
2999 * This symbol contains the ~name expanded version of VENDORLIB, to be used
3000 * in programs that are not prepared to deal with ~ expansion at run-time.
3001 */
3002/* PERL_VENDORLIB_STEM:
3003 * This define is PERL_VENDORLIB_EXP with any trailing version-specific component
3004 * removed. The elements in inc_version_list (inc_version_list.U) can
3005 * be tacked onto this variable to generate a list of directories to search.
3006 */
3007/*#define PERL_VENDORLIB_EXP "" /**/
3008/*#define PERL_VENDORLIB_STEM "" /**/
3009
3010/* VOIDFLAGS:
3011 * This symbol indicates how much support of the void type is given by this
3012 * compiler. What various bits mean:
3013 *
3014 * 1 = supports declaration of void
3015 * 2 = supports arrays of pointers to functions returning void
3016 * 4 = supports comparisons between pointers to void functions and
3017 * addresses of void functions
3018 * 8 = suports declaration of generic void pointers
3019 *
3020 * The package designer should define VOIDUSED to indicate the requirements
3021 * of the package. This can be done either by #defining VOIDUSED before
3022 * including config.h, or by defining defvoidused in Myinit.U. If the
3023 * latter approach is taken, only those flags will be tested. If the
3024 * level of void support necessary is not present, defines void to int.
3025 */
3026#ifndef VOIDUSED
3027#define VOIDUSED 15
3028#endif
3029#define VOIDFLAGS 15
3030#if (VOIDFLAGS & VOIDUSED) != VOIDUSED
3031#define void int /* is void to be avoided? */
3032#define M_VOID /* Xenix strikes again */
3033#endif
3034
3035/* PERL_XS_APIVERSION:
3036 * This variable contains the version of the oldest perl binary
3037 * compatible with the present perl. perl.c:incpush() and
3038 * lib/lib.pm will automatically search in c:\\perl\\site\\5.6.0\\lib\\MSWin32-x86 for older
3039 * directories across major versions back to xs_apiversion.
3040 * This is only useful if you have a perl library directory tree
3041 * structured like the default one.
3042 * See INSTALL for how this works.
3043 * The versioned site_perl directory was introduced in 5.005,
3044 * so that is the lowest possible value.
3045 * Since this can depend on compile time options (such as
3046 * bincompat) it is set by Configure. Other non-default sources
3047 * of potential incompatibility, such as multiplicity, threads,
3048 * debugging, 64bits, sfio, etc., are not checked for currently,
3049 * though in principle we could go snooping around in old
3050 * Config.pm files.
3051 */
3052/* PERL_PM_APIVERSION:
3053 * This variable contains the version of the oldest perl
3054 * compatible with the present perl. (That is, pure perl modules
3055 * written for pm_apiversion will still work for the current
3056 * version). perl.c:incpush() and lib/lib.pm will automatically
3057 * search in c:\\perl\\site\\5.6.0\\lib for older directories across major versions
3058 * back to pm_apiversion. This is only useful if you have a perl
3059 * library directory tree structured like the default one. The
3060 * versioned site_perl library was introduced in 5.005, so that's
3061 * the default setting for this variable. It's hard to imagine
3062 * it changing before Perl6. It is included here for symmetry
3063 * with xs_apiveprsion -- the searching algorithms will
3064 * (presumably) be similar.
3065 * See the INSTALL file for how this works.
3066 */
3067#define PERL_XS_APIVERSION "5.6.0"
3068#define PERL_PM_APIVERSION "5.005"
3069
3070/* HAS_LCHOWN:
3071 * This symbol, if defined, indicates that the lchown routine is
3072 * available to operate on a symbolic link (instead of following the
3073 * link).
3074 */
3075/*#define HAS_LCHOWN /**/
3076
3077/* FLEXFILENAMES:
3078 * This symbol, if defined, indicates that the system supports filenames
3079 * longer than 14 characters.
3080 */
3081#define FLEXFILENAMES /**/
3082
3083/* IVdf:
3084 * This symbol defines the format string used for printing a Perl IV
3085 * as a signed decimal integer.
3086 */
3087/* UVuf:
3088 * This symbol defines the format string used for printing a Perl UV
3089 * as an unsigned decimal integer.
3090 */
3091/* UVof:
3092 * This symbol defines the format string used for printing a Perl UV
3093 * as an unsigned octal integer.
3094 */
3095/* UVxf:
3096 * This symbol defines the format string used for printing a Perl UV
3097 * as an unsigned hexadecimal integer in lowercase abcdef.
3098 */
3099/* UVXf:
3100 * This symbol defines the format string used for printing a Perl UV
3101 * as an unsigned hexadecimal integer in uppercase ABCDEF.
3102 */
3103/* NVef:
3104 * This symbol defines the format string used for printing a Perl NV
3105 * using %e-ish floating point format.
3106 */
3107/* NVff:
3108 * This symbol defines the format string used for printing a Perl NV
3109 * using %f-ish floating point format.
3110 */
3111/* NVgf:
3112 * This symbol defines the format string used for printing a Perl NV
3113 * using %g-ish floating point format.
3114 */
3115#define IVdf "ld" /**/
3116#define UVuf "lu" /**/
3117#define UVof "lo" /**/
3118#define UVxf "lx" /**/
3119#define UVXf "lX" /**/
3120#define NVef "e" /**/
3121#define NVff "f" /**/
3122#define NVgf "g" /**/
3123
3124#endif