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