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