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