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