Re: [PATCH] [ID 20000820.012] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6735 on
[p5sagit/p5-mst-13.2.git] / vos / config_h.SH_orig
CommitLineData
fd47df60 1case "$CONFIG_SH" in
2'') CONFIG_SH=config.sh ;;
3esac
4case "$CONFIG_H" in
5'') CONFIG_H=config.h ;;
6esac
495c5fdc 7case $CONFIG in
8'')
fd47df60 9 if test -f $CONFIG_SH; then TOP=.;
10 elif test -f ../$CONFIG_SH; then TOP=..;
11 elif test -f ../../$CONFIG_SH; then TOP=../..;
12 elif test -f ../../../$CONFIG_SH; then TOP=../../..;
13 elif test -f ../../../../$CONFIG_SH; then TOP=../../../..;
495c5fdc 14 else
fd47df60 15 echo "Can't find $CONFIG_SH."; exit 1
495c5fdc 16 fi
fd47df60 17 . $TOP/$CONFIG_SH
495c5fdc 18 ;;
19esac
20case "$0" in
21*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
22esac
fd47df60 23echo "Extracting $CONFIG_H (with variable substitutions)"
24sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un-def!#undef!'
495c5fdc 25/*
26 * This file was produced by running the config_h.SH script, which
fd47df60 27 * gets its values from $CONFIG_SH, which is generally produced by
495c5fdc 28 * running Configure.
29 *
30 * Feel free to modify any of this as the need arises. Note, however,
31 * that running config_h.SH again will wipe out any changes you've made.
fd47df60 32 * For a more permanent change edit $CONFIG_SH and rerun config_h.SH.
495c5fdc 33 *
34 * \$Id: Config_h.U,v 3.0.1.5 1997/02/28 14:57:43 ram Exp $
35 */
36
37/*
38 * Package name : $package
39 * Source directory : $src
40 * Configuration time: $cf_time
41 * Configured by : $cf_by
42 * Target system : $myuname
43 */
44
45#ifndef _config_h_
46#define _config_h_
47
48/* LOC_SED:
49 * This symbol holds the complete pathname to the sed program.
50 */
51#define LOC_SED "$full_sed" /**/
52
495c5fdc 53/* HAS_ALARM:
54 * This symbol, if defined, indicates that the alarm routine is
55 * available.
56 */
57#$d_alarm HAS_ALARM /**/
58
59/* HASATTRIBUTE:
60 * This symbol indicates the C compiler can check for function attributes,
61 * such as printf formats. This is normally only supported by GNU cc.
62 */
63#$d_attribut HASATTRIBUTE /**/
64#ifndef HASATTRIBUTE
65#define __attribute__(_arg_)
66#endif
67
68/* HAS_BCMP:
69 * This symbol is defined if the bcmp() routine is available to
70 * compare blocks of memory.
71 */
72#$d_bcmp HAS_BCMP /**/
73
74/* HAS_BCOPY:
75 * This symbol is defined if the bcopy() routine is available to
76 * copy blocks of memory.
77 */
78#$d_bcopy HAS_BCOPY /**/
79
80/* HAS_BZERO:
81 * This symbol is defined if the bzero() routine is available to
82 * set a memory block to 0.
83 */
84#$d_bzero HAS_BZERO /**/
85
86/* HAS_CHOWN:
87 * This symbol, if defined, indicates that the chown routine is
88 * available.
89 */
90#$d_chown HAS_CHOWN /**/
91
92/* HAS_CHROOT:
93 * This symbol, if defined, indicates that the chroot routine is
94 * available.
95 */
96#$d_chroot HAS_CHROOT /**/
97
98/* HAS_CHSIZE:
99 * This symbol, if defined, indicates that the chsize routine is available
100 * to truncate files. You might need a -lx to get this routine.
101 */
102#$d_chsize HAS_CHSIZE /**/
103
104/* HASCONST:
105 * This symbol, if defined, indicates that this C compiler knows about
106 * the const type. There is no need to actually test for that symbol
107 * within your programs. The mere use of the "const" keyword will
108 * trigger the necessary tests.
109 */
110#$d_const HASCONST /**/
111#ifndef HASCONST
112#define const
113#endif
114
115/* HAS_CRYPT:
116 * This symbol, if defined, indicates that the crypt routine is available
117 * to encrypt passwords and the like.
118 */
119#$d_crypt HAS_CRYPT /**/
120
121/* HAS_CUSERID:
122 * This symbol, if defined, indicates that the cuserid routine is
123 * available to get character login names.
124 */
125#$d_cuserid HAS_CUSERID /**/
126
127/* HAS_DBL_DIG:
128 * This symbol, if defined, indicates that this system's <float.h>
129 * or <limits.h> defines the symbol DBL_DIG, which is the number
130 * of significant digits in a double precision number. If this
131 * symbol is not defined, a guess of 15 is usually pretty good.
132 */
133#$d_dbl_dig HAS_DBL_DIG /* */
134
135/* HAS_DIFFTIME:
136 * This symbol, if defined, indicates that the difftime routine is
137 * available.
138 */
139#$d_difftime HAS_DIFFTIME /**/
140
141/* HAS_DLERROR:
142 * This symbol, if defined, indicates that the dlerror routine is
143 * available to return a string describing the last error that
144 * occurred from a call to dlopen(), dlclose() or dlsym().
145 */
146#$d_dlerror HAS_DLERROR /**/
147
148/* SETUID_SCRIPTS_ARE_SECURE_NOW:
149 * This symbol, if defined, indicates that the bug that prevents
150 * setuid scripts from being secure is not present in this kernel.
151 */
152/* DOSUID:
153 * This symbol, if defined, indicates that the C program should
154 * check the script that it is executing for setuid/setgid bits, and
155 * attempt to emulate setuid/setgid on systems that have disabled
156 * setuid #! scripts because the kernel can't do it securely.
157 * It is up to the package designer to make sure that this emulation
158 * is done securely. Among other things, it should do an fstat on
159 * the script it just opened to make sure it really is a setuid/setgid
160 * script, it should make sure the arguments passed correspond exactly
161 * to the argument on the #! line, and it should not trust any
162 * subprocesses to which it must pass the filename rather than the
163 * file descriptor of the script to be executed.
164 */
165#$d_suidsafe SETUID_SCRIPTS_ARE_SECURE_NOW /**/
166#$d_dosuid DOSUID /**/
167
168/* HAS_DUP2:
169 * This symbol, if defined, indicates that the dup2 routine is
170 * available to duplicate file descriptors.
171 */
172#$d_dup2 HAS_DUP2 /**/
173
174/* HAS_FCHMOD:
175 * This symbol, if defined, indicates that the fchmod routine is available
176 * to change mode of opened files. If unavailable, use chmod().
177 */
178#$d_fchmod HAS_FCHMOD /**/
179
180/* HAS_FCHOWN:
181 * This symbol, if defined, indicates that the fchown routine is available
182 * to change ownership of opened files. If unavailable, use chown().
183 */
184#$d_fchown HAS_FCHOWN /**/
185
186/* HAS_FCNTL:
187 * This symbol, if defined, indicates to the C program that
188 * the fcntl() function exists.
189 */
190#$d_fcntl HAS_FCNTL /**/
191
192/* HAS_FGETPOS:
193 * This symbol, if defined, indicates that the fgetpos routine is
194 * available to get the file position indicator, similar to ftell().
195 */
196#$d_fgetpos HAS_FGETPOS /**/
197
495c5fdc 198/* HAS_FLOCK:
199 * This symbol, if defined, indicates that the flock routine is
200 * available to do file locking.
201 */
202#$d_flock HAS_FLOCK /**/
203
204/* HAS_FORK:
205 * This symbol, if defined, indicates that the fork routine is
206 * available.
207 */
208#$d_fork HAS_FORK /**/
209
210/* HAS_FSETPOS:
211 * This symbol, if defined, indicates that the fsetpos routine is
212 * available to set the file position indicator, similar to fseek().
213 */
214#$d_fsetpos HAS_FSETPOS /**/
215
216/* HAS_GETTIMEOFDAY:
217 * This symbol, if defined, indicates that the gettimeofday() system
218 * call is available for a sub-second accuracy clock. Usually, the file
219 * <sys/resource.h> needs to be included (see I_SYS_RESOURCE).
220 * The type "Timeval" should be used to refer to "struct timeval".
221 */
222#$d_gettimeod HAS_GETTIMEOFDAY /**/
223#ifdef HAS_GETTIMEOFDAY
224#define Timeval struct timeval /* Structure used by gettimeofday() */
225#endif
226
227/* HAS_GETGROUPS:
228 * This symbol, if defined, indicates that the getgroups() routine is
229 * available to get the list of process groups. If unavailable, multiple
230 * groups are probably not supported.
231 */
232#$d_getgrps HAS_GETGROUPS /**/
233
495c5fdc 234/* HAS_GETLOGIN:
235 * This symbol, if defined, indicates that the getlogin routine is
236 * available to get the login name.
237 */
238#$d_getlogin HAS_GETLOGIN /**/
239
240/* HAS_GETPGID:
241 * This symbol, if defined, indicates to the C program that
242 * the getpgid(pid) function is available to get the
243 * process group id.
244 */
245#$d_getpgid HAS_GETPGID /**/
246
247/* HAS_GETPGRP:
248 * This symbol, if defined, indicates that the getpgrp routine is
249 * available to get the current process group.
250 */
251/* USE_BSD_GETPGRP:
252 * This symbol, if defined, indicates that getpgrp needs one
253 * arguments whereas USG one needs none.
254 */
255#$d_getpgrp HAS_GETPGRP /**/
256#$d_bsdgetpgrp USE_BSD_GETPGRP /**/
257
258/* HAS_GETPGRP2:
259 * This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
260 * routine is available to get the current process group.
261 */
262#$d_getpgrp2 HAS_GETPGRP2 /**/
263
264/* HAS_GETPPID:
265 * This symbol, if defined, indicates that the getppid routine is
266 * available to get the parent process ID.
267 */
268#$d_getppid HAS_GETPPID /**/
269
270/* HAS_GETPRIORITY:
271 * This symbol, if defined, indicates that the getpriority routine is
272 * available to get a process's priority.
273 */
274#$d_getprior HAS_GETPRIORITY /**/
275
495c5fdc 276/* HAS_INET_ATON:
277 * This symbol, if defined, indicates to the C program that the
278 * inet_aton() function is available to parse IP address "dotted-quad"
279 * strings.
280 */
281#$d_inetaton HAS_INET_ATON /**/
282
283/* HAS_KILLPG:
284 * This symbol, if defined, indicates that the killpg routine is available
285 * to kill process groups. If unavailable, you probably should use kill
286 * with a negative process number.
287 */
288#$d_killpg HAS_KILLPG /**/
289
290/* HAS_LINK:
291 * This symbol, if defined, indicates that the link routine is
292 * available to create hard links.
293 */
294#$d_link HAS_LINK /**/
295
296/* HAS_LOCALECONV:
297 * This symbol, if defined, indicates that the localeconv routine is
298 * available for numeric and monetary formatting conventions.
299 */
300#$d_locconv HAS_LOCALECONV /**/
301
302/* HAS_LOCKF:
303 * This symbol, if defined, indicates that the lockf routine is
304 * available to do file locking.
305 */
306#$d_lockf HAS_LOCKF /**/
307
308/* HAS_LSTAT:
309 * This symbol, if defined, indicates that the lstat routine is
310 * available to do file stats on symbolic links.
311 */
312#$d_lstat HAS_LSTAT /**/
313
314/* HAS_MBLEN:
315 * This symbol, if defined, indicates that the mblen routine is available
316 * to find the number of bytes in a multibye character.
317 */
318#$d_mblen HAS_MBLEN /**/
319
320/* HAS_MBSTOWCS:
321 * This symbol, if defined, indicates that the mbstowcs routine is
322 * available to covert a multibyte string into a wide character string.
323 */
324#$d_mbstowcs HAS_MBSTOWCS /**/
325
326/* HAS_MBTOWC:
327 * This symbol, if defined, indicates that the mbtowc routine is available
328 * to covert a multibyte to a wide character.
329 */
330#$d_mbtowc HAS_MBTOWC /**/
331
332/* HAS_MEMCMP:
333 * This symbol, if defined, indicates that the memcmp routine is available
334 * to compare blocks of memory.
335 */
336#$d_memcmp HAS_MEMCMP /**/
337
338/* HAS_MEMCPY:
339 * This symbol, if defined, indicates that the memcpy routine is available
340 * to copy blocks of memory.
341 */
342#$d_memcpy HAS_MEMCPY /**/
343
344/* HAS_MEMMOVE:
345 * This symbol, if defined, indicates that the memmove routine is available
346 * to copy potentially overlapping blocks of memory. This should be used
347 * only when HAS_SAFE_BCOPY is not defined. If neither is there, roll your
348 * own version.
349 */
350#$d_memmove HAS_MEMMOVE /**/
351
352/* HAS_MEMSET:
353 * This symbol, if defined, indicates that the memset routine is available
354 * to set blocks of memory.
355 */
356#$d_memset HAS_MEMSET /**/
357
358/* HAS_MKDIR:
359 * This symbol, if defined, indicates that the mkdir routine is available
360 * to create directories. Otherwise you should fork off a new process to
361 * exec /bin/mkdir.
362 */
363#$d_mkdir HAS_MKDIR /**/
364
365/* HAS_MKFIFO:
366 * This symbol, if defined, indicates that the mkfifo routine is
367 * available to create FIFOs. Otherwise, mknod should be able to
368 * do it for you. However, if mkfifo is there, mknod might require
369 * super-user privileges which mkfifo will not.
370 */
371#$d_mkfifo HAS_MKFIFO /**/
372
373/* HAS_MKTIME:
374 * This symbol, if defined, indicates that the mktime routine is
375 * available.
376 */
377#$d_mktime HAS_MKTIME /**/
378
10cc9d2a 379/* HAS_MSYNC:
380 * This symbol, if defined, indicates that the msync system call is
381 * available to synchronize a mapped file.
382 */
383#$d_msync HAS_MSYNC /**/
384
385/* HAS_MUNMAP:
386 * This symbol, if defined, indicates that the munmap system call is
387 * available to unmap a region, usually mapped by mmap().
388 */
389#$d_munmap HAS_MUNMAP /**/
390
495c5fdc 391/* HAS_NICE:
392 * This symbol, if defined, indicates that the nice routine is
393 * available.
394 */
395#$d_nice HAS_NICE /**/
396
397/* HAS_PATHCONF:
398 * This symbol, if defined, indicates that pathconf() is available
399 * to determine file-system related limits and options associated
400 * with a given filename.
401 */
402/* HAS_FPATHCONF:
403 * This symbol, if defined, indicates that pathconf() is available
404 * to determine file-system related limits and options associated
405 * with a given open file descriptor.
406 */
407#$d_pathconf HAS_PATHCONF /**/
408#$d_fpathconf HAS_FPATHCONF /**/
409
410/* HAS_PAUSE:
411 * This symbol, if defined, indicates that the pause routine is
412 * available to suspend a process until a signal is received.
413 */
414#$d_pause HAS_PAUSE /**/
415
416/* HAS_PIPE:
417 * This symbol, if defined, indicates that the pipe routine is
418 * available to create an inter-process channel.
419 */
420#$d_pipe HAS_PIPE /**/
421
422/* HAS_POLL:
423 * This symbol, if defined, indicates that the poll routine is
424 * available to poll active file descriptors. You may safely
425 * include <poll.h> when this symbol is defined.
426 */
427#$d_poll HAS_POLL /**/
428
429/* HAS_READDIR:
430 * This symbol, if defined, indicates that the readdir routine is
431 * available to read directory entries. You may have to include
432 * <dirent.h>. See I_DIRENT.
433 */
434#$d_readdir HAS_READDIR /**/
435
436/* HAS_SEEKDIR:
437 * This symbol, if defined, indicates that the seekdir routine is
438 * available. You may have to include <dirent.h>. See I_DIRENT.
439 */
440#$d_seekdir HAS_SEEKDIR /**/
441
442/* HAS_TELLDIR:
443 * This symbol, if defined, indicates that the telldir routine is
444 * available. You may have to include <dirent.h>. See I_DIRENT.
445 */
446#$d_telldir HAS_TELLDIR /**/
447
448/* HAS_REWINDDIR:
449 * This symbol, if defined, indicates that the rewinddir routine is
450 * available. You may have to include <dirent.h>. See I_DIRENT.
451 */
452#$d_rewinddir HAS_REWINDDIR /**/
453
454/* HAS_READLINK:
455 * This symbol, if defined, indicates that the readlink routine is
456 * available to read the value of a symbolic link.
457 */
458#$d_readlink HAS_READLINK /**/
459
460/* HAS_RENAME:
461 * This symbol, if defined, indicates that the rename routine is available
462 * to rename files. Otherwise you should do the unlink(), link(), unlink()
463 * trick.
464 */
465#$d_rename HAS_RENAME /**/
466
467/* HAS_RMDIR:
468 * This symbol, if defined, indicates that the rmdir routine is
469 * available to remove directories. Otherwise you should fork off a
470 * new process to exec /bin/rmdir.
471 */
472#$d_rmdir HAS_RMDIR /**/
473
474/* HAS_SELECT:
475 * This symbol, if defined, indicates that the select routine is
476 * available to select active file descriptors. If the timeout field
477 * is used, <sys/time.h> may need to be included.
478 */
479#$d_select HAS_SELECT /**/
480
495c5fdc 481/* HAS_SETEGID:
482 * This symbol, if defined, indicates that the setegid routine is available
483 * to change the effective gid of the current program.
484 */
485#$d_setegid HAS_SETEGID /**/
486
487/* HAS_SETEUID:
488 * This symbol, if defined, indicates that the seteuid routine is available
489 * to change the effective uid of the current program.
490 */
491#$d_seteuid HAS_SETEUID /**/
492
493/* HAS_SETLINEBUF:
494 * This symbol, if defined, indicates that the setlinebuf routine is
495 * available to change stderr or stdout from block-buffered or unbuffered
496 * to a line-buffered mode.
497 */
498#$d_setlinebuf HAS_SETLINEBUF /**/
499
500/* HAS_SETLOCALE:
501 * This symbol, if defined, indicates that the setlocale routine is
502 * available to handle locale-specific ctype implementations.
503 */
504#$d_setlocale HAS_SETLOCALE /**/
505
506/* HAS_SETPGID:
507 * This symbol, if defined, indicates that the setpgid(pid, gpid)
508 * routine is available to set process group ID.
509 */
510#$d_setpgid HAS_SETPGID /**/
511
512/* HAS_SETPGRP:
513 * This symbol, if defined, indicates that the setpgrp routine is
514 * available to set the current process group.
515 */
516/* USE_BSD_SETPGRP:
517 * This symbol, if defined, indicates that setpgrp needs two
518 * arguments whereas USG one needs none. See also HAS_SETPGID
519 * for a POSIX interface.
520 */
521#$d_setpgrp HAS_SETPGRP /**/
522#$d_bsdsetpgrp USE_BSD_SETPGRP /**/
523
524/* HAS_SETPGRP2:
525 * This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
526 * routine is available to set the current process group.
527 */
528#$d_setpgrp2 HAS_SETPGRP2 /**/
529
530/* HAS_SETPRIORITY:
531 * This symbol, if defined, indicates that the setpriority routine is
532 * available to set a process's priority.
533 */
534#$d_setprior HAS_SETPRIORITY /**/
535
536/* HAS_SETREGID:
537 * This symbol, if defined, indicates that the setregid routine is
538 * available to change the real and effective gid of the current
539 * process.
540 */
541/* HAS_SETRESGID:
542 * This symbol, if defined, indicates that the setresgid routine is
543 * available to change the real, effective and saved gid of the current
544 * process.
545 */
546#$d_setregid HAS_SETREGID /**/
547#$d_setresgid HAS_SETRESGID /**/
548
549/* HAS_SETREUID:
550 * This symbol, if defined, indicates that the setreuid routine is
551 * available to change the real and effective uid of the current
552 * process.
553 */
554/* HAS_SETRESUID:
555 * This symbol, if defined, indicates that the setresuid routine is
556 * available to change the real, effective and saved uid of the current
557 * process.
558 */
559#$d_setreuid HAS_SETREUID /**/
560#$d_setresuid HAS_SETRESUID /**/
561
562/* HAS_SETRGID:
563 * This symbol, if defined, indicates that the setrgid routine is available
564 * to change the real gid of the current program.
565 */
566#$d_setrgid HAS_SETRGID /**/
567
568/* HAS_SETRUID:
569 * This symbol, if defined, indicates that the setruid routine is available
570 * to change the real uid of the current program.
571 */
572#$d_setruid HAS_SETRUID /**/
573
574/* HAS_SETSID:
575 * This symbol, if defined, indicates that the setsid routine is
576 * available to set the process group ID.
577 */
578#$d_setsid HAS_SETSID /**/
579
495c5fdc 580/* Shmat_t:
581 * This symbol holds the return type of the shmat() system call.
582 * Usually set to 'void *' or 'char *'.
583 */
584/* HAS_SHMAT_PROTOTYPE:
585 * This symbol, if defined, indicates that the sys/shm.h includes
586 * a prototype for shmat(). Otherwise, it is up to the program to
c287c78d 587 * guess one. Shmat_t shmat _((int, Shmat_t, int)) is a good guess,
495c5fdc 588 * but not always right so it should be emitted by the program only
589 * when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
590 */
591#define Shmat_t $shmattype /**/
592#$d_shmatprototype HAS_SHMAT_PROTOTYPE /**/
593
495c5fdc 594/* HAS_STRCHR:
595 * This symbol is defined to indicate that the strchr()/strrchr()
596 * functions are available for string searching. If not, try the
597 * index()/rindex() pair.
598 */
599/* HAS_INDEX:
600 * This symbol is defined to indicate that the index()/rindex()
601 * functions are available for string searching.
602 */
603#$d_strchr HAS_STRCHR /**/
604#$d_index HAS_INDEX /**/
605
606/* HAS_STRCOLL:
607 * This symbol, if defined, indicates that the strcoll routine is
608 * available to compare strings using collating information.
609 */
610#$d_strcoll HAS_STRCOLL /**/
611
612/* USE_STRUCT_COPY:
613 * This symbol, if defined, indicates that this C compiler knows how
614 * to copy structures. If undefined, you'll need to use a block copy
615 * routine of some sort instead.
616 */
617#$d_strctcpy USE_STRUCT_COPY /**/
618
495c5fdc 619/* HAS_STRTOD:
620 * This symbol, if defined, indicates that the strtod routine is
621 * available to provide better numeric string conversion than atof().
622 */
623#$d_strtod HAS_STRTOD /**/
624
625/* HAS_STRTOL:
626 * This symbol, if defined, indicates that the strtol routine is available
627 * to provide better numeric string conversion than atoi() and friends.
628 */
629#$d_strtol HAS_STRTOL /**/
630
631/* HAS_STRTOUL:
632 * This symbol, if defined, indicates that the strtoul routine is
633 * available to provide conversion of strings to unsigned long.
634 */
635#$d_strtoul HAS_STRTOUL /**/
636
637/* HAS_STRXFRM:
638 * This symbol, if defined, indicates that the strxfrm() routine is
639 * available to transform strings.
640 */
641#$d_strxfrm HAS_STRXFRM /**/
642
643/* HAS_SYMLINK:
644 * This symbol, if defined, indicates that the symlink routine is available
645 * to create symbolic links.
646 */
647#$d_symlink HAS_SYMLINK /**/
648
649/* HAS_SYSCALL:
650 * This symbol, if defined, indicates that the syscall routine is
651 * available to call arbitrary system calls. If undefined, that's tough.
652 */
653#$d_syscall HAS_SYSCALL /**/
654
655/* HAS_SYSCONF:
656 * This symbol, if defined, indicates that sysconf() is available
657 * to determine system related limits and options.
658 */
659#$d_sysconf HAS_SYSCONF /**/
660
661/* HAS_SYSTEM:
662 * This symbol, if defined, indicates that the system routine is
663 * available to issue a shell command.
664 */
665#$d_system HAS_SYSTEM /**/
666
667/* HAS_TCGETPGRP:
668 * This symbol, if defined, indicates that the tcgetpgrp routine is
669 * available to get foreground process group ID.
670 */
671#$d_tcgetpgrp HAS_TCGETPGRP /**/
672
673/* HAS_TCSETPGRP:
674 * This symbol, if defined, indicates that the tcsetpgrp routine is
675 * available to set foreground process group ID.
676 */
677#$d_tcsetpgrp HAS_TCSETPGRP /**/
678
679/* HAS_TRUNCATE:
680 * This symbol, if defined, indicates that the truncate routine is
681 * available to truncate files.
682 */
683#$d_truncate HAS_TRUNCATE /**/
684
685/* HAS_TZNAME:
686 * This symbol, if defined, indicates that the tzname[] array is
687 * available to access timezone names.
688 */
689#$d_tzname HAS_TZNAME /**/
690
691/* HAS_UMASK:
692 * This symbol, if defined, indicates that the umask routine is
693 * available to set and get the value of the file creation mask.
694 */
695#$d_umask HAS_UMASK /**/
696
495c5fdc 697/* HASVOLATILE:
698 * This symbol, if defined, indicates that this C compiler knows about
699 * the volatile declaration.
700 */
701#$d_volatile HASVOLATILE /**/
702#ifndef HASVOLATILE
703#define volatile
704#endif
705
706/* HAS_WAIT4:
707 * This symbol, if defined, indicates that wait4() exists.
708 */
709#$d_wait4 HAS_WAIT4 /**/
710
711/* HAS_WAITPID:
712 * This symbol, if defined, indicates that the waitpid routine is
713 * available to wait for child process.
714 */
715#$d_waitpid HAS_WAITPID /**/
716
717/* HAS_WCSTOMBS:
718 * This symbol, if defined, indicates that the wcstombs routine is
719 * available to convert wide character strings to multibyte strings.
720 */
721#$d_wcstombs HAS_WCSTOMBS /**/
722
723/* HAS_WCTOMB:
724 * This symbol, if defined, indicates that the wctomb routine is available
725 * to covert a wide character to a multibyte.
726 */
727#$d_wctomb HAS_WCTOMB /**/
728
495c5fdc 729/* I_ARPA_INET:
c287c78d 730 * This symbol, if defined, indicates to the C program that it should
731 * include <arpa/inet.h> to get inet_addr and friends declarations.
495c5fdc 732 */
c287c78d 733#$i_arpainet I_ARPA_INET /**/
495c5fdc 734
735/* I_DBM:
736 * This symbol, if defined, indicates that <dbm.h> exists and should
737 * be included.
738 */
739/* I_RPCSVC_DBM:
740 * This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
741 * should be included.
742 */
743#$i_dbm I_DBM /**/
744#$i_rpcsvcdbm I_RPCSVC_DBM /**/
745
746/* I_DIRENT:
747 * This symbol, if defined, indicates to the C program that it should
748 * include <dirent.h>. Using this symbol also triggers the definition
749 * of the Direntry_t define which ends up being 'struct dirent' or
750 * 'struct direct' depending on the availability of <dirent.h>.
751 */
752/* DIRNAMLEN:
753 * This symbol, if defined, indicates to the C program that the length
754 * of directory entry names is provided by a d_namlen field. Otherwise
755 * you need to do strlen() on the d_name field.
756 */
757/* Direntry_t:
758 * This symbol is set to 'struct direct' or 'struct dirent' depending on
759 * whether dirent is available or not. You should use this pseudo type to
760 * portably declare your directory entries.
761 */
762#$i_dirent I_DIRENT /**/
763#$d_dirnamlen DIRNAMLEN /**/
764#define Direntry_t $direntrytype
765
766/* I_DLFCN:
767 * This symbol, if defined, indicates that <dlfcn.h> exists and should
768 * be included.
769 */
770#$i_dlfcn I_DLFCN /**/
771
772/* I_FCNTL:
773 * This manifest constant tells the C program to include <fcntl.h>.
774 */
775#$i_fcntl I_FCNTL /**/
776
777/* I_FLOAT:
778 * This symbol, if defined, indicates to the C program that it should
779 * include <float.h> to get definition of symbols like DBL_MAX or
780 * DBL_MIN, i.e. machine dependent floating point values.
781 */
782#$i_float I_FLOAT /**/
783
495c5fdc 784/* I_LIMITS:
785 * This symbol, if defined, indicates to the C program that it should
786 * include <limits.h> to get definition of symbols like WORD_BIT or
787 * LONG_MAX, i.e. machine dependant limitations.
788 */
789#$i_limits I_LIMITS /**/
790
791/* I_LOCALE:
792 * This symbol, if defined, indicates to the C program that it should
793 * include <locale.h>.
794 */
795#$i_locale I_LOCALE /**/
796
797/* I_MATH:
798 * This symbol, if defined, indicates to the C program that it should
799 * include <math.h>.
800 */
801#$i_math I_MATH /**/
802
803/* I_MEMORY:
804 * This symbol, if defined, indicates to the C program that it should
805 * include <memory.h>.
806 */
807#$i_memory I_MEMORY /**/
808
809/* I_NDBM:
810 * This symbol, if defined, indicates that <ndbm.h> exists and should
811 * be included.
812 */
813#$i_ndbm I_NDBM /**/
814
815/* I_NET_ERRNO:
816 * This symbol, if defined, indicates that <net/errno.h> exists and
817 * should be included.
818 */
819#$i_neterrno I_NET_ERRNO /**/
820
821/* I_NETINET_IN:
822 * This symbol, if defined, indicates to the C program that it should
823 * include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
824 */
825#$i_niin I_NETINET_IN /**/
826
827/* I_SFIO:
828 * This symbol, if defined, indicates to the C program that it should
829 * include <sfio.h>.
830 */
831#$i_sfio I_SFIO /**/
832
833/* I_STDDEF:
834 * This symbol, if defined, indicates that <stddef.h> exists and should
835 * be included.
836 */
837#$i_stddef I_STDDEF /**/
838
839/* I_STDLIB:
840 * This symbol, if defined, indicates that <stdlib.h> exists and should
841 * be included.
842 */
843#$i_stdlib I_STDLIB /**/
844
845/* I_STRING:
846 * This symbol, if defined, indicates to the C program that it should
847 * include <string.h> (USG systems) instead of <strings.h> (BSD systems).
848 */
849#$i_string I_STRING /**/
850
851/* I_SYS_DIR:
852 * This symbol, if defined, indicates to the C program that it should
853 * include <sys/dir.h>.
854 */
855#$i_sysdir I_SYS_DIR /**/
856
857/* I_SYS_FILE:
858 * This symbol, if defined, indicates to the C program that it should
859 * include <sys/file.h> to get definition of R_OK and friends.
860 */
861#$i_sysfile I_SYS_FILE /**/
862
863/* I_SYS_IOCTL:
864 * This symbol, if defined, indicates that <sys/ioctl.h> exists and should
865 * be included. Otherwise, include <sgtty.h> or <termio.h>.
866 */
867#$i_sysioctl I_SYS_IOCTL /**/
868
869/* I_SYS_NDIR:
870 * This symbol, if defined, indicates to the C program that it should
871 * include <sys/ndir.h>.
872 */
873#$i_sysndir I_SYS_NDIR /**/
874
875/* I_SYS_PARAM:
876 * This symbol, if defined, indicates to the C program that it should
877 * include <sys/param.h>.
878 */
879#$i_sysparam I_SYS_PARAM /**/
880
881/* I_SYS_RESOURCE:
882 * This symbol, if defined, indicates to the C program that it should
883 * include <sys/resource.h>.
884 */
885#$i_sysresrc I_SYS_RESOURCE /**/
886
887/* I_SYS_SELECT:
888 * This symbol, if defined, indicates to the C program that it should
889 * include <sys/select.h> in order to get definition of struct timeval.
890 */
891#$i_sysselct I_SYS_SELECT /**/
892
893/* I_SYS_STAT:
894 * This symbol, if defined, indicates to the C program that it should
895 * include <sys/stat.h>.
896 */
897#$i_sysstat I_SYS_STAT /**/
898
899/* I_SYS_TIMES:
900 * This symbol, if defined, indicates to the C program that it should
901 * include <sys/times.h>.
902 */
903#$i_systimes I_SYS_TIMES /**/
904
905/* I_SYS_TYPES:
906 * This symbol, if defined, indicates to the C program that it should
907 * include <sys/types.h>.
908 */
909#$i_systypes I_SYS_TYPES /**/
910
911/* I_SYS_UN:
912 * This symbol, if defined, indicates to the C program that it should
913 * include <sys/un.h> to get UNIX domain socket definitions.
914 */
915#$i_sysun I_SYS_UN /**/
916
917/* I_SYS_WAIT:
918 * This symbol, if defined, indicates to the C program that it should
919 * include <sys/wait.h>.
920 */
921#$i_syswait I_SYS_WAIT /**/
922
923/* I_TERMIO:
924 * This symbol, if defined, indicates that the program should include
925 * <termio.h> rather than <sgtty.h>. There are also differences in
926 * the ioctl() calls that depend on the value of this symbol.
927 */
928/* I_TERMIOS:
929 * This symbol, if defined, indicates that the program should include
930 * the POSIX termios.h rather than sgtty.h or termio.h.
931 * There are also differences in the ioctl() calls that depend on the
932 * value of this symbol.
933 */
934/* I_SGTTY:
935 * This symbol, if defined, indicates that the program should include
936 * <sgtty.h> rather than <termio.h>. There are also differences in
937 * the ioctl() calls that depend on the value of this symbol.
938 */
939#$i_termio I_TERMIO /**/
940#$i_termios I_TERMIOS /**/
941#$i_sgtty I_SGTTY /**/
942
943/* I_UNISTD:
944 * This symbol, if defined, indicates to the C program that it should
945 * include <unistd.h>.
946 */
947#$i_unistd I_UNISTD /**/
948
949/* I_UTIME:
950 * This symbol, if defined, indicates to the C program that it should
951 * include <utime.h>.
952 */
953#$i_utime I_UTIME /**/
954
955/* I_VALUES:
956 * This symbol, if defined, indicates to the C program that it should
957 * include <values.h> to get definition of symbols like MINFLOAT or
958 * MAXLONG, i.e. machine dependant limitations. Probably, you
959 * should use <limits.h> instead, if it is available.
960 */
961#$i_values I_VALUES /**/
962
963/* I_STDARG:
964 * This symbol, if defined, indicates that <stdarg.h> exists and should
965 * be included.
966 */
967/* I_VARARGS:
968 * This symbol, if defined, indicates to the C program that it should
969 * include <varargs.h>.
970 */
971#$i_stdarg I_STDARG /**/
972#$i_varargs I_VARARGS /**/
973
974/* I_VFORK:
975 * This symbol, if defined, indicates to the C program that it should
976 * include vfork.h.
977 */
978#$i_vfork I_VFORK /**/
979
980/* CAN_PROTOTYPE:
981 * If defined, this macro indicates that the C compiler can handle
982 * function prototypes.
983 */
984/* _:
985 * This macro is used to declare function parameters for folks who want
986 * to make declarations with prototypes using a different style than
987 * the above macros. Use double parentheses. For example:
988 *
989 * int main _((int argc, char *argv[]));
990 */
991#$prototype CAN_PROTOTYPE /**/
992#ifdef CAN_PROTOTYPE
993#define _(args) args
994#else
995#define _(args) ()
996#endif
997
998/* SH_PATH:
999 * This symbol contains the full pathname to the shell used on this
1000 * on this system to execute Bourne shell scripts. Usually, this will be
1001 * /bin/sh, though it's possible that some systems will have /bin/ksh,
1002 * /bin/pdksh, /bin/ash, /bin/bash, or even something such as
1003 * D:/bin/sh.exe.
1004 */
1005#define SH_PATH "$sh" /**/
1006
1007/* STDCHAR:
1008 * This symbol is defined to be the type of char used in stdio.h.
1009 * It has the values "unsigned char" or "char".
1010 */
1011#define STDCHAR $stdchar /**/
1012
10cc9d2a 1013/* CROSSCOMPILE:
1014 * This symbol, if defined, signifies that we our
1015 * build process is a cross-compilation.
1016 */
1017#$crosscompile CROSSCOMPILE /**/
1018
1019/* INTSIZE:
1020 * This symbol contains the value of sizeof(int) so that the C
1021 * preprocessor can make decisions based on it.
1022 */
1023/* LONGSIZE:
1024 * This symbol contains the value of sizeof(long) so that the C
1025 * preprocessor can make decisions based on it.
1026 */
1027/* SHORTSIZE:
1028 * This symbol contains the value of sizeof(short) so that the C
1029 * preprocessor can make decisions based on it.
1030 */
1031#define INTSIZE $intsize /**/
1032#define LONGSIZE $longsize /**/
1033#define SHORTSIZE $shortsize /**/
1034
1035/* MULTIARCH:
1036 * This symbol, if defined, signifies that the build
1037 * process will produce some binary files that are going to be
1038 * used in a cross-platform environment. This is the case for
1039 * example with the NeXT "fat" binaries that contain executables
1040 * for several CPUs.
1041 */
1042#$multiarch MULTIARCH /**/
1043
c287c78d 1044/* HAS_QUAD:
1045 * This symbol, if defined, tells that there's a 64-bit integer type,
1046 * Quad_t, and its unsigned counterpar, Uquad_t. QUADKIND will be one
1047 * of QUAD_IS_INT, QUAD_IS_LONG, QUAD_IS_LONG_LONG, or QUAD_IS_INT64_T.
1048 */
1049#$d_quad HAS_QUAD /**/
1050#ifdef HAS_QUAD
1051# define Quad_t $quadtype /**/
1052# define Uquad_t $uquadtype /**/
1053# define QUADKIND $quadkind /**/
1054# define QUAD_IS_INT 1
1055# define QUAD_IS_LONG 2
1056# define QUAD_IS_LONG_LONG 3
1057# define QUAD_IS_INT64_T 4
1058#endif
1059
1060/* HAS_ACCESSX:
1061 * This symbol, if defined, indicates that the accessx routine is
1062 * available to do extended access checks.
1063 */
1064#$d_accessx HAS_ACCESSX /**/
1065
1066/* HAS_EACCESS:
1067 * This symbol, if defined, indicates that the eaccess routine is
1068 * available to do extended access checks.
1069 */
1070#$d_eaccess HAS_EACCESS /**/
1071
1072/* I_SYS_ACCESS:
1073 * This symbol, if defined, indicates to the C program that it should
1074 * include <sys/access.h>.
1075 */
1076#$i_sysaccess I_SYS_ACCESS /**/
1077
1078/* I_SYS_SECURITY:
1079 * This symbol, if defined, indicates to the C program that it should
1080 * include <sys/security.h>.
1081 */
1082#$i_syssecrt I_SYS_SECURITY /**/
1083
10cc9d2a 1084/* OSNAME:
1085 * This symbol contains the name of the operating system, as determined
1086 * by Configure. You shouldn't rely on it too much; the specific
1087 * feature tests from Configure are generally more reliable.
1761cee5 1088 */
10cc9d2a 1089#define OSNAME "$osname" /**/
c287c78d 1090
495c5fdc 1091/* MEM_ALIGNBYTES:
c287c78d 1092 * This symbol contains the number of bytes required to align a
10cc9d2a 1093 * double, or a long double when applicable. Usual values are 2,
1094 * 4 and 8. The default is eight, for safety.
c287c78d 1095 */
1096#if defined(CROSSCOMPILE) || defined(MULTIARCH)
1097# define MEM_ALIGNBYTES 8
1098#else
1099#define MEM_ALIGNBYTES $alignbytes
1100#endif
1101
10cc9d2a 1102/* ARCHLIB:
1103 * This variable, if defined, holds the name of the directory in
1104 * which the user wants to put architecture-dependent public
1105 * library files for $package. It is most often a local directory
1106 * such as /usr/local/lib. Programs using this variable must be
1107 * prepared to deal with filename expansion. If ARCHLIB is the
1108 * same as PRIVLIB, it is not defined, since presumably the
1109 * program already searches PRIVLIB.
1110 */
1111/* ARCHLIB_EXP:
1112 * This symbol contains the ~name expanded version of ARCHLIB, to be used
1113 * in programs that are not prepared to deal with ~ expansion at run-time.
1114 */
1115#$d_archlib ARCHLIB "$archlib" /**/
1116#$d_archlib ARCHLIB_EXP "$archlibexp" /**/
1117
1118/* ARCHNAME:
1119 * This symbol holds a string representing the architecture name.
1120 * It may be used to construct an architecture-dependant pathname
1121 * where library files may be held under a private library, for
1122 * instance.
1123 */
1124#define ARCHNAME "$archname" /**/
1125
1126/* HAS_ATOLF:
1127 * This symbol, if defined, indicates that the atolf routine is
1128 * available to convert strings into long doubles.
1129 */
1130#$d_atolf HAS_ATOLF /**/
1131
1132/* HAS_ATOLL:
1133 * This symbol, if defined, indicates that the atoll routine is
1134 * available to convert strings into long longs.
1135 */
1136#$d_atoll HAS_ATOLL /**/
1137
1138/* BIN:
1139 * This symbol holds the path of the bin directory where the package will
1140 * be installed. Program must be prepared to deal with ~name substitution.
1141 */
1142/* BIN_EXP:
1143 * This symbol is the filename expanded version of the BIN symbol, for
1144 * programs that do not want to deal with that at run-time.
1145 */
1146#define BIN "$bin" /**/
1147#define BIN_EXP "$binexp" /**/
1148
1149/* PERL_BINCOMPAT_5005:
f78bfc9c 1150 * This symbol, if defined, indicates that this version of Perl should be
10cc9d2a 1151 * binary-compatible with Perl 5.005. This is impossible for builds
1152 * that use features like threads and multiplicity it is always $undef
1153 * for those versions.
1154 */
1155#$d_bincompat5005 PERL_BINCOMPAT_5005 /**/
1156
495c5fdc 1157/* BYTEORDER:
1158 * This symbol holds the hexadecimal constant defined in byteorder,
1159 * i.e. 0x1234 or 0x4321, etc...
c287c78d 1160 * If the compiler supports cross-compiling or multiple-architecture
1161 * binaries (eg. on NeXT systems), use compiler-defined macros to
1162 * determine the byte order.
495c5fdc 1163 * On NeXT 3.2 (and greater), you can build "Fat" Multiple Architecture
1164 * Binaries (MAB) on either big endian or little endian machines.
1165 * The endian-ness is available at compile-time. This only matters
1166 * for perl, where the config.h can be generated and installed on
1167 * one system, and used by a different architecture to build an
1168 * extension. Older versions of NeXT that might not have
1169 * defined either *_ENDIAN__ were all on Motorola 680x0 series,
1170 * so the default case (for NeXT) is big endian to catch them.
1171 * This might matter for NeXT 3.0.
1172 */
c287c78d 1173#if defined(CROSSCOMPILE) || defined(MULTIARCH)
1174# ifdef __LITTLE_ENDIAN__
1175# if LONGSIZE == 4
1176# define BYTEORDER 0x1234
1177# else
1178# if LONGSIZE == 8
1179# define BYTEORDER 0x12345678
1180# endif
1181# endif
1182# else
1183# ifdef __BIG_ENDIAN__
1184# if LONGSIZE == 4
1185# define BYTEORDER 0x4321
1186# else
1187# if LONGSIZE == 8
1188# define BYTEORDER 0x87654321
1189# endif
1190# endif
1191# endif
1192# endif
1193# if !defined(BYTEORDER) && (defined(NeXT) || defined(__NeXT__))
1194# define BYTEORDER 0x4321
1195# endif
1196#else
495c5fdc 1197#define BYTEORDER 0x$byteorder /* large digits for MSB */
495c5fdc 1198#endif /* NeXT */
1199
10cc9d2a 1200/* CAT2:
1201 * This macro catenates 2 tokens together.
1202 */
1203/* STRINGIFY:
1204 * This macro surrounds its token with double quotes.
1205 */
1206#if $cpp_stuff == 1
fd47df60 1207#define CAT2(a,b) a/**/b
1208#define STRINGIFY(a) "a"
10cc9d2a 1209 /* If you can get stringification with catify, tell me how! */
1210#endif
1211#if $cpp_stuff == 42
fd47df60 1212#define PeRl_CaTiFy(a, b) a ## b
1213#define PeRl_StGiFy(a) #a
526fdc24 1214/* the additional level of indirection enables these macros to be
1215 * used as arguments to other macros. See K&R 2nd ed., page 231. */
fd47df60 1216#define CAT2(a,b) PeRl_CaTiFy(a,b)
1217#define StGiFy(a) PeRl_StGiFy(a)
1218#define STRINGIFY(a) PeRl_StGiFy(a)
10cc9d2a 1219#endif
1220#if $cpp_stuff != 1 && $cpp_stuff != 42
a3540c92 1221# include "Bletch: How does this C preprocessor catenate tokens?"
10cc9d2a 1222#endif
1223
1224/* CPPSTDIN:
1225 * This symbol contains the first part of the string which will invoke
1226 * the C preprocessor on the standard input and produce to standard
1227 * output. Typical value of "cc -E" or "/lib/cpp", but it can also
1228 * call a wrapper. See CPPRUN.
1229 */
1230/* CPPMINUS:
1231 * This symbol contains the second part of the string which will invoke
1232 * the C preprocessor on the standard input and produce to standard
1233 * output. This symbol will have the value "-" if CPPSTDIN needs a minus
1234 * to specify standard input, otherwise the value is "".
1235 */
1236/* CPPRUN:
1237 * This symbol contains the string which will invoke a C preprocessor on
1238 * the standard input and produce to standard output. It needs to end
1239 * with CPPLAST, after all other preprocessor flags have been specified.
1240 * The main difference with CPPSTDIN is that this program will never be a
1241 * pointer to a shell wrapper, i.e. it will be empty if no preprocessor is
1242 * available directly to the user. Note that it may well be different from
1243 * the preprocessor used to compile the C program.
1244 */
1245/* CPPLAST:
1246 * This symbol is intended to be used along with CPPRUN in the same manner
1247 * symbol CPPMINUS is used with CPPSTDIN. It contains either "-" or "".
1248 */
1249#define CPPSTDIN "$cppstdin"
1250#define CPPMINUS "$cppminus"
1251#define CPPRUN "$cpprun"
1252#define CPPLAST "$cpplast"
1253
1254/* HAS_ACCESS:
1255 * This manifest constant lets the C program know that the access()
1256 * system call is available to check for accessibility using real UID/GID.
1257 * (always present on UNIX.)
1258 */
1259#$d_access HAS_ACCESS /**/
1260
c287c78d 1261/* CASTI32:
1262 * This symbol is defined if the C compiler can cast negative
1263 * or large floating point numbers to 32-bit ints.
495c5fdc 1264 */
c287c78d 1265#$d_casti32 CASTI32 /**/
495c5fdc 1266
c287c78d 1267/* CASTNEGFLOAT:
1268 * This symbol is defined if the C compiler can cast negative
1269 * numbers to unsigned longs, ints and shorts.
495c5fdc 1270 */
c287c78d 1271/* CASTFLAGS:
1272 * This symbol contains flags that say what difficulties the compiler
1273 * has casting odd floating values to unsigned long:
1274 * 0 = ok
1275 * 1 = couldn't cast < 0
1276 * 2 = couldn't cast >= 0x80000000
1277 * 4 = couldn't cast in argument expression list
495c5fdc 1278 */
c287c78d 1279#$d_castneg CASTNEGFLOAT /**/
1280#define CASTFLAGS $castflags /**/
495c5fdc 1281
c287c78d 1282/* VOID_CLOSEDIR:
1283 * This symbol, if defined, indicates that the closedir() routine
1284 * does not return a value.
495c5fdc 1285 */
c287c78d 1286#$d_void_closedir VOID_CLOSEDIR /**/
495c5fdc 1287
10cc9d2a 1288/* HAS_CSH:
1289 * This symbol, if defined, indicates that the C-shell exists.
495c5fdc 1290 */
10cc9d2a 1291/* CSH:
1292 * This symbol, if defined, contains the full pathname of csh.
c287c78d 1293 */
10cc9d2a 1294#$d_csh HAS_CSH /**/
1295#ifdef HAS_CSH
1296#define CSH "$full_csh" /**/
1297#endif
c287c78d 1298
10cc9d2a 1299/* DLSYM_NEEDS_UNDERSCORE:
1300 * This symbol, if defined, indicates that we need to prepend an
1301 * underscore to the symbol name before calling dlsym(). This only
1302 * makes sense if you *have* dlsym, which we will presume is the
1303 * case if you're using dl_dlopen.xs.
c287c78d 1304 */
10cc9d2a 1305#$d_dlsymun DLSYM_NEEDS_UNDERSCORE /**/
c287c78d 1306
10cc9d2a 1307/* HAS_DRAND48_PROTO:
1308 * This symbol, if defined, indicates that the system provides
1309 * a prototype for the drand48() function. Otherwise, it is up
1310 * to the program to supply one. A good guess is
1311 * extern double drand48 _((void));
495c5fdc 1312 */
10cc9d2a 1313#$d_drand48proto HAS_DRAND48_PROTO /**/
495c5fdc 1314
10cc9d2a 1315/* HAS_ENDGRENT:
1316 * This symbol, if defined, indicates that the getgrent routine is
1317 * available for finalizing sequential access of the group database.
495c5fdc 1318 */
10cc9d2a 1319#$d_endgrent HAS_ENDGRENT /**/
495c5fdc 1320
10cc9d2a 1321/* HAS_ENDHOSTENT:
1322 * This symbol, if defined, indicates that the endhostent() routine is
1323 * available to close whatever was being used for host queries.
495c5fdc 1324 */
10cc9d2a 1325#$d_endhent HAS_ENDHOSTENT /**/
495c5fdc 1326
10cc9d2a 1327/* HAS_ENDNETENT:
1328 * This symbol, if defined, indicates that the endnetent() routine is
1329 * available to close whatever was being used for network queries.
495c5fdc 1330 */
10cc9d2a 1331#$d_endnent HAS_ENDNETENT /**/
495c5fdc 1332
10cc9d2a 1333/* HAS_ENDPROTOENT:
1334 * This symbol, if defined, indicates that the endprotoent() routine is
1335 * available to close whatever was being used for protocol queries.
c287c78d 1336 */
10cc9d2a 1337#$d_endpent HAS_ENDPROTOENT /**/
c287c78d 1338
10cc9d2a 1339/* HAS_ENDPWENT:
1340 * This symbol, if defined, indicates that the getgrent routine is
1341 * available for finalizing sequential access of the passwd database.
c287c78d 1342 */
10cc9d2a 1343#$d_endpwent HAS_ENDPWENT /**/
c287c78d 1344
10cc9d2a 1345/* HAS_ENDSERVENT:
1346 * This symbol, if defined, indicates that the endservent() routine is
1347 * available to close whatever was being used for service queries.
c287c78d 1348 */
10cc9d2a 1349#$d_endsent HAS_ENDSERVENT /**/
c287c78d 1350
10cc9d2a 1351/* HAS_FD_SET:
1352 * This symbol, when defined, indicates presence of the fd_set typedef
1353 * in <sys/types.h>
495c5fdc 1354 */
10cc9d2a 1355#$d_fd_set HAS_FD_SET /**/
1356
a3540c92 1357/* FLEXFILENAMES:
1358 * This symbol, if defined, indicates that the system supports filenames
1359 * longer than 14 characters.
1360 */
1361#$d_flexfnam FLEXFILENAMES /**/
1362
10cc9d2a 1363/* HAS_FPOS64_T:
1364 * This symbol will be defined if the C compiler supports fpos64_t.
495c5fdc 1365 */
10cc9d2a 1366#$d_fpos64_t HAS_FPOS64_T /**/
1367
a3540c92 1368/* HAS_FREXPL:
1369 * This symbol, if defined, indicates that the frexpl routine is
1370 * available to break a long double floating-point number into
1371 * a normalized fraction and an integral power of 2.
1372 */
1373#$d_frexpl HAS_FREXPL /**/
1374
10cc9d2a 1375/* HAS_STRUCT_FS_DATA:
1376 * This symbol, if defined, indicates that the struct fs_data
1377 * to do statfs() is supported.
495c5fdc 1378 */
10cc9d2a 1379#$d_fs_data_s HAS_STRUCT_FS_DATA /**/
495c5fdc 1380
10cc9d2a 1381/* HAS_FSEEKO:
1382 * This symbol, if defined, indicates that the fseeko routine is
1383 * available to fseek beyond 32 bits (useful for ILP32 hosts).
c287c78d 1384 */
10cc9d2a 1385#$d_fseeko HAS_FSEEKO /**/
1386
1387/* HAS_FSTATFS:
1388 * This symbol, if defined, indicates that the fstatfs routine is
1389 * available to stat filesystems by file descriptors.
c287c78d 1390 */
10cc9d2a 1391#$d_fstatfs HAS_FSTATFS /**/
1392
1393/* HAS_FTELLO:
1394 * This symbol, if defined, indicates that the ftello routine is
1395 * available to ftell beyond 32 bits (useful for ILP32 hosts).
c287c78d 1396 */
10cc9d2a 1397#$d_ftello HAS_FTELLO /**/
c287c78d 1398
10cc9d2a 1399/* Gconvert:
1400 * This preprocessor macro is defined to convert a floating point
1401 * number to a string without a trailing decimal point. This
1402 * emulates the behavior of sprintf("%g"), but is sometimes much more
1403 * efficient. If gconvert() is not available, but gcvt() drops the
1404 * trailing decimal point, then gcvt() is used. If all else fails,
1405 * a macro using sprintf("%g") is used. Arguments for the Gconvert
1406 * macro are: value, number of digits, whether trailing zeros should
1407 * be retained, and the output buffer.
1408 * Possible values are:
1409 * d_Gconvert='gconvert((x),(n),(t),(b))'
1410 * d_Gconvert='gcvt((x),(n),(b))'
1411 * d_Gconvert='sprintf((b),"%.*g",(n),(x))'
1412 * The last two assume trailing zeros should not be kept.
c287c78d 1413 */
10cc9d2a 1414#define Gconvert(x,n,t,b) $d_Gconvert
1415
1416/* HAS_GETCWD:
1417 * This symbol, if defined, indicates that the getcwd routine is
1418 * available to get the current working directory.
c287c78d 1419 */
10cc9d2a 1420#$d_getcwd HAS_GETCWD /**/
c287c78d 1421
3813c136 1422/* HAS_GETESPWNAM:
1423 * This symbol, if defined, indicates that the getespwnam system call is
1424 * available to retrieve enchanced (shadow) password entries by name.
1425 */
1426#$d_getespwnam HAS_GETESPWNAM /**/
1427
a3540c92 1428/* HAS_GETFSSTAT:
1429 * This symbol, if defined, indicates that the getfsstat routine is
1430 * available to stat filesystems in bulk.
1431 */
1432#$d_getfsstat HAS_GETFSSTAT /**/
1433
10cc9d2a 1434/* HAS_GETGRENT:
1435 * This symbol, if defined, indicates that the getgrent routine is
1436 * available for sequential access of the group database.
495c5fdc 1437 */
10cc9d2a 1438#$d_getgrent HAS_GETGRENT /**/
495c5fdc 1439
10cc9d2a 1440/* HAS_GETHOSTBYADDR:
1441 * This symbol, if defined, indicates that the gethostbyaddr() routine is
1442 * available to look up hosts by their IP addresses.
495c5fdc 1443 */
10cc9d2a 1444#$d_gethbyaddr HAS_GETHOSTBYADDR /**/
1445
1446/* HAS_GETHOSTBYNAME:
1447 * This symbol, if defined, indicates that the gethostbyname() routine is
1448 * available to look up host names in some data base or other.
495c5fdc 1449 */
10cc9d2a 1450#$d_gethbyname HAS_GETHOSTBYNAME /**/
1451
1452/* HAS_GETHOSTENT:
1453 * This symbol, if defined, indicates that the gethostent() routine is
1454 * available to look up host names in some data base or another.
c287c78d 1455 */
10cc9d2a 1456#$d_gethent HAS_GETHOSTENT /**/
c287c78d 1457
10cc9d2a 1458/* HAS_GETHOSTNAME:
1459 * This symbol, if defined, indicates that the C program may use the
1460 * gethostname() routine to derive the host name. See also HAS_UNAME
1461 * and PHOSTNAME.
495c5fdc 1462 */
10cc9d2a 1463/* HAS_UNAME:
1464 * This symbol, if defined, indicates that the C program may use the
1465 * uname() routine to derive the host name. See also HAS_GETHOSTNAME
1466 * and PHOSTNAME.
495c5fdc 1467 */
10cc9d2a 1468/* PHOSTNAME:
1469 * This symbol, if defined, indicates the command to feed to the
1470 * popen() routine to derive the host name. See also HAS_GETHOSTNAME
1471 * and HAS_UNAME. Note that the command uses a fully qualified path,
1472 * so that it is safe even if used by a process with super-user
1473 * privileges.
495c5fdc 1474 */
10cc9d2a 1475/* HAS_PHOSTNAME:
1476 * This symbol, if defined, indicates that the C program may use the
1477 * contents of PHOSTNAME as a command to feed to the popen() routine
1478 * to derive the host name.
c287c78d 1479 */
10cc9d2a 1480#$d_gethname HAS_GETHOSTNAME /**/
1481#$d_uname HAS_UNAME /**/
1482#$d_phostname HAS_PHOSTNAME /**/
1483#ifdef HAS_PHOSTNAME
1484#define PHOSTNAME "$aphostname" /* How to get the host name */
1485#endif
c287c78d 1486
10cc9d2a 1487/* HAS_GETHOST_PROTOS:
1488 * This symbol, if defined, indicates that <netdb.h> includes
1489 * prototypes for gethostent(), gethostbyname(), and
1490 * gethostbyaddr(). Otherwise, it is up to the program to guess
1491 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
c287c78d 1492 */
10cc9d2a 1493#$d_gethostprotos HAS_GETHOST_PROTOS /**/
c287c78d 1494
10cc9d2a 1495/* HAS_GETMNT:
1496 * This symbol, if defined, indicates that the getmnt routine is
1497 * available to get filesystem mount info by filename.
c287c78d 1498 */
10cc9d2a 1499#$d_getmnt HAS_GETMNT /**/
c287c78d 1500
10cc9d2a 1501/* HAS_GETMNTENT:
1502 * This symbol, if defined, indicates that the getmntent routine is
1503 * available to iterate through mounted file systems to get their info.
495c5fdc 1504 */
10cc9d2a 1505#$d_getmntent HAS_GETMNTENT /**/
495c5fdc 1506
10cc9d2a 1507/* HAS_GETNETBYADDR:
1508 * This symbol, if defined, indicates that the getnetbyaddr() routine is
1509 * available to look up networks by their IP addresses.
c287c78d 1510 */
10cc9d2a 1511#$d_getnbyaddr HAS_GETNETBYADDR /**/
c287c78d 1512
10cc9d2a 1513/* HAS_GETNETBYNAME:
1514 * This symbol, if defined, indicates that the getnetbyname() routine is
1515 * available to look up networks by their names.
c287c78d 1516 */
10cc9d2a 1517#$d_getnbyname HAS_GETNETBYNAME /**/
c287c78d 1518
10cc9d2a 1519/* HAS_GETNETENT:
1520 * This symbol, if defined, indicates that the getnetent() routine is
1521 * available to look up network names in some data base or another.
c287c78d 1522 */
10cc9d2a 1523#$d_getnent HAS_GETNETENT /**/
c287c78d 1524
10cc9d2a 1525/* HAS_GETNET_PROTOS:
1526 * This symbol, if defined, indicates that <netdb.h> includes
1527 * prototypes for getnetent(), getnetbyname(), and
1528 * getnetbyaddr(). Otherwise, it is up to the program to guess
1529 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
c287c78d 1530 */
10cc9d2a 1531#$d_getnetprotos HAS_GETNET_PROTOS /**/
c287c78d 1532
10cc9d2a 1533/* HAS_GETPROTOENT:
1534 * This symbol, if defined, indicates that the getprotoent() routine is
1535 * available to look up protocols in some data base or another.
495c5fdc 1536 */
10cc9d2a 1537#$d_getpent HAS_GETPROTOENT /**/
495c5fdc 1538
10cc9d2a 1539/* HAS_GETPROTOBYNAME:
1540 * This symbol, if defined, indicates that the getprotobyname()
1541 * routine is available to look up protocols by their name.
495c5fdc 1542 */
10cc9d2a 1543/* HAS_GETPROTOBYNUMBER:
1544 * This symbol, if defined, indicates that the getprotobynumber()
1545 * routine is available to look up protocols by their number.
495c5fdc 1546 */
10cc9d2a 1547#$d_getpbyname HAS_GETPROTOBYNAME /**/
1548#$d_getpbynumber HAS_GETPROTOBYNUMBER /**/
495c5fdc 1549
10cc9d2a 1550/* HAS_GETPROTO_PROTOS:
1551 * This symbol, if defined, indicates that <netdb.h> includes
1552 * prototypes for getprotoent(), getprotobyname(), and
1553 * getprotobyaddr(). Otherwise, it is up to the program to guess
1554 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
c287c78d 1555 */
10cc9d2a 1556#$d_getprotoprotos HAS_GETPROTO_PROTOS /**/
1557
3813c136 1558/* HAS_GETPRPWNAM:
1559 * This symbol, if defined, indicates that the getprpwnam system call is
1560 * available to retrieve protected (shadow) password entries by name.
1561 */
1562#$d_getprpwnam HAS_GETPRPWNAM /**/
1563
10cc9d2a 1564/* HAS_GETPWENT:
1565 * This symbol, if defined, indicates that the getpwent routine is
1566 * available for sequential access of the passwd database.
1567 * If this is not available, the older getpw() function may be available.
c287c78d 1568 */
10cc9d2a 1569#$d_getpwent HAS_GETPWENT /**/
c287c78d 1570
10cc9d2a 1571/* HAS_GETSERVENT:
1572 * This symbol, if defined, indicates that the getservent() routine is
1573 * available to look up network services in some data base or another.
c287c78d 1574 */
10cc9d2a 1575#$d_getsent HAS_GETSERVENT /**/
c287c78d 1576
10cc9d2a 1577/* HAS_GETSERV_PROTOS:
1578 * This symbol, if defined, indicates that <netdb.h> includes
1579 * prototypes for getservent(), getservbyname(), and
1580 * getservbyaddr(). Otherwise, it is up to the program to guess
1581 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
c287c78d 1582 */
10cc9d2a 1583#$d_getservprotos HAS_GETSERV_PROTOS /**/
c287c78d 1584
10cc9d2a 1585/* HAS_GETSPNAM:
1586 * This symbol, if defined, indicates that the getspnam system call is
1587 * available to retrieve SysV shadow password entries by name.
c287c78d 1588 */
10cc9d2a 1589#$d_getspnam HAS_GETSPNAM /**/
c287c78d 1590
10cc9d2a 1591/* HAS_GETSERVBYNAME:
1592 * This symbol, if defined, indicates that the getservbyname()
1593 * routine is available to look up services by their name.
c287c78d 1594 */
10cc9d2a 1595/* HAS_GETSERVBYPORT:
1596 * This symbol, if defined, indicates that the getservbyport()
1597 * routine is available to look up services by their port.
c287c78d 1598 */
10cc9d2a 1599#$d_getsbyname HAS_GETSERVBYNAME /**/
1600#$d_getsbyport HAS_GETSERVBYPORT /**/
1601
1602/* HAS_GNULIBC:
1603 * This symbol, if defined, indicates to the C program that
1604 * the GNU C library is being used.
c287c78d 1605 */
10cc9d2a 1606#$d_gnulibc HAS_GNULIBC /**/
1607#if defined(HAS_GNULIBC) && !defined(_GNU_SOURCE)
1608# define _GNU_SOURCE
1609#endif
1610/* HAS_HASMNTOPT:
1611 * This symbol, if defined, indicates that the hasmntopt routine is
1612 * available to query the mount options of file systems.
c287c78d 1613 */
10cc9d2a 1614#$d_hasmntopt HAS_HASMNTOPT /**/
c287c78d 1615
10cc9d2a 1616/* HAS_HTONL:
1617 * This symbol, if defined, indicates that the htonl() routine (and
1618 * friends htons() ntohl() ntohs()) are available to do network
1619 * order byte swapping.
c287c78d 1620 */
10cc9d2a 1621/* HAS_HTONS:
1622 * This symbol, if defined, indicates that the htons() routine (and
1623 * friends htonl() ntohl() ntohs()) are available to do network
1624 * order byte swapping.
1761cee5 1625 */
1626/* HAS_NTOHL:
1627 * This symbol, if defined, indicates that the ntohl() routine (and
1628 * friends htonl() htons() ntohs()) are available to do network
1629 * order byte swapping.
1630 */
1631/* HAS_NTOHS:
1632 * This symbol, if defined, indicates that the ntohs() routine (and
1633 * friends htonl() htons() ntohl()) are available to do network
1634 * order byte swapping.
1635 */
1636#$d_htonl HAS_HTONL /**/
1637#$d_htonl HAS_HTONS /**/
1638#$d_htonl HAS_NTOHL /**/
1639#$d_htonl HAS_NTOHS /**/
1640
10cc9d2a 1641/* HAS_ICONV:
1642 * This symbol, if defined, indicates that the iconv routine is
1643 * available to do character set conversions.
1644 */
1645#$d_iconv HAS_ICONV /**/
1646
1647/* HAS_INT64_T:
1648 * This symbol will defined if the C compiler supports int64_t.
1649 * Usually the <inttypes.h> needs to be included, but sometimes
1650 * <sys/types.h> is enough.
1651 */
1652#$d_int64_t HAS_INT64_T /**/
1653
1654/* HAS_ISASCII:
1655 * This manifest constant lets the C program know that isascii
1656 * is available.
1657 */
1658#$d_isascii HAS_ISASCII /**/
1659
a3540c92 1660/* HAS_ISNAN:
1661 * This symbol, if defined, indicates that the isnan routine is
1662 * available to check whether a double is a NaN.
1663 */
1664#$d_isnan HAS_ISNAN /**/
1665
1666/* HAS_ISNANL:
1667 * This symbol, if defined, indicates that the isnanl routine is
1668 * available to check whether a long double is a NaN.
1669 */
1670#$d_isnanl HAS_ISNANL /**/
1671
10cc9d2a 1672/* HAS_LCHOWN:
1673 * This symbol, if defined, indicates that the lchown routine is
1674 * available to operate on a symbolic link (instead of following the
1675 * link).
1676 */
1677#$d_lchown HAS_LCHOWN /**/
1678
1679/* HAS_LDBL_DIG:
1680 * This symbol, if defined, indicates that this system's <float.h>
1681 * or <limits.h> defines the symbol LDBL_DIG, which is the number
1682 * of significant digits in a long double precision number. Unlike
1683 * for DBL_DIG, there's no good guess for LDBL_DIG if it is undefined.
1684 */
1685#$d_ldbl_dig HAS_LDBL_DIG /* */
1686
1761cee5 1687/* HAS_LONG_DOUBLE:
1688 * This symbol will be defined if the C compiler supports long
1689 * doubles.
1690 */
1691/* LONG_DOUBLESIZE:
1692 * This symbol contains the size of a long double, so that the
1693 * C preprocessor can make decisions based on it. It is only
1694 * defined if the system supports long doubles.
1695 */
1696#$d_longdbl HAS_LONG_DOUBLE /**/
1697#ifdef HAS_LONG_DOUBLE
1698#define LONG_DOUBLESIZE $longdblsize /**/
1699#endif
1700
1701/* HAS_LONG_LONG:
1702 * This symbol will be defined if the C compiler supports long long.
1703 */
1704/* LONGLONGSIZE:
1705 * This symbol contains the size of a long long, so that the
1706 * C preprocessor can make decisions based on it. It is only
1707 * defined if the system supports long long.
1708 */
1709#$d_longlong HAS_LONG_LONG /**/
1710#ifdef HAS_LONG_LONG
1711#define LONGLONGSIZE $longlongsize /**/
1712#endif
1713
a3540c92 1714/* HAS_LSEEK_PROTO:
1715 * This symbol, if defined, indicates that the system provides
1716 * a prototype for the lseek() function. Otherwise, it is up
1717 * to the program to supply one. A good guess is
1718 * extern off_t lseek(int, off_t, int);
1719 */
1720#$d_lseekproto HAS_LSEEK_PROTO /**/
1721
792d8dab 1722/* HAS_MADVISE:
1723 * This symbol, if defined, indicates that the madvise system call is
1724 * available to map a file into memory.
1725 */
1726#$d_madvise HAS_MADVISE /**/
1727
1761cee5 1728/* HAS_MEMCHR:
1729 * This symbol, if defined, indicates that the memchr routine is available
1730 * to locate characters within a C string.
1731 */
1732#$d_memchr HAS_MEMCHR /**/
1733
10cc9d2a 1734/* HAS_MKDTEMP:
1735 * This symbol, if defined, indicates that the mkdtemp routine is
1736 * available to exclusively create a uniquely named temporary directory.
1761cee5 1737 */
10cc9d2a 1738#$d_mkdtemp HAS_MKDTEMP /**/
1761cee5 1739
10cc9d2a 1740/* HAS_MKSTEMP:
1741 * This symbol, if defined, indicates that the mkstemp routine is
1742 * available to exclusively create and open a uniquely named
1743 * temporary file.
1761cee5 1744 */
10cc9d2a 1745#$d_mkstemp HAS_MKSTEMP /**/
1761cee5 1746
10cc9d2a 1747/* HAS_MKSTEMPS:
1748 * This symbol, if defined, indicates that the mkstemps routine is
1749 * available to excluslvely create and open a uniquely named
1750 * (with a suffix) temporary file.
1761cee5 1751 */
10cc9d2a 1752#$d_mkstemps HAS_MKSTEMPS /**/
1761cee5 1753
10cc9d2a 1754/* HAS_MMAP:
1755 * This symbol, if defined, indicates that the mmap system call is
1756 * available to map a file into memory.
1761cee5 1757 */
10cc9d2a 1758/* Mmap_t:
1759 * This symbol holds the return type of the mmap() system call
1760 * (and simultaneously the type of the first argument).
1761 * Usually set to 'void *' or 'cadd_t'.
1761cee5 1762 */
10cc9d2a 1763#$d_mmap HAS_MMAP /**/
1764#define Mmap_t $mmaptype /**/
1761cee5 1765
3813c136 1766/* HAS_MODFL:
1767 * This symbol, if defined, indicates that the modfl routine is
1768 * available to split a long double x into a fractional part f and
1769 * an integer part i such that |f| < 1.0 and (f + i) = x.
1770 */
1771#$d_modfl HAS_MODFL /**/
1772
10cc9d2a 1773/* HAS_MPROTECT:
1774 * This symbol, if defined, indicates that the mprotect system call is
1775 * available to modify the access protection of a memory mapped file.
1761cee5 1776 */
10cc9d2a 1777#$d_mprotect HAS_MPROTECT /**/
1761cee5 1778
10cc9d2a 1779/* HAS_MSG:
1780 * This symbol, if defined, indicates that the entire msg*(2) library is
1781 * supported (IPC mechanism based on message queues).
1761cee5 1782 */
10cc9d2a 1783#$d_msg HAS_MSG /**/
1761cee5 1784
10cc9d2a 1785/* HAS_OFF64_T:
1786 * This symbol will be defined if the C compiler supports off64_t.
1761cee5 1787 */
10cc9d2a 1788#$d_off64_t HAS_OFF64_T /**/
1761cee5 1789
10cc9d2a 1790/* HAS_OPEN3:
1791 * This manifest constant lets the C program know that the three
1792 * argument form of open(2) is available.
1761cee5 1793 */
10cc9d2a 1794#$d_open3 HAS_OPEN3 /**/
1761cee5 1795
10cc9d2a 1796/* OLD_PTHREAD_CREATE_JOINABLE:
1797 * This symbol, if defined, indicates how to create pthread
1798 * in joinable (aka undetached) state. NOTE: not defined
1799 * if pthread.h already has defined PTHREAD_CREATE_JOINABLE
1800 * (the new version of the constant).
1801 * If defined, known values are PTHREAD_CREATE_UNDETACHED
1802 * and __UNDETACHED.
1761cee5 1803 */
10cc9d2a 1804#$d_old_pthread_create_joinable OLD_PTHREAD_CREATE_JOINABLE $old_pthread_create_joinable /**/
1805
1806/* HAS_PTHREAD_YIELD:
1807 * This symbol, if defined, indicates that the pthread_yield
1808 * routine is available to yield the execution of the current
1809 * thread. sched_yield is preferable to pthread_yield.
1810 */
1811/* SCHED_YIELD:
1812 * This symbol defines the way to yield the execution of
1813 * the current thread. Known ways are sched_yield,
1814 * pthread_yield, and pthread_yield with NULL.
1815 */
1816/* HAS_SCHED_YIELD:
1817 * This symbol, if defined, indicates that the sched_yield
1818 * routine is available to yield the execution of the current
1819 * thread. sched_yield is preferable to pthread_yield.
1820 */
1821#$d_pthread_yield HAS_PTHREAD_YIELD /**/
1822#define SCHED_YIELD $sched_yield /**/
1823#$d_sched_yield HAS_SCHED_YIELD /**/
1824
1825/* HAS_SAFE_BCOPY:
1826 * This symbol, if defined, indicates that the bcopy routine is available
1827 * to copy potentially overlapping memory blocks. Otherwise you should
1828 * probably use memmove() or memcpy(). If neither is defined, roll your
1829 * own version.
1830 */
1831#$d_safebcpy HAS_SAFE_BCOPY /**/
1832
1833/* HAS_SAFE_MEMCPY:
1834 * This symbol, if defined, indicates that the memcpy routine is available
1835 * to copy potentially overlapping memory blocks. Otherwise you should
1836 * probably use memmove() or memcpy(). If neither is defined, roll your
1837 * own version.
1838 */
1839#$d_safemcpy HAS_SAFE_MEMCPY /**/
1840
1841/* HAS_SANE_MEMCMP:
1842 * This symbol, if defined, indicates that the memcmp routine is available
1843 * and can be used to compare relative magnitudes of chars with their high
1844 * bits set. If it is not defined, roll your own version.
1845 */
1846#$d_sanemcmp HAS_SANE_MEMCMP /**/
1847
1848/* HAS_SEM:
1849 * This symbol, if defined, indicates that the entire sem*(2) library is
1850 * supported.
1851 */
1852#$d_sem HAS_SEM /**/
1853
1854/* HAS_SETGRENT:
1855 * This symbol, if defined, indicates that the setgrent routine is
1856 * available for initializing sequential access of the group database.
1857 */
1858#$d_setgrent HAS_SETGRENT /**/
1859
1860/* HAS_SETGROUPS:
1861 * This symbol, if defined, indicates that the setgroups() routine is
1862 * available to set the list of process groups. If unavailable, multiple
1863 * groups are probably not supported.
1864 */
1865#$d_setgrps HAS_SETGROUPS /**/
1866
1867/* HAS_SETHOSTENT:
1868 * This symbol, if defined, indicates that the sethostent() routine is
1869 * available.
1870 */
1871#$d_sethent HAS_SETHOSTENT /**/
1872
1873/* HAS_SETNETENT:
1874 * This symbol, if defined, indicates that the setnetent() routine is
1875 * available.
1876 */
1877#$d_setnent HAS_SETNETENT /**/
1878
1879/* HAS_SETPROTOENT:
1880 * This symbol, if defined, indicates that the setprotoent() routine is
1881 * available.
1882 */
1883#$d_setpent HAS_SETPROTOENT /**/
1884
fd47df60 1885/* HAS_SETPROCTITLE:
1886 * This symbol, if defined, indicates that the setproctitle routine is
1887 * available to set process title.
1888 */
1889#$d_setproctitle HAS_SETPROCTITLE /**/
1890
10cc9d2a 1891/* HAS_SETPWENT:
1892 * This symbol, if defined, indicates that the setpwent routine is
1893 * available for initializing sequential access of the passwd database.
1894 */
1895#$d_setpwent HAS_SETPWENT /**/
1896
1897/* HAS_SETSERVENT:
1898 * This symbol, if defined, indicates that the setservent() routine is
1899 * available.
1900 */
1901#$d_setsent HAS_SETSERVENT /**/
1902
10cc9d2a 1903/* HAS_SETVBUF:
1904 * This symbol, if defined, indicates that the setvbuf routine is
1905 * available to change buffering on an open stdio stream.
1906 * to a line-buffered mode.
1907 */
1908#$d_setvbuf HAS_SETVBUF /**/
1909
1910/* USE_SFIO:
1911 * This symbol, if defined, indicates that sfio should
1912 * be used.
1913 */
1914#$d_sfio USE_SFIO /**/
1761cee5 1915
1916/* HAS_SHM:
1917 * This symbol, if defined, indicates that the entire shm*(2) library is
1918 * supported.
1919 */
1920#$d_shm HAS_SHM /**/
1921
10cc9d2a 1922/* HAS_SIGACTION:
1923 * This symbol, if defined, indicates that Vr4's sigaction() routine
1924 * is available.
1925 */
1926#$d_sigaction HAS_SIGACTION /**/
1927
1928/* HAS_SIGSETJMP:
1929 * This variable indicates to the C program that the sigsetjmp()
1930 * routine is available to save the calling process's registers
1931 * and stack environment for later use by siglongjmp(), and
1932 * to optionally save the process's signal mask. See
1933 * Sigjmp_buf, Sigsetjmp, and Siglongjmp.
1934 */
1935/* Sigjmp_buf:
1936 * This is the buffer type to be used with Sigsetjmp and Siglongjmp.
1937 */
1938/* Sigsetjmp:
1939 * This macro is used in the same way as sigsetjmp(), but will invoke
1940 * traditional setjmp() if sigsetjmp isn't available.
1941 * See HAS_SIGSETJMP.
1942 */
1943/* Siglongjmp:
1944 * This macro is used in the same way as siglongjmp(), but will invoke
1945 * traditional longjmp() if siglongjmp isn't available.
1946 * See HAS_SIGSETJMP.
1947 */
1948#$d_sigsetjmp HAS_SIGSETJMP /**/
1949#ifdef HAS_SIGSETJMP
1950#define Sigjmp_buf sigjmp_buf
1951#define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
1952#define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
1953#else
1954#define Sigjmp_buf jmp_buf
1955#define Sigsetjmp(buf,save_mask) setjmp((buf))
1956#define Siglongjmp(buf,retval) longjmp((buf),(retval))
1957#endif
1958
1761cee5 1959/* HAS_SOCKET:
1960 * This symbol, if defined, indicates that the BSD socket interface is
1961 * supported.
1962 */
1963/* HAS_SOCKETPAIR:
1964 * This symbol, if defined, indicates that the BSD socketpair() call is
1965 * supported.
1966 */
1967/* HAS_MSG_CTRUNC:
1968 * This symbol, if defined, indicates that the MSG_CTRUNC is supported.
1969 * Checking just with #ifdef might not be enough because this symbol
1970 * has been known to be an enum.
1971 */
1972/* HAS_MSG_DONTROUTE:
1973 * This symbol, if defined, indicates that the MSG_DONTROUTE is supported.
1974 * Checking just with #ifdef might not be enough because this symbol
1975 * has been known to be an enum.
1976 */
1977/* HAS_MSG_OOB:
1978 * This symbol, if defined, indicates that the MSG_OOB is supported.
1979 * Checking just with #ifdef might not be enough because this symbol
c287c78d 1980 * has been known to be an enum.
1981 */
1982/* HAS_MSG_PEEK:
1983 * This symbol, if defined, indicates that the MSG_PEEK is supported.
1984 * Checking just with #ifdef might not be enough because this symbol
1985 * has been known to be an enum.
1986 */
1987/* HAS_MSG_PROXY:
1988 * This symbol, if defined, indicates that the MSG_PROXY is supported.
1989 * Checking just with #ifdef might not be enough because this symbol
1990 * has been known to be an enum.
1991 */
1992/* HAS_SCM_RIGHTS:
1993 * This symbol, if defined, indicates that the SCM_RIGHTS is supported.
1994 * Checking just with #ifdef might not be enough because this symbol
1995 * has been known to be an enum.
1996 */
1997#$d_socket HAS_SOCKET /**/
1998#$d_sockpair HAS_SOCKETPAIR /**/
1999#$d_msg_ctrunc HAS_MSG_CTRUNC /**/
2000#$d_msg_dontroute HAS_MSG_DONTROUTE /**/
2001#$d_msg_oob HAS_MSG_OOB /**/
2002#$d_msg_peek HAS_MSG_PEEK /**/
2003#$d_msg_proxy HAS_MSG_PROXY /**/
2004#$d_scm_rights HAS_SCM_RIGHTS /**/
2005
10cc9d2a 2006/* HAS_SQRTL:
2007 * This symbol, if defined, indicates that the sqrtl routine is
2008 * available to do long double square roots.
2009 */
2010#$d_sqrtl HAS_SQRTL /**/
2011
c287c78d 2012/* USE_STAT_BLOCKS:
2013 * This symbol is defined if this system has a stat structure declaring
2014 * st_blksize and st_blocks.
2015 */
2016#ifndef USE_STAT_BLOCKS
2017#$d_statblks USE_STAT_BLOCKS /**/
2018#endif
2019
10cc9d2a 2020/* HAS_STRUCT_STATFS_F_FLAGS:
2021 * This symbol, if defined, indicates that the struct statfs
2022 * does have the f_flags member containing the mount flags of
2023 * the filesystem containing the file.
2024 * This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3),
2025 * not from <sys/statfs.h> (SYSV). Older BSDs (like Ultrix) do not
2026 * have statfs() and struct statfs, they have ustat() and getmnt()
2027 * with struct ustat and struct fs_data.
2028 */
2029#$d_statfs_f_flags HAS_STRUCT_STATFS_F_FLAGS /**/
2030
2031/* HAS_STRUCT_STATFS:
2032 * This symbol, if defined, indicates that the struct statfs
2033 * to do statfs() is supported.
2034 */
2035#$d_statfs_s HAS_STRUCT_STATFS /**/
2036
2037/* HAS_FSTATVFS:
2038 * This symbol, if defined, indicates that the fstatvfs routine is
2039 * available to stat filesystems by file descriptors.
2040 */
2041#$d_fstatvfs HAS_FSTATVFS /**/
2042
2043/* USE_STDIO_PTR:
2044 * This symbol is defined if the _ptr and _cnt fields (or similar)
2045 * of the stdio FILE structure can be used to access the stdio buffer
2046 * for a file handle. If this is defined, then the FILE_ptr(fp)
2047 * and FILE_cnt(fp) macros will also be defined and should be used
2048 * to access these fields.
2049 */
2050/* FILE_ptr:
2051 * This macro is used to access the _ptr field (or equivalent) of the
2052 * FILE structure pointed to by its argument. This macro will always be
2053 * defined if USE_STDIO_PTR is defined.
2054 */
2055/* STDIO_PTR_LVALUE:
2056 * This symbol is defined if the FILE_ptr macro can be used as an
2057 * lvalue.
2058 */
2059/* FILE_cnt:
2060 * This macro is used to access the _cnt field (or equivalent) of the
2061 * FILE structure pointed to by its argument. This macro will always be
2062 * defined if USE_STDIO_PTR is defined.
2063 */
2064/* STDIO_CNT_LVALUE:
2065 * This symbol is defined if the FILE_cnt macro can be used as an
2066 * lvalue.
2067 */
2068#$d_stdstdio USE_STDIO_PTR /**/
2069#ifdef USE_STDIO_PTR
2070#define FILE_ptr(fp) $stdio_ptr
2071#$d_stdio_ptr_lval STDIO_PTR_LVALUE /**/
2072#define FILE_cnt(fp) $stdio_cnt
2073#$d_stdio_cnt_lval STDIO_CNT_LVALUE /**/
2074#endif
2075
2076/* USE_STDIO_BASE:
2077 * This symbol is defined if the _base field (or similar) of the
2078 * stdio FILE structure can be used to access the stdio buffer for
2079 * a file handle. If this is defined, then the FILE_base(fp) macro
2080 * will also be defined and should be used to access this field.
2081 * Also, the FILE_bufsiz(fp) macro will be defined and should be used
2082 * to determine the number of bytes in the buffer. USE_STDIO_BASE
2083 * will never be defined unless USE_STDIO_PTR is.
2084 */
2085/* FILE_base:
2086 * This macro is used to access the _base field (or equivalent) of the
2087 * FILE structure pointed to by its argument. This macro will always be
2088 * defined if USE_STDIO_BASE is defined.
2089 */
2090/* FILE_bufsiz:
2091 * This macro is used to determine the number of bytes in the I/O
2092 * buffer pointed to by _base field (or equivalent) of the FILE
2093 * structure pointed to its argument. This macro will always be defined
2094 * if USE_STDIO_BASE is defined.
2095 */
2096#$d_stdiobase USE_STDIO_BASE /**/
2097#ifdef USE_STDIO_BASE
2098#define FILE_base(fp) $stdio_base
2099#define FILE_bufsiz(fp) $stdio_bufsiz
2100#endif
2101
1761cee5 2102/* HAS_STRERROR:
2103 * This symbol, if defined, indicates that the strerror routine is
2104 * available to translate error numbers to strings. See the writeup
2105 * of Strerror() in this file before you try to define your own.
c287c78d 2106 */
1761cee5 2107/* HAS_SYS_ERRLIST:
2108 * This symbol, if defined, indicates that the sys_errlist array is
2109 * available to translate error numbers to strings. The extern int
2110 * sys_nerr gives the size of that table.
c287c78d 2111 */
1761cee5 2112/* Strerror:
2113 * This preprocessor symbol is defined as a macro if strerror() is
2114 * not available to translate error numbers to strings but sys_errlist[]
2115 * array is there.
c287c78d 2116 */
1761cee5 2117#$d_strerror HAS_STRERROR /**/
2118#$d_syserrlst HAS_SYS_ERRLIST /**/
2119#define Strerror(e) $d_strerrm
c287c78d 2120
10cc9d2a 2121/* HAS_STRTOLD:
2122 * This symbol, if defined, indicates that the strtold routine is
2123 * available to convert strings to long doubles.
c287c78d 2124 */
10cc9d2a 2125#$d_strtold HAS_STRTOLD /**/
2126
2127/* HAS_STRTOLL:
2128 * This symbol, if defined, indicates that the strtoll routine is
2129 * available to convert strings to long longs.
c287c78d 2130 */
10cc9d2a 2131#$d_strtoll HAS_STRTOLL /**/
1761cee5 2132
10cc9d2a 2133/* HAS_STRTOULL:
2134 * This symbol, if defined, indicates that the strtoull routine is
2135 * available to convert strings to unsigned long longs.
2136 */
2137#$d_strtoull HAS_STRTOULL /**/
2138
2139/* HAS_STRTOUQ:
2140 * This symbol, if defined, indicates that the strtouq routine is
2141 * available to convert strings to unsigned long longs (quads).
2142 */
2143#$d_strtouq HAS_STRTOUQ /**/
2144
2145/* HAS_TELLDIR_PROTO:
2146 * This symbol, if defined, indicates that the system provides
2147 * a prototype for the telldir() function. Otherwise, it is up
2148 * to the program to supply one. A good guess is
2149 * extern long telldir _((DIR*));
2150 */
2151#$d_telldirproto HAS_TELLDIR_PROTO /**/
2152
2153/* Time_t:
2154 * This symbol holds the type returned by time(). It can be long,
2155 * or time_t on BSD sites (in which case <sys/types.h> should be
2156 * included).
2157 */
2158#define Time_t $timetype /* Time type */
2159
2160/* HAS_TIMES:
2161 * This symbol, if defined, indicates that the times() routine exists.
2162 * Note that this became obsolete on some systems (SUNOS), which now
2163 * use getrusage(). It may be necessary to include <sys/times.h>.
2164 */
2165#$d_times HAS_TIMES /**/
2166
2167/* HAS_UNION_SEMUN:
2168 * This symbol, if defined, indicates that the union semun is
2169 * defined by including <sys/sem.h>. If not, the user code
2170 * probably needs to define it as:
2171 * union semun {
2172 * int val;
2173 * struct semid_ds *buf;
2174 * unsigned short *array;
2175 * }
2176 */
2177/* USE_SEMCTL_SEMUN:
2178 * This symbol, if defined, indicates that union semun is
2179 * used for semctl IPC_STAT.
2180 */
2181/* USE_SEMCTL_SEMID_DS:
2182 * This symbol, if defined, indicates that struct semid_ds * is
2183 * used for semctl IPC_STAT.
2184 */
2185#$d_union_semun HAS_UNION_SEMUN /**/
2186#$d_semctl_semun USE_SEMCTL_SEMUN /**/
2187#$d_semctl_semid_ds USE_SEMCTL_SEMID_DS /**/
2188
2189/* HAS_USTAT:
2190 * This symbol, if defined, indicates that the ustat system call is
2191 * available to query file system statistics by dev_t.
2192 */
2193#$d_ustat HAS_USTAT /**/
2194
2195/* HAS_VFORK:
1761cee5 2196 * This symbol, if defined, indicates that vfork() exists.
c287c78d 2197 */
1761cee5 2198#$d_vfork HAS_VFORK /**/
2199
2200/* Signal_t:
2201 * This symbol's value is either "void" or "int", corresponding to the
2202 * appropriate return type of a signal handler. Thus, you can declare
2203 * a signal handler using "Signal_t (*handler)()", and define the
2204 * handler using "Signal_t handler(sig)".
2205 */
2206#define Signal_t $signal_t /* Signal handler's return type */
2207
10cc9d2a 2208/* HAS_VPRINTF:
2209 * This symbol, if defined, indicates that the vprintf routine is available
2210 * to printf with a pointer to an argument list. If unavailable, you
2211 * may need to write your own, probably in terms of _doprnt().
2212 */
2213/* USE_CHAR_VSPRINTF:
2214 * This symbol is defined if this system has vsprintf() returning type
2215 * (char*). The trend seems to be to declare it as "int vsprintf()". It
2216 * is up to the package author to declare vsprintf correctly based on the
2217 * symbol.
2218 */
2219#$d_vprintf HAS_VPRINTF /**/
2220#$d_charvspr USE_CHAR_VSPRINTF /**/
2221
2222/* USE_DYNAMIC_LOADING:
2223 * This symbol, if defined, indicates that dynamic loading of
2224 * some sort is available.
2225 */
2226#$usedl USE_DYNAMIC_LOADING /**/
2227
2228/* DOUBLESIZE:
2229 * This symbol contains the size of a double, so that the C preprocessor
2230 * can make decisions based on it.
2231 */
2232#define DOUBLESIZE $doublesize /**/
2233
2234/* EBCDIC:
2235 * This symbol, if defined, indicates that this system uses
2236 * EBCDIC encoding.
2237 */
2238#$ebcdic EBCDIC /**/
2239
2240/* FFLUSH_NULL:
2241 * This symbol, if defined, tells that fflush(NULL) does flush
2242 * all pending stdio output.
2243 */
2244/* FFLUSH_ALL:
2245 * This symbol, if defined, tells that to flush
2246 * all pending stdio output one must loop through all
2247 * the stdio file handles stored in an array and fflush them.
2248 * Note that if fflushNULL is defined, fflushall will not
2249 * even be probed for and will be left undefined.
2250 */
2251#$fflushNULL FFLUSH_NULL /**/
2252#$fflushall FFLUSH_ALL /**/
2253
2254/* Fpos_t:
2255 * This symbol holds the type used to declare file positions in libc.
2256 * It can be fpos_t, long, uint, etc... It may be necessary to include
2257 * <sys/types.h> to get any typedef'ed information.
2258 */
2259#define Fpos_t $fpostype /* File position type */
2260
2261/* Gid_t_f:
2262 * This symbol defines the format string used for printing a Gid_t.
2263 */
2264#define Gid_t_f $gidformat /**/
2265
23dcd6c8 2266/* Gid_t_sign:
2267 * This symbol holds the signedess of a Gid_t.
2268 * 1 for unsigned, -1 for signed.
2269 */
2270#define Gid_t_sign $gidsign /* GID sign */
2271
10cc9d2a 2272/* Gid_t_size:
2273 * This symbol holds the size of a Gid_t in bytes.
2274 */
2275#define Gid_t_size $gidsize /* GID size */
2276
2277/* Gid_t:
2278 * This symbol holds the return type of getgid() and the type of
2279 * argument to setrgid() and related functions. Typically,
2280 * it is the type of group ids in the kernel. It can be int, ushort,
23dcd6c8 2281 * gid_t, etc... It may be necessary to include <sys/types.h> to get
10cc9d2a 2282 * any typedef'ed information.
2283 */
2284#define Gid_t $gidtype /* Type for getgid(), etc... */
2285
1761cee5 2286/* Groups_t:
2287 * This symbol holds the type used for the second argument to
23dcd6c8 2288 * getgroups() and setgroups(). Usually, this is the same as
1761cee5 2289 * gidtype (gid_t) , but sometimes it isn't.
23dcd6c8 2290 * It can be int, ushort, gid_t, etc...
1761cee5 2291 * It may be necessary to include <sys/types.h> to get any
2292 * typedef'ed information. This is only required if you have
23dcd6c8 2293 * getgroups() or setgroups()..
1761cee5 2294 */
2295#if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
2296#define Groups_t $groupstype /* Type for 2nd arg to [sg]etgroups() */
c287c78d 2297#endif
2298
10cc9d2a 2299/* DB_Prefix_t:
2300 * This symbol contains the type of the prefix structure element
2301 * in the <db.h> header file. In older versions of DB, it was
2302 * int, while in newer ones it is u_int32_t.
2303 */
2304/* DB_Hash_t:
2305 * This symbol contains the type of the prefix structure element
2306 * in the <db.h> header file. In older versions of DB, it was
2307 * int, while in newer ones it is size_t.
2308 */
2309#define DB_Hash_t $db_hashtype /**/
2310#define DB_Prefix_t $db_prefixtype /**/
2311
1761cee5 2312/* I_GRP:
2313 * This symbol, if defined, indicates to the C program that it should
2314 * include <grp.h>.
c287c78d 2315 */
1761cee5 2316/* GRPASSWD:
2317 * This symbol, if defined, indicates to the C program that struct group
2318 * in <grp.h> contains gr_passwd.
2319 */
2320#$i_grp I_GRP /**/
2321#$d_grpasswd GRPASSWD /**/
2322
10cc9d2a 2323/* I_ICONV:
2324 * This symbol, if defined, indicates that <iconv.h> exists and
2325 * should be included.
2326 */
2327#$i_iconv I_ICONV /**/
2328
a3540c92 2329/* I_IEEEFP:
2330 * This symbol, if defined, indicates that <ieeefp.h> exists and
2331 * should be included.
2332 */
2333#$i_ieeefp I_IEEEFP /**/
2334
10cc9d2a 2335/* I_INTTYPES:
2336 * This symbol, if defined, indicates to the C program that it should
2337 * include <inttypes.h>.
2338 */
2339#$i_inttypes I_INTTYPES /**/
2340
2341/* I_MACH_CTHREADS:
2342 * This symbol, if defined, indicates to the C program that it should
2343 * include <mach/cthreads.h>.
2344 */
2345#$i_machcthr I_MACH_CTHREADS /**/
2346
2347/* I_MNTENT:
2348 * This symbol, if defined, indicates that <mntent.h> exists and
2349 * should be included.
2350 */
2351#$i_mntent I_MNTENT /**/
2352
1761cee5 2353/* I_NETDB:
2354 * This symbol, if defined, indicates that <netdb.h> exists and
2355 * should be included.
2356 */
2357#$i_netdb I_NETDB /**/
2358
10cc9d2a 2359/* I_NETINET_TCP:
2360 * This symbol, if defined, indicates to the C program that it should
2361 * include <netinet/tcp.h>.
2362 */
2363#$i_netinettcp I_NETINET_TCP /**/
2364
2365/* I_POLL:
2366 * This symbol, if defined, indicates that <poll.h> exists and
2367 * should be included.
2368 */
2369#$i_poll I_POLL /**/
2370
3813c136 2371/* I_PROT:
2372 * This symbol, if defined, indicates that <prot.h> exists and
2373 * should be included.
2374 */
2375#$i_prot I_PROT /**/
2376
10cc9d2a 2377/* I_PTHREAD:
2378 * This symbol, if defined, indicates to the C program that it should
2379 * include <pthread.h>.
2380 */
2381#$i_pthread I_PTHREAD /**/
2382
1761cee5 2383/* I_PWD:
2384 * This symbol, if defined, indicates to the C program that it should
2385 * include <pwd.h>.
2386 */
2387/* PWQUOTA:
2388 * This symbol, if defined, indicates to the C program that struct passwd
2389 * contains pw_quota.
2390 */
2391/* PWAGE:
2392 * This symbol, if defined, indicates to the C program that struct passwd
2393 * contains pw_age.
2394 */
2395/* PWCHANGE:
2396 * This symbol, if defined, indicates to the C program that struct passwd
2397 * contains pw_change.
2398 */
2399/* PWCLASS:
2400 * This symbol, if defined, indicates to the C program that struct passwd
2401 * contains pw_class.
2402 */
2403/* PWEXPIRE:
2404 * This symbol, if defined, indicates to the C program that struct passwd
2405 * contains pw_expire.
2406 */
2407/* PWCOMMENT:
2408 * This symbol, if defined, indicates to the C program that struct passwd
2409 * contains pw_comment.
2410 */
2411/* PWGECOS:
2412 * This symbol, if defined, indicates to the C program that struct passwd
2413 * contains pw_gecos.
2414 */
2415/* PWPASSWD:
2416 * This symbol, if defined, indicates to the C program that struct passwd
2417 * contains pw_passwd.
2418 */
2419#$i_pwd I_PWD /**/
2420#$d_pwquota PWQUOTA /**/
2421#$d_pwage PWAGE /**/
2422#$d_pwchange PWCHANGE /**/
2423#$d_pwclass PWCLASS /**/
2424#$d_pwexpire PWEXPIRE /**/
2425#$d_pwcomment PWCOMMENT /**/
2426#$d_pwgecos PWGECOS /**/
2427#$d_pwpasswd PWPASSWD /**/
2428
10cc9d2a 2429/* I_SHADOW:
2430 * This symbol, if defined, indicates that <shadow.h> exists and
1761cee5 2431 * should be included.
2432 */
10cc9d2a 2433#$i_shadow I_SHADOW /**/
1761cee5 2434
10cc9d2a 2435/* I_SOCKS:
2436 * This symbol, if defined, indicates that <socks.h> exists and
2437 * should be included.
1761cee5 2438 */
10cc9d2a 2439#$i_socks I_SOCKS /**/
1761cee5 2440
792d8dab 2441/* I_SUNMATH:
2442 * This symbol, if defined, indicates that <sunmath.h> exists and
2443 * should be included.
2444 */
2445#$i_sunmath I_SUNMATH /**/
2446
10cc9d2a 2447/* I_SYSLOG:
2448 * This symbol, if defined, indicates that <syslog.h> exists and
2449 * should be included.
1761cee5 2450 */
10cc9d2a 2451#$i_syslog I_SYSLOG /**/
1761cee5 2452
10cc9d2a 2453/* I_SYSMODE:
2454 * This symbol, if defined, indicates that <sys/mode.h> exists and
2455 * should be included.
1761cee5 2456 */
10cc9d2a 2457#$i_sysmode I_SYSMODE /**/
2458
2459/* I_SYS_MOUNT:
2460 * This symbol, if defined, indicates that <sys/mount.h> exists and
2461 * should be included.
1761cee5 2462 */
10cc9d2a 2463#$i_sysmount I_SYS_MOUNT /**/
1761cee5 2464
10cc9d2a 2465/* I_SYS_STATFS:
2466 * This symbol, if defined, indicates that <sys/statfs.h> exists.
1761cee5 2467 */
10cc9d2a 2468#$i_sysstatfs I_SYS_STATFS /**/
1761cee5 2469
10cc9d2a 2470/* I_SYS_STATVFS:
2471 * This symbol, if defined, indicates that <sys/statvfs.h> exists and
2472 * should be included.
1761cee5 2473 */
10cc9d2a 2474#$i_sysstatvfs I_SYS_STATVFS /**/
1761cee5 2475
10cc9d2a 2476/* I_SYSUIO:
2477 * This symbol, if defined, indicates that <sys/uio.h> exists and
2478 * should be included.
1761cee5 2479 */
10cc9d2a 2480#$i_sysuio I_SYSUIO /**/
1761cee5 2481
10cc9d2a 2482/* I_SYSUTSNAME:
2483 * This symbol, if defined, indicates that <sys/utsname.h> exists and
2484 * should be included.
1761cee5 2485 */
10cc9d2a 2486#$i_sysutsname I_SYSUTSNAME /**/
1761cee5 2487
10cc9d2a 2488/* I_SYS_VFS:
2489 * This symbol, if defined, indicates that <sys/vfs.h> exists and
2490 * should be included.
1761cee5 2491 */
10cc9d2a 2492#$i_sysvfs I_SYS_VFS /**/
1761cee5 2493
10cc9d2a 2494/* I_TIME:
2495 * This symbol, if defined, indicates to the C program that it should
2496 * include <time.h>.
1761cee5 2497 */
10cc9d2a 2498/* I_SYS_TIME:
2499 * This symbol, if defined, indicates to the C program that it should
2500 * include <sys/time.h>.
1761cee5 2501 */
10cc9d2a 2502/* I_SYS_TIME_KERNEL:
2503 * This symbol, if defined, indicates to the C program that it should
2504 * include <sys/time.h> with KERNEL defined.
1761cee5 2505 */
10cc9d2a 2506#$i_time I_TIME /**/
2507#$i_systime I_SYS_TIME /**/
2508#$i_systimek I_SYS_TIME_KERNEL /**/
1761cee5 2509
10cc9d2a 2510/* I_USTAT:
2511 * This symbol, if defined, indicates that <ustat.h> exists and
2512 * should be included.
1761cee5 2513 */
10cc9d2a 2514#$i_ustat I_USTAT /**/
1761cee5 2515
10cc9d2a 2516/* PERL_INC_VERSION_LIST:
2517 * This variable specifies the list of subdirectories in over
2518 * which perl.c:incpush() and lib/lib.pm will automatically
2519 * search when adding directories to @INC, in a format suitable
2520 * for a C initialization string. See the inc_version_list entry
2521 * in Porting/Glossary for more details.
1761cee5 2522 */
10cc9d2a 2523#define PERL_INC_VERSION_LIST $inc_version_list_init /**/
1761cee5 2524
10cc9d2a 2525/* INSTALL_USR_BIN_PERL:
2526 * This symbol, if defined, indicates that Perl is to be installed
2527 * also as /usr/bin/perl.
1761cee5 2528 */
10cc9d2a 2529#$installusrbinperl INSTALL_USR_BIN_PERL /**/
1761cee5 2530
10cc9d2a 2531/* PERL_PRIfldbl:
2532 * This symbol, if defined, contains the string used by stdio to
2533 * format long doubles (format 'f') for output.
1761cee5 2534 */
10cc9d2a 2535/* PERL_PRIgldbl:
2536 * This symbol, if defined, contains the string used by stdio to
2537 * format long doubles (format 'g') for output.
1761cee5 2538 */
10cc9d2a 2539#$d_PRIfldbl PERL_PRIfldbl $sPRIfldbl /**/
2540#$d_PRIgldbl PERL_PRIgldbl $sPRIgldbl /**/
1761cee5 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.
c287c78d 2546 */
10cc9d2a 2547/* LSEEKSIZE:
2548 * This symbol holds the number of bytes used by the Off_t.
c287c78d 2549 */
10cc9d2a 2550/* Off_t_size:
2551 * This symbol holds the number of bytes used by the Off_t.
c287c78d 2552 */
10cc9d2a 2553#define Off_t $lseektype /* <offset> type */
2554#define LSEEKSIZE $lseeksize /* <offset> size */
2555#define Off_t_size $lseeksize /* <offset> size */
1761cee5 2556
10cc9d2a 2557/* Free_t:
2558 * This variable contains the return type of free(). It is usually
2559 * void, but occasionally int.
c287c78d 2560 */
10cc9d2a 2561/* Malloc_t:
2562 * This symbol is the type of pointer returned by malloc and realloc.
c287c78d 2563 */
10cc9d2a 2564#define Malloc_t $malloctype /**/
2565#define Free_t $freetype /**/
c287c78d 2566
10cc9d2a 2567/* MYMALLOC:
2568 * This symbol, if defined, indicates that we're using our own malloc.
c287c78d 2569 */
10cc9d2a 2570#$d_mymalloc MYMALLOC /**/
c287c78d 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.
c287c78d 2577 */
10cc9d2a 2578#define Mode_t $modetype /* file mode parameter for system calls */
c287c78d 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.
c287c78d 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.
c287c78d 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!
c287c78d 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!).
c287c78d 2601 */
10cc9d2a 2602#define VAL_O_NONBLOCK $o_nonblock
2603#define VAL_EAGAIN $eagain
2604#define RD_NODATA $rd_nodata
2605#$d_eofnblk EOF_NONBLOCK
c287c78d 2606
10cc9d2a 2607/* Netdb_host_t:
2608 * This symbol holds the type used for the 1st argument
2609 * to gethostbyaddr().
c287c78d 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().
c287c78d 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 $netdb_host_type /**/
2624#define Netdb_hlen_t $netdb_hlen_type /**/
2625#define Netdb_name_t $netdb_name_type /**/
2626#define Netdb_net_t $netdb_net_type /**/
c287c78d 2627
d722968f 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#$d_perl_otherlibdirs PERL_OTHERLIBDIRS "$otherlibdirs" /**/
2637
10cc9d2a 2638/* IVTYPE:
2639 * This symbol defines the C type used for Perl's IV.
495c5fdc 2640 */
c287c78d 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:
2699 * This symbol contains the sizeof(U64).
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 */
c287c78d 2712#define IVTYPE $ivtype /**/
2713#define UVTYPE $uvtype /**/
2714#define I8TYPE $i8type /**/
2715#define U8TYPE $u8type /**/
2716#define I16TYPE $i16type /**/
2717#define U16TYPE $u16type /**/
2718#define I32TYPE $i32type /**/
2719#define U32TYPE $u32type /**/
2720#ifdef HAS_QUAD
2721#define I64TYPE $i64type /**/
2722#define U64TYPE $u64type /**/
2723#endif
2724#define NVTYPE $nvtype /**/
2725#define IVSIZE $ivsize /**/
2726#define UVSIZE $uvsize /**/
2727#define I8SIZE $i8size /**/
2728#define U8SIZE $u8size /**/
2729#define I16SIZE $i16size /**/
2730#define U16SIZE $u16size /**/
2731#define I32SIZE $i32size /**/
2732#define U32SIZE $u32size /**/
2733#ifdef HAS_QUAD
2734#define I64SIZE $i64size /**/
2735#define U64SIZE $u64size /**/
2736#endif
a3540c92 2737#define NVSIZE $nvsize /**/
10cc9d2a 2738#$d_nv_preserves_uv NV_PRESERVES_UV
fd47df60 2739#define NV_PRESERVES_UV_BITS $d_nv_preserves_uv_bits
495c5fdc 2740
c287c78d 2741/* IVdf:
2742 * This symbol defines the format string used for printing a Perl IV
2743 * as a signed decimal integer.
495c5fdc 2744 */
c287c78d 2745/* UVuf:
2746 * This symbol defines the format string used for printing a Perl UV
2747 * as an unsigned decimal integer.
495c5fdc 2748 */
c287c78d 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 */
2769#define IVdf $ivdformat /**/
2770#define UVuf $uvuformat /**/
2771#define UVof $uvoformat /**/
2772#define UVxf $uvxformat /**/
fd47df60 2773#define NVef $nveformat /**/
2774#define NVff $nvfformat /**/
2775#define NVgf $nvgformat /**/
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 $pidtype /* 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 */
10cc9d2a 2794#define PRIVLIB "$privlib" /**/
2795#define PRIVLIB_EXP "$privlibexp" /**/
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 $ptrsize /**/
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.
495c5fdc 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.
c287c78d 2824 */
10cc9d2a 2825#define Drand01() $drand01 /**/
2826#define Rand_seed_t $randseedtype /**/
2827#define seedDrand01(x) $seedfunc((Rand_seed_t)x) /**/
2828#define RANDBITS $randbits /**/
c287c78d 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 $selectminbits /**/
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 $selecttype /**/
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 */
10cc9d2a 2875#define SIG_NAME $sig_name_init /**/
2876#define SIG_NUM $sig_num_init /**/
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 */
a3540c92 2893#define SITEARCH "$sitearch" /**/
2894#define SITEARCH_EXP "$sitearchexp" /**/
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 */
10cc9d2a 2916#define SITELIB "$sitelib" /**/
2917#define SITELIB_EXP "$sitelibexp" /**/
526fdc24 2918#define SITELIB_STEM "$sitelib_stem" /**/
1761cee5 2919
f78bfc9c 2920/* Size_t_size:
2921 * This symbol holds the size of a Size_t in bytes.
2922 */
2923#define Size_t_size $sizesize /* */
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 $sizetype /* 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 $socksizetype /**/
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 $ssizetype /* 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 "$startperl" /**/
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#$d_stdio_stream_array HAS_STDIO_STREAM_ARRAY /**/
2965#define STDIO_STREAM_ARRAY $stdio_stream_array
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 $uidformat /**/
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 $uidsign /* UID sign */
2977
10cc9d2a 2978/* Uid_t_size:
2979 * This symbol holds the size of a Uid_t in bytes.
c287c78d 2980 */
10cc9d2a 2981#define Uid_t_size $uidsize /* 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 $uidtype /* 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#$use64bitint USE_64_BIT_INT /**/
c287c78d 3010#endif
495c5fdc 3011
10cc9d2a 3012#ifndef USE_64_BIT_ALL
3013#$use64bitall 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#$uselargefiles 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#$uselongdouble 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#$usemorebits 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#$usemultiplicity 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#$useperlio 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#$usesocks 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#$use5005threads USE_5005THREADS /**/
3078#$useithreads USE_ITHREADS /**/
3079#if defined(USE_5005THREADS) && !defined(USE_ITHREADS)
3080#define USE_THREADS /* until src is revised*/
3081#endif
3082#$d_oldpthreads 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#$d_vendorarch PERL_VENDORARCH "$vendorarch" /**/
526fdc24 3100#$d_vendorarch PERL_VENDORARCH_EXP "$vendorarchexp" /**/
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#$d_vendorlib PERL_VENDORLIB_EXP "$vendorlibexp" /**/
526fdc24 3112#$d_vendorlib PERL_VENDORLIB_STEM "$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 $defvoidused
3132#endif
3133#define VOIDFLAGS $voidflags
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 $sitearch 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
3161 * search in $sitelib for older directories across major versions
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 "$xs_apiversion"
3172#define PERL_PM_APIVERSION "$pm_apiversion"
1761cee5 3173
fd47df60 3174/* I_LIBUTIL:
3175 * This symbol, if defined, indicates that <libutil.h> exists and
3176 * should be included.
3177 */
3178#$i_libutil I_LIBUTIL /**/
3179
495c5fdc 3180#endif
3181!GROK!THIS!