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