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