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