This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Make B::Concise handle subrefs in stashes
[perl5.git] / uconfig.h
CommitLineData
aa86d596 1/* This file was produced by running the config_h.SH script, which
3ebb1980
JH
2 * gets its values from uconfig.sh, which is generally produced by
3 * running Configure.
4 *
5 * Feel free to modify any of this as the need arises. Note, however,
6 * that running config_h.SH again will wipe out any changes you've made.
7 * For a more permanent change edit uconfig.sh and rerun config_h.SH.
3ebb1980
JH
8 */
9
aa86d596 10/* Package name : perl5
9244ff22
SP
11 * Source directory : .
12 * Configuration time: Thu Jan 1 00:00:00 GMT 1970
13 * Configured by : root@localhost
3ebb1980
JH
14 * Target system : unknown
15 */
16
17#ifndef _config_h_
18#define _config_h_
19
20/* LOC_SED:
21 * This symbol holds the complete pathname to the sed program.
22 */
23#define LOC_SED "" /**/
24
25/* HAS_ALARM:
26 * This symbol, if defined, indicates that the alarm routine is
27 * available.
28 */
29/*#define HAS_ALARM / **/
30
3ebb1980
JH
31/* HAS_BCMP:
32 * This symbol is defined if the bcmp() routine is available to
33 * compare blocks of memory.
34 */
35/*#define HAS_BCMP / **/
36
37/* HAS_BCOPY:
38 * This symbol is defined if the bcopy() routine is available to
39 * copy blocks of memory.
40 */
41/*#define HAS_BCOPY / **/
42
43/* HAS_BZERO:
44 * This symbol is defined if the bzero() routine is available to
45 * set a memory block to 0.
46 */
47/*#define HAS_BZERO / **/
48
f40bbcbf
MB
49/* HAS_CBRT:
50 * This symbol, if defined, indicates that the cbrt() (cube root)
51 * function is available.
52 */
53/*#define HAS_CBRT / **/
54
3ebb1980
JH
55/* HAS_CHOWN:
56 * This symbol, if defined, indicates that the chown routine is
57 * available.
58 */
59/*#define HAS_CHOWN / **/
60
61/* HAS_CHROOT:
62 * This symbol, if defined, indicates that the chroot routine is
63 * available.
64 */
65/*#define HAS_CHROOT / **/
66
67/* HAS_CHSIZE:
68 * This symbol, if defined, indicates that the chsize routine is available
69 * to truncate files. You might need a -lx to get this routine.
70 */
71/*#define HAS_CHSIZE / **/
72
0639114f
NC
73/* HAS_CRYPT:
74 * This symbol, if defined, indicates that the crypt routine is available
75 * to encrypt passwords and the like.
76 */
77/*#define HAS_CRYPT / **/
78
9244ff22
SP
79/* HAS_CTERMID:
80 * This symbol, if defined, indicates that the ctermid routine is
81 * available to generate filename for terminal.
3ebb1980 82 */
9244ff22 83/*#define HAS_CTERMID / **/
3ebb1980 84
3ebb1980
JH
85/* HAS_CUSERID:
86 * This symbol, if defined, indicates that the cuserid routine is
87 * available to get character login names.
88 */
89/*#define HAS_CUSERID / **/
90
91/* HAS_DBL_DIG:
92 * This symbol, if defined, indicates that this system's <float.h>
93 * or <limits.h> defines the symbol DBL_DIG, which is the number
94 * of significant digits in a double precision number. If this
95 * symbol is not defined, a guess of 15 is usually pretty good.
96 */
44f645e8 97/*#define HAS_DBL_DIG / **/
3ebb1980
JH
98
99/* HAS_DIFFTIME:
100 * This symbol, if defined, indicates that the difftime routine is
101 * available.
102 */
103/*#define HAS_DIFFTIME / **/
104
105/* HAS_DLERROR:
106 * This symbol, if defined, indicates that the dlerror routine is
107 * available to return a string describing the last error that
108 * occurred from a call to dlopen(), dlclose() or dlsym().
109 */
110/*#define HAS_DLERROR / **/
111
3ebb1980
JH
112/* HAS_DUP2:
113 * This symbol, if defined, indicates that the dup2 routine is
114 * available to duplicate file descriptors.
115 */
116/*#define HAS_DUP2 / **/
117
118/* HAS_FCHMOD:
119 * This symbol, if defined, indicates that the fchmod routine is available
120 * to change mode of opened files. If unavailable, use chmod().
121 */
122/*#define HAS_FCHMOD / **/
123
124/* HAS_FCHOWN:
125 * This symbol, if defined, indicates that the fchown routine is available
126 * to change ownership of opened files. If unavailable, use chown().
127 */
128/*#define HAS_FCHOWN / **/
129
130/* HAS_FCNTL:
131 * This symbol, if defined, indicates to the C program that
132 * the fcntl() function exists.
133 */
134/*#define HAS_FCNTL / **/
135
136/* HAS_FGETPOS:
137 * This symbol, if defined, indicates that the fgetpos routine is
138 * available to get the file position indicator, similar to ftell().
139 */
140/*#define HAS_FGETPOS / **/
141
142/* HAS_FLOCK:
143 * This symbol, if defined, indicates that the flock routine is
144 * available to do file locking.
145 */
146/*#define HAS_FLOCK / **/
147
148/* HAS_FORK:
149 * This symbol, if defined, indicates that the fork routine is
150 * available.
151 */
152#define HAS_FORK /**/
153
154/* HAS_FSETPOS:
155 * This symbol, if defined, indicates that the fsetpos routine is
156 * available to set the file position indicator, similar to fseek().
157 */
158/*#define HAS_FSETPOS / **/
159
160/* HAS_GETTIMEOFDAY:
161 * This symbol, if defined, indicates that the gettimeofday() system
162 * call is available for a sub-second accuracy clock. Usually, the file
163 * <sys/resource.h> needs to be included (see I_SYS_RESOURCE).
164 * The type "Timeval" should be used to refer to "struct timeval".
165 */
166/*#define HAS_GETTIMEOFDAY / **/
167#ifdef HAS_GETTIMEOFDAY
168#define Timeval struct timeval /* Structure used by gettimeofday() */
169#endif
170
171/* HAS_GETGROUPS:
172 * This symbol, if defined, indicates that the getgroups() routine is
173 * available to get the list of process groups. If unavailable, multiple
174 * groups are probably not supported.
175 */
176/*#define HAS_GETGROUPS / **/
177
178/* HAS_GETLOGIN:
179 * This symbol, if defined, indicates that the getlogin routine is
180 * available to get the login name.
181 */
182/*#define HAS_GETLOGIN / **/
183
184/* HAS_GETPGID:
bc900e45 185 * This symbol, if defined, indicates to the C program that
3ebb1980
JH
186 * the getpgid(pid) function is available to get the
187 * process group id.
188 */
189/*#define HAS_GETPGID / **/
190
3ebb1980
JH
191/* HAS_GETPGRP2:
192 * This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
193 * routine is available to get the current process group.
194 */
195/*#define HAS_GETPGRP2 / **/
196
197/* HAS_GETPPID:
198 * This symbol, if defined, indicates that the getppid routine is
199 * available to get the parent process ID.
200 */
201/*#define HAS_GETPPID / **/
202
203/* HAS_GETPRIORITY:
204 * This symbol, if defined, indicates that the getpriority routine is
205 * available to get a process's priority.
206 */
207/*#define HAS_GETPRIORITY / **/
208
209/* HAS_INET_ATON:
210 * This symbol, if defined, indicates to the C program that the
211 * inet_aton() function is available to parse IP address "dotted-quad"
212 * strings.
213 */
214/*#define HAS_INET_ATON / **/
215
216/* HAS_KILLPG:
217 * This symbol, if defined, indicates that the killpg routine is available
218 * to kill process groups. If unavailable, you probably should use kill
219 * with a negative process number.
220 */
221/*#define HAS_KILLPG / **/
222
223/* HAS_LINK:
224 * This symbol, if defined, indicates that the link routine is
225 * available to create hard links.
226 */
227/*#define HAS_LINK / **/
228
229/* HAS_LOCALECONV:
230 * This symbol, if defined, indicates that the localeconv routine is
231 * available for numeric and monetary formatting conventions.
232 */
233/*#define HAS_LOCALECONV / **/
234
235/* HAS_LOCKF:
236 * This symbol, if defined, indicates that the lockf routine is
237 * available to do file locking.
238 */
239/*#define HAS_LOCKF / **/
240
241/* HAS_LSTAT:
242 * This symbol, if defined, indicates that the lstat routine is
243 * available to do file stats on symbolic links.
244 */
245/*#define HAS_LSTAT / **/
246
247/* HAS_MBLEN:
248 * This symbol, if defined, indicates that the mblen routine is available
249 * to find the number of bytes in a multibye character.
250 */
251/*#define HAS_MBLEN / **/
252
253/* HAS_MBSTOWCS:
254 * This symbol, if defined, indicates that the mbstowcs routine is
9cdcdad1 255 * available to convert a multibyte string into a wide character string.
3ebb1980
JH
256 */
257/*#define HAS_MBSTOWCS / **/
258
259/* HAS_MBTOWC:
260 * This symbol, if defined, indicates that the mbtowc routine is available
9cdcdad1 261 * to convert a multibyte to a wide character.
3ebb1980
JH
262 */
263/*#define HAS_MBTOWC / **/
264
265/* HAS_MEMCMP:
266 * This symbol, if defined, indicates that the memcmp routine is available
267 * to compare blocks of memory.
268 */
535ceeb0 269#define HAS_MEMCMP /**/
3ebb1980
JH
270
271/* HAS_MEMCPY:
272 * This symbol, if defined, indicates that the memcpy routine is available
273 * to copy blocks of memory.
274 */
535ceeb0 275#define HAS_MEMCPY /**/
3ebb1980
JH
276
277/* HAS_MEMMOVE:
278 * This symbol, if defined, indicates that the memmove routine is available
279 * to copy potentially overlapping blocks of memory. This should be used
280 * only when HAS_SAFE_BCOPY is not defined. If neither is there, roll your
281 * own version.
282 */
283/*#define HAS_MEMMOVE / **/
284
285/* HAS_MEMSET:
286 * This symbol, if defined, indicates that the memset routine is available
287 * to set blocks of memory.
288 */
59ac522e 289#define HAS_MEMSET /**/
3ebb1980
JH
290
291/* HAS_MKDIR:
292 * This symbol, if defined, indicates that the mkdir routine is available
293 * to create directories. Otherwise you should fork off a new process to
294 * exec /bin/mkdir.
295 */
296/*#define HAS_MKDIR / **/
297
298/* HAS_MKFIFO:
299 * This symbol, if defined, indicates that the mkfifo routine is
300 * available to create FIFOs. Otherwise, mknod should be able to
301 * do it for you. However, if mkfifo is there, mknod might require
302 * super-user privileges which mkfifo will not.
303 */
304/*#define HAS_MKFIFO / **/
305
306/* HAS_MKTIME:
307 * This symbol, if defined, indicates that the mktime routine is
308 * available.
309 */
310/*#define HAS_MKTIME / **/
311
312/* HAS_MSYNC:
313 * This symbol, if defined, indicates that the msync system call is
314 * available to synchronize a mapped file.
315 */
316/*#define HAS_MSYNC / **/
317
318/* HAS_MUNMAP:
319 * This symbol, if defined, indicates that the munmap system call is
320 * available to unmap a region, usually mapped by mmap().
321 */
322/*#define HAS_MUNMAP / **/
323
324/* HAS_NICE:
325 * This symbol, if defined, indicates that the nice routine is
326 * available.
327 */
328/*#define HAS_NICE / **/
329
330/* HAS_PATHCONF:
331 * This symbol, if defined, indicates that pathconf() is available
332 * to determine file-system related limits and options associated
333 * with a given filename.
334 */
335/* HAS_FPATHCONF:
336 * This symbol, if defined, indicates that pathconf() is available
337 * to determine file-system related limits and options associated
338 * with a given open file descriptor.
339 */
340/*#define HAS_PATHCONF / **/
341/*#define HAS_FPATHCONF / **/
342
343/* HAS_PAUSE:
344 * This symbol, if defined, indicates that the pause routine is
345 * available to suspend a process until a signal is received.
346 */
347/*#define HAS_PAUSE / **/
348
349/* HAS_PIPE:
350 * This symbol, if defined, indicates that the pipe routine is
351 * available to create an inter-process channel.
352 */
353/*#define HAS_PIPE / **/
354
0639114f
NC
355/* HAS_POLL:
356 * This symbol, if defined, indicates that the poll routine is
357 * available to poll active file descriptors. Please check I_POLL and
358 * I_SYS_POLL to know which header should be included as well.
359 */
360/*#define HAS_POLL / **/
361
3ebb1980
JH
362/* HAS_READDIR:
363 * This symbol, if defined, indicates that the readdir routine is
364 * available to read directory entries. You may have to include
365 * <dirent.h>. See I_DIRENT.
366 */
2f42fcb0 367#define HAS_READDIR /**/
3ebb1980
JH
368
369/* HAS_SEEKDIR:
370 * This symbol, if defined, indicates that the seekdir routine is
371 * available. You may have to include <dirent.h>. See I_DIRENT.
372 */
373/*#define HAS_SEEKDIR / **/
374
375/* HAS_TELLDIR:
376 * This symbol, if defined, indicates that the telldir routine is
377 * available. You may have to include <dirent.h>. See I_DIRENT.
378 */
379/*#define HAS_TELLDIR / **/
380
381/* HAS_REWINDDIR:
382 * This symbol, if defined, indicates that the rewinddir routine is
383 * available. You may have to include <dirent.h>. See I_DIRENT.
384 */
385/*#define HAS_REWINDDIR / **/
386
387/* HAS_READLINK:
388 * This symbol, if defined, indicates that the readlink routine is
389 * available to read the value of a symbolic link.
390 */
391/*#define HAS_READLINK / **/
392
f40bbcbf
MB
393/* HAS_REGCOMP:
394 * This symbol, if defined, indicates that the regcomp() routine is
395 * available to do some regular patern matching (usually on POSIX.2
396 * conforming systems).
3adf3699 397 */
f40bbcbf 398#define HAS_REGCOMP /* POSIX.2 */
3adf3699 399
3ebb1980
JH
400/* HAS_RENAME:
401 * This symbol, if defined, indicates that the rename routine is available
402 * to rename files. Otherwise you should do the unlink(), link(), unlink()
403 * trick.
404 */
2f42fcb0 405#define HAS_RENAME /**/
3ebb1980
JH
406
407/* HAS_RMDIR:
408 * This symbol, if defined, indicates that the rmdir routine is
409 * available to remove directories. Otherwise you should fork off a
410 * new process to exec /bin/rmdir.
411 */
412/*#define HAS_RMDIR / **/
413
414/* HAS_SELECT:
415 * This symbol, if defined, indicates that the select routine is
416 * available to select active file descriptors. If the timeout field
417 * is used, <sys/time.h> may need to be included.
418 */
419/*#define HAS_SELECT / **/
420
421/* HAS_SETEGID:
422 * This symbol, if defined, indicates that the setegid routine is available
423 * to change the effective gid of the current program.
424 */
425/*#define HAS_SETEGID / **/
426
427/* HAS_SETEUID:
428 * This symbol, if defined, indicates that the seteuid routine is available
429 * to change the effective uid of the current program.
430 */
431/*#define HAS_SETEUID / **/
432
0639114f
NC
433/* HAS_SETGROUPS:
434 * This symbol, if defined, indicates that the setgroups() routine is
435 * available to set the list of process groups. If unavailable, multiple
436 * groups are probably not supported.
437 */
438/*#define HAS_SETGROUPS / **/
439
3ebb1980
JH
440/* HAS_SETLINEBUF:
441 * This symbol, if defined, indicates that the setlinebuf routine is
442 * available to change stderr or stdout from block-buffered or unbuffered
443 * to a line-buffered mode.
444 */
445/*#define HAS_SETLINEBUF / **/
446
447/* HAS_SETLOCALE:
448 * This symbol, if defined, indicates that the setlocale routine is
449 * available to handle locale-specific ctype implementations.
450 */
451/*#define HAS_SETLOCALE / **/
452
453/* HAS_SETPGID:
454 * This symbol, if defined, indicates that the setpgid(pid, gpid)
455 * routine is available to set process group ID.
456 */
457/*#define HAS_SETPGID / **/
458
3ebb1980
JH
459/* HAS_SETPGRP2:
460 * This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
461 * routine is available to set the current process group.
462 */
463/*#define HAS_SETPGRP2 / **/
464
465/* HAS_SETPRIORITY:
466 * This symbol, if defined, indicates that the setpriority routine is
467 * available to set a process's priority.
468 */
469/*#define HAS_SETPRIORITY / **/
470
471/* HAS_SETREGID:
472 * This symbol, if defined, indicates that the setregid routine is
473 * available to change the real and effective gid of the current
474 * process.
475 */
476/* HAS_SETRESGID:
477 * This symbol, if defined, indicates that the setresgid routine is
478 * available to change the real, effective and saved gid of the current
479 * process.
480 */
481/*#define HAS_SETREGID / **/
482/*#define HAS_SETRESGID / **/
483
484/* HAS_SETREUID:
485 * This symbol, if defined, indicates that the setreuid routine is
486 * available to change the real and effective uid of the current
487 * process.
488 */
489/* HAS_SETRESUID:
490 * This symbol, if defined, indicates that the setresuid routine is
491 * available to change the real, effective and saved uid of the current
492 * process.
493 */
494/*#define HAS_SETREUID / **/
495/*#define HAS_SETRESUID / **/
496
497/* HAS_SETRGID:
498 * This symbol, if defined, indicates that the setrgid routine is available
499 * to change the real gid of the current program.
500 */
501/*#define HAS_SETRGID / **/
502
503/* HAS_SETRUID:
504 * This symbol, if defined, indicates that the setruid routine is available
505 * to change the real uid of the current program.
506 */
507/*#define HAS_SETRUID / **/
508
509/* HAS_SETSID:
510 * This symbol, if defined, indicates that the setsid routine is
511 * available to set the process group ID.
512 */
513/*#define HAS_SETSID / **/
514
f40bbcbf
MB
515/* HAS_STAT:
516 * This symbol, if defined, indicates that the stat routine is
517 * available to get file status.
518 */
519#define HAS_STAT /**/
520
3ebb1980
JH
521/* HAS_STRCHR:
522 * This symbol is defined to indicate that the strchr()/strrchr()
523 * functions are available for string searching. If not, try the
524 * index()/rindex() pair.
525 */
526/* HAS_INDEX:
527 * This symbol is defined to indicate that the index()/rindex()
528 * functions are available for string searching.
529 */
530/*#define HAS_STRCHR / **/
531/*#define HAS_INDEX / **/
532
533/* HAS_STRCOLL:
534 * This symbol, if defined, indicates that the strcoll routine is
535 * available to compare strings using collating information.
536 */
537/*#define HAS_STRCOLL / **/
538
3e09f0e1
JSA
539/* USE_STRUCT_COPY:
540 * This symbol, if defined, indicates that this C compiler knows how
541 * to copy structures. If undefined, you'll need to use a block copy
542 * routine of some sort instead.
543 */
544/*#define USE_STRUCT_COPY / **/
545
3ebb1980
JH
546/* HAS_STRTOD:
547 * This symbol, if defined, indicates that the strtod routine is
548 * available to provide better numeric string conversion than atof().
549 */
550/*#define HAS_STRTOD / **/
551
552/* HAS_STRTOL:
553 * This symbol, if defined, indicates that the strtol routine is available
554 * to provide better numeric string conversion than atoi() and friends.
555 */
d40eae8f 556#define HAS_STRTOL /**/
3ebb1980 557
3ebb1980
JH
558/* HAS_STRXFRM:
559 * This symbol, if defined, indicates that the strxfrm() routine is
560 * available to transform strings.
561 */
562/*#define HAS_STRXFRM / **/
563
564/* HAS_SYMLINK:
565 * This symbol, if defined, indicates that the symlink routine is available
566 * to create symbolic links.
567 */
568/*#define HAS_SYMLINK / **/
569
570/* HAS_SYSCALL:
571 * This symbol, if defined, indicates that the syscall routine is
572 * available to call arbitrary system calls. If undefined, that's tough.
573 */
574/*#define HAS_SYSCALL / **/
575
576/* HAS_SYSCONF:
577 * This symbol, if defined, indicates that sysconf() is available
578 * to determine system related limits and options.
579 */
580/*#define HAS_SYSCONF / **/
581
582/* HAS_SYSTEM:
583 * This symbol, if defined, indicates that the system routine is
584 * available to issue a shell command.
585 */
586/*#define HAS_SYSTEM / **/
587
588/* HAS_TCGETPGRP:
589 * This symbol, if defined, indicates that the tcgetpgrp routine is
590 * available to get foreground process group ID.
591 */
592/*#define HAS_TCGETPGRP / **/
593
594/* HAS_TCSETPGRP:
595 * This symbol, if defined, indicates that the tcsetpgrp routine is
596 * available to set foreground process group ID.
597 */
598/*#define HAS_TCSETPGRP / **/
599
600/* HAS_TRUNCATE:
601 * This symbol, if defined, indicates that the truncate routine is
602 * available to truncate files.
603 */
604/*#define HAS_TRUNCATE / **/
605
606/* HAS_TZNAME:
607 * This symbol, if defined, indicates that the tzname[] array is
608 * available to access timezone names.
609 */
610/*#define HAS_TZNAME / **/
611
612/* HAS_UMASK:
613 * This symbol, if defined, indicates that the umask routine is
614 * available to set and get the value of the file creation mask.
615 */
616/*#define HAS_UMASK / **/
617
4e0554ec
JH
618/* HAS_USLEEP:
619 * This symbol, if defined, indicates that the usleep routine is
620 * available to let the process sleep on a sub-second accuracy.
621 */
622/*#define HAS_USLEEP / **/
623
3ebb1980
JH
624/* HAS_WAIT4:
625 * This symbol, if defined, indicates that wait4() exists.
626 */
627/*#define HAS_WAIT4 / **/
628
629/* HAS_WAITPID:
630 * This symbol, if defined, indicates that the waitpid routine is
631 * available to wait for child process.
632 */
633/*#define HAS_WAITPID / **/
634
635/* HAS_WCSTOMBS:
636 * This symbol, if defined, indicates that the wcstombs routine is
637 * available to convert wide character strings to multibyte strings.
638 */
639/*#define HAS_WCSTOMBS / **/
640
641/* HAS_WCTOMB:
642 * This symbol, if defined, indicates that the wctomb routine is available
9cdcdad1 643 * to convert a wide character to a multibyte.
3ebb1980
JH
644 */
645/*#define HAS_WCTOMB / **/
646
0639114f
NC
647/* Groups_t:
648 * This symbol holds the type used for the second argument to
649 * getgroups() and setgroups(). Usually, this is the same as
650 * gidtype (gid_t) , but sometimes it isn't.
bc900e45
AC
651 * It can be int, ushort, gid_t, etc...
652 * It may be necessary to include <sys/types.h> to get any
0639114f
NC
653 * typedef'ed information. This is only required if you have
654 * getgroups() or setgroups()..
655 */
656#if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
657#define Groups_t int /* Type for 2nd arg to [sg]etgroups() */
658#endif
659
3ebb1980
JH
660/* I_ARPA_INET:
661 * This symbol, if defined, indicates to the C program that it should
662 * include <arpa/inet.h> to get inet_addr and friends declarations.
663 */
9244ff22 664/*#define I_ARPA_INET / **/
3ebb1980
JH
665
666/* I_DBM:
667 * This symbol, if defined, indicates that <dbm.h> exists and should
668 * be included.
669 */
670/* I_RPCSVC_DBM:
671 * This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
672 * should be included.
673 */
674/*#define I_DBM / **/
675/*#define I_RPCSVC_DBM / **/
676
3ebb1980
JH
677/* I_DLFCN:
678 * This symbol, if defined, indicates that <dlfcn.h> exists and should
679 * be included.
680 */
681/*#define I_DLFCN / **/
682
683/* I_FCNTL:
684 * This manifest constant tells the C program to include <fcntl.h>.
685 */
686/*#define I_FCNTL / **/
687
688/* I_FLOAT:
689 * This symbol, if defined, indicates to the C program that it should
690 * include <float.h> to get definition of symbols like DBL_MAX or
691 * DBL_MIN, i.e. machine dependent floating point values.
692 */
693/*#define I_FLOAT / **/
694
9244ff22
SP
695/* I_GDBM:
696 * This symbol, if defined, indicates that <gdbm.h> exists and should
697 * be included.
698 */
699/*#define I_GDBM / **/
700
3ebb1980
JH
701/* I_LIMITS:
702 * This symbol, if defined, indicates to the C program that it should
703 * include <limits.h> to get definition of symbols like WORD_BIT or
704 * LONG_MAX, i.e. machine dependant limitations.
705 */
706/*#define I_LIMITS / **/
707
708/* I_LOCALE:
709 * This symbol, if defined, indicates to the C program that it should
710 * include <locale.h>.
711 */
712/*#define I_LOCALE / **/
713
714/* I_MATH:
715 * This symbol, if defined, indicates to the C program that it should
716 * include <math.h>.
717 */
251f6efd 718#define I_MATH /**/
3ebb1980
JH
719
720/* I_MEMORY:
721 * This symbol, if defined, indicates to the C program that it should
722 * include <memory.h>.
723 */
724/*#define I_MEMORY / **/
725
3ebb1980
JH
726/* I_NETINET_IN:
727 * This symbol, if defined, indicates to the C program that it should
728 * include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
729 */
730/*#define I_NETINET_IN / **/
731
3ebb1980
JH
732/* I_STDDEF:
733 * This symbol, if defined, indicates that <stddef.h> exists and should
734 * be included.
735 */
1e54a0f5 736#define I_STDDEF /**/
3ebb1980
JH
737
738/* I_STDLIB:
739 * This symbol, if defined, indicates that <stdlib.h> exists and should
740 * be included.
741 */
2f42fcb0 742#define I_STDLIB /**/
3ebb1980
JH
743
744/* I_STRING:
745 * This symbol, if defined, indicates to the C program that it should
746 * include <string.h> (USG systems) instead of <strings.h> (BSD systems).
747 */
748#define I_STRING /**/
749
750/* I_SYS_DIR:
751 * This symbol, if defined, indicates to the C program that it should
752 * include <sys/dir.h>.
753 */
754/*#define I_SYS_DIR / **/
755
756/* I_SYS_FILE:
757 * This symbol, if defined, indicates to the C program that it should
758 * include <sys/file.h> to get definition of R_OK and friends.
759 */
760/*#define I_SYS_FILE / **/
761
762/* I_SYS_IOCTL:
763 * This symbol, if defined, indicates that <sys/ioctl.h> exists and should
764 * be included. Otherwise, include <sgtty.h> or <termio.h>.
765 */
49a78c82
JH
766/* I_SYS_SOCKIO:
767 * This symbol, if defined, indicates the <sys/sockio.h> should be included
768 * to get socket ioctl options, like SIOCATMARK.
769 */
3ebb1980 770/*#define I_SYS_IOCTL / **/
49a78c82 771/*#define I_SYS_SOCKIO / **/
3ebb1980
JH
772
773/* I_SYS_NDIR:
774 * This symbol, if defined, indicates to the C program that it should
775 * include <sys/ndir.h>.
776 */
777/*#define I_SYS_NDIR / **/
778
779/* I_SYS_PARAM:
780 * This symbol, if defined, indicates to the C program that it should
781 * include <sys/param.h>.
782 */
783/*#define I_SYS_PARAM / **/
784
0639114f
NC
785/* I_SYS_POLL:
786 * This symbol, if defined, indicates that the program may include
787 * <sys/poll.h>. When I_POLL is also defined, it's probably safest
788 * to only include <poll.h>.
789 */
790/*#define I_SYS_POLL / **/
791
3ebb1980
JH
792/* I_SYS_RESOURCE:
793 * This symbol, if defined, indicates to the C program that it should
794 * include <sys/resource.h>.
795 */
796/*#define I_SYS_RESOURCE / **/
797
798/* I_SYS_SELECT:
799 * This symbol, if defined, indicates to the C program that it should
800 * include <sys/select.h> in order to get definition of struct timeval.
801 */
802/*#define I_SYS_SELECT / **/
803
804/* I_SYS_STAT:
805 * This symbol, if defined, indicates to the C program that it should
806 * include <sys/stat.h>.
807 */
808#define I_SYS_STAT /**/
809
810/* I_SYS_TIMES:
811 * This symbol, if defined, indicates to the C program that it should
812 * include <sys/times.h>.
813 */
814/*#define I_SYS_TIMES / **/
815
816/* I_SYS_TYPES:
817 * This symbol, if defined, indicates to the C program that it should
818 * include <sys/types.h>.
819 */
820/*#define I_SYS_TYPES / **/
821
822/* I_SYS_UN:
823 * This symbol, if defined, indicates to the C program that it should
824 * include <sys/un.h> to get UNIX domain socket definitions.
825 */
826/*#define I_SYS_UN / **/
827
828/* I_SYS_WAIT:
829 * This symbol, if defined, indicates to the C program that it should
830 * include <sys/wait.h>.
831 */
832/*#define I_SYS_WAIT / **/
833
3ebb1980
JH
834/* I_UNISTD:
835 * This symbol, if defined, indicates to the C program that it should
836 * include <unistd.h>.
837 */
838/*#define I_UNISTD / **/
839
840/* I_UTIME:
841 * This symbol, if defined, indicates to the C program that it should
842 * include <utime.h>.
843 */
844/*#define I_UTIME / **/
845
846/* I_VALUES:
847 * This symbol, if defined, indicates to the C program that it should
848 * include <values.h> to get definition of symbols like MINFLOAT or
849 * MAXLONG, i.e. machine dependant limitations. Probably, you
850 * should use <limits.h> instead, if it is available.
851 */
852/*#define I_VALUES / **/
853
3ebb1980
JH
854/* I_VFORK:
855 * This symbol, if defined, indicates to the C program that it should
856 * include vfork.h.
857 */
858/*#define I_VFORK / **/
859
7e69463d
AC
860/* STDCHAR:
861 * This symbol is defined to be the type of char used in stdio.h.
862 * It has the values "unsigned char" or "char".
863 */
864#define STDCHAR char /**/
865
12cf8ac4
NC
866/* CAN_VAPROTO:
867 * This variable is defined on systems supporting prototype declaration
868 * of functions with a variable number of arguments.
869 */
870/* _V:
871 * This macro is used to declare function parameters in prototypes for
872 * functions with a variable number of parameters. Use double parentheses.
873 * For example:
874 *
875 * int printf _V((char *fmt, ...));
876 *
877 * Remember to use the plain simple _() macro when declaring a function
878 * with no variable number of arguments, since it might be possible to
879 * have a non-effect _V() macro and still get prototypes via _().
880 */
881/*#define CAN_VAPROTO / **/
882#ifdef CAN_VAPROTO
883#define _V(args) args
884#else
885#define _V(args) ()
886#endif
887
7e69463d
AC
888/* INTSIZE:
889 * This symbol contains the value of sizeof(int) so that the C
890 * preprocessor can make decisions based on it.
3ebb1980 891 */
7e69463d
AC
892/* LONGSIZE:
893 * This symbol contains the value of sizeof(long) so that the C
894 * preprocessor can make decisions based on it.
535ceeb0 895 */
7e69463d
AC
896/* SHORTSIZE:
897 * This symbol contains the value of sizeof(short) so that the C
898 * preprocessor can make decisions based on it.
899 */
900#define INTSIZE 4 /**/
901#define LONGSIZE 4 /**/
902#define SHORTSIZE 2 /**/
535ceeb0 903
6e89a33a
MB
904/* MULTIARCH:
905 * This symbol, if defined, signifies that the build
906 * process will produce some binary files that are going to be
907 * used in a cross-platform environment. This is the case for
908 * example with the NeXT "fat" binaries that contain executables
909 * for several CPUs.
910 */
911/*#define MULTIARCH / **/
912
7e69463d
AC
913/* HAS_QUAD:
914 * This symbol, if defined, tells that there's a 64-bit integer type,
915 * Quad_t, and its unsigned counterpart, Uquad_t. QUADKIND will be one
916 * of QUAD_IS_INT, QUAD_IS_LONG, QUAD_IS_LONG_LONG, QUAD_IS_INT64_T,
917 * or QUAD_IS___INT64.
12cf8ac4 918 */
7e69463d
AC
919/*#define HAS_QUAD / **/
920#ifdef HAS_QUAD
921# define Quad_t int64_t /**/
922# define Uquad_t uint64_t /**/
923# define QUADKIND 4 /**/
924# define QUAD_IS_INT 1
925# define QUAD_IS_LONG 2
926# define QUAD_IS_LONG_LONG 3
927# define QUAD_IS_INT64_T 4
928# define QUAD_IS___INT64 5
929#endif
3ebb1980 930
7e69463d
AC
931/* HAS_ACCESSX:
932 * This symbol, if defined, indicates that the accessx routine is
933 * available to do extended access checks.
58bf2e2e 934 */
7e69463d 935/*#define HAS_ACCESSX / **/
58bf2e2e 936
7e69463d
AC
937/* HAS_EACCESS:
938 * This symbol, if defined, indicates that the eaccess routine is
939 * available to do extended access checks.
58bf2e2e 940 */
7e69463d 941/*#define HAS_EACCESS / **/
58bf2e2e 942
7e69463d
AC
943/* I_SYS_ACCESS:
944 * This symbol, if defined, indicates to the C program that it should
945 * include <sys/access.h>.
535ceeb0 946 */
7e69463d 947/*#define I_SYS_ACCESS / **/
58bf2e2e 948
7e69463d
AC
949/* I_SYS_SECURITY:
950 * This symbol, if defined, indicates to the C program that it should
951 * include <sys/security.h>.
06501368 952 */
7e69463d
AC
953/*#define I_SYS_SECURITY / **/
954
955/* MEM_ALIGNBYTES:
956 * This symbol contains the number of bytes required to align a
957 * double, or a long double when applicable. Usual values are 2,
958 * 4 and 8. The default is eight, for safety. For cross-compiling
959 * or multiarch support, Configure will set a minimum of 8.
06501368 960 */
7e69463d 961#define MEM_ALIGNBYTES 4
06501368 962
12cf8ac4
NC
963/* BYTEORDER:
964 * This symbol holds the hexadecimal constant defined in byteorder,
965 * in a UV, i.e. 0x1234 or 0x4321 or 0x12345678, etc...
966 * If the compiler supports cross-compiling or multiple-architecture
f05550c0 967 * binaries, use compiler-defined macros to
12cf8ac4 968 * determine the byte order.
58bf2e2e 969 */
c9d1bf8e 970#if defined(MULTIARCH)
12cf8ac4
NC
971# ifdef __LITTLE_ENDIAN__
972# if LONGSIZE == 4
973# define BYTEORDER 0x1234
974# else
975# if LONGSIZE == 8
976# define BYTEORDER 0x12345678
977# endif
978# endif
979# else
980# ifdef __BIG_ENDIAN__
981# if LONGSIZE == 4
982# define BYTEORDER 0x4321
983# else
984# if LONGSIZE == 8
985# define BYTEORDER 0x87654321
986# endif
987# endif
988# endif
989# endif
12cf8ac4
NC
990#else
991#define BYTEORDER 0x1234 /* large digits for MSB */
f05550c0 992#endif
58bf2e2e 993
12cf8ac4
NC
994/* CHARBITS:
995 * This symbol contains the size of a char, so that the C preprocessor
996 * can make decisions based on it.
58bf2e2e 997 */
12cf8ac4 998#define CHARBITS 8 /**/
58bf2e2e 999
12cf8ac4
NC
1000/* CASTI32:
1001 * This symbol is defined if the C compiler can cast negative
1002 * or large floating point numbers to 32-bit ints.
535ceeb0 1003 */
12cf8ac4
NC
1004/*#define CASTI32 / **/
1005
1006/* CASTNEGFLOAT:
1007 * This symbol is defined if the C compiler can cast negative
1008 * numbers to unsigned longs, ints and shorts.
0639114f 1009 */
12cf8ac4
NC
1010/* CASTFLAGS:
1011 * This symbol contains flags that say what difficulties the compiler
1012 * has casting odd floating values to unsigned long:
1013 * 0 = ok
1014 * 1 = couldn't cast < 0
1015 * 2 = couldn't cast >= 0x80000000
1016 * 4 = couldn't cast in argument expression list
535ceeb0 1017 */
12cf8ac4
NC
1018/*#define CASTNEGFLOAT / **/
1019#define CASTFLAGS 0 /**/
535ceeb0 1020
12cf8ac4
NC
1021/* VOID_CLOSEDIR:
1022 * This symbol, if defined, indicates that the closedir() routine
1023 * does not return a value.
666ea192 1024 */
12cf8ac4 1025/*#define VOID_CLOSEDIR / **/
666ea192 1026
7e69463d
AC
1027/* HAS_FD_SET:
1028 * This symbol, when defined, indicates presence of the fd_set typedef
1029 * in <sys/types.h>
06501368 1030 */
7e69463d 1031/*#define HAS_FD_SET / **/
06501368 1032
7e69463d
AC
1033/* Gconvert:
1034 * This preprocessor macro is defined to convert a floating point
1035 * number to a string without a trailing decimal point. This
1036 * emulates the behavior of sprintf("%g"), but is sometimes much more
1037 * efficient. If gconvert() is not available, but gcvt() drops the
1038 * trailing decimal point, then gcvt() is used. If all else fails,
1039 * a macro using sprintf("%g") is used. Arguments for the Gconvert
1040 * macro are: value, number of digits, whether trailing zeros should
1041 * be retained, and the output buffer.
1042 * The usual values are:
1043 * d_Gconvert='gconvert((x),(n),(t),(b))'
1044 * d_Gconvert='gcvt((x),(n),(b))'
1045 * d_Gconvert='sprintf((b),"%.*g",(n),(x))'
1046 * The last two assume trailing zeros should not be kept.
3ebb1980 1047 */
7e69463d 1048#define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
a838cfe5 1049
7e69463d
AC
1050/* HAS_GETPAGESIZE:
1051 * This symbol, if defined, indicates that the getpagesize system call
1052 * is available to get system page size, which is the granularity of
1053 * many memory management calls.
06501368 1054 */
7e69463d
AC
1055/*#define HAS_GETPAGESIZE / **/
1056
1057/* HAS_GNULIBC:
1058 * This symbol, if defined, indicates to the C program that
1059 * the GNU C library is being used. A better check is to use
1060 * the __GLIBC__ and __GLIBC_MINOR__ symbols supplied with glibc.
06501368 1061 */
7e69463d
AC
1062/*#define HAS_GNULIBC / **/
1063#if defined(HAS_GNULIBC) && !defined(_GNU_SOURCE)
1064# define _GNU_SOURCE
06501368
MB
1065#endif
1066
7e69463d
AC
1067/* HAS_ISASCII:
1068 * This manifest constant lets the C program know that isascii
1069 * is available.
535ceeb0 1070 */
7e69463d 1071/*#define HAS_ISASCII / **/
535ceeb0 1072
7e69463d
AC
1073/* HAS_LCHOWN:
1074 * This symbol, if defined, indicates that the lchown routine is
1075 * available to operate on a symbolic link (instead of following the
1076 * link).
10bc17b6 1077 */
7e69463d 1078/*#define HAS_LCHOWN / **/
1de32f2a 1079
7e69463d
AC
1080/* HAS_OPEN3:
1081 * This manifest constant lets the C program know that the three
1082 * argument form of open(2) is available.
1f922d87 1083 */
7e69463d 1084/*#define HAS_OPEN3 / **/
1f922d87 1085
7e69463d
AC
1086/* HAS_SAFE_BCOPY:
1087 * This symbol, if defined, indicates that the bcopy routine is available
1088 * to copy potentially overlapping memory blocks. Normally, you should
1089 * probably use memmove() or memcpy(). If neither is defined, roll your
1090 * own version.
06501368 1091 */
7e69463d 1092/*#define HAS_SAFE_BCOPY / **/
06501368 1093
7e69463d
AC
1094/* HAS_SAFE_MEMCPY:
1095 * This symbol, if defined, indicates that the memcpy routine is available
1096 * to copy potentially overlapping memory blocks. If you need to
1097 * copy overlapping memory blocks, you should check HAS_MEMMOVE and
1098 * use memmove() instead, if available.
58bf2e2e 1099 */
7e69463d 1100/*#define HAS_SAFE_MEMCPY / **/
1de32f2a 1101
7e69463d
AC
1102/* HAS_SANE_MEMCMP:
1103 * This symbol, if defined, indicates that the memcmp routine is available
1104 * and can be used to compare relative magnitudes of chars with their high
1105 * bits set. If it is not defined, roll your own version.
06501368 1106 */
7e69463d 1107/*#define HAS_SANE_MEMCMP / **/
06501368 1108
7e69463d
AC
1109/* HAS_SIGACTION:
1110 * This symbol, if defined, indicates that Vr4's sigaction() routine
1111 * is available.
9244ff22 1112 */
7e69463d 1113/*#define HAS_SIGACTION / **/
9244ff22 1114
7e69463d
AC
1115/* HAS_SIGINFO_SI_ERRNO:
1116 * This symbol, if defined, indicates that siginfo_t has the
1117 * si_errno member
06501368 1118 */
7e69463d
AC
1119/* HAS_SIGINFO_SI_PID:
1120 * This symbol, if defined, indicates that siginfo_t has the
1121 * si_pid member
1de32f2a 1122 */
7e69463d
AC
1123/* HAS_SIGINFO_SI_UID:
1124 * This symbol, if defined, indicates that siginfo_t has the
1125 * si_uid member
1de32f2a 1126 */
7e69463d
AC
1127/* HAS_SIGINFO_SI_ADDR:
1128 * This symbol, if defined, indicates that siginfo_t has the
1129 * si_addr member
06501368 1130 */
7e69463d
AC
1131/* HAS_SIGINFO_SI_STATUS:
1132 * This symbol, if defined, indicates that siginfo_t has the
1133 * si_status member
535ceeb0 1134 */
7e69463d
AC
1135/* HAS_SIGINFO_SI_BAND:
1136 * This symbol, if defined, indicates that siginfo_t has the
1137 * si_band member
535ceeb0 1138 */
7e69463d
AC
1139/* HAS_SIGINFO_SI_VALUE:
1140 * This symbol, if defined, indicates that siginfo_t has the
1141 * si_value member
06501368 1142 */
7e69463d
AC
1143/*#define HAS_SIGINFO_SI_ERRNO / **/
1144/*#define HAS_SIGINFO_SI_PID / **/
1145/*#define HAS_SIGINFO_SI_UID / **/
1146/*#define HAS_SIGINFO_SI_ADDR / **/
1147/*#define HAS_SIGINFO_SI_STATUS / **/
1148/*#define HAS_SIGINFO_SI_BAND / **/
1149/*#define HAS_SIGINFO_SI_VALUE / **/
06501368 1150
7e69463d
AC
1151/* HAS_SIGSETJMP:
1152 * This variable indicates to the C program that the sigsetjmp()
1153 * routine is available to save the calling process's registers
1154 * and stack environment for later use by siglongjmp(), and
1155 * to optionally save the process's signal mask. See
1156 * Sigjmp_buf, Sigsetjmp, and Siglongjmp.
535ceeb0 1157 */
7e69463d
AC
1158/* Sigjmp_buf:
1159 * This is the buffer type to be used with Sigsetjmp and Siglongjmp.
06501368 1160 */
7e69463d
AC
1161/* Sigsetjmp:
1162 * This macro is used in the same way as sigsetjmp(), but will invoke
1163 * traditional setjmp() if sigsetjmp isn't available.
1164 * See HAS_SIGSETJMP.
535ceeb0 1165 */
7e69463d
AC
1166/* Siglongjmp:
1167 * This macro is used in the same way as siglongjmp(), but will invoke
1168 * traditional longjmp() if siglongjmp isn't available.
1169 * See HAS_SIGSETJMP.
535ceeb0 1170 */
7e69463d
AC
1171/*#define HAS_SIGSETJMP / **/
1172#ifdef HAS_SIGSETJMP
1173#define Sigjmp_buf sigjmp_buf
1174#define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
1175#define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
1176#else
1177#define Sigjmp_buf jmp_buf
1178#define Sigsetjmp(buf,save_mask) setjmp((buf))
1179#define Siglongjmp(buf,retval) longjmp((buf),(retval))
1180#endif
06501368 1181
7e69463d
AC
1182/* HAS_STATIC_INLINE:
1183 * This symbol, if defined, indicates that the C compiler supports
1184 * C99-style static inline. That is, the function can't be called
1185 * from another translation unit.
1de32f2a 1186 */
7e69463d
AC
1187/* PERL_STATIC_INLINE:
1188 * This symbol gives the best-guess incantation to use for static
1189 * inline functions. If HAS_STATIC_INLINE is defined, this will
1190 * give C99-style inline. If HAS_STATIC_INLINE is not defined,
1191 * this will give a plain 'static'. It will always be defined
1192 * to something that gives static linkage.
1193 * Possibilities include
1194 * static inline (c99)
1195 * static __inline__ (gcc -ansi)
1196 * static __inline (MSVC)
1197 * static _inline (older MSVC)
1198 * static (c89 compilers)
1de32f2a 1199 */
7e69463d
AC
1200/*#define HAS_STATIC_INLINE / **/
1201#define PERL_STATIC_INLINE static /**/
58bf2e2e 1202
7e69463d
AC
1203/* USE_STDIO_PTR:
1204 * This symbol is defined if the _ptr and _cnt fields (or similar)
1205 * of the stdio FILE structure can be used to access the stdio buffer
1206 * for a file handle. If this is defined, then the FILE_ptr(fp)
1207 * and FILE_cnt(fp) macros will also be defined and should be used
1208 * to access these fields.
06501368 1209 */
7e69463d
AC
1210/* FILE_ptr:
1211 * This macro is used to access the _ptr field (or equivalent) of the
1212 * FILE structure pointed to by its argument. This macro will always be
1213 * defined if USE_STDIO_PTR is defined.
06501368 1214 */
7e69463d
AC
1215/* STDIO_PTR_LVALUE:
1216 * This symbol is defined if the FILE_ptr macro can be used as an
1217 * lvalue.
535ceeb0 1218 */
7e69463d
AC
1219/* FILE_cnt:
1220 * This macro is used to access the _cnt field (or equivalent) of the
1221 * FILE structure pointed to by its argument. This macro will always be
1222 * defined if USE_STDIO_PTR is defined.
1de32f2a 1223 */
7e69463d
AC
1224/* STDIO_CNT_LVALUE:
1225 * This symbol is defined if the FILE_cnt macro can be used as an
1226 * lvalue.
06501368 1227 */
7e69463d
AC
1228/* STDIO_PTR_LVAL_SETS_CNT:
1229 * This symbol is defined if using the FILE_ptr macro as an lvalue
1230 * to increase the pointer by n has the side effect of decreasing the
1231 * value of File_cnt(fp) by n.
1de32f2a 1232 */
7e69463d
AC
1233/* STDIO_PTR_LVAL_NOCHANGE_CNT:
1234 * This symbol is defined if using the FILE_ptr macro as an lvalue
1235 * to increase the pointer by n leaves File_cnt(fp) unchanged.
06501368 1236 */
7e69463d
AC
1237/*#define USE_STDIO_PTR / **/
1238#ifdef USE_STDIO_PTR
1239#define FILE_ptr(fp) ((fp)->_IO_read_ptr)
1240/*#define STDIO_PTR_LVALUE / **/
1241#define FILE_cnt(fp) ((fp)->_IO_read_end - (fp)->_IO_read_ptr)
1242/*#define STDIO_CNT_LVALUE / **/
1243/*#define STDIO_PTR_LVAL_SETS_CNT / **/
1244/*#define STDIO_PTR_LVAL_NOCHANGE_CNT / **/
1245#endif
06501368 1246
7e69463d
AC
1247/* USE_STDIO_BASE:
1248 * This symbol is defined if the _base field (or similar) of the
1249 * stdio FILE structure can be used to access the stdio buffer for
1250 * a file handle. If this is defined, then the FILE_base(fp) macro
1251 * will also be defined and should be used to access this field.
1252 * Also, the FILE_bufsiz(fp) macro will be defined and should be used
1253 * to determine the number of bytes in the buffer. USE_STDIO_BASE
1254 * will never be defined unless USE_STDIO_PTR is.
1de32f2a 1255 */
7e69463d
AC
1256/* FILE_base:
1257 * This macro is used to access the _base field (or equivalent) of the
1258 * FILE structure pointed to by its argument. This macro will always be
1259 * defined if USE_STDIO_BASE is defined.
1de32f2a 1260 */
7e69463d
AC
1261/* FILE_bufsiz:
1262 * This macro is used to determine the number of bytes in the I/O
1263 * buffer pointed to by _base field (or equivalent) of the FILE
1264 * structure pointed to its argument. This macro will always be defined
1265 * if USE_STDIO_BASE is defined.
1de32f2a 1266 */
7e69463d
AC
1267/*#define USE_STDIO_BASE / **/
1268#ifdef USE_STDIO_BASE
1269#define FILE_base(fp) ((fp)->_IO_read_base)
1270#define FILE_bufsiz(fp) ((fp)->_IO_read_end - (fp)->_IO_read_base)
1271#endif
1de32f2a 1272
7e69463d
AC
1273/* HAS_VPRINTF:
1274 * This symbol, if defined, indicates that the vprintf routine is available
1275 * to printf with a pointer to an argument list. If unavailable, you
1276 * may need to write your own, probably in terms of _doprnt().
1de32f2a 1277 */
7e69463d
AC
1278/* USE_CHAR_VSPRINTF:
1279 * This symbol is defined if this system has vsprintf() returning type
1280 * (char*). The trend seems to be to declare it as "int vsprintf()". It
1281 * is up to the package author to declare vsprintf correctly based on the
1282 * symbol.
06501368 1283 */
7e69463d
AC
1284#define HAS_VPRINTF /**/
1285/*#define USE_CHAR_VSPRINTF / **/
06501368 1286
7e69463d
AC
1287/* DOUBLESIZE:
1288 * This symbol contains the size of a double, so that the C preprocessor
1289 * can make decisions based on it.
06501368 1290 */
7e69463d 1291#define DOUBLESIZE 8 /**/
06501368 1292
7e69463d
AC
1293/* I_TIME:
1294 * This symbol, if defined, indicates to the C program that it should
1295 * include <time.h>.
06501368 1296 */
7e69463d
AC
1297/* I_SYS_TIME:
1298 * This symbol, if defined, indicates to the C program that it should
1299 * include <sys/time.h>.
06501368 1300 */
7e69463d
AC
1301/* I_SYS_TIME_KERNEL:
1302 * This symbol, if defined, indicates to the C program that it should
1303 * include <sys/time.h> with KERNEL defined.
06501368 1304 */
7e69463d
AC
1305/* HAS_TM_TM_ZONE:
1306 * This symbol, if defined, indicates to the C program that
1307 * the struct tm has a tm_zone field.
06501368 1308 */
7e69463d
AC
1309/* HAS_TM_TM_GMTOFF:
1310 * This symbol, if defined, indicates to the C program that
1311 * the struct tm has a tm_gmtoff field.
06501368 1312 */
7e69463d
AC
1313#define I_TIME /**/
1314/*#define I_SYS_TIME / **/
1315/*#define I_SYS_TIME_KERNEL / **/
1316/*#define HAS_TM_TM_ZONE / **/
1317/*#define HAS_TM_TM_GMTOFF / **/
06501368 1318
7e69463d
AC
1319/* VAL_O_NONBLOCK:
1320 * This symbol is to be used during open() or fcntl(F_SETFL) to turn on
1321 * non-blocking I/O for the file descriptor. Note that there is no way
1322 * back, i.e. you cannot turn it blocking again this way. If you wish to
1323 * alternatively switch between blocking and non-blocking, use the
1324 * ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
535ceeb0 1325 */
7e69463d
AC
1326/* VAL_EAGAIN:
1327 * This symbol holds the errno error code set by read() when no data was
1328 * present on the non-blocking file descriptor.
535ceeb0 1329 */
7e69463d
AC
1330/* RD_NODATA:
1331 * This symbol holds the return code from read() when no data is present
1332 * on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
1333 * not defined, then you can't distinguish between no data and EOF by
1334 * issuing a read(). You'll have to find another way to tell for sure!
535ceeb0 1335 */
7e69463d
AC
1336/* EOF_NONBLOCK:
1337 * This symbol, if defined, indicates to the C program that a read() on
1338 * a non-blocking file descriptor will return 0 on EOF, and not the value
1339 * held in RD_NODATA (-1 usually, in that case!).
535ceeb0 1340 */
7e69463d
AC
1341#define VAL_O_NONBLOCK O_NONBLOCK
1342#define VAL_EAGAIN EAGAIN
1343#define RD_NODATA -1
1344#undef EOF_NONBLOCK
535ceeb0 1345
7e69463d
AC
1346/* PTRSIZE:
1347 * This symbol contains the size of a pointer, so that the C preprocessor
1348 * can make decisions based on it. It will be sizeof(void *) if
1349 * the compiler supports (void *); otherwise it will be
1350 * sizeof(char *).
06501368 1351 */
7e69463d 1352#define PTRSIZE 4 /**/
06501368 1353
7e69463d
AC
1354/* Drand01:
1355 * This macro is to be used to generate uniformly distributed
1356 * random numbers over the range [0., 1.[. You may have to supply
1357 * an 'extern double drand48();' in your program since SunOS 4.1.3
1358 * doesn't provide you with anything relevant in its headers.
1359 * See HAS_DRAND48_PROTO.
1de32f2a 1360 */
7e69463d
AC
1361/* Rand_seed_t:
1362 * This symbol defines the type of the argument of the
1363 * random seed function.
1de32f2a 1364 */
7e69463d
AC
1365/* seedDrand01:
1366 * This symbol defines the macro to be used in seeding the
1367 * random number generator (see Drand01).
06501368 1368 */
7e69463d
AC
1369/* RANDBITS:
1370 * This symbol indicates how many bits are produced by the
1371 * function used to generate normalized random numbers.
1372 * Values include 15, 16, 31, and 48.
06501368 1373 */
7e69463d
AC
1374#define Drand01() Perl_drand48() /**/
1375#define Rand_seed_t U32 /**/
1376#define seedDrand01(x) Perl_drand48_init((Rand_seed_t)x) /**/
1377#define RANDBITS 48 /**/
06501368 1378
7e69463d
AC
1379/* SSize_t:
1380 * This symbol holds the type used by functions that return
1381 * a count of bytes or an error condition. It must be a signed type.
1382 * It is usually ssize_t, but may be long or int, etc.
1383 * It may be necessary to include <sys/types.h> or <unistd.h>
1384 * to get any typedef'ed information.
1385 * We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
06501368 1386 */
7e69463d 1387#define SSize_t int /* signed count of bytes */
06501368 1388
7e69463d
AC
1389/* EBCDIC:
1390 * This symbol, if defined, indicates that this system uses
1391 * EBCDIC encoding.
535ceeb0 1392 */
7e69463d 1393/*#define EBCDIC / **/
535ceeb0 1394
7e69463d
AC
1395/* ARCHLIB:
1396 * This variable, if defined, holds the name of the directory in
1397 * which the user wants to put architecture-dependent public
1398 * library files for perl5. It is most often a local directory
1399 * such as /usr/local/lib. Programs using this variable must be
1400 * prepared to deal with filename expansion. If ARCHLIB is the
1401 * same as PRIVLIB, it is not defined, since presumably the
1402 * program already searches PRIVLIB.
535ceeb0 1403 */
7e69463d
AC
1404/* ARCHLIB_EXP:
1405 * This symbol contains the ~name expanded version of ARCHLIB, to be used
1406 * in programs that are not prepared to deal with ~ expansion at run-time.
535ceeb0 1407 */
6612e40e
S
1408/*#define ARCHLIB "/usr/local/lib/perl5/5.27/unknown" / **/
1409/*#define ARCHLIB_EXP "/usr/local/lib/perl5/5.27/unknown" / **/
535ceeb0 1410
7e69463d
AC
1411/* BIN:
1412 * This symbol holds the path of the bin directory where the package will
1413 * be installed. Program must be prepared to deal with ~name substitution.
535ceeb0 1414 */
7e69463d
AC
1415/* BIN_EXP:
1416 * This symbol is the filename expanded version of the BIN symbol, for
1417 * programs that do not want to deal with that at run-time.
535ceeb0 1418 */
7e69463d
AC
1419/* PERL_RELOCATABLE_INC:
1420 * This symbol, if defined, indicates that we'd like to relocate entries
1421 * in @INC at run time based on the location of the perl binary.
1422 */
1423#define BIN "/usr/local/bin" /**/
1424#define BIN_EXP "/usr/local/bin" /**/
1425#define PERL_RELOCATABLE_INC "undef" /**/
535ceeb0 1426
7e69463d
AC
1427/* PERL_INC_VERSION_LIST:
1428 * This variable specifies the list of subdirectories in over
1429 * which perl.c:incpush() and lib/lib.pm will automatically
1430 * search when adding directories to @INC, in a format suitable
1431 * for a C initialization string. See the inc_version_list entry
1432 * in Porting/Glossary for more details.
06501368 1433 */
7e69463d 1434/*#define PERL_INC_VERSION_LIST NULL / **/
06501368 1435
7e69463d
AC
1436/* INSTALL_USR_BIN_PERL:
1437 * This symbol, if defined, indicates that Perl is to be installed
1438 * also as /usr/bin/perl.
1de32f2a 1439 */
7e69463d 1440/*#define INSTALL_USR_BIN_PERL / **/
1de32f2a 1441
7e69463d
AC
1442/* PERL_OTHERLIBDIRS:
1443 * This variable contains a colon-separated set of paths for the perl
1444 * binary to search for additional library files or modules.
1445 * These directories will be tacked to the end of @INC.
1446 * Perl will automatically search below each path for version-
1447 * and architecture-specific directories. See PERL_INC_VERSION_LIST
1448 * for more details.
06501368 1449 */
7e69463d 1450/*#define PERL_OTHERLIBDIRS " " / **/
06501368 1451
7e69463d
AC
1452/* PRIVLIB:
1453 * This symbol contains the name of the private library for this package.
1454 * The library is private in the sense that it needn't be in anyone's
1455 * execution path, but it should be accessible by the world. The program
1456 * should be prepared to do ~ expansion.
06501368 1457 */
7e69463d
AC
1458/* PRIVLIB_EXP:
1459 * This symbol contains the ~name expanded version of PRIVLIB, to be used
1460 * in programs that are not prepared to deal with ~ expansion at run-time.
06501368 1461 */
6612e40e
S
1462#define PRIVLIB "/usr/local/lib/perl5/5.27" /**/
1463#define PRIVLIB_EXP "/usr/local/lib/perl5/5.27" /**/
06501368 1464
7e69463d
AC
1465/* SITEARCH:
1466 * This symbol contains the name of the private library for this package.
1467 * The library is private in the sense that it needn't be in anyone's
1468 * execution path, but it should be accessible by the world. The program
1469 * should be prepared to do ~ expansion.
1470 * The standard distribution will put nothing in this directory.
1471 * After perl has been installed, users may install their own local
1472 * architecture-dependent modules in this directory with
1473 * MakeMaker Makefile.PL
1474 * or equivalent. See INSTALL for details.
06501368 1475 */
7e69463d
AC
1476/* SITEARCH_EXP:
1477 * This symbol contains the ~name expanded version of SITEARCH, to be used
1478 * in programs that are not prepared to deal with ~ expansion at run-time.
06501368 1479 */
6612e40e
S
1480/*#define SITEARCH "/usr/local/lib/perl5/5.27/unknown" / **/
1481/*#define SITEARCH_EXP "/usr/local/lib/perl5/5.27/unknown" / **/
06501368 1482
7e69463d
AC
1483/* SITELIB:
1484 * This symbol contains the name of the private library for this package.
1485 * The library is private in the sense that it needn't be in anyone's
1486 * execution path, but it should be accessible by the world. The program
1487 * should be prepared to do ~ expansion.
1488 * The standard distribution will put nothing in this directory.
1489 * After perl has been installed, users may install their own local
1490 * architecture-independent modules in this directory with
1491 * MakeMaker Makefile.PL
1492 * or equivalent. See INSTALL for details.
535ceeb0 1493 */
7e69463d
AC
1494/* SITELIB_EXP:
1495 * This symbol contains the ~name expanded version of SITELIB, to be used
1496 * in programs that are not prepared to deal with ~ expansion at run-time.
535ceeb0 1497 */
7e69463d
AC
1498/* SITELIB_STEM:
1499 * This define is SITELIB_EXP with any trailing version-specific component
1500 * removed. The elements in inc_version_list (inc_version_list.U) can
1501 * be tacked onto this variable to generate a list of directories to search.
535ceeb0 1502 */
6612e40e
S
1503#define SITELIB "/usr/local/lib/perl5/5.27" /**/
1504#define SITELIB_EXP "/usr/local/lib/perl5/5.27" /**/
7e69463d 1505#define SITELIB_STEM "/usr/local/lib/perl5" /**/
535ceeb0 1506
7e69463d
AC
1507/* PERL_VENDORARCH:
1508 * If defined, this symbol contains the name of a private library.
1509 * The library is private in the sense that it needn't be in anyone's
1510 * execution path, but it should be accessible by the world.
1511 * It may have a ~ on the front.
1512 * The standard distribution will put nothing in this directory.
1513 * Vendors who distribute perl may wish to place their own
1514 * architecture-dependent modules and extensions in this directory with
1515 * MakeMaker Makefile.PL INSTALLDIRS=vendor
1516 * or equivalent. See INSTALL for details.
535ceeb0 1517 */
7e69463d
AC
1518/* PERL_VENDORARCH_EXP:
1519 * This symbol contains the ~name expanded version of PERL_VENDORARCH, to be used
1520 * in programs that are not prepared to deal with ~ expansion at run-time.
535ceeb0 1521 */
7e69463d
AC
1522/*#define PERL_VENDORARCH "" / **/
1523/*#define PERL_VENDORARCH_EXP "" / **/
535ceeb0 1524
7e69463d
AC
1525/* PERL_VENDORLIB_EXP:
1526 * This symbol contains the ~name expanded version of VENDORLIB, to be used
1527 * in programs that are not prepared to deal with ~ expansion at run-time.
06501368 1528 */
7e69463d
AC
1529/* PERL_VENDORLIB_STEM:
1530 * This define is PERL_VENDORLIB_EXP with any trailing version-specific component
1531 * removed. The elements in inc_version_list (inc_version_list.U) can
1532 * be tacked onto this variable to generate a list of directories to search.
06501368 1533 */
7e69463d
AC
1534/*#define PERL_VENDORLIB_EXP "" / **/
1535/*#define PERL_VENDORLIB_STEM "" / **/
06501368 1536
7e69463d
AC
1537/* OSNAME:
1538 * This symbol contains the name of the operating system, as determined
1539 * by Configure. You shouldn't rely on it too much; the specific
1540 * feature tests from Configure are generally more reliable.
58bf2e2e 1541 */
7e69463d
AC
1542/* OSVERS:
1543 * This symbol contains the version of the operating system, as determined
1544 * by Configure. You shouldn't rely on it too much; the specific
1545 * feature tests from Configure are generally more reliable.
58bf2e2e 1546 */
7e69463d
AC
1547#define OSNAME "unknown" /**/
1548#define OSVERS "unknown" /**/
58bf2e2e 1549
7e69463d
AC
1550/* CAT2:
1551 * This macro concatenates 2 tokens together.
58bf2e2e 1552 */
7e69463d
AC
1553/* STRINGIFY:
1554 * This macro surrounds its token with double quotes.
58bf2e2e 1555 */
7e69463d
AC
1556#if 42 == 1
1557#define CAT2(a,b) a/**/b
1558#define STRINGIFY(a) "a"
1559#endif
1560#if 42 == 42
1561#define PeRl_CaTiFy(a, b) a ## b
1562#define PeRl_StGiFy(a) #a
1563#define CAT2(a,b) PeRl_CaTiFy(a,b)
1564#define StGiFy(a) PeRl_StGiFy(a)
1565#define STRINGIFY(a) PeRl_StGiFy(a)
1566#endif
1567#if 42 != 1 && 42 != 42
1568#include "Bletch: How does this C preprocessor concatenate tokens?"
1569#endif
58bf2e2e 1570
7e69463d
AC
1571/* CPPSTDIN:
1572 * This symbol contains the first part of the string which will invoke
1573 * the C preprocessor on the standard input and produce to standard
1574 * output. Typical value of "cc -E" or "/lib/cpp", but it can also
1575 * call a wrapper. See CPPRUN.
58bf2e2e 1576 */
7e69463d
AC
1577/* CPPMINUS:
1578 * This symbol contains the second part of the string which will invoke
1579 * the C preprocessor on the standard input and produce to standard
1580 * output. This symbol will have the value "-" if CPPSTDIN needs a minus
1581 * to specify standard input, otherwise the value is "".
06501368 1582 */
7e69463d
AC
1583/* CPPRUN:
1584 * This symbol contains the string which will invoke a C preprocessor on
1585 * the standard input and produce to standard output. It needs to end
1586 * with CPPLAST, after all other preprocessor flags have been specified.
1587 * The main difference with CPPSTDIN is that this program will never be a
1588 * pointer to a shell wrapper, i.e. it will be empty if no preprocessor is
1589 * available directly to the user. Note that it may well be different from
1590 * the preprocessor used to compile the C program.
535ceeb0 1591 */
7e69463d
AC
1592/* CPPLAST:
1593 * This symbol is intended to be used along with CPPRUN in the same manner
1594 * symbol CPPMINUS is used with CPPSTDIN. It contains either "-" or "".
535ceeb0 1595 */
7e69463d
AC
1596#define CPPSTDIN "cc -E"
1597#define CPPMINUS "-"
1598#define CPPRUN "cc -E"
1599#define CPPLAST "-"
535ceeb0 1600
7e69463d
AC
1601/* HAS_ACCESS:
1602 * This manifest constant lets the C program know that the access()
1603 * system call is available to check for accessibility using real UID/GID.
1604 * (always present on UNIX.)
535ceeb0 1605 */
7e69463d 1606/*#define HAS_ACCESS / **/
535ceeb0 1607
7e69463d
AC
1608/* HASATTRIBUTE_FORMAT:
1609 * Can we handle GCC attribute for checking printf-style formats
535ceeb0 1610 */
7e69463d
AC
1611/* PRINTF_FORMAT_NULL_OK:
1612 * Allows __printf__ format to be null when checking printf-style
535ceeb0 1613 */
7e69463d
AC
1614/* HASATTRIBUTE_MALLOC:
1615 * Can we handle GCC attribute for malloc-style functions.
06501368 1616 */
7e69463d
AC
1617/* HASATTRIBUTE_NONNULL:
1618 * Can we handle GCC attribute for nonnull function parms.
58bf2e2e 1619 */
7e69463d
AC
1620/* HASATTRIBUTE_NORETURN:
1621 * Can we handle GCC attribute for functions that do not return
58bf2e2e 1622 */
7e69463d
AC
1623/* HASATTRIBUTE_PURE:
1624 * Can we handle GCC attribute for pure functions
06501368 1625 */
7e69463d
AC
1626/* HASATTRIBUTE_UNUSED:
1627 * Can we handle GCC attribute for unused variables and arguments
06501368 1628 */
7e69463d
AC
1629/* HASATTRIBUTE_DEPRECATED:
1630 * Can we handle GCC attribute for marking deprecated APIs
58bf2e2e 1631 */
7e69463d
AC
1632/* HASATTRIBUTE_WARN_UNUSED_RESULT:
1633 * Can we handle GCC attribute for warning on unused results
06501368 1634 */
7e69463d
AC
1635/*#define HASATTRIBUTE_DEPRECATED / **/
1636/*#define HASATTRIBUTE_FORMAT / **/
1637/*#define PRINTF_FORMAT_NULL_OK / **/
1638/*#define HASATTRIBUTE_NORETURN / **/
1639/*#define HASATTRIBUTE_MALLOC / **/
1640/*#define HASATTRIBUTE_NONNULL / **/
1641/*#define HASATTRIBUTE_PURE / **/
1642/*#define HASATTRIBUTE_UNUSED / **/
1643/*#define HASATTRIBUTE_WARN_UNUSED_RESULT / **/
06501368 1644
7e69463d
AC
1645/* HAS_BACKTRACE:
1646 * This symbol, if defined, indicates that the backtrace() routine is
1647 * available to get a stack trace. The <execinfo.h> header must be
1648 * included to use this routine.
1de32f2a 1649 */
7e69463d 1650/*#define HAS_BACKTRACE / **/
12cf8ac4 1651
7e69463d
AC
1652/* HASCONST:
1653 * This symbol, if defined, indicates that this C compiler knows about
1654 * the const type. There is no need to actually test for that symbol
1655 * within your programs. The mere use of the "const" keyword will
1656 * trigger the necessary tests.
1de32f2a 1657 */
7e69463d
AC
1658/*#define HASCONST / **/
1659#ifndef HASCONST
1660#define const
1661#endif
1de32f2a 1662
7e69463d
AC
1663/* HAS_CSH:
1664 * This symbol, if defined, indicates that the C-shell exists.
535ceeb0 1665 */
7e69463d
AC
1666/* CSH:
1667 * This symbol, if defined, contains the full pathname of csh.
58bf2e2e 1668 */
7e69463d
AC
1669/*#define HAS_CSH / **/
1670#ifdef HAS_CSH
1671#define CSH "" /**/
9244ff22 1672#endif
58bf2e2e 1673
7e69463d
AC
1674/* HAS_DLADDR:
1675 * This symbol, if defined, indicates that the dladdr() routine is
1676 * available to query dynamic linker information for an address.
1677 * The <dlfcn.h> header must be included to use this routine.
58bf2e2e 1678 */
7e69463d 1679/*#define HAS_DLADDR / **/
58bf2e2e 1680
7e69463d
AC
1681/* SETUID_SCRIPTS_ARE_SECURE_NOW:
1682 * This symbol, if defined, indicates that the bug that prevents
1683 * setuid scripts from being secure is not present in this kernel.
1de32f2a 1684 */
7e69463d
AC
1685/* DOSUID:
1686 * This symbol, if defined, indicates that the C program should
1687 * check the script that it is executing for setuid/setgid bits, and
1688 * attempt to emulate setuid/setgid on systems that have disabled
1689 * setuid #! scripts because the kernel can't do it securely.
1690 * It is up to the package designer to make sure that this emulation
1691 * is done securely. Among other things, it should do an fstat on
1692 * the script it just opened to make sure it really is a setuid/setgid
1693 * script, it should make sure the arguments passed correspond exactly
1694 * to the argument on the #! line, and it should not trust any
1695 * subprocesses to which it must pass the filename rather than the
1696 * file descriptor of the script to be executed.
db8b8c75 1697 */
7e69463d
AC
1698/*#define SETUID_SCRIPTS_ARE_SECURE_NOW / **/
1699/*#define DOSUID / **/
1700
1701/* HAS_ENDGRENT:
1702 * This symbol, if defined, indicates that the getgrent routine is
1703 * available for finalizing sequential access of the group database.
dc91db6c 1704 */
7e69463d 1705/*#define HAS_ENDGRENT / **/
1de32f2a 1706
7e69463d
AC
1707/* HAS_ENDHOSTENT:
1708 * This symbol, if defined, indicates that the endhostent() routine is
1709 * available to close whatever was being used for host queries.
535ceeb0 1710 */
7e69463d
AC
1711/*#define HAS_ENDHOSTENT / **/
1712
1713/* HAS_ENDNETENT:
1714 * This symbol, if defined, indicates that the endnetent() routine is
1715 * available to close whatever was being used for network queries.
06501368 1716 */
7e69463d 1717/*#define HAS_ENDNETENT / **/
535ceeb0 1718
7e69463d
AC
1719/* HAS_ENDPROTOENT:
1720 * This symbol, if defined, indicates that the endprotoent() routine is
1721 * available to close whatever was being used for protocol queries.
1de32f2a 1722 */
7e69463d 1723/*#define HAS_ENDPROTOENT / **/
06501368 1724
7e69463d
AC
1725/* HAS_ENDPWENT:
1726 * This symbol, if defined, indicates that the getgrent routine is
1727 * available for finalizing sequential access of the passwd database.
58bf2e2e 1728 */
7e69463d 1729/*#define HAS_ENDPWENT / **/
06501368 1730
7e69463d
AC
1731/* HAS_ENDSERVENT:
1732 * This symbol, if defined, indicates that the endservent() routine is
1733 * available to close whatever was being used for service queries.
06501368 1734 */
7e69463d 1735/*#define HAS_ENDSERVENT / **/
06501368 1736
7e69463d
AC
1737/* FLEXFILENAMES:
1738 * This symbol, if defined, indicates that the system supports filenames
1739 * longer than 14 characters.
06501368 1740 */
7e69463d
AC
1741/*#define FLEXFILENAMES / **/
1742
1743/* HAS_GETGRENT:
1744 * This symbol, if defined, indicates that the getgrent routine is
1745 * available for sequential access of the group database.
06501368 1746 */
7e69463d 1747/*#define HAS_GETGRENT / **/
06501368 1748
7e69463d
AC
1749/* HAS_GETHOSTBYADDR:
1750 * This symbol, if defined, indicates that the gethostbyaddr() routine is
1751 * available to look up hosts by their IP addresses.
06501368 1752 */
7e69463d 1753/*#define HAS_GETHOSTBYADDR / **/
06501368 1754
7e69463d
AC
1755/* HAS_GETHOSTBYNAME:
1756 * This symbol, if defined, indicates that the gethostbyname() routine is
1757 * available to look up host names in some data base or other.
06501368 1758 */
7e69463d 1759/*#define HAS_GETHOSTBYNAME / **/
06501368 1760
7e69463d
AC
1761/* HAS_GETHOSTENT:
1762 * This symbol, if defined, indicates that the gethostent() routine is
1763 * available to look up host names in some data base or another.
58bf2e2e 1764 */
7e69463d 1765/*#define HAS_GETHOSTENT / **/
1de32f2a 1766
7e69463d
AC
1767/* HAS_GETHOSTNAME:
1768 * This symbol, if defined, indicates that the C program may use the
1769 * gethostname() routine to derive the host name. See also HAS_UNAME
1770 * and PHOSTNAME.
1de32f2a 1771 */
7e69463d
AC
1772/* HAS_UNAME:
1773 * This symbol, if defined, indicates that the C program may use the
1774 * uname() routine to derive the host name. See also HAS_GETHOSTNAME
1775 * and PHOSTNAME.
58bf2e2e 1776 */
7e69463d
AC
1777/* PHOSTNAME:
1778 * This symbol, if defined, indicates the command to feed to the
1779 * popen() routine to derive the host name. See also HAS_GETHOSTNAME
1780 * and HAS_UNAME. Note that the command uses a fully qualified path,
1781 * so that it is safe even if used by a process with super-user
1782 * privileges.
535ceeb0 1783 */
7e69463d
AC
1784/* HAS_PHOSTNAME:
1785 * This symbol, if defined, indicates that the C program may use the
1786 * contents of PHOSTNAME as a command to feed to the popen() routine
1787 * to derive the host name.
535ceeb0 1788 */
7e69463d
AC
1789/*#define HAS_GETHOSTNAME / **/
1790/*#define HAS_UNAME / **/
1791/*#define HAS_PHOSTNAME / **/
1792#ifdef HAS_PHOSTNAME
1793#define PHOSTNAME "/bin/hostname" /* How to get the host name */
1794#endif
535ceeb0 1795
7e69463d
AC
1796/* HAS_GETNETBYADDR:
1797 * This symbol, if defined, indicates that the getnetbyaddr() routine is
1798 * available to look up networks by their IP addresses.
1de32f2a 1799 */
7e69463d 1800/*#define HAS_GETNETBYADDR / **/
1de32f2a 1801
7e69463d
AC
1802/* HAS_GETNETBYNAME:
1803 * This symbol, if defined, indicates that the getnetbyname() routine is
1804 * available to look up networks by their names.
58bf2e2e 1805 */
7e69463d 1806/*#define HAS_GETNETBYNAME / **/
58bf2e2e 1807
7e69463d
AC
1808/* HAS_GETNETENT:
1809 * This symbol, if defined, indicates that the getnetent() routine is
1810 * available to look up network names in some data base or another.
58bf2e2e 1811 */
7e69463d 1812/*#define HAS_GETNETENT / **/
12cf8ac4 1813
7e69463d
AC
1814/* HAS_GETPROTOENT:
1815 * This symbol, if defined, indicates that the getprotoent() routine is
1816 * available to look up protocols in some data base or another.
12cf8ac4 1817 */
7e69463d 1818/*#define HAS_GETPROTOENT / **/
58bf2e2e 1819
7e69463d
AC
1820/* HAS_GETPGRP:
1821 * This symbol, if defined, indicates that the getpgrp routine is
1822 * available to get the current process group.
06501368 1823 */
7e69463d
AC
1824/* USE_BSD_GETPGRP:
1825 * This symbol, if defined, indicates that getpgrp needs one
1826 * arguments whereas USG one needs none.
06501368 1827 */
7e69463d
AC
1828/*#define HAS_GETPGRP / **/
1829/*#define USE_BSD_GETPGRP / **/
06501368 1830
7e69463d
AC
1831/* HAS_GETPROTOBYNAME:
1832 * This symbol, if defined, indicates that the getprotobyname()
1833 * routine is available to look up protocols by their name.
58bf2e2e 1834 */
7e69463d
AC
1835/* HAS_GETPROTOBYNUMBER:
1836 * This symbol, if defined, indicates that the getprotobynumber()
1837 * routine is available to look up protocols by their number.
58bf2e2e 1838 */
7e69463d
AC
1839/*#define HAS_GETPROTOBYNAME / **/
1840/*#define HAS_GETPROTOBYNUMBER / **/
58bf2e2e 1841
7e69463d
AC
1842/* HAS_GETPWENT:
1843 * This symbol, if defined, indicates that the getpwent routine is
1844 * available for sequential access of the passwd database.
1845 * If this is not available, the older getpw() function may be available.
06501368 1846 */
7e69463d 1847/*#define HAS_GETPWENT / **/
06501368 1848
7e69463d
AC
1849/* HAS_GETSERVENT:
1850 * This symbol, if defined, indicates that the getservent() routine is
1851 * available to look up network services in some data base or another.
535ceeb0 1852 */
7e69463d 1853/*#define HAS_GETSERVENT / **/
535ceeb0 1854
7e69463d
AC
1855/* HAS_GETSERVBYNAME:
1856 * This symbol, if defined, indicates that the getservbyname()
1857 * routine is available to look up services by their name.
535ceeb0 1858 */
7e69463d
AC
1859/* HAS_GETSERVBYPORT:
1860 * This symbol, if defined, indicates that the getservbyport()
1861 * routine is available to look up services by their port.
535ceeb0 1862 */
7e69463d
AC
1863/*#define HAS_GETSERVBYNAME / **/
1864/*#define HAS_GETSERVBYPORT / **/
535ceeb0 1865
7e69463d
AC
1866/* HAS_HTONL:
1867 * This symbol, if defined, indicates that the htonl() routine (and
1868 * friends htons() ntohl() ntohs()) are available to do network
1869 * order byte swapping.
06501368 1870 */
7e69463d
AC
1871/* HAS_HTONS:
1872 * This symbol, if defined, indicates that the htons() routine (and
1873 * friends htonl() ntohl() ntohs()) are available to do network
1874 * order byte swapping.
535ceeb0 1875 */
7e69463d
AC
1876/* HAS_NTOHL:
1877 * This symbol, if defined, indicates that the ntohl() routine (and
1878 * friends htonl() htons() ntohs()) are available to do network
1879 * order byte swapping.
535ceeb0 1880 */
7e69463d
AC
1881/* HAS_NTOHS:
1882 * This symbol, if defined, indicates that the ntohs() routine (and
1883 * friends htonl() htons() ntohl()) are available to do network
1884 * order byte swapping.
06501368 1885 */
7e69463d
AC
1886/*#define HAS_HTONL / **/
1887/*#define HAS_HTONS / **/
1888/*#define HAS_NTOHL / **/
1889/*#define HAS_NTOHS / **/
06501368 1890
7e69463d
AC
1891/* HAS_LONG_DOUBLE:
1892 * This symbol will be defined if the C compiler supports long
1893 * doubles.
06501368 1894 */
7e69463d
AC
1895/* LONG_DOUBLESIZE:
1896 * This symbol contains the size of a long double, so that the
1897 * C preprocessor can make decisions based on it. It is only
1898 * defined if the system supports long doubles. Note that this
1899 * is sizeof(long double), which may include unused bytes.
06501368 1900 */
7e69463d
AC
1901/* HAS_LDEXPL:
1902 * This symbol, if defined, indicates that the ldexpl routine is
1903 * available to shift a long double floating-point number
1904 * by an integral power of 2.
1905 */
1906/* LONG_DOUBLEKIND:
1907 * LONG_DOUBLEKIND will be one of
1908 * LONG_DOUBLE_IS_DOUBLE
1909 * LONG_DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
1910 * LONG_DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN
1911 * LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN
1912 * LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN
1913 * LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_LE
1914 * LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE
1915 * LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_BE
1916 * LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_LE
884c85de 1917 * LONG_DOUBLE_IS_VAX_H_FLOAT
7e69463d
AC
1918 * LONG_DOUBLE_IS_UNKNOWN_FORMAT
1919 * It is only defined if the system supports long doubles.
1920 */
21196d16 1921/* LONG_DOUBLE_STYLE_IEEE:
4cb05021
JH
1922 * This symbol, if defined, indicates that the long double
1923 * is any of the IEEE 754 style long doubles:
1924 * LONG_DOUBLE_STYLE_IEEE_STD, LONG_DOUBLE_STYLE_IEEE_EXTENDED,
1925 * LONG_DOUBLE_STYLE_IEEE_DOUBLEDOUBLE.
1926 */
21196d16 1927/* LONG_DOUBLE_STYLE_IEEE_DOUBLEDOUBLE:
4cb05021
JH
1928 * This symbol, if defined, indicates that the long double is
1929 * the 128-bit double-double.
1930 */
21196d16 1931/* LONG_DOUBLE_STYLE_IEEE_EXTENDED:
4cb05021
JH
1932 * This symbol, if defined, indicates that the long double is
1933 * the 80-bit IEEE 754. Note that despite the 'extended' this
1934 * is less than the 'std', since this is an extension of
1935 * the double precision.
1936 */
21196d16 1937/* LONG_DOUBLE_STYLE_IEEE_STD:
4cb05021
JH
1938 * This symbol, if defined, indicates that the long double is
1939 * the 128-bit IEEE 754.
1940 */
21196d16 1941/* LONG_DOUBLE_STYLE_VAX:
4cb05021
JH
1942 * This symbol, if defined, indicates that the long double is
1943 * the 128-bit VAX format H.
1944 */
7e69463d
AC
1945/*#define HAS_LDEXPL / **/
1946/*#define HAS_LONG_DOUBLE / **/
1947#ifdef HAS_LONG_DOUBLE
1948#define LONG_DOUBLESIZE 8 /**/
1949#define LONG_DOUBLEKIND 0 /**/
1950#define LONG_DOUBLE_IS_DOUBLE 0
1951#define LONG_DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN 1
1952#define LONG_DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN 2
1953#define LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN 3
1954#define LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN 4
1955#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_LE 5
1956#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE 6
1957#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_BE 7
1958#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_LE 8
86ea01eb 1959#define LONG_DOUBLE_IS_VAX_H_FLOAT 9
7e69463d
AC
1960#define LONG_DOUBLE_IS_UNKNOWN_FORMAT -1
1961#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LITTLE_ENDIAN LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_LE /* back-compat */
1962#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BIG_ENDIAN LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE /* back-compat */
4cb05021
JH
1963#undef LONG_DOUBLE_STYLE_IEEE
1964#undef LONG_DOUBLE_STYLE_IEEE_DOUBLEDOUBLE
1965#undef LONG_DOUBLE_STYLE_IEEE_EXTENDED
1966#undef LONG_DOUBLE_STYLE_IEEE_STD
1967#undef LONG_DOUBLE_STYLE_VAX
7e69463d 1968#endif
06501368 1969
7e69463d
AC
1970/* HAS_LONG_LONG:
1971 * This symbol will be defined if the C compiler supports long long.
535ceeb0 1972 */
7e69463d
AC
1973/* LONGLONGSIZE:
1974 * This symbol contains the size of a long long, so that the
1975 * C preprocessor can make decisions based on it. It is only
1976 * defined if the system supports long long.
535ceeb0 1977 */
7e69463d
AC
1978/*#define HAS_LONG_LONG / **/
1979#ifdef HAS_LONG_LONG
1980#define LONGLONGSIZE 8 /**/
1981#endif
1982
1983/* HAS_MEMCHR:
1984 * This symbol, if defined, indicates that the memchr routine is available
1985 * to locate characters within a C string.
1986 */
1987#define HAS_MEMCHR /**/
1988
1989/* HAS_MKSTEMP:
1990 * This symbol, if defined, indicates that the mkstemp routine is
1991 * available to exclusively create and open a uniquely named
1992 * temporary file.
1993 */
1994/*#define HAS_MKSTEMP / **/
1995
1996/* HAS_MMAP:
1997 * This symbol, if defined, indicates that the mmap system call is
1998 * available to map a file into memory.
1999 */
2000/* Mmap_t:
2001 * This symbol holds the return type of the mmap() system call
2002 * (and simultaneously the type of the first argument).
2003 * Usually set to 'void *' or 'caddr_t'.
2004 */
2005/*#define HAS_MMAP / **/
2006#define Mmap_t void * /**/
2007
2008/* HAS_MSG:
2009 * This symbol, if defined, indicates that the entire msg*(2) library is
2010 * supported (IPC mechanism based on message queues).
2011 */
2012/*#define HAS_MSG / **/
2013
2014/* HAS_SEM:
2015 * This symbol, if defined, indicates that the entire sem*(2) library is
2016 * supported.
2017 */
2018/*#define HAS_SEM / **/
2019
2020/* HAS_SETGRENT:
2021 * This symbol, if defined, indicates that the setgrent routine is
2022 * available for initializing sequential access of the group database.
2023 */
2024/*#define HAS_SETGRENT / **/
2025
2026/* HAS_SETHOSTENT:
2027 * This symbol, if defined, indicates that the sethostent() routine is
2028 * available.
2029 */
2030/*#define HAS_SETHOSTENT / **/
2031
2032/* HAS_SETNETENT:
2033 * This symbol, if defined, indicates that the setnetent() routine is
2034 * available.
2035 */
2036/*#define HAS_SETNETENT / **/
2037
2038/* HAS_SETPROTOENT:
2039 * This symbol, if defined, indicates that the setprotoent() routine is
2040 * available.
2041 */
2042/*#define HAS_SETPROTOENT / **/
2043
2044/* HAS_SETPGRP:
2045 * This symbol, if defined, indicates that the setpgrp routine is
2046 * available to set the current process group.
2047 */
2048/* USE_BSD_SETPGRP:
2049 * This symbol, if defined, indicates that setpgrp needs two
2050 * arguments whereas USG one needs none. See also HAS_SETPGID
2051 * for a POSIX interface.
2052 */
2053/*#define HAS_SETPGRP / **/
2054/*#define USE_BSD_SETPGRP / **/
535ceeb0 2055
06501368
MB
2056/* HAS_SETPWENT:
2057 * This symbol, if defined, indicates that the setpwent routine is
2058 * available for initializing sequential access of the passwd database.
2059 */
2060/*#define HAS_SETPWENT / **/
2061
06501368
MB
2062/* HAS_SETSERVENT:
2063 * This symbol, if defined, indicates that the setservent() routine is
2064 * available.
2065 */
2066/*#define HAS_SETSERVENT / **/
2067
06501368
MB
2068/* HAS_SETVBUF:
2069 * This symbol, if defined, indicates that the setvbuf routine is
2070 * available to change buffering on an open stdio stream.
2071 * to a line-buffered mode.
2072 */
2073/*#define HAS_SETVBUF / **/
2074
2075/* HAS_SHM:
2076 * This symbol, if defined, indicates that the entire shm*(2) library is
2077 * supported.
2078 */
2079/*#define HAS_SHM / **/
2080
2081/* Shmat_t:
2082 * This symbol holds the return type of the shmat() system call.
2083 * Usually set to 'void *' or 'char *'.
2084 */
2085/* HAS_SHMAT_PROTOTYPE:
2086 * This symbol, if defined, indicates that the sys/shm.h includes
2087 * a prototype for shmat(). Otherwise, it is up to the program to
2088 * guess one. Shmat_t shmat(int, Shmat_t, int) is a good guess,
2089 * but not always right so it should be emitted by the program only
2090 * when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
2091 */
2092#define Shmat_t void * /**/
2093/*#define HAS_SHMAT_PROTOTYPE / **/
2094
06501368
MB
2095/* HAS_SOCKET:
2096 * This symbol, if defined, indicates that the BSD socket interface is
2097 * supported.
2098 */
2099/* HAS_SOCKETPAIR:
2100 * This symbol, if defined, indicates that the BSD socketpair() call is
2101 * supported.
2102 */
06501368
MB
2103/* HAS_SOCKADDR_SA_LEN:
2104 * This symbol, if defined, indicates that the struct sockaddr
2105 * structure has a member called sa_len, indicating the length of
2106 * the structure.
2107 */
18126d98
MB
2108/* HAS_SOCKADDR_IN6:
2109 * This symbol, if defined, indicates the availability of
2110 * struct sockaddr_in6;
2111 */
06501368
MB
2112/* HAS_SIN6_SCOPE_ID:
2113 * This symbol, if defined, indicates that the struct sockaddr_in6
2114 * structure has a member called sin6_scope_id.
2115 */
122b9bf4
MB
2116/* HAS_IP_MREQ:
2117 * This symbol, if defined, indicates the availability of
2118 * struct ip_mreq;
2119 */
3e06601f
MB
2120/* HAS_IP_MREQ_SOURCE:
2121 * This symbol, if defined, indicates the availability of
2122 * struct ip_mreq_source;
2123 */
18126d98
MB
2124/* HAS_IPV6_MREQ:
2125 * This symbol, if defined, indicates the availability of
2126 * struct ipv6_mreq;
2127 */
3e06601f
MB
2128/* HAS_IPV6_MREQ_SOURCE:
2129 * This symbol, if defined, indicates the availability of
2130 * struct ipv6_mreq_source;
2131 */
06501368
MB
2132/*#define HAS_SOCKET / **/
2133/*#define HAS_SOCKETPAIR / **/
2134/*#define HAS_SOCKADDR_SA_LEN / **/
18126d98 2135/*#define HAS_SOCKADDR_IN6 / **/
06501368 2136/*#define HAS_SIN6_SCOPE_ID / **/
122b9bf4 2137/*#define HAS_IP_MREQ / **/
3e06601f 2138/*#define HAS_IP_MREQ_SOURCE / **/
18126d98 2139/*#define HAS_IPV6_MREQ / **/
3e06601f 2140/*#define HAS_IPV6_MREQ_SOURCE / **/
06501368 2141
06501368
MB
2142/* USE_STAT_BLOCKS:
2143 * This symbol is defined if this system has a stat structure declaring
2144 * st_blksize and st_blocks.
2145 */
2146#ifndef USE_STAT_BLOCKS
2147/*#define USE_STAT_BLOCKS / **/
2148#endif
2149
06501368
MB
2150/* HAS_STRERROR:
2151 * This symbol, if defined, indicates that the strerror routine is
2152 * available to translate error numbers to strings. See the writeup
2153 * of Strerror() in this file before you try to define your own.
2154 */
2155/* HAS_SYS_ERRLIST:
2156 * This symbol, if defined, indicates that the sys_errlist array is
2157 * available to translate error numbers to strings. The extern int
2158 * sys_nerr gives the size of that table.
2159 */
2160/* Strerror:
2161 * This preprocessor symbol is defined as a macro if strerror() is
2162 * not available to translate error numbers to strings but sys_errlist[]
2163 * array is there.
2164 */
2165/*#define HAS_STRERROR / **/
2166/*#define HAS_SYS_ERRLIST / **/
2167#define Strerror(e) strerror(e)
2168
06501368
MB
2169/* HAS_STRTOUL:
2170 * This symbol, if defined, indicates that the strtoul routine is
2171 * available to provide conversion of strings to unsigned long.
2172 */
2173#define HAS_STRTOUL /**/
2174
06501368
MB
2175/* HAS_UNION_SEMUN:
2176 * This symbol, if defined, indicates that the union semun is
2177 * defined by including <sys/sem.h>. If not, the user code
2178 * probably needs to define it as:
2179 * union semun {
2180 * int val;
2181 * struct semid_ds *buf;
2182 * unsigned short *array;
2183 * }
2184 */
2185/* USE_SEMCTL_SEMUN:
2186 * This symbol, if defined, indicates that union semun is
2187 * used for semctl IPC_STAT.
2188 */
2189/* USE_SEMCTL_SEMID_DS:
2190 * This symbol, if defined, indicates that struct semid_ds * is
2191 * used for semctl IPC_STAT.
2192 */
2193/*#define HAS_UNION_SEMUN / **/
2194/*#define USE_SEMCTL_SEMUN / **/
2195/*#define USE_SEMCTL_SEMID_DS / **/
2196
2197/* HAS_VFORK:
2198 * This symbol, if defined, indicates that vfork() exists.
2199 */
2200/*#define HAS_VFORK / **/
2201
2202/* HAS_PSEUDOFORK:
2203 * This symbol, if defined, indicates that an emulation of the
2204 * fork routine is available.
2205 */
2206/*#define HAS_PSEUDOFORK / **/
2207
2208/* Signal_t:
2209 * This symbol's value is either "void" or "int", corresponding to the
2210 * appropriate return type of a signal handler. Thus, you can declare
2211 * a signal handler using "Signal_t (*handler)()", and define the
2212 * handler using "Signal_t handler(sig)".
2213 */
2214#define Signal_t int /* Signal handler's return type */
2215
2216/* HASVOLATILE:
2217 * This symbol, if defined, indicates that this C compiler knows about
2218 * the volatile declaration.
2219 */
2220/*#define HASVOLATILE / **/
2221#ifndef HASVOLATILE
2222#define volatile
2223#endif
2224
06501368
MB
2225/* I_DIRENT:
2226 * This symbol, if defined, indicates to the C program that it should
2227 * include <dirent.h>. Using this symbol also triggers the definition
2228 * of the Direntry_t define which ends up being 'struct dirent' or
2229 * 'struct direct' depending on the availability of <dirent.h>.
2230 */
2231/* DIRNAMLEN:
2232 * This symbol, if defined, indicates to the C program that the length
2233 * of directory entry names is provided by a d_namlen field. Otherwise
2234 * you need to do strlen() on the d_name field.
2235 */
2236/* Direntry_t:
2237 * This symbol is set to 'struct direct' or 'struct dirent' depending on
2238 * whether dirent is available or not. You should use this pseudo type to
2239 * portably declare your directory entries.
2240 */
2241#define I_DIRENT /**/
2242/*#define DIRNAMLEN / **/
2243#define Direntry_t struct dirent
2244
1f922d87
MB
2245/* I_EXECINFO:
2246 * This symbol, if defined, indicates to the C program that it should
2247 * include <execinfo.h> for backtrace() support.
2248 */
2249/*#define I_EXECINFO / **/
2250
06501368
MB
2251/* I_GRP:
2252 * This symbol, if defined, indicates to the C program that it should
2253 * include <grp.h>.
2254 */
2255/* GRPASSWD:
2256 * This symbol, if defined, indicates to the C program that struct group
2257 * in <grp.h> contains gr_passwd.
2258 */
2259/*#define I_GRP / **/
2260/*#define GRPASSWD / **/
2261
06501368
MB
2262/* I_NDBM:
2263 * This symbol, if defined, indicates that <ndbm.h> exists and should
2264 * be included.
2265 */
2266/* I_GDBMNDBM:
2267 * This symbol, if defined, indicates that <gdbm/ndbm.h> exists and should
2268 * be included. This was the location of the ndbm.h compatibility file
2269 * in RedHat 7.1.
2270 */
2271/* I_GDBM_NDBM:
2272 * This symbol, if defined, indicates that <gdbm-ndbm.h> exists and should
2273 * be included. This is the location of the ndbm.h compatibility file
2274 * in Debian 4.0.
2275 */
2276/* NDBM_H_USES_PROTOTYPES:
2277 * This symbol, if defined, indicates that <ndbm.h> uses real ANSI C
2278 * prototypes instead of K&R style function declarations without any
2279 * parameter information. While ANSI C prototypes are supported in C++,
2280 * K&R style function declarations will yield errors.
2281 */
2282/* GDBMNDBM_H_USES_PROTOTYPES:
2283 * This symbol, if defined, indicates that <gdbm/ndbm.h> uses real ANSI C
2284 * prototypes instead of K&R style function declarations without any
2285 * parameter information. While ANSI C prototypes are supported in C++,
2286 * K&R style function declarations will yield errors.
2287 */
2288/* GDBM_NDBM_H_USES_PROTOTYPES:
2289 * This symbol, if defined, indicates that <gdbm-ndbm.h> uses real ANSI C
2290 * prototypes instead of K&R style function declarations without any
2291 * parameter information. While ANSI C prototypes are supported in C++,
2292 * K&R style function declarations will yield errors.
2293 */
2294/*#define I_NDBM / **/
2295/*#define I_GDBMNDBM / **/
2296/*#define I_GDBM_NDBM / **/
2297/*#define NDBM_H_USES_PROTOTYPES / **/
2298/*#define GDBMNDBM_H_USES_PROTOTYPES / **/
2299/*#define GDBM_NDBM_H_USES_PROTOTYPES / **/
2300
2301/* I_NETDB:
2302 * This symbol, if defined, indicates that <netdb.h> exists and
2303 * should be included.
2304 */
2305/*#define I_NETDB / **/
2306
2307/* I_NET_ERRNO:
2308 * This symbol, if defined, indicates that <net/errno.h> exists and
2309 * should be included.
2310 */
2311/*#define I_NET_ERRNO / **/
2312
06501368
MB
2313/* I_PWD:
2314 * This symbol, if defined, indicates to the C program that it should
2315 * include <pwd.h>.
2316 */
2317/* PWQUOTA:
2318 * This symbol, if defined, indicates to the C program that struct passwd
2319 * contains pw_quota.
2320 */
2321/* PWAGE:
2322 * This symbol, if defined, indicates to the C program that struct passwd
2323 * contains pw_age.
2324 */
2325/* PWCHANGE:
2326 * This symbol, if defined, indicates to the C program that struct passwd
2327 * contains pw_change.
2328 */
2329/* PWCLASS:
2330 * This symbol, if defined, indicates to the C program that struct passwd
2331 * contains pw_class.
2332 */
2333/* PWEXPIRE:
2334 * This symbol, if defined, indicates to the C program that struct passwd
2335 * contains pw_expire.
2336 */
2337/* PWCOMMENT:
2338 * This symbol, if defined, indicates to the C program that struct passwd
2339 * contains pw_comment.
2340 */
2341/* PWGECOS:
2342 * This symbol, if defined, indicates to the C program that struct passwd
2343 * contains pw_gecos.
2344 */
2345/* PWPASSWD:
2346 * This symbol, if defined, indicates to the C program that struct passwd
2347 * contains pw_passwd.
2348 */
2349/*#define I_PWD / **/
2350/*#define PWQUOTA / **/
2351/*#define PWAGE / **/
2352/*#define PWCHANGE / **/
2353/*#define PWCLASS / **/
2354/*#define PWEXPIRE / **/
2355/*#define PWCOMMENT / **/
2356/*#define PWGECOS / **/
2357/*#define PWPASSWD / **/
2358
06501368
MB
2359/* I_SYSUIO:
2360 * This symbol, if defined, indicates that <sys/uio.h> exists and
2361 * should be included.
2362 */
2363/*#define I_SYSUIO / **/
2364
1f922d87
MB
2365/* I_TERMIO:
2366 * This symbol, if defined, indicates that the program should include
2367 * <termio.h> rather than <sgtty.h>. There are also differences in
2368 * the ioctl() calls that depend on the value of this symbol.
2369 */
2370/* I_TERMIOS:
2371 * This symbol, if defined, indicates that the program should include
2372 * the POSIX termios.h rather than sgtty.h or termio.h.
2373 * There are also differences in the ioctl() calls that depend on the
2374 * value of this symbol.
2375 */
2376/* I_SGTTY:
2377 * This symbol, if defined, indicates that the program should include
2378 * <sgtty.h> rather than <termio.h>. There are also differences in
2379 * the ioctl() calls that depend on the value of this symbol.
2380 */
2381/*#define I_TERMIO / **/
2382/*#define I_TERMIOS / **/
2383/*#define I_SGTTY / **/
2384
06501368
MB
2385/* I_STDARG:
2386 * This symbol, if defined, indicates that <stdarg.h> exists and should
2387 * be included.
2388 */
2389/* I_VARARGS:
2390 * This symbol, if defined, indicates to the C program that it should
2391 * include <varargs.h>.
2392 */
2393#define I_STDARG /**/
2394/*#define I_VARARGS / **/
2395
06501368
MB
2396/* Free_t:
2397 * This variable contains the return type of free(). It is usually
2398 * void, but occasionally int.
2399 */
2400/* Malloc_t:
2401 * This symbol is the type of pointer returned by malloc and realloc.
2402 */
2403#define Malloc_t void * /**/
2404#define Free_t void /**/
2405
2406/* PERL_MALLOC_WRAP:
2407 * This symbol, if defined, indicates that we'd like malloc wrap checks.
2408 */
2409/*#define PERL_MALLOC_WRAP / **/
2410
2411/* MYMALLOC:
2412 * This symbol, if defined, indicates that we're using our own malloc.
2413 */
2414/*#define MYMALLOC / **/
2415
06501368
MB
2416/* CAN_PROTOTYPE:
2417 * If defined, this macro indicates that the C compiler can handle
2418 * function prototypes.
2419 */
2420/* _:
2421 * This macro is used to declare function parameters for folks who want
2422 * to make declarations with prototypes using a different style than
2423 * the above macros. Use double parentheses. For example:
2424 *
2425 * int main _((int argc, char *argv[]));
2426 */
2427/*#define CAN_PROTOTYPE / **/
2428#ifdef CAN_PROTOTYPE
2429#define _(args) args
2430#else
2431#define _(args) ()
2432#endif
2433
06501368
MB
2434/* SH_PATH:
2435 * This symbol contains the full pathname to the shell used on this
2436 * on this system to execute Bourne shell scripts. Usually, this will be
2437 * /bin/sh, though it's possible that some systems will have /bin/ksh,
2438 * /bin/pdksh, /bin/ash, /bin/bash, or even something such as
2439 * D:/bin/sh.exe.
2440 */
2441#define SH_PATH "/bin/sh" /**/
2442
2443/* SIG_NAME:
2444 * This symbol contains a list of signal names in order of
2445 * signal number. This is intended
2446 * to be used as a static array initialization, like this:
2447 * char *sig_name[] = { SIG_NAME };
2448 * The signals in the list are separated with commas, and each signal
2449 * is surrounded by double quotes. There is no leading SIG in the signal
2450 * name, i.e. SIGQUIT is known as "QUIT".
2451 * Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
2452 * etc., where nn is the actual signal number (e.g. NUM37).
2453 * The signal number for sig_name[i] is stored in sig_num[i].
2454 * The last element is 0 to terminate the list with a NULL. This
2455 * corresponds to the 0 at the end of the sig_name_init list.
2456 * Note that this variable is initialized from the sig_name_init,
2457 * not from sig_name (which is unused).
2458 */
2459/* SIG_NUM:
2460 * This symbol contains a list of signal numbers, in the same order as the
2461 * SIG_NAME list. It is suitable for static array initialization, as in:
2462 * int sig_num[] = { SIG_NUM };
2463 * The signals in the list are separated with commas, and the indices
2464 * within that list and the SIG_NAME list match, so it's easy to compute
2465 * the signal name from a number or vice versa at the price of a small
2466 * dynamic linear lookup.
2467 * Duplicates are allowed, but are moved to the end of the list.
2468 * The signal number corresponding to sig_name[i] is sig_number[i].
2469 * if (i < NSIG) then sig_number[i] == i.
2470 * The last element is 0, corresponding to the 0 at the end of
2471 * the sig_name_init list.
2472 * Note that this variable is initialized from the sig_num_init,
2473 * not from sig_num (which is unused).
2474 */
2475/* SIG_SIZE:
2476 * This variable contains the number of elements of the SIG_NAME
2477 * and SIG_NUM arrays, excluding the final NULL entry.
2478 */
2479#define SIG_NAME 0 /**/
2480#define SIG_NUM 0 /**/
2481#define SIG_SIZE 1 /**/
2482
7e69463d
AC
2483/* USE_CROSS_COMPILE:
2484 * This symbol, if defined, indicates that Perl is being cross-compiled.
3ebb1980 2485 */
7e69463d
AC
2486/* PERL_TARGETARCH:
2487 * This symbol, if defined, indicates the target architecture
2488 * Perl has been cross-compiled to. Undefined if not a cross-compile.
1de32f2a 2489 */
7e69463d
AC
2490#ifndef USE_CROSS_COMPILE
2491/*#define USE_CROSS_COMPILE / **/
2492#define PERL_TARGETARCH "" /**/
2493#endif
12cf8ac4 2494
7e69463d
AC
2495/* PERL_USE_DEVEL:
2496 * This symbol, if defined, indicates that Perl was configured with
2497 * -Dusedevel, to enable development features. This should not be
2498 * done for production builds.
3ebb1980 2499 */
7e69463d
AC
2500/*#define PERL_USE_DEVEL / **/
2501
2502/* HAS_ATOLF:
2503 * This symbol, if defined, indicates that the atolf routine is
2504 * available to convert strings into long doubles.
3ebb1980 2505 */
7e69463d 2506/*#define HAS_ATOLF / **/
e9a8643a 2507
7e69463d
AC
2508/* HAS_ATOLL:
2509 * This symbol, if defined, indicates that the atoll routine is
2510 * available to convert strings into long longs.
06501368 2511 */
7e69463d 2512/*#define HAS_ATOLL / **/
06501368 2513
7e69463d
AC
2514/* HAS__FWALK:
2515 * This symbol, if defined, indicates that the _fwalk system call is
2516 * available to apply a function to all the file handles.
06501368 2517 */
7e69463d 2518/*#define HAS__FWALK / **/
06501368 2519
7e69463d
AC
2520/* HAS_ACOSH:
2521 * This symbol, if defined, indicates that the acosh routine is
2522 * available to do the inverse hyperbolic cosine function.
06501368 2523 */
7e69463d 2524/*#define HAS_ACOSH / **/
40613a90 2525
f40bbcbf
MB
2526/* HAS_AINTL:
2527 * This symbol, if defined, indicates that the aintl routine is
2528 * available. If copysignl is also present we can emulate modfl.
2529 */
2530/*#define HAS_AINTL / **/
2531
3adf3699
JH
2532/* HAS_ASINH:
2533 * This symbol, if defined, indicates that the asinh routine is
2534 * available to do the inverse hyperbolic sine function.
2535 */
2536/*#define HAS_ASINH / **/
2537
2538/* HAS_ATANH:
2539 * This symbol, if defined, indicates that the atanh routine is
2540 * available to do the inverse hyperbolic tangent function.
2541 */
2542/*#define HAS_ATANH / **/
2543
9244ff22
SP
2544/* HAS_BUILTIN_CHOOSE_EXPR:
2545 * Can we handle GCC builtin for compile-time ternary-like expressions
2546 */
2547/* HAS_BUILTIN_EXPECT:
2548 * Can we handle GCC builtin for telling that certain values are more
2549 * likely
2550 */
2551/*#define HAS_BUILTIN_EXPECT / **/
2552/*#define HAS_BUILTIN_CHOOSE_EXPR / **/
2553
2554/* HAS_C99_VARIADIC_MACROS:
2555 * If defined, the compiler supports C99 variadic macros.
2556 */
2557/*#define HAS_C99_VARIADIC_MACROS / **/
2558
2559/* HAS_CLASS:
2560 * This symbol, if defined, indicates that the class routine is
2561 * available to classify doubles. Available for example in AIX.
2562 * The returned values are defined in <float.h> and are:
2563 *
2564 * FP_PLUS_NORM Positive normalized, nonzero
2565 * FP_MINUS_NORM Negative normalized, nonzero
2566 * FP_PLUS_DENORM Positive denormalized, nonzero
2567 * FP_MINUS_DENORM Negative denormalized, nonzero
2568 * FP_PLUS_ZERO +0.0
2569 * FP_MINUS_ZERO -0.0
2570 * FP_PLUS_INF +INF
2571 * FP_MINUS_INF -INF
2572 * FP_NANS Signaling Not a Number (NaNS)
2573 * FP_NANQ Quiet Not a Number (NaNQ)
2574 */
2575/*#define HAS_CLASS / **/
2576
2577/* HAS_CLEARENV:
2578 * This symbol, if defined, indicates that the clearenv () routine is
2579 * available for use.
2580 */
2581/*#define HAS_CLEARENV / **/
2582
2583/* HAS_STRUCT_CMSGHDR:
2584 * This symbol, if defined, indicates that the struct cmsghdr
2585 * is supported.
2586 */
2587/*#define HAS_STRUCT_CMSGHDR / **/
2588
f40bbcbf
MB
2589/* HAS_COPYSIGN:
2590 * This symbol, if defined, indicates that the copysign routine is
2591 * available to do the copysign function.
2592 */
2593/*#define HAS_COPYSIGN / **/
2594
9244ff22
SP
2595/* HAS_COPYSIGNL:
2596 * This symbol, if defined, indicates that the copysignl routine is
2597 * available. If aintl is also present we can emulate modfl.
2598 */
2599/*#define HAS_COPYSIGNL / **/
2600
2601/* USE_CPLUSPLUS:
2602 * This symbol, if defined, indicates that a C++ compiler was
2603 * used to compiled Perl and will be used to compile extensions.
2604 */
2605/*#define USE_CPLUSPLUS / **/
2606
2607/* HAS_DBMINIT_PROTO:
2608 * This symbol, if defined, indicates that the system provides
2609 * a prototype for the dbminit() function. Otherwise, it is up
2610 * to the program to supply one. A good guess is
2611 * extern int dbminit(char *);
2612 */
2613/*#define HAS_DBMINIT_PROTO / **/
2614
2615/* HAS_DIR_DD_FD:
2616 * This symbol, if defined, indicates that the the DIR* dirstream
2617 * structure contains a member variable named dd_fd.
2618 */
2619/*#define HAS_DIR_DD_FD / **/
2620
2621/* HAS_DIRFD:
2622 * This manifest constant lets the C program know that dirfd
2623 * is available.
2624 */
2625/*#define HAS_DIRFD / **/
2626
2627/* DLSYM_NEEDS_UNDERSCORE:
2628 * This symbol, if defined, indicates that we need to prepend an
2629 * underscore to the symbol name before calling dlsym(). This only
2630 * makes sense if you *have* dlsym, which we will presume is the
2631 * case if you're using dl_dlopen.xs.
2632 */
2633/*#define DLSYM_NEEDS_UNDERSCORE / **/
2634
f40bbcbf
MB
2635/* HAS_ERF:
2636 * This symbol, if defined, indicates that the erf routine is
2637 * available to do the error function.
2638 */
2639/*#define HAS_ERF / **/
2640
2641/* HAS_ERFC:
2642 * This symbol, if defined, indicates that the erfc routine is
2643 * available to do the complementary error function.
2644 */
2645/*#define HAS_ERFC / **/
2646
2647/* HAS_EXP2:
2648 * This symbol, if defined, indicates that the exp2 routine is
2649 * available to do the 2**x function.
2650 */
2651/*#define HAS_EXP2 / **/
2652
2653/* HAS_EXPM1:
2654 * This symbol, if defined, indicates that the expm1 routine is
2655 * available to do the exp(x) - 1 when x is near 1 function.
2656 */
2657/*#define HAS_EXPM1 / **/
2658
9244ff22
SP
2659/* HAS_FAST_STDIO:
2660 * This symbol, if defined, indicates that the "fast stdio"
2661 * is available to manipulate the stdio buffers directly.
2662 */
2663/*#define HAS_FAST_STDIO / **/
2664
2665/* HAS_FCHDIR:
2666 * This symbol, if defined, indicates that the fchdir routine is
2667 * available to change directory using a file descriptor.
2668 */
2669/*#define HAS_FCHDIR / **/
2670
2671/* FCNTL_CAN_LOCK:
2672 * This symbol, if defined, indicates that fcntl() can be used
2673 * for file locking. Normally on Unix systems this is defined.
2674 * It may be undefined on VMS.
2675 */
2676/*#define FCNTL_CAN_LOCK / **/
2677
8b8c6ab7
AD
2678/* HAS_FDCLOSE:
2679 * This symbol, if defined, indicates that the fdclose routine is
2680 * available to free a FILE structure without closing the underlying
2681 * file descriptor. This function appeared in FreeBSD 10.2.
2682 */
2683/*#define HAS_FDCLOSE / **/
2684
f40bbcbf
MB
2685/* HAS_FDIM:
2686 * This symbol, if defined, indicates that the fdim routine is
2687 * available to do the positive difference function.
2688 */
2689/*#define HAS_FDIM / **/
2690
d0166596
MB
2691/* HAS_FEGETROUND:
2692 * This symbol, if defined, indicates that the fegetround routine is
2693 * available to return the macro corresponding to the current rounding
2694 * mode.
2695 */
2696/*#define HAS_FEGETROUND / **/
2697
9244ff22
SP
2698/* HAS_FINITE:
2699 * This symbol, if defined, indicates that the finite routine is
2700 * available to check whether a double is finite (non-infinity non-NaN).
2701 */
2702/*#define HAS_FINITE / **/
2703
2704/* HAS_FINITEL:
2705 * This symbol, if defined, indicates that the finitel routine is
2706 * available to check whether a long double is finite
2707 * (non-infinity non-NaN).
2708 */
2709/*#define HAS_FINITEL / **/
2710
2711/* HAS_FLOCK_PROTO:
2712 * This symbol, if defined, indicates that the system provides
2713 * a prototype for the flock() function. Otherwise, it is up
2714 * to the program to supply one. A good guess is
2715 * extern int flock(int, int);
2716 */
2717/*#define HAS_FLOCK_PROTO / **/
2718
f40bbcbf
MB
2719/* HAS_FMA:
2720 * This symbol, if defined, indicates that the fma routine is
2721 * available to do the multiply-add function.
2722 */
2723/*#define HAS_FMA / **/
2724
2725/* HAS_FMAX:
2726 * This symbol, if defined, indicates that the fmax routine is
2727 * available to do the maximum function.
2728 */
2729/*#define HAS_FMAX / **/
2730
2731/* HAS_FMIN:
2732 * This symbol, if defined, indicates that the fmin routine is
2733 * available to do the minimum function.
2734 */
2735/*#define HAS_FMIN / **/
2736
9244ff22
SP
2737/* HAS_FP_CLASS:
2738 * This symbol, if defined, indicates that the fp_class routine is
2739 * available to classify doubles. Available for example in Digital UNIX.
2740 * The returned values are defined in <math.h> and are:
2741 *
2742 * FP_SNAN Signaling NaN (Not-a-Number)
2743 * FP_QNAN Quiet NaN (Not-a-Number)
2744 * FP_POS_INF +infinity
2745 * FP_NEG_INF -infinity
2746 * FP_POS_NORM Positive normalized
2747 * FP_NEG_NORM Negative normalized
2748 * FP_POS_DENORM Positive denormalized
2749 * FP_NEG_DENORM Negative denormalized
2750 * FP_POS_ZERO +0.0 (positive zero)
2751 * FP_NEG_ZERO -0.0 (negative zero)
2752 */
2753/*#define HAS_FP_CLASS / **/
2754
b19ee02c
JH
2755/* HAS_FP_CLASSL:
2756 * This symbol, if defined, indicates that the fp_classl routine is
d0166596
MB
2757 * available to classify long doubles. Available for example in
2758 * Digital UNIX. See for possible values HAS_FP_CLASS.
b19ee02c
JH
2759 */
2760/*#define HAS_FP_CLASSL / **/
2761
9244ff22
SP
2762/* HAS_FPCLASS:
2763 * This symbol, if defined, indicates that the fpclass routine is
2764 * available to classify doubles. Available for example in Solaris/SVR4.
2765 * The returned values are defined in <ieeefp.h> and are:
2766 *
2767 * FP_SNAN signaling NaN
2768 * FP_QNAN quiet NaN
2769 * FP_NINF negative infinity
2770 * FP_PINF positive infinity
2771 * FP_NDENORM negative denormalized non-zero
2772 * FP_PDENORM positive denormalized non-zero
2773 * FP_NZERO negative zero
2774 * FP_PZERO positive zero
2775 * FP_NNORM negative normalized non-zero
2776 * FP_PNORM positive normalized non-zero
2777 */
2778/*#define HAS_FPCLASS / **/
2779
2780/* HAS_FPCLASSIFY:
2781 * This symbol, if defined, indicates that the fpclassify routine is
2782 * available to classify doubles. Available for example in HP-UX.
2783 * The returned values are defined in <math.h> and are
2784 *
2785 * FP_NORMAL Normalized
2786 * FP_ZERO Zero
2787 * FP_INFINITE Infinity
2788 * FP_SUBNORMAL Denormalized
2789 * FP_NAN NaN
2790 *
2791 */
d0166596
MB
2792/* HAS_FP_CLASSIFY:
2793 * This symbol, if defined, indicates that the fp_classify routine is
2794 * available to classify doubles. The values are defined in <math.h>
2795 *
2796 * FP_NORMAL Normalized
2797 * FP_ZERO Zero
2798 * FP_INFINITE Infinity
2799 * FP_SUBNORMAL Denormalized
2800 * FP_NAN NaN
2801 *
2802 */
2803/*#define HAS_FPCLASSIFY / **/
2804/*#define HAS_FP_CLASSIFY / **/
9244ff22
SP
2805
2806/* HAS_FPCLASSL:
2807 * This symbol, if defined, indicates that the fpclassl routine is
2808 * available to classify long doubles. Available for example in IRIX.
2809 * The returned values are defined in <ieeefp.h> and are:
2810 *
2811 * FP_SNAN signaling NaN
2812 * FP_QNAN quiet NaN
2813 * FP_NINF negative infinity
2814 * FP_PINF positive infinity
2815 * FP_NDENORM negative denormalized non-zero
2816 * FP_PDENORM positive denormalized non-zero
2817 * FP_NZERO negative zero
2818 * FP_PZERO positive zero
2819 * FP_NNORM negative normalized non-zero
2820 * FP_PNORM positive normalized non-zero
2821 */
2822/*#define HAS_FPCLASSL / **/
2823
4c1a9b0c
JH
2824/* HAS_FPGETROUND:
2825 * This symbol, if defined, indicates that the fpgetround routine is
2826 * available to get the floating point rounding mode.
2827 */
2828/*#define HAS_FPGETROUND / **/
2829
9244ff22
SP
2830/* HAS_FPOS64_T:
2831 * This symbol will be defined if the C compiler supports fpos64_t.
2832 */
2833/*#define HAS_FPOS64_T / **/
2834
2835/* HAS_FREXPL:
2836 * This symbol, if defined, indicates that the frexpl routine is
2837 * available to break a long double floating-point number into
2838 * a normalized fraction and an integral power of 2.
2839 */
2840/*#define HAS_FREXPL / **/
2841
ea442100
JH
2842/* HAS_STRUCT_FS_DATA:
2843 * This symbol, if defined, indicates that the struct fs_data
2844 * to do statfs() is supported.
2845 */
2846/*#define HAS_STRUCT_FS_DATA / **/
2847
3e09f0e1
JSA
2848/* HAS_FCHMODAT:
2849 * This symbol is defined if the fchmodat() routine is available.
2850 */
2851/* HAS_LINKAT:
2852 * This symbol is defined if the linkat() routine is available.
2853 */
2854/* HAS_OPENAT:
2855 * This symbol is defined if the openat() routine is available.
2856 */
2857/* HAS_RENAMEAT:
2858 * This symbol is defined if the renameat() routine is available.
2859 */
2860/* HAS_UNLINKAT:
2861 * This symbol is defined if the unlinkat() routine is available.
2862 */
2863/*#define HAS_FCHMODAT / **/
2864/*#define HAS_LINKAT / **/
2865/*#define HAS_OPENAT / **/
2866/*#define HAS_RENAMEAT / **/
2867/*#define HAS_UNLINKAT / **/
2868
9244ff22
SP
2869/* HAS_FSEEKO:
2870 * This symbol, if defined, indicates that the fseeko routine is
2871 * available to fseek beyond 32 bits (useful for ILP32 hosts).
2872 */
2873/*#define HAS_FSEEKO / **/
2874
ea442100
JH
2875/* HAS_FSTATFS:
2876 * This symbol, if defined, indicates that the fstatfs routine is
2877 * available to stat filesystems by file descriptors.
2878 */
2879/*#define HAS_FSTATFS / **/
2880
9244ff22
SP
2881/* HAS_FSYNC:
2882 * This symbol, if defined, indicates that the fsync routine is
2883 * available to write a file's modified data and attributes to
2884 * permanent storage.
2885 */
2886/*#define HAS_FSYNC / **/
2887
2888/* HAS_FTELLO:
2889 * This symbol, if defined, indicates that the ftello routine is
2890 * available to ftell beyond 32 bits (useful for ILP32 hosts).
2891 */
2892/*#define HAS_FTELLO / **/
2893
2894/* HAS_FUTIMES:
2895 * This symbol, if defined, indicates that the futimes routine is
2896 * available to change file descriptor time stamps with struct timevals.
2897 */
2898/*#define HAS_FUTIMES / **/
2899
0cc74f39
MB
2900/* HAS_GAI_STRERROR:
2901 * This symbol, if defined, indicates that the gai_strerror routine
2902 * is available to translate error codes returned by getaddrinfo()
2903 * into human readable strings.
2904 */
2905/*#define HAS_GAI_STRERROR / **/
2906
12cf8ac4
NC
2907/* HAS_GETADDRINFO:
2908 * This symbol, if defined, indicates that the getaddrinfo() function
2909 * is available for use.
2910 */
2911/*#define HAS_GETADDRINFO / **/
2912
9244ff22
SP
2913/* HAS_GETCWD:
2914 * This symbol, if defined, indicates that the getcwd routine is
2915 * available to get the current working directory.
2916 */
2917/*#define HAS_GETCWD / **/
2918
2919/* HAS_GETESPWNAM:
2920 * This symbol, if defined, indicates that the getespwnam system call is
486ec47a 2921 * available to retrieve enhanced (shadow) password entries by name.
9244ff22
SP
2922 */
2923/*#define HAS_GETESPWNAM / **/
2924
ea442100
JH
2925/* HAS_GETFSSTAT:
2926 * This symbol, if defined, indicates that the getfsstat routine is
2927 * available to stat filesystems in bulk.
2928 */
2929/*#define HAS_GETFSSTAT / **/
2930
9244ff22
SP
2931/* HAS_GETITIMER:
2932 * This symbol, if defined, indicates that the getitimer routine is
2933 * available to return interval timers.
2934 */
2935/*#define HAS_GETITIMER / **/
2936
ea442100
JH
2937/* HAS_GETMNT:
2938 * This symbol, if defined, indicates that the getmnt routine is
2939 * available to get filesystem mount info by filename.
2940 */
2941/*#define HAS_GETMNT / **/
2942
2943/* HAS_GETMNTENT:
2944 * This symbol, if defined, indicates that the getmntent routine is
2945 * available to iterate through mounted file systems to get their info.
2946 */
2947/*#define HAS_GETMNTENT / **/
2948
12cf8ac4
NC
2949/* HAS_GETNAMEINFO:
2950 * This symbol, if defined, indicates that the getnameinfo() function
2951 * is available for use.
2952 */
2953/*#define HAS_GETNAMEINFO / **/
2954
9244ff22
SP
2955/* HAS_GETPRPWNAM:
2956 * This symbol, if defined, indicates that the getprpwnam system call is
2957 * available to retrieve protected (shadow) password entries by name.
2958 */
2959/*#define HAS_GETPRPWNAM / **/
2960
2961/* HAS_GETSPNAM:
2962 * This symbol, if defined, indicates that the getspnam system call is
2963 * available to retrieve SysV shadow password entries by name.
2964 */
2965/*#define HAS_GETSPNAM / **/
2966
ea442100
JH
2967/* HAS_HASMNTOPT:
2968 * This symbol, if defined, indicates that the hasmntopt routine is
2969 * available to query the mount options of file systems.
2970 */
2971/*#define HAS_HASMNTOPT / **/
2972
3adf3699
JH
2973/* HAS_HYPOT:
2974 * This symbol, if defined, indicates that the hypot routine is
2975 * available to do the hypotenuse function.
2976 */
2977/*#define HAS_HYPOT / **/
2978
2979/* HAS_ILOGB:
2980 * This symbol, if defined, indicates that the ilogb routine is
f40bbcbf 2981 * available to get integer exponent of a floating-point value.
3adf3699
JH
2982 */
2983/*#define HAS_ILOGB / **/
2984
9244ff22
SP
2985/* HAS_ILOGBL:
2986 * This symbol, if defined, indicates that the ilogbl routine is
2987 * available. If scalbnl is also present we can emulate frexpl.
2988 */
2989/*#define HAS_ILOGBL / **/
2990
12cf8ac4
NC
2991/* HAS_INETNTOP:
2992 * This symbol, if defined, indicates that the inet_ntop() function
2993 * is available to parse IPv4 and IPv6 strings.
2994 */
2995/*#define HAS_INETNTOP / **/
2996
2997/* HAS_INETPTON:
2998 * This symbol, if defined, indicates that the inet_pton() function
2999 * is available to parse IPv4 and IPv6 strings.
3000 */
3001/*#define HAS_INETPTON / **/
3002
9244ff22
SP
3003/* HAS_INT64_T:
3004 * This symbol will defined if the C compiler supports int64_t.
3005 * Usually the <inttypes.h> needs to be included, but sometimes
3006 * <sys/types.h> is enough.
3007 */
3008/*#define HAS_INT64_T / **/
3009
96a17eae 3010/* HAS_ISBLANK:
cfc2543a 3011 * This manifest constant lets the C program know that isblank
96a17eae
MB
3012 * is available.
3013 */
3014/*#define HAS_ISBLANK / **/
3015
9244ff22
SP
3016/* HAS_ISFINITE:
3017 * This symbol, if defined, indicates that the isfinite routine is
3018 * available to check whether a double is finite (non-infinity non-NaN).
3019 */
3020/*#define HAS_ISFINITE / **/
3021
fa484e60 3022/* HAS_ISFINITEL:
d0166596
MB
3023 * This symbol, if defined, indicates that the isfinitel routine is
3024 * available to check whether a long double is finite.
fa484e60
JH
3025 * (non-infinity non-NaN).
3026 */
3027/*#define HAS_ISFINITEL / **/
3028
9244ff22
SP
3029/* HAS_ISINF:
3030 * This symbol, if defined, indicates that the isinf routine is
3031 * available to check whether a double is an infinity.
3032 */
3033/*#define HAS_ISINF / **/
3034
d0166596
MB
3035/* HAS_ISINFL:
3036 * This symbol, if defined, indicates that the isinfl routine is
fa484e60
JH
3037 * available to check whether a long double is an infinity.
3038 */
3039/*#define HAS_ISINFL / **/
3040
f40bbcbf
MB
3041/* HAS_ISLESS:
3042 * This symbol, if defined, indicates that the isless routine is
3043 * available to do the isless function.
3044 */
3045/*#define HAS_ISLESS / **/
3046
9244ff22
SP
3047/* HAS_ISNAN:
3048 * This symbol, if defined, indicates that the isnan routine is
3049 * available to check whether a double is a NaN.
3050 */
3051/*#define HAS_ISNAN / **/
3052
3053/* HAS_ISNANL:
3054 * This symbol, if defined, indicates that the isnanl routine is
3055 * available to check whether a long double is a NaN.
3056 */
3057/*#define HAS_ISNANL / **/
3058
3adf3699
JH
3059/* HAS_ISNORMAL:
3060 * This symbol, if defined, indicates that the isnormal routine is
3061 * available to check whether a double is normal (non-zero normalized).
3062 */
3063/*#define HAS_ISNORMAL / **/
3064
d0166596
MB
3065/* HAS_J0:
3066 * This symbol, if defined, indicates to the C program that the
3067 * j0() function is available for Bessel functions of the first
3068 * kind of the order zero, for doubles.
3069 */
3070/* HAS_J0L:
3071 * This symbol, if defined, indicates to the C program that the
3072 * j0l() function is available for Bessel functions of the first
3073 * kind of the order zero, for long doubles.
3074 */
3075/*#define HAS_J0 / **/
3076/*#define HAS_J0L / **/
3077
f40bbcbf
MB
3078/* HAS_LC_MONETARY_2008:
3079 * This symbol, if defined, indicates that the localeconv routine is
3080 * available and has the additional members added in POSIX 1003.1-2008.
3081 */
3082/*#define HAS_LC_MONETARY_2008 / **/
3083
9244ff22
SP
3084/* HAS_LDBL_DIG:
3085 * This symbol, if defined, indicates that this system's <float.h>
3086 * or <limits.h> defines the symbol LDBL_DIG, which is the number
3087 * of significant digits in a long double precision number. Unlike
3088 * for DBL_DIG, there's no good guess for LDBL_DIG if it is undefined.
3089 */
06501368 3090/*#define HAS_LDBL_DIG / * */
9244ff22 3091
3adf3699
JH
3092/* HAS_LGAMMA:
3093 * This symbol, if defined, indicates that the lgamma routine is
3094 * available to do the log gamma function. See also HAS_TGAMMA and
3095 * HAS_LGAMMA_R.
3096 */
3097/*#define HAS_LGAMMA / **/
3098
3099/* HAS_LGAMMA_R:
3100 * This symbol, if defined, indicates that the lgamma_r routine is
3101 * available to do the log gamma function without using the global
3102 * signgam variable.
3103 */
3104/*#define HAS_LGAMMA_R / **/
3105
9244ff22
SP
3106/* LIBM_LIB_VERSION:
3107 * This symbol, if defined, indicates that libm exports _LIB_VERSION
3108 * and that math.h defines the enum to manipulate it.
3109 */
3110/*#define LIBM_LIB_VERSION / **/
3111
3adf3699
JH
3112/* HAS_LLRINT:
3113 * This symbol, if defined, indicates that the llrint routine is
2640dfa8
MB
3114 * available to return the long long value closest to a double
3115 * (according to the current rounding mode).
3adf3699
JH
3116 */
3117/*#define HAS_LLRINT / **/
3118
bc580dd3
JH
3119/* HAS_LLRINTL:
3120 * This symbol, if defined, indicates that the llrintl routine is
2640dfa8
MB
3121 * available to return the long long value closest to a long double
3122 * (according to the current rounding mode).
bc580dd3
JH
3123 */
3124/*#define HAS_LLRINTL / **/
3125
3adf3699
JH
3126/* HAS_LLROUND:
3127 * This symbol, if defined, indicates that the llround routine is
3128 * available to return the nearest long long value.
3129 */
3130/*#define HAS_LLROUND / **/
3131
bc580dd3
JH
3132/* HAS_LLROUNDL:
3133 * This symbol, if defined, indicates that the llroundl routine is
5abe6a2a
MB
3134 * available to return the nearest long long value away from zero of
3135 * the long double argument value.
bc580dd3
JH
3136 */
3137/*#define HAS_LLROUNDL / **/
3138
3adf3699 3139/* HAS_LOG1P:
f40bbcbf
MB
3140 * This symbol, if defined, indicates that the log1p routine is
3141 * available to do the logarithm of 1 plus argument function.
3adf3699
JH
3142 */
3143/*#define HAS_LOG1P / **/
3144
3145/* HAS_LOG2:
f40bbcbf 3146 * This symbol, if defined, indicates that the log2 routine is
3adf3699
JH
3147 * available to do the log2 function.
3148 */
3149/*#define HAS_LOG2 / **/
3150
3151/* HAS_LOGB:
f40bbcbf 3152 * This symbol, if defined, indicates that the logb routine is
3adf3699
JH
3153 * available to do the logb function.
3154 */
3155/*#define HAS_LOGB / **/
3156
3157/* HAS_LRINT:
3158 * This symbol, if defined, indicates that the lrint routine is
2640dfa8
MB
3159 * available to return the integral value closest to a double
3160 * (according to the current rounding mode).
3adf3699
JH
3161 */
3162/*#define HAS_LRINT / **/
3163
bc580dd3
JH
3164/* HAS_LRINTL:
3165 * This symbol, if defined, indicates that the lrintl routine is
2640dfa8
MB
3166 * available to return the integral value closest to a long double
3167 * (according to the current rounding mode).
bc580dd3
JH
3168 */
3169/*#define HAS_LRINTL / **/
3170
3adf3699
JH
3171/* HAS_LROUND:
3172 * This symbol, if defined, indicates that the lround routine is
3173 * available to return the nearest integral value.
3174 */
3175/*#define HAS_LROUND / **/
3176
bc580dd3
JH
3177/* HAS_LROUNDL:
3178 * This symbol, if defined, indicates that the lroundl routine is
5abe6a2a
MB
3179 * available to return the nearest integral value away from zero of
3180 * the long double argument value.
bc580dd3
JH
3181 */
3182/*#define HAS_LROUNDL / **/
3183
9244ff22
SP
3184/* HAS_MADVISE:
3185 * This symbol, if defined, indicates that the madvise system call is
3186 * available to map a file into memory.
3187 */
3188/*#define HAS_MADVISE / **/
3189
3190/* HAS_MALLOC_SIZE:
3191 * This symbol, if defined, indicates that the malloc_size
3192 * routine is available for use.
3193 */
3194/*#define HAS_MALLOC_SIZE / **/
3195
3196/* HAS_MALLOC_GOOD_SIZE:
3197 * This symbol, if defined, indicates that the malloc_good_size
3198 * routine is available for use.
3199 */
3200/*#define HAS_MALLOC_GOOD_SIZE / **/
3201
3879c54d
MB
3202/* HAS_MEMMEM:
3203 * This symbol, if defined, indicates that the memmem routine is
3204 * available to return a pointer to the start of the first occurance
3205 * of a substring in a memory area (or NULL if not found).
3206 */
61b2a465 3207/*#define HAS_MEMMEM / **/
3879c54d 3208
9244ff22
SP
3209/* HAS_MKDTEMP:
3210 * This symbol, if defined, indicates that the mkdtemp routine is
3211 * available to exclusively create a uniquely named temporary directory.
3212 */
3213/*#define HAS_MKDTEMP / **/
3214
3215/* HAS_MKSTEMPS:
3216 * This symbol, if defined, indicates that the mkstemps routine is
486ec47a 3217 * available to exclusively create and open a uniquely named
9244ff22
SP
3218 * (with a suffix) temporary file.
3219 */
3220/*#define HAS_MKSTEMPS / **/
3221
3222/* HAS_MODFL:
3223 * This symbol, if defined, indicates that the modfl routine is
3224 * available to split a long double x into a fractional part f and
3225 * an integer part i such that |f| < 1.0 and (f + i) = x.
3226 */
3227/* HAS_MODFL_PROTO:
3228 * This symbol, if defined, indicates that the system provides
3229 * a prototype for the modfl() function. Otherwise, it is up
3230 * to the program to supply one.
3231 */
9244ff22
SP
3232/*#define HAS_MODFL / **/
3233/*#define HAS_MODFL_PROTO / **/
9244ff22
SP
3234
3235/* HAS_MPROTECT:
3236 * This symbol, if defined, indicates that the mprotect system call is
3237 * available to modify the access protection of a memory mapped file.
3238 */
3239/*#define HAS_MPROTECT / **/
3240
3241/* HAS_STRUCT_MSGHDR:
3242 * This symbol, if defined, indicates that the struct msghdr
3243 * is supported.
3244 */
3245/*#define HAS_STRUCT_MSGHDR / **/
3246
f40bbcbf
MB
3247/* HAS_NAN:
3248 * This symbol, if defined, indicates that the nan routine is
3249 * available to generate NaN.
3250 */
3251/*#define HAS_NAN / **/
3252
3253/* HAS_NEARBYINT:
3254 * This symbol, if defined, indicates that the nearbyint routine is
3255 * available to return the integral value closest to (according to
3256 * the current rounding mode) to x.
3257 */
3258/*#define HAS_NEARBYINT / **/
3259
0f2b45c7
MB
3260/* HAS_NEWLOCALE:
3261 * This symbol, if defined, indicates that the newlocale routine is
3262 * available to return a new locale object or modify an existing
3263 * locale object.
3264 */
3265/* HAS_FREELOCALE:
3266 * This symbol, if defined, indicates that the freelocale routine is
3267 * available to deallocates the resources associated with a locale object.
3268 */
3269/* HAS_USELOCALE:
3270 * This symbol, if defined, indicates that the uselocale routine is
3271 * available to set the current locale for the calling thread.
3272 */
bc900e45
AC
3273/* HAS_QUERYLOCALE:
3274 * This symbol, if defined, indicates that the querylocale routine is
3275 * available to return the name of the locale for a category mask.
3276 */
884c85de
MB
3277/* I_XLOCALE:
3278 * This symbol, if defined, indicates to the C program that it should
3279 * include <xlocale.h> to get uselocale() and its friends.
3280 */
0f2b45c7
MB
3281/*#define HAS_NEWLOCALE / **/
3282/*#define HAS_FREELOCALE / **/
3283/*#define HAS_USELOCALE / **/
bc900e45 3284/*#define HAS_QUERYLOCALE / **/
38ab612a 3285/*#define I_XLOCALE / **/
0f2b45c7 3286
f40bbcbf
MB
3287/* HAS_NEXTAFTER:
3288 * This symbol, if defined, indicates that the nextafter routine is
3289 * available to return the next machine representable double from
3290 * x in direction y.
3291 */
3292/*#define HAS_NEXTAFTER / **/
3293
3294/* HAS_NEXTTOWARD:
3295 * This symbol, if defined, indicates that the nexttoward routine is
3296 * available to return the next machine representable long double from
3297 * x in direction y.
3298 */
3299/*#define HAS_NEXTTOWARD / **/
3300
9244ff22
SP
3301/* HAS_NL_LANGINFO:
3302 * This symbol, if defined, indicates that the nl_langinfo routine is
3303 * available to return local data. You will also need <langinfo.h>
3304 * and therefore I_LANGINFO.
3305 */
3306/*#define HAS_NL_LANGINFO / **/
3307
3308/* HAS_OFF64_T:
3309 * This symbol will be defined if the C compiler supports off64_t.
3310 */
3311/*#define HAS_OFF64_T / **/
3312
12cf8ac4
NC
3313/* HAS_PRCTL:
3314 * This symbol, if defined, indicates that the prctl routine is
3315 * available to set process title.
b75ee85b
JH
3316 * Note that there are at least two prctl variants: Linux and Irix.
3317 * While they are somewhat similar, they are incompatible.
12cf8ac4
NC
3318 */
3319/* HAS_PRCTL_SET_NAME:
3320 * This symbol, if defined, indicates that the prctl routine is
3321 * available to set process title and supports PR_SET_NAME.
3322 */
3323/*#define HAS_PRCTL / **/
3324/*#define HAS_PRCTL_SET_NAME / **/
3325
9244ff22
SP
3326/* HAS_PROCSELFEXE:
3327 * This symbol is defined if PROCSELFEXE_PATH is a symlink
3328 * to the absolute pathname of the executing program.
3329 */
3330/* PROCSELFEXE_PATH:
3331 * If HAS_PROCSELFEXE is defined this symbol is the filename
3332 * of the symbolic link pointing to the absolute pathname of
3333 * the executing program.
3334 */
3335/*#define HAS_PROCSELFEXE / **/
3336#if defined(HAS_PROCSELFEXE) && !defined(PROCSELFEXE_PATH)
3337#define PROCSELFEXE_PATH /**/
3338#endif
3339
3340/* HAS_PTHREAD_ATTR_SETSCOPE:
3341 * This symbol, if defined, indicates that the pthread_attr_setscope
3342 * system call is available to set the contention scope attribute of
3343 * a thread attribute object.
3344 */
3345/*#define HAS_PTHREAD_ATTR_SETSCOPE / **/
3346
1f922d87
MB
3347/* HAS_PTRDIFF_T:
3348 * This symbol will be defined if the C compiler supports ptrdiff_t.
3349 */
3350#define HAS_PTRDIFF_T /**/
3351
9244ff22
SP
3352/* HAS_READV:
3353 * This symbol, if defined, indicates that the readv routine is
3354 * available to do gather reads. You will also need <sys/uio.h>
3355 * and there I_SYSUIO.
3356 */
3357/*#define HAS_READV / **/
3358
3359/* HAS_RECVMSG:
3360 * This symbol, if defined, indicates that the recvmsg routine is
3361 * available to send structured socket messages.
3362 */
3363/*#define HAS_RECVMSG / **/
3364
f40bbcbf
MB
3365/* HAS_REMAINDER:
3366 * This symbol, if defined, indicates that the remainder routine is
3367 * available to return the floating-point remainder.
3368 */
3369/*#define HAS_REMAINDER / **/
3370
3371/* HAS_REMQUO:
3372 * This symbol, if defined, indicates that the remquo routine is
3373 * available to return the remainder and part of quotient.
3374 */
3375/*#define HAS_REMQUO / **/
3376
3377/* HAS_RINT:
3378 * This symbol, if defined, indicates that the rint routine is
3379 * available to return the nearest integral value to x as double
3380 * using the current rounding mode.
3381 */
3382/*#define HAS_RINT / **/
3383
3384/* HAS_ROUND:
3385 * This symbol, if defined, indicates that the round routine is
3386 * available to round to nearest integer, away from zero.
3387 */
3388/*#define HAS_ROUND / **/
3389
9244ff22
SP
3390/* HAS_SBRK_PROTO:
3391 * This symbol, if defined, indicates that the system provides
3392 * a prototype for the sbrk() function. Otherwise, it is up
3393 * to the program to supply one. Good guesses are
3394 * extern void* sbrk(int);
3395 * extern void* sbrk(size_t);
3396 */
3397/*#define HAS_SBRK_PROTO / **/
3398
3adf3699 3399/* HAS_SCALBN:
f40bbcbf
MB
3400 * This symbol, if defined, indicates that the scalbn routine is
3401 * available to multiply floating-point number by integral power
3402 * of radix.
3adf3699
JH
3403 */
3404/*#define HAS_SCALBN / **/
3405
9244ff22
SP
3406/* HAS_SCALBNL:
3407 * This symbol, if defined, indicates that the scalbnl routine is
3408 * available. If ilogbl is also present we can emulate frexpl.
3409 */
3410/*#define HAS_SCALBNL / **/
3411
3412/* HAS_SENDMSG:
3413 * This symbol, if defined, indicates that the sendmsg routine is
3414 * available to send structured socket messages.
3415 */
3416/*#define HAS_SENDMSG / **/
3417
3418/* HAS_SETITIMER:
3419 * This symbol, if defined, indicates that the setitimer routine is
3420 * available to set interval timers.
3421 */
3422/*#define HAS_SETITIMER / **/
3423
3424/* HAS_SETPROCTITLE:
3425 * This symbol, if defined, indicates that the setproctitle routine is
3426 * available to set process title.
3427 */
3428/*#define HAS_SETPROCTITLE / **/
3429
9244ff22
SP
3430/* HAS_SIGNBIT:
3431 * This symbol, if defined, indicates that the signbit routine is
3432 * available to check if the given number has the sign bit set.
3433 * This should include correct testing of -0.0. This will only be set
3434 * if the signbit() routine is safe to use with the NV type used internally
3435 * in perl. Users should call Perl_signbit(), which will be #defined to
3436 * the system's signbit() function or macro if this symbol is defined.
3437 */
3438/*#define HAS_SIGNBIT / **/
3439
3440/* HAS_SIGPROCMASK:
3441 * This symbol, if defined, indicates that the sigprocmask
3442 * system call is available to examine or change the signal mask
3443 * of the calling process.
3444 */
3445/*#define HAS_SIGPROCMASK / **/
3446
3447/* USE_SITECUSTOMIZE:
3448 * This symbol, if defined, indicates that sitecustomize should
3449 * be used.
3450 */
3451#ifndef USE_SITECUSTOMIZE
3452/*#define USE_SITECUSTOMIZE / **/
3453#endif
3454
3455/* HAS_SNPRINTF:
3456 * This symbol, if defined, indicates that the snprintf () library
3457 * function is available for use.
3458 */
3459/* HAS_VSNPRINTF:
3460 * This symbol, if defined, indicates that the vsnprintf () library
3461 * function is available for use.
3462 */
3463/*#define HAS_SNPRINTF / **/
3464/*#define HAS_VSNPRINTF / **/
3465
3466/* HAS_SOCKATMARK:
3467 * This symbol, if defined, indicates that the sockatmark routine is
3468 * available to test whether a socket is at the out-of-band mark.
3469 */
3470/*#define HAS_SOCKATMARK / **/
3471
3472/* HAS_SOCKATMARK_PROTO:
3473 * This symbol, if defined, indicates that the system provides
3474 * a prototype for the sockatmark() function. Otherwise, it is up
3475 * to the program to supply one. A good guess is
3476 * extern int sockatmark(int);
3477 */
3478/*#define HAS_SOCKATMARK_PROTO / **/
3479
3480/* HAS_SOCKS5_INIT:
3481 * This symbol, if defined, indicates that the socks5_init routine is
3482 * available to initialize SOCKS 5.
3483 */
3484/*#define HAS_SOCKS5_INIT / **/
3485
3486/* SPRINTF_RETURNS_STRLEN:
3487 * This variable defines whether sprintf returns the length of the string
3488 * (as per the ANSI spec). Some C libraries retain compatibility with
3489 * pre-ANSI C and return a pointer to the passed in buffer; for these
3490 * this variable will be undef.
3491 */
3492/*#define SPRINTF_RETURNS_STRLEN / **/
3493
3494/* HAS_SQRTL:
3495 * This symbol, if defined, indicates that the sqrtl routine is
3496 * available to do long double square roots.
3497 */
3498/*#define HAS_SQRTL / **/
3499
3500/* HAS_SETRESGID_PROTO:
3501 * This symbol, if defined, indicates that the system provides
3502 * a prototype for the setresgid() function. Otherwise, it is up
3503 * to the program to supply one. Good guesses are
3504 * extern int setresgid(uid_t ruid, uid_t euid, uid_t suid);
3505 */
3506/*#define HAS_SETRESGID_PROTO / **/
3507
3508/* HAS_SETRESUID_PROTO:
3509 * This symbol, if defined, indicates that the system provides
3510 * a prototype for the setresuid() function. Otherwise, it is up
3511 * to the program to supply one. Good guesses are
3512 * extern int setresuid(uid_t ruid, uid_t euid, uid_t suid);
3513 */
3514/*#define HAS_SETRESUID_PROTO / **/
3515
ea442100
JH
3516/* HAS_STRUCT_STATFS_F_FLAGS:
3517 * This symbol, if defined, indicates that the struct statfs
3518 * does have the f_flags member containing the mount flags of
3519 * the filesystem containing the file.
3520 * This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3),
3521 * not from <sys/statfs.h> (SYSV). Older BSDs (like Ultrix) do not
3522 * have statfs() and struct statfs, they have ustat() and getmnt()
3523 * with struct ustat and struct fs_data.
3524 */
3525/*#define HAS_STRUCT_STATFS_F_FLAGS / **/
3526
3527/* HAS_STRUCT_STATFS:
3528 * This symbol, if defined, indicates that the struct statfs
3529 * to do statfs() is supported.
3530 */
3531/*#define HAS_STRUCT_STATFS / **/
3532
3533/* HAS_FSTATVFS:
3534 * This symbol, if defined, indicates that the fstatvfs routine is
3535 * available to stat filesystems by file descriptors.
3536 */
3537/*#define HAS_FSTATVFS / **/
3538
ef55c673
AC
3539/* HAS_STRERROR_L:
3540 * This symbol, if defined, indicates that the strerror_l routine is
3541 * available to return the error message for a given errno value in
3542 * a particular locale (identified by a locale_t object).
3543 */
3544/*#define HAS_STRERROR_L / **/
3545
9244ff22
SP
3546/* HAS_STRFTIME:
3547 * This symbol, if defined, indicates that the strftime routine is
3548 * available to do time formatting.
3549 */
3550/*#define HAS_STRFTIME / **/
3551
3552/* HAS_STRLCAT:
3553 * This symbol, if defined, indicates that the strlcat () routine is
3554 * available to do string concatenation.
3555 */
3556/*#define HAS_STRLCAT / **/
3557
3558/* HAS_STRLCPY:
3559 * This symbol, if defined, indicates that the strlcpy () routine is
3560 * available to do string copying.
3561 */
3562/*#define HAS_STRLCPY / **/
3563
3564/* HAS_STRTOLD:
3565 * This symbol, if defined, indicates that the strtold routine is
3566 * available to convert strings to long doubles.
3567 */
3568/*#define HAS_STRTOLD / **/
3569
3570/* HAS_STRTOLL:
3571 * This symbol, if defined, indicates that the strtoll routine is
3572 * available to convert strings to long longs.
3573 */
3574/*#define HAS_STRTOLL / **/
3575
3576/* HAS_STRTOQ:
3577 * This symbol, if defined, indicates that the strtoq routine is
3578 * available to convert strings to long longs (quads).
3579 */
3580/*#define HAS_STRTOQ / **/
3581
3582/* HAS_STRTOULL:
3583 * This symbol, if defined, indicates that the strtoull routine is
3584 * available to convert strings to unsigned long longs.
3585 */
3586/*#define HAS_STRTOULL / **/
3587
3588/* HAS_STRTOUQ:
3589 * This symbol, if defined, indicates that the strtouq routine is
3590 * available to convert strings to unsigned long longs (quads).
3591 */
3592/*#define HAS_STRTOUQ / **/
3593
3594/* HAS_SYSCALL_PROTO:
3595 * This symbol, if defined, indicates that the system provides
3596 * a prototype for the syscall() function. Otherwise, it is up
3597 * to the program to supply one. Good guesses are
3598 * extern int syscall(int, ...);
3599 * extern int syscall(long, ...);
3600 */
3601/*#define HAS_SYSCALL_PROTO / **/
3602
3603/* HAS_TELLDIR_PROTO:
3604 * This symbol, if defined, indicates that the system provides
3605 * a prototype for the telldir() function. Otherwise, it is up
3606 * to the program to supply one. A good guess is
3607 * extern long telldir(DIR*);
3608 */
3609/*#define HAS_TELLDIR_PROTO / **/
3610
f40bbcbf
MB
3611/* HAS_TGAMMA:
3612 * This symbol, if defined, indicates that the tgamma routine is
3613 * available to do the gamma function. See also HAS_LGAMMA.
3614 */
3615/*#define HAS_TGAMMA / **/
3616
0639114f
NC
3617/* HAS_CTIME64:
3618 * This symbol, if defined, indicates that the ctime64 () routine is
3619 * available to do the 64bit variant of ctime ()
3620 */
3621/* HAS_LOCALTIME64:
3622 * This symbol, if defined, indicates that the localtime64 () routine is
3623 * available to do the 64bit variant of localtime ()
3624 */
3625/* HAS_GMTIME64:
3626 * This symbol, if defined, indicates that the gmtime64 () routine is
3627 * available to do the 64bit variant of gmtime ()
3628 */
3629/* HAS_MKTIME64:
3630 * This symbol, if defined, indicates that the mktime64 () routine is
3631 * available to do the 64bit variant of mktime ()
3632 */
3633/* HAS_DIFFTIME64:
3634 * This symbol, if defined, indicates that the difftime64 () routine is
3635 * available to do the 64bit variant of difftime ()
3636 */
3637/* HAS_ASCTIME64:
3638 * This symbol, if defined, indicates that the asctime64 () routine is
3639 * available to do the 64bit variant of asctime ()
3640 */
3641/*#define HAS_CTIME64 / **/
3642/*#define HAS_LOCALTIME64 / **/
3643/*#define HAS_GMTIME64 / **/
3644/*#define HAS_MKTIME64 / **/
3645/*#define HAS_DIFFTIME64 / **/
3646/*#define HAS_ASCTIME64 / **/
3647
3648/* HAS_TIMEGM:
3649 * This symbol, if defined, indicates that the timegm routine is
3650 * available to do the opposite of gmtime ()
3651 */
3652/*#define HAS_TIMEGM / **/
3653
3adf3699 3654/* HAS_TRUNC:
f40bbcbf
MB
3655 * This symbol, if defined, indicates that the trunc routine is
3656 * available to round doubles towards zero.
3adf3699
JH
3657 */
3658/*#define HAS_TRUNC / **/
3659
d6f85a58
MB
3660/* HAS_TRUNCL:
3661 * This symbol, if defined, indicates that the truncl routine is
3662 * available. If copysignl is also present we can emulate modfl.
3663 */
3664/*#define HAS_TRUNCL / **/
3665
9244ff22
SP
3666/* U32_ALIGNMENT_REQUIRED:
3667 * This symbol, if defined, indicates that you must access
3668 * character data through U32-aligned pointers.
3669 */
3670#ifndef U32_ALIGNMENT_REQUIRED
3671#define U32_ALIGNMENT_REQUIRED /**/
3672#endif
3673
3674/* HAS_UALARM:
3675 * This symbol, if defined, indicates that the ualarm routine is
3676 * available to do alarms with microsecond granularity.
3677 */
3678/*#define HAS_UALARM / **/
3679
3680/* HAS_UNORDERED:
3681 * This symbol, if defined, indicates that the unordered routine is
3682 * available to check whether two doubles are unordered
3683 * (effectively: whether either of them is NaN)
3684 */
3685/*#define HAS_UNORDERED / **/
3686
3687/* HAS_UNSETENV:
3688 * This symbol, if defined, indicates that the unsetenv () routine is
3689 * available for use.
3690 */
3691/*#define HAS_UNSETENV / **/
3692
3693/* HAS_USLEEP_PROTO:
3694 * This symbol, if defined, indicates that the system provides
3695 * a prototype for the usleep() function. Otherwise, it is up
3696 * to the program to supply one. A good guess is
3697 * extern int usleep(useconds_t);
3698 */
3699/*#define HAS_USLEEP_PROTO / **/
3700
ea442100
JH
3701/* HAS_USTAT:
3702 * This symbol, if defined, indicates that the ustat system call is
3703 * available to query file system statistics by dev_t.
3704 */
3705/*#define HAS_USTAT / **/
3706
9cdcdad1
MB
3707/* HAS_WCSCMP:
3708 * This symbol, if defined, indicates that the wcscmp routine is
3709 * available to compare two wide character strings.
3710 */
3711/*#define HAS_WCSCMP / **/
3712
3713/* HAS_WCSXFRM:
3714 * This symbol, if defined, indicates that the wcsxfrm routine is
3715 * available to tranform a wide character string for wcscmp().
3716 */
3717/*#define HAS_WCSXFRM / **/
3718
9244ff22
SP
3719/* HAS_WRITEV:
3720 * This symbol, if defined, indicates that the writev routine is
3721 * available to do scatter writes.
3722 */
3723/*#define HAS_WRITEV / **/
3724
32db2dd3
MB
3725/* DEFAULT_INC_EXCLUDES_DOT:
3726 * This symbol, if defined, removes the legacy default behavior of
3727 * including '.' at the end of @INC.
3728 */
29e06fb2 3729/*#define DEFAULT_INC_EXCLUDES_DOT / **/
32db2dd3 3730
9244ff22
SP
3731/* USE_DYNAMIC_LOADING:
3732 * This symbol, if defined, indicates that dynamic loading of
3733 * some sort is available.
3734 */
3735/*#define USE_DYNAMIC_LOADING / **/
3736
3737/* FFLUSH_NULL:
a05353bf
MB
3738 * This symbol, if defined, tells that fflush(NULL) correctly
3739 * flushes all pending stdio output without side effects. In
3740 * particular, on some platforms calling fflush(NULL) *still*
3741 * corrupts STDIN if it is a pipe.
9244ff22
SP
3742 */
3743/* FFLUSH_ALL:
3744 * This symbol, if defined, tells that to flush
3745 * all pending stdio output one must loop through all
3746 * the stdio file handles stored in an array and fflush them.
3747 * Note that if fflushNULL is defined, fflushall will not
3748 * even be probed for and will be left undefined.
3749 */
3750/*#define FFLUSH_NULL / **/
3751/*#define FFLUSH_ALL / **/
3752
3753/* I_ASSERT:
3754 * This symbol, if defined, indicates that <assert.h> exists and
3755 * could be included by the C program to get the assert() macro.
3756 */
3757#define I_ASSERT /**/
3758
470dd224
JH
3759/* I_BFD:
3760 * This symbol, if defined, indicates that <bfd.h> exists and
f6a82ade 3761 * can be included.
470dd224
JH
3762 */
3763/*#define I_BFD / **/
3764
9244ff22
SP
3765/* I_CRYPT:
3766 * This symbol, if defined, indicates that <crypt.h> exists and
3767 * should be included.
3768 */
3769/*#define I_CRYPT / **/
3770
3771/* DB_Prefix_t:
3772 * This symbol contains the type of the prefix structure element
3773 * in the <db.h> header file. In older versions of DB, it was
3774 * int, while in newer ones it is u_int32_t.
3775 */
3776/* DB_Hash_t:
3777 * This symbol contains the type of the prefix structure element
3778 * in the <db.h> header file. In older versions of DB, it was
3779 * int, while in newer ones it is size_t.
3780 */
3781/* DB_VERSION_MAJOR_CFG:
3782 * This symbol, if defined, defines the major version number of
3783 * Berkeley DB found in the <db.h> header when Perl was configured.
3784 */
3785/* DB_VERSION_MINOR_CFG:
3786 * This symbol, if defined, defines the minor version number of
3787 * Berkeley DB found in the <db.h> header when Perl was configured.
3788 * For DB version 1 this is always 0.
3789 */
3790/* DB_VERSION_PATCH_CFG:
3791 * This symbol, if defined, defines the patch version number of
3792 * Berkeley DB found in the <db.h> header when Perl was configured.
3793 * For DB version 1 this is always 0.
3794 */
3795#define DB_Hash_t u_int32_t /**/
3796#define DB_Prefix_t size_t /**/
3797#define DB_VERSION_MAJOR_CFG 0 /**/
3798#define DB_VERSION_MINOR_CFG 0 /**/
3799#define DB_VERSION_PATCH_CFG 0 /**/
3800
d0166596
MB
3801/* I_FENV:
3802 * This symbol, if defined, indicates to the C program that it should
3803 * include <fenv.h> to get the floating point environment definitions.
3804 */
3805/*#define I_FENV / **/
3806
9244ff22
SP
3807/* I_FP:
3808 * This symbol, if defined, indicates that <fp.h> exists and
3809 * should be included.
3810 */
3811/*#define I_FP / **/
3812
3813/* I_FP_CLASS:
3814 * This symbol, if defined, indicates that <fp_class.h> exists and
3815 * should be included.
3816 */
3817/*#define I_FP_CLASS / **/
3818
3819/* I_IEEEFP:
3820 * This symbol, if defined, indicates that <ieeefp.h> exists and
3821 * should be included.
3822 */
3823/*#define I_IEEEFP / **/
3824
3825/* I_INTTYPES:
3826 * This symbol, if defined, indicates to the C program that it should
3827 * include <inttypes.h>.
3828 */
3829/*#define I_INTTYPES / **/
3830
3831/* I_LANGINFO:
3832 * This symbol, if defined, indicates that <langinfo.h> exists and
3833 * should be included.
3834 */
3835/*#define I_LANGINFO / **/
3836
3837/* I_LIBUTIL:
3838 * This symbol, if defined, indicates that <libutil.h> exists and
3839 * should be included.
3840 */
3841/*#define I_LIBUTIL / **/
3842
0639114f
NC
3843/* I_MALLOCMALLOC:
3844 * This symbol, if defined, indicates to the C program that it should
3845 * include <malloc/malloc.h>.
3846 */
3847/*#define I_MALLOCMALLOC / **/
3848
ea442100
JH
3849/* I_MNTENT:
3850 * This symbol, if defined, indicates that <mntent.h> exists and
3851 * should be included.
3852 */
3853/*#define I_MNTENT / **/
3854
9244ff22
SP
3855/* I_NETINET_TCP:
3856 * This symbol, if defined, indicates to the C program that it should
3857 * include <netinet/tcp.h>.
3858 */
3859/*#define I_NETINET_TCP / **/
3860
3861/* I_POLL:
3862 * This symbol, if defined, indicates that <poll.h> exists and
3863 * should be included. (see also HAS_POLL)
3864 */
3865/*#define I_POLL / **/
3866
3867/* I_PROT:
3868 * This symbol, if defined, indicates that <prot.h> exists and
3869 * should be included.
3870 */
3871/*#define I_PROT / **/
3872
f40bbcbf
MB
3873/* I_QUADMATH:
3874 * This symbol, if defined, indicates that <quadmath.h> exists and
3875 * should be included.
3876 */
3877/*#define I_QUADMATH / **/
3878
9244ff22
SP
3879/* I_SHADOW:
3880 * This symbol, if defined, indicates that <shadow.h> exists and
3881 * should be included.
3882 */
3883/*#define I_SHADOW / **/
3884
3885/* I_SOCKS:
3886 * This symbol, if defined, indicates that <socks.h> exists and
3887 * should be included.
3888 */
3889/*#define I_SOCKS / **/
3890
06501368
MB
3891/* I_STDBOOL:
3892 * This symbol, if defined, indicates that <stdbool.h> exists and
3893 * can be included.
3894 */
3895/*#define I_STDBOOL / **/
3896
d0166596
MB
3897/* I_STDINT:
3898 * This symbol, if defined, indicates that <stdint.h> exists and
3899 * should be included.
3900 */
3901/*#define I_STDINT / **/
3902
9244ff22
SP
3903/* I_SUNMATH:
3904 * This symbol, if defined, indicates that <sunmath.h> exists and
3905 * should be included.
3906 */
3907/*#define I_SUNMATH / **/
3908
3909/* I_SYSLOG:
3910 * This symbol, if defined, indicates that <syslog.h> exists and
3911 * should be included.
3912 */
3913/*#define I_SYSLOG / **/
3914
3915/* I_SYSMODE:
3916 * This symbol, if defined, indicates that <sys/mode.h> exists and
3917 * should be included.
3918 */
3919/*#define I_SYSMODE / **/
3920
ea442100
JH
3921/* I_SYS_MOUNT:
3922 * This symbol, if defined, indicates that <sys/mount.h> exists and
3923 * should be included.
3924 */
3925/*#define I_SYS_MOUNT / **/
3926
3927/* I_SYS_STATFS:
3928 * This symbol, if defined, indicates that <sys/statfs.h> exists.
3929 */
3930/*#define I_SYS_STATFS / **/
3931
3932/* I_SYS_STATVFS:
3933 * This symbol, if defined, indicates that <sys/statvfs.h> exists and
3934 * should be included.
3935 */
3936/*#define I_SYS_STATVFS / **/
3937
9244ff22
SP
3938/* I_SYSUTSNAME:
3939 * This symbol, if defined, indicates that <sys/utsname.h> exists and
3940 * should be included.
3941 */
3942/*#define I_SYSUTSNAME / **/
3943
ea442100
JH
3944/* I_SYS_VFS:
3945 * This symbol, if defined, indicates that <sys/vfs.h> exists and
3946 * should be included.
3947 */
3948/*#define I_SYS_VFS / **/
3949
3950/* I_USTAT:
3951 * This symbol, if defined, indicates that <ustat.h> exists and
3952 * should be included.
3953 */
3954/*#define I_USTAT / **/
3955
e6704a40
MB
3956/* DOUBLEINFBYTES:
3957 * This symbol, if defined, is a comma-separated list of
3958 * hexadecimal bytes for the double precision infinity.
3959 */
3960/* DOUBLENANBYTES:
3961 * This symbol, if defined, is a comma-separated list of
3962 * hexadecimal bytes (0xHH) for the double precision not-a-number.
3963 */
3964/* LONGDBLINFBYTES:
3965 * This symbol, if defined, is a comma-separated list of
3966 * hexadecimal bytes for the long double precision infinity.
3967 */
3968/* LONGDBLNANBYTES:
3969 * This symbol, if defined, is a comma-separated list of
3970 * hexadecimal bytes (0xHH) for the long double precision not-a-number.
3971 */
3972#define DOUBLEINFBYTES 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x7f /**/
3973#define DOUBLENANBYTES 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x7f /**/
3974#define LONGDBLINFBYTES 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 /**/
3975#define LONGDBLNANBYTES 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 /**/
3976
9244ff22
SP
3977/* PERL_PRIfldbl:
3978 * This symbol, if defined, contains the string used by stdio to
3979 * format long doubles (format 'f') for output.
3980 */
3981/* PERL_PRIgldbl:
3982 * This symbol, if defined, contains the string used by stdio to
3983 * format long doubles (format 'g') for output.
3984 */
3985/* PERL_PRIeldbl:
3986 * This symbol, if defined, contains the string used by stdio to
3987 * format long doubles (format 'e') for output.
3988 */
3989/* PERL_SCNfldbl:
3990 * This symbol, if defined, contains the string used by stdio to
3991 * format long doubles (format 'f') for input.
3992 */
f40bbcbf
MB
3993/* DOUBLEKIND:
3994 * DOUBLEKIND will be one of
3995 * DOUBLE_IS_IEEE_754_32_BIT_LITTLE_ENDIAN
3996 * DOUBLE_IS_IEEE_754_32_BIT_BIG_ENDIAN
3997 * DOUBLE_IS_IEEE_754_64_BIT_LITTLE_ENDIAN
3998 * DOUBLE_IS_IEEE_754_64_BIT_BIG_ENDIAN
3999 * DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
4000 * DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN
4001 * DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_LE_BE
4002 * DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_BE_LE
c183cd86
JH
4003 * DOUBLE_IS_VAX_F_FLOAT
4004 * DOUBLE_IS_VAX_D_FLOAT
4005 * DOUBLE_IS_VAX_G_FLOAT
429a3a11
JH
4006 * DOUBLE_IS_IBM_SINGLE_32_BIT
4007 * DOUBLE_IS_IBM_DOUBLE_64_BIT
4008 * DOUBLE_IS_CRAY_SINGLE_64_BIT
f40bbcbf
MB
4009 * DOUBLE_IS_UNKNOWN_FORMAT
4010 */
21196d16 4011/* DOUBLE_HAS_INF:
4cb05021
JH
4012 * This symbol, if defined, indicates that the double has
4013 * the infinity.
4014 */
21196d16 4015/* DOUBLE_HAS_NAN:
4cb05021
JH
4016 * This symbol, if defined, indicates that the double has
4017 * the not-a-number.
4018 */
21196d16 4019/* DOUBLE_HAS_NEGATIVE_ZERO:
4cb05021
JH
4020 * This symbol, if defined, indicates that the double has
4021 * the negative_zero.
4022 */
21196d16 4023/* DOUBLE_HAS_SUBNORMALS:
4cb05021
JH
4024 * This symbol, if defined, indicates that the double has
4025 * the subnormals (denormals).
4026 */
21196d16 4027/* DOUBLE_STYLE_CRAY:
4cb05021
JH
4028 * This symbol, if defined, indicates that the double is
4029 * the 64-bit CRAY mainframe format.
4030 */
21196d16 4031/* DOUBLE_STYLE_IBM:
4cb05021
JH
4032 * This symbol, if defined, indicates that the double is
4033 * the 64-bit IBM mainframe format.
4034 */
21196d16 4035/* DOUBLE_STYLE_IEEE:
4cb05021
JH
4036 * This symbol, if defined, indicates that the double is
4037 * the 64-bit IEEE 754.
4038 */
21196d16 4039/* DOUBLE_STYLE_VAX:
4cb05021
JH
4040 * This symbol, if defined, indicates that the double is
4041 * the 64-bit VAX format D or G.
4042 */
f40bbcbf
MB
4043#define DOUBLEKIND 3 /**/
4044#define DOUBLE_IS_IEEE_754_32_BIT_LITTLE_ENDIAN 1
4045#define DOUBLE_IS_IEEE_754_32_BIT_BIG_ENDIAN 2
4046#define DOUBLE_IS_IEEE_754_64_BIT_LITTLE_ENDIAN 3
4047#define DOUBLE_IS_IEEE_754_64_BIT_BIG_ENDIAN 4
4048#define DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN 5
4049#define DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN 6
4050#define DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_LE_BE 7
4051#define DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_BE_LE 8
c183cd86
JH
4052#define DOUBLE_IS_VAX_F_FLOAT 9
4053#define DOUBLE_IS_VAX_D_FLOAT 10
4054#define DOUBLE_IS_VAX_G_FLOAT 11
429a3a11
JH
4055#define DOUBLE_IS_IBM_SINGLE_32_BIT 12
4056#define DOUBLE_IS_IBM_DOUBLE_64_BIT 13
4057#define DOUBLE_IS_CRAY_SINGLE_64_BIT 14
f40bbcbf 4058#define DOUBLE_IS_UNKNOWN_FORMAT -1
9244ff22
SP
4059/*#define PERL_PRIfldbl "llf" / **/
4060/*#define PERL_PRIgldbl "llg" / **/
4061/*#define PERL_PRIeldbl "lle" / **/
4062/*#define PERL_SCNfldbl "llf" / **/
4cb05021 4063#define DOUBLE_HAS_INF
21196d16 4064#define DOUBLE_HAS_NAN
4cb05021
JH
4065#define DOUBLE_HAS_NEGATIVE_ZERO
4066#define DOUBLE_HAS_SUBNORMALS
4067#undef DOUBLE_STYLE_CRAY
4068#undef DOUBLE_STYLE_IBM
4069#define DOUBLE_STYLE_IEEE
4070#undef DOUBLE_STYLE_VAX
9244ff22 4071
44521f3a
JH
4072/* DOUBLEMANTBITS:
4073 * This symbol, if defined, tells how many mantissa bits
4074 * there are in double precision floating point format.
e6704a40
MB
4075 * Note that this is usually DBL_MANT_DIG minus one, since
4076 * with the standard IEEE 754 formats DBL_MANT_DIG includes
44521f3a
JH
4077 * the implicit bit, which doesn't really exist.
4078 */
44521f3a
JH
4079/* LONGDBLMANTBITS:
4080 * This symbol, if defined, tells how many mantissa bits
4081 * there are in long double precision floating point format.
e6704a40
MB
4082 * Note that this can be LDBL_MANT_DIG minus one,
4083 * since LDBL_MANT_DIG can include the IEEE 754 implicit bit.
4084 * The common x86-style 80-bit long double does not have
44521f3a
JH
4085 * an implicit bit.
4086 */
44521f3a
JH
4087/* NVMANTBITS:
4088 * This symbol, if defined, tells how many mantissa bits
4089 * (not including implicit bit) there are in a Perl NV.
4090 * This depends on which floating point type was chosen.
4091 */
e6704a40
MB
4092#define DOUBLEMANTBITS 52
4093#define LONGDBLMANTBITS 64
4094#define NVMANTBITS 52
44521f3a 4095
9244ff22
SP
4096/* NEED_VA_COPY:
4097 * This symbol, if defined, indicates that the system stores
4098 * the variable argument list datatype, va_list, in a format
4099 * that cannot be copied by simple assignment, so that some
4100 * other means must be used when copying is required.
4101 * As such systems vary in their provision (or non-provision)
4102 * of copying mechanisms, handy.h defines a platform-
4103 * independent macro, Perl_va_copy(src, dst), to do the job.
4104 */
6644ede8 4105#define NEED_VA_COPY /**/
9244ff22
SP
4106
4107/* IVTYPE:
4108 * This symbol defines the C type used for Perl's IV.
4109 */
4110/* UVTYPE:
4111 * This symbol defines the C type used for Perl's UV.
4112 */
4113/* I8TYPE:
4114 * This symbol defines the C type used for Perl's I8.
4115 */
4116/* U8TYPE:
4117 * This symbol defines the C type used for Perl's U8.
4118 */
4119/* I16TYPE:
4120 * This symbol defines the C type used for Perl's I16.
4121 */
4122/* U16TYPE:
4123 * This symbol defines the C type used for Perl's U16.
4124 */
4125/* I32TYPE:
4126 * This symbol defines the C type used for Perl's I32.
4127 */
4128/* U32TYPE:
4129 * This symbol defines the C type used for Perl's U32.
4130 */
4131/* I64TYPE:
4132 * This symbol defines the C type used for Perl's I64.
4133 */
4134/* U64TYPE:
4135 * This symbol defines the C type used for Perl's U64.
4136 */
4137/* NVTYPE:
4138 * This symbol defines the C type used for Perl's NV.
4139 */
4140/* IVSIZE:
4141 * This symbol contains the sizeof(IV).
4142 */
4143/* UVSIZE:
4144 * This symbol contains the sizeof(UV).
4145 */
4146/* I8SIZE:
4147 * This symbol contains the sizeof(I8).
4148 */
4149/* U8SIZE:
4150 * This symbol contains the sizeof(U8).
4151 */
4152/* I16SIZE:
4153 * This symbol contains the sizeof(I16).
4154 */
4155/* U16SIZE:
4156 * This symbol contains the sizeof(U16).
4157 */
4158/* I32SIZE:
4159 * This symbol contains the sizeof(I32).
4160 */
4161/* U32SIZE:
4162 * This symbol contains the sizeof(U32).
4163 */
4164/* I64SIZE:
4165 * This symbol contains the sizeof(I64).
4166 */
4167/* U64SIZE:
4168 * This symbol contains the sizeof(U64).
4169 */
4170/* NVSIZE:
4171 * This symbol contains the sizeof(NV).
8593d8e7
DM
4172 * Note that some floating point formats have unused bytes.
4173 * The most notable example is the x86* 80-bit extended precision
4174 * which comes in byte sizes of 12 and 16 (for 32 and 64 bit
4175 * platforms, respectively), but which only uses 10 bytes.
4176 * Perl compiled with -Duselongdouble on x86* is like this.
9244ff22
SP
4177 */
4178/* NV_PRESERVES_UV:
4179 * This symbol, if defined, indicates that a variable of type NVTYPE
4180 * can preserve all the bits of a variable of type UVTYPE.
4181 */
4182/* NV_PRESERVES_UV_BITS:
4183 * This symbol contains the number of bits a variable of type NVTYPE
4184 * can preserve of a variable of type UVTYPE.
4185 */
0639114f 4186/* NV_OVERFLOWS_INTEGERS_AT:
b10924eb
SP
4187 * This symbol gives the largest integer value that NVs can hold. This
4188 * value + 1.0 cannot be stored accurately. It is expressed as constant
486ec47a 4189 * floating point expression to reduce the chance of decimal/binary
b10924eb
SP
4190 * conversion issues. If it can not be determined, the value 0 is given.
4191 */
9244ff22
SP
4192/* NV_ZERO_IS_ALLBITS_ZERO:
4193 * This symbol, if defined, indicates that a variable of type NVTYPE
4194 * stores 0.0 in memory as all bits zero.
4195 */
4196#define IVTYPE long /**/
4197#define UVTYPE unsigned long /**/
ab3ee5ad 4198#define I8TYPE signed char /**/
9244ff22
SP
4199#define U8TYPE unsigned char /**/
4200#define I16TYPE short /**/
4201#define U16TYPE unsigned short /**/
4202#define I32TYPE long /**/
4203#define U32TYPE unsigned long /**/
4204#ifdef HAS_QUAD
4205#define I64TYPE int64_t /**/
4206#define U64TYPE uint64_t /**/
4207#endif
4208#define NVTYPE double /**/
4209#define IVSIZE 4 /**/
4210#define UVSIZE 4 /**/
4211#define I8SIZE 1 /**/
4212#define U8SIZE 1 /**/
4213#define I16SIZE 2 /**/
4214#define U16SIZE 2 /**/
4215#define I32SIZE 4 /**/
4216#define U32SIZE 4 /**/
4217#ifdef HAS_QUAD
4218#define I64SIZE 8 /**/
4219#define U64SIZE 8 /**/
4220#endif
4221#define NVSIZE 8 /**/
4222#undef NV_PRESERVES_UV
4223#define NV_PRESERVES_UV_BITS 0
b10924eb 4224#define NV_OVERFLOWS_INTEGERS_AT 256.0*256.0*256.0*256.0*256.0*256.0*2.0*2.0*2.0*2.0*2.0
9244ff22
SP
4225#undef NV_ZERO_IS_ALLBITS_ZERO
4226#if UVSIZE == 8
4227# ifdef BYTEORDER
4228# if BYTEORDER == 0x1234
4229# undef BYTEORDER
4230# define BYTEORDER 0x12345678
4231# else
4232# if BYTEORDER == 0x4321
4233# undef BYTEORDER
4234# define BYTEORDER 0x87654321
4235# endif
4236# endif
4237# endif
4238#endif
4239
4240/* IVdf:
4241 * This symbol defines the format string used for printing a Perl IV
4242 * as a signed decimal integer.
4243 */
4244/* UVuf:
4245 * This symbol defines the format string used for printing a Perl UV
4246 * as an unsigned decimal integer.
4247 */
4248/* UVof:
4249 * This symbol defines the format string used for printing a Perl UV
4250 * as an unsigned octal integer.
4251 */
4252/* UVxf:
4253 * This symbol defines the format string used for printing a Perl UV
4254 * as an unsigned hexadecimal integer in lowercase abcdef.
4255 */
4256/* UVXf:
4257 * This symbol defines the format string used for printing a Perl UV
4258 * as an unsigned hexadecimal integer in uppercase ABCDEF.
4259 */
4260/* NVef:
4261 * This symbol defines the format string used for printing a Perl NV
4262 * using %e-ish floating point format.
4263 */
4264/* NVff:
4265 * This symbol defines the format string used for printing a Perl NV
4266 * using %f-ish floating point format.
4267 */
4268/* NVgf:
4269 * This symbol defines the format string used for printing a Perl NV
4270 * using %g-ish floating point format.
4271 */
4272#define IVdf "ld" /**/
4273#define UVuf "lu" /**/
4274#define UVof "lo" /**/
4275#define UVxf "lx" /**/
4276#define UVXf "lX" /**/
4277#define NVef "e" /**/
4278#define NVff "f" /**/
4279#define NVgf "g" /**/
4280
4281/* SELECT_MIN_BITS:
4282 * This symbol holds the minimum number of bits operated by select.
4283 * That is, if you do select(n, ...), how many bits at least will be
4284 * cleared in the masks if some activity is detected. Usually this
4285 * is either n or 32*ceil(n/32), especially many little-endians do
4286 * the latter. This is only useful if you have select(), naturally.
4287 */
4288#define SELECT_MIN_BITS 32 /**/
4289
7e69463d
AC
4290/* ST_INO_SIZE:
4291 * This variable contains the size of struct stat's st_ino in bytes.
4292 */
4293/* ST_INO_SIGN:
4294 * This symbol holds the signedness of struct stat's st_ino.
4295 * 1 for unsigned, -1 for signed.
4296 */
4297#define ST_INO_SIGN 1 /* st_ino sign */
4298#define ST_INO_SIZE 4 /* st_ino size */
4299
4300/* STARTPERL:
4301 * This variable contains the string to put in front of a perl
4302 * script to make sure (one hopes) that it runs with perl and not
4303 * some shell.
4304 */
4305#define STARTPERL "#!perl" /**/
4306
4307/* HAS_STDIO_STREAM_ARRAY:
4308 * This symbol, if defined, tells that there is an array
4309 * holding the stdio streams.
4310 */
4311/* STDIO_STREAM_ARRAY:
4312 * This symbol tells the name of the array holding the stdio streams.
4313 * Usual values include _iob, __iob, and __sF.
4314 */
4315/*#define HAS_STDIO_STREAM_ARRAY / **/
4316#ifdef HAS_STDIO_STREAM_ARRAY
4317#define STDIO_STREAM_ARRAY
4318#endif
4319
4320/* GMTIME_MAX:
4321 * This symbol contains the maximum value for the time_t offset that
4322 * the system function gmtime () accepts, and defaults to 0
4323 */
4324/* GMTIME_MIN:
4325 * This symbol contains the minimum value for the time_t offset that
4326 * the system function gmtime () accepts, and defaults to 0
4327 */
4328/* LOCALTIME_MAX:
4329 * This symbol contains the maximum value for the time_t offset that
4330 * the system function localtime () accepts, and defaults to 0
4331 */
4332/* LOCALTIME_MIN:
4333 * This symbol contains the minimum value for the time_t offset that
4334 * the system function localtime () accepts, and defaults to 0
4335 */
4336#define GMTIME_MAX 2147483647 /**/
4337#define GMTIME_MIN 0 /**/
4338#define LOCALTIME_MAX 2147483647 /**/
4339#define LOCALTIME_MIN 0 /**/
4340
4341/* USE_64_BIT_INT:
4342 * This symbol, if defined, indicates that 64-bit integers should
4343 * be used when available. If not defined, the native integers
4344 * will be employed (be they 32 or 64 bits). The minimal possible
4345 * 64-bitness is used, just enough to get 64-bit integers into Perl.
4346 * This may mean using for example "long longs", while your memory
4347 * may still be limited to 2 gigabytes.
4348 */
4349/* USE_64_BIT_ALL:
4350 * This symbol, if defined, indicates that 64-bit integers should
4351 * be used when available. If not defined, the native integers
4352 * will be used (be they 32 or 64 bits). The maximal possible
4353 * 64-bitness is employed: LP64 or ILP64, meaning that you will
4354 * be able to use more than 2 gigabytes of memory. This mode is
4355 * even more binary incompatible than USE_64_BIT_INT. You may not
4356 * be able to run the resulting executable in a 32-bit CPU at all or
4357 * you may need at least to reboot your OS to 64-bit mode.
4358 */
4359#ifndef USE_64_BIT_INT
4360/*#define USE_64_BIT_INT / **/
4361#endif
4362#ifndef USE_64_BIT_ALL
4363/*#define USE_64_BIT_ALL / **/
4364#endif
4365
4366/* USE_CBACKTRACE:
4367 * This symbol, if defined, indicates that Perl should
4368 * be built with support for backtrace.
4369 */
4370/*#define USE_CBACKTRACE / **/
4371
4372/* USE_DTRACE:
4373 * This symbol, if defined, indicates that Perl should
4374 * be built with support for DTrace.
4375 */
4376/*#define USE_DTRACE / **/
4377
4378/* USE_FAST_STDIO:
4379 * This symbol, if defined, indicates that Perl should
4380 * be built to use 'fast stdio'.
4381 * Defaults to define in Perls 5.8 and earlier, to undef later.
4382 */
4383#ifndef USE_FAST_STDIO
4384/*#define USE_FAST_STDIO / **/
4385#endif
4386
4387/* USE_KERN_PROC_PATHNAME:
4388 * This symbol, if defined, indicates that we can use sysctl with
4389 * KERN_PROC_PATHNAME to get a full path for the executable, and hence
4390 * convert $^X to an absolute path.
4391 */
4392/*#define USE_KERN_PROC_PATHNAME / **/
4393
4394/* USE_LARGE_FILES:
4395 * This symbol, if defined, indicates that large file support
4396 * should be used when available.
4397 */
4398#ifndef USE_LARGE_FILES
4399/*#define USE_LARGE_FILES / **/
4400#endif
4401
4402/* USE_LONG_DOUBLE:
4403 * This symbol, if defined, indicates that long doubles should
4404 * be used when available.
4405 */
4406#ifndef USE_LONG_DOUBLE
4407/*#define USE_LONG_DOUBLE / **/
4408#endif
4409
4410/* USE_MORE_BITS:
4411 * This symbol, if defined, indicates that 64-bit interfaces and
4412 * long doubles should be used when available.
4413 */
4414#ifndef USE_MORE_BITS
4415/*#define USE_MORE_BITS / **/
4416#endif
4417
4418/* MULTIPLICITY:
4419 * This symbol, if defined, indicates that Perl should
4420 * be built to use multiplicity.
4421 */
4422#ifndef MULTIPLICITY
4423/*#define MULTIPLICITY / **/
4424#endif
4425
4426/* USE_NSGETEXECUTABLEPATH:
4427 * This symbol, if defined, indicates that we can use _NSGetExecutablePath
4428 * and realpath to get a full path for the executable, and hence convert
4429 * $^X to an absolute path.
4430 */
4431/*#define USE_NSGETEXECUTABLEPATH / **/
4432
4433/* USE_PERLIO:
4434 * This symbol, if defined, indicates that the PerlIO abstraction should
4435 * be used throughout. If not defined, stdio should be
4436 * used in a fully backward compatible manner.
4437 */
4438#ifndef USE_PERLIO
4439/*#define USE_PERLIO / **/
4440#endif
4441
4442/* USE_QUADMATH:
4443 * This symbol, if defined, indicates that the quadmath library should
4444 * be used when available.
4445 */
4446#ifndef USE_QUADMATH
4447/*#define USE_QUADMATH / **/
4448#endif
4449
4450/* USE_SOCKS:
4451 * This symbol, if defined, indicates that Perl should
4452 * be built to use socks.
4453 */
4454#ifndef USE_SOCKS
4455/*#define USE_SOCKS / **/
4456#endif
4457
4458/* HAS_DRAND48_PROTO:
4459 * This symbol, if defined, indicates that the system provides
4460 * a prototype for the drand48() function. Otherwise, it is up
4461 * to the program to supply one. A good guess is
4462 * extern double drand48(void);
4463 */
4464/*#define HAS_DRAND48_PROTO / **/
4465
4466/* HAS_GETHOST_PROTOS:
4467 * This symbol, if defined, indicates that <netdb.h> includes
4468 * prototypes for gethostent(), gethostbyname(), and
4469 * gethostbyaddr(). Otherwise, it is up to the program to guess
4470 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
4471 */
4472/*#define HAS_GETHOST_PROTOS / **/
4473
4474/* HAS_GETNET_PROTOS:
4475 * This symbol, if defined, indicates that <netdb.h> includes
4476 * prototypes for getnetent(), getnetbyname(), and
4477 * getnetbyaddr(). Otherwise, it is up to the program to guess
4478 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
4479 */
4480/*#define HAS_GETNET_PROTOS / **/
4481
4482/* HAS_GETPROTO_PROTOS:
4483 * This symbol, if defined, indicates that <netdb.h> includes
4484 * prototypes for getprotoent(), getprotobyname(), and
4485 * getprotobyaddr(). Otherwise, it is up to the program to guess
4486 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
4487 */
4488/*#define HAS_GETPROTO_PROTOS / **/
4489
4490/* HAS_GETSERV_PROTOS:
4491 * This symbol, if defined, indicates that <netdb.h> includes
4492 * prototypes for getservent(), getservbyname(), and
4493 * getservbyaddr(). Otherwise, it is up to the program to guess
4494 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
4495 */
4496/*#define HAS_GETSERV_PROTOS / **/
4497
4498/* HAS_LSEEK_PROTO:
4499 * This symbol, if defined, indicates that the system provides
4500 * a prototype for the lseek() function. Otherwise, it is up
4501 * to the program to supply one. A good guess is
4502 * extern off_t lseek(int, off_t, int);
4503 */
4504/*#define HAS_LSEEK_PROTO / **/
4505
4506/* Netdb_host_t:
4507 * This symbol holds the type used for the 1st argument
4508 * to gethostbyaddr().
4509 */
4510/* Netdb_hlen_t:
4511 * This symbol holds the type used for the 2nd argument
4512 * to gethostbyaddr().
4513 */
4514/* Netdb_name_t:
4515 * This symbol holds the type used for the argument to
4516 * gethostbyname().
4517 */
4518/* Netdb_net_t:
4519 * This symbol holds the type used for the 1st argument to
4520 * getnetbyaddr().
4521 */
4522#define Netdb_host_t const char * /**/
4523#define Netdb_hlen_t int /**/
4524#define Netdb_name_t const char * /**/
4525#define Netdb_net_t unsigned long /**/
4526
4527/* Select_fd_set_t:
4528 * This symbol holds the type used for the 2nd, 3rd, and 4th
4529 * arguments to select. Usually, this is 'fd_set *', if HAS_FD_SET
4530 * is defined, and 'int *' otherwise. This is only useful if you
4531 * have select(), of course.
4532 */
4533#define Select_fd_set_t int /**/
4534
4535/* Sock_size_t:
4536 * This symbol holds the type used for the size argument of
4537 * various socket calls (just the base type, not the pointer-to).
4538 */
4539#define Sock_size_t int /**/
4540
4541/* ARCHNAME:
4542 * This symbol holds a string representing the architecture name.
4543 * It may be used to construct an architecture-dependant pathname
4544 * where library files may be held under a private library, for
4545 * instance.
4546 */
4547#define ARCHNAME "unknown" /**/
4548
4549/* HAS_ASCTIME_R:
4550 * This symbol, if defined, indicates that the asctime_r routine
4551 * is available to asctime re-entrantly.
4552 */
4553/* ASCTIME_R_PROTO:
4554 * This symbol encodes the prototype of asctime_r.
4555 * It is zero if d_asctime_r is undef, and one of the
4556 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_asctime_r
4557 * is defined.
4558 */
4559/*#define HAS_ASCTIME_R / **/
4560#define ASCTIME_R_PROTO 0 /**/
4561
4562/* HAS_CRYPT_R:
4563 * This symbol, if defined, indicates that the crypt_r routine
4564 * is available to crypt re-entrantly.
4565 */
4566/* CRYPT_R_PROTO:
4567 * This symbol encodes the prototype of crypt_r.
4568 * It is zero if d_crypt_r is undef, and one of the
4569 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_crypt_r
4570 * is defined.
4571 */
4572/*#define HAS_CRYPT_R / **/
4573#define CRYPT_R_PROTO 0 /**/
4574
4575/* HAS_CTERMID_R:
4576 * This symbol, if defined, indicates that the ctermid_r routine
4577 * is available to ctermid re-entrantly.
4578 */
4579/* CTERMID_R_PROTO:
4580 * This symbol encodes the prototype of ctermid_r.
4581 * It is zero if d_ctermid_r is undef, and one of the
4582 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctermid_r
4583 * is defined.
4584 */
4585/*#define HAS_CTERMID_R / **/
4586#define CTERMID_R_PROTO 0 /**/
4587
4588/* HAS_CTIME_R:
4589 * This symbol, if defined, indicates that the ctime_r routine
4590 * is available to ctime re-entrantly.
4591 */
4592/* CTIME_R_PROTO:
4593 * This symbol encodes the prototype of ctime_r.
4594 * It is zero if d_ctime_r is undef, and one of the
4595 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctime_r
4596 * is defined.
4597 */
4598/*#define HAS_CTIME_R / **/
4599#define CTIME_R_PROTO 0 /**/
4600
4601/* HAS_DRAND48_R:
4602 * This symbol, if defined, indicates that the drand48_r routine
4603 * is available to drand48 re-entrantly.
4604 */
4605/* DRAND48_R_PROTO:
4606 * This symbol encodes the prototype of drand48_r.
4607 * It is zero if d_drand48_r is undef, and one of the
4608 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_drand48_r
4609 * is defined.
4610 */
4611/*#define HAS_DRAND48_R / **/
4612#define DRAND48_R_PROTO 0 /**/
4613
4614/* HAS_ENDGRENT_R:
4615 * This symbol, if defined, indicates that the endgrent_r routine
4616 * is available to endgrent re-entrantly.
4617 */
4618/* ENDGRENT_R_PROTO:
4619 * This symbol encodes the prototype of endgrent_r.
4620 * It is zero if d_endgrent_r is undef, and one of the
4621 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endgrent_r
4622 * is defined.
4623 */
4624/*#define HAS_ENDGRENT_R / **/
4625#define ENDGRENT_R_PROTO 0 /**/
4626
4627/* HAS_ENDHOSTENT_R:
4628 * This symbol, if defined, indicates that the endhostent_r routine
4629 * is available to endhostent re-entrantly.
4630 */
4631/* ENDHOSTENT_R_PROTO:
4632 * This symbol encodes the prototype of endhostent_r.
4633 * It is zero if d_endhostent_r is undef, and one of the
4634 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endhostent_r
4635 * is defined.
4636 */
4637/*#define HAS_ENDHOSTENT_R / **/
4638#define ENDHOSTENT_R_PROTO 0 /**/
4639
4640/* HAS_ENDNETENT_R:
4641 * This symbol, if defined, indicates that the endnetent_r routine
4642 * is available to endnetent re-entrantly.
4643 */
4644/* ENDNETENT_R_PROTO:
4645 * This symbol encodes the prototype of endnetent_r.
4646 * It is zero if d_endnetent_r is undef, and one of the
4647 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endnetent_r
4648 * is defined.
4649 */
4650/*#define HAS_ENDNETENT_R / **/
4651#define ENDNETENT_R_PROTO 0 /**/
4652
4653/* HAS_ENDPROTOENT_R:
4654 * This symbol, if defined, indicates that the endprotoent_r routine
4655 * is available to endprotoent re-entrantly.
4656 */
4657/* ENDPROTOENT_R_PROTO:
4658 * This symbol encodes the prototype of endprotoent_r.
4659 * It is zero if d_endprotoent_r is undef, and one of the
4660 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endprotoent_r
4661 * is defined.
4662 */
4663/*#define HAS_ENDPROTOENT_R / **/
4664#define ENDPROTOENT_R_PROTO 0 /**/
4665
4666/* HAS_ENDPWENT_R:
4667 * This symbol, if defined, indicates that the endpwent_r routine
4668 * is available to endpwent re-entrantly.
4669 */
4670/* ENDPWENT_R_PROTO:
4671 * This symbol encodes the prototype of endpwent_r.
4672 * It is zero if d_endpwent_r is undef, and one of the
4673 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endpwent_r
4674 * is defined.
4675 */
4676/*#define HAS_ENDPWENT_R / **/
4677#define ENDPWENT_R_PROTO 0 /**/
4678
4679/* HAS_ENDSERVENT_R:
4680 * This symbol, if defined, indicates that the endservent_r routine
4681 * is available to endservent re-entrantly.
4682 */
4683/* ENDSERVENT_R_PROTO:
4684 * This symbol encodes the prototype of endservent_r.
4685 * It is zero if d_endservent_r is undef, and one of the
4686 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endservent_r
4687 * is defined.
4688 */
4689/*#define HAS_ENDSERVENT_R / **/
4690#define ENDSERVENT_R_PROTO 0 /**/
4691
4692/* HAS_GETGRENT_R:
4693 * This symbol, if defined, indicates that the getgrent_r routine
4694 * is available to getgrent re-entrantly.
4695 */
4696/* GETGRENT_R_PROTO:
4697 * This symbol encodes the prototype of getgrent_r.
4698 * It is zero if d_getgrent_r is undef, and one of the
4699 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrent_r
4700 * is defined.
4701 */
4702/*#define HAS_GETGRENT_R / **/
4703#define GETGRENT_R_PROTO 0 /**/
4704
4705/* HAS_GETGRGID_R:
4706 * This symbol, if defined, indicates that the getgrgid_r routine
4707 * is available to getgrgid re-entrantly.
4708 */
4709/* GETGRGID_R_PROTO:
4710 * This symbol encodes the prototype of getgrgid_r.
4711 * It is zero if d_getgrgid_r is undef, and one of the
4712 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrgid_r
4713 * is defined.
4714 */
4715/*#define HAS_GETGRGID_R / **/
4716#define GETGRGID_R_PROTO 0 /**/
4717
4718/* HAS_GETGRNAM_R:
4719 * This symbol, if defined, indicates that the getgrnam_r routine
4720 * is available to getgrnam re-entrantly.
4721 */
4722/* GETGRNAM_R_PROTO:
4723 * This symbol encodes the prototype of getgrnam_r.
4724 * It is zero if d_getgrnam_r is undef, and one of the
4725 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrnam_r
4726 * is defined.
4727 */
4728/*#define HAS_GETGRNAM_R / **/
4729#define GETGRNAM_R_PROTO 0 /**/
4730
4731/* HAS_GETHOSTBYADDR_R:
4732 * This symbol, if defined, indicates that the gethostbyaddr_r routine
4733 * is available to gethostbyaddr re-entrantly.
4734 */
4735/* GETHOSTBYADDR_R_PROTO:
4736 * This symbol encodes the prototype of gethostbyaddr_r.
4737 * It is zero if d_gethostbyaddr_r is undef, and one of the
4738 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyaddr_r
4739 * is defined.
4740 */
4741/*#define HAS_GETHOSTBYADDR_R / **/
4742#define GETHOSTBYADDR_R_PROTO 0 /**/
4743
4744/* HAS_GETHOSTBYNAME_R:
4745 * This symbol, if defined, indicates that the gethostbyname_r routine
4746 * is available to gethostbyname re-entrantly.
4747 */
4748/* GETHOSTBYNAME_R_PROTO:
4749 * This symbol encodes the prototype of gethostbyname_r.
4750 * It is zero if d_gethostbyname_r is undef, and one of the
4751 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyname_r
4752 * is defined.
4753 */
4754/*#define HAS_GETHOSTBYNAME_R / **/
4755#define GETHOSTBYNAME_R_PROTO 0 /**/
4756
4757/* HAS_GETHOSTENT_R:
4758 * This symbol, if defined, indicates that the gethostent_r routine
4759 * is available to gethostent re-entrantly.
4760 */
4761/* GETHOSTENT_R_PROTO:
4762 * This symbol encodes the prototype of gethostent_r.
4763 * It is zero if d_gethostent_r is undef, and one of the
4764 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostent_r
4765 * is defined.
4766 */
4767/*#define HAS_GETHOSTENT_R / **/
4768#define GETHOSTENT_R_PROTO 0 /**/
4769
4770/* HAS_GETLOGIN_R:
4771 * This symbol, if defined, indicates that the getlogin_r routine
4772 * is available to getlogin re-entrantly.
4773 */
4774/* GETLOGIN_R_PROTO:
4775 * This symbol encodes the prototype of getlogin_r.
4776 * It is zero if d_getlogin_r is undef, and one of the
4777 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getlogin_r
4778 * is defined.
4779 */
4780/*#define HAS_GETLOGIN_R / **/
4781#define GETLOGIN_R_PROTO 0 /**/
4782
4783/* HAS_GETNETBYADDR_R:
4784 * This symbol, if defined, indicates that the getnetbyaddr_r routine
4785 * is available to getnetbyaddr re-entrantly.
4786 */
4787/* GETNETBYADDR_R_PROTO:
4788 * This symbol encodes the prototype of getnetbyaddr_r.
4789 * It is zero if d_getnetbyaddr_r is undef, and one of the
4790 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyaddr_r
4791 * is defined.
4792 */
4793/*#define HAS_GETNETBYADDR_R / **/
4794#define GETNETBYADDR_R_PROTO 0 /**/
4795
4796/* HAS_GETNETBYNAME_R:
4797 * This symbol, if defined, indicates that the getnetbyname_r routine
4798 * is available to getnetbyname re-entrantly.
4799 */
4800/* GETNETBYNAME_R_PROTO:
4801 * This symbol encodes the prototype of getnetbyname_r.
4802 * It is zero if d_getnetbyname_r is undef, and one of the
4803 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyname_r
4804 * is defined.
4805 */
4806/*#define HAS_GETNETBYNAME_R / **/
4807#define GETNETBYNAME_R_PROTO 0 /**/
4808
4809/* HAS_GETNETENT_R:
4810 * This symbol, if defined, indicates that the getnetent_r routine
4811 * is available to getnetent re-entrantly.
4812 */
4813/* GETNETENT_R_PROTO:
4814 * This symbol encodes the prototype of getnetent_r.
4815 * It is zero if d_getnetent_r is undef, and one of the
4816 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetent_r
4817 * is defined.
4818 */
4819/*#define HAS_GETNETENT_R / **/
4820#define GETNETENT_R_PROTO 0 /**/
4821
4822/* HAS_GETPROTOBYNAME_R:
4823 * This symbol, if defined, indicates that the getprotobyname_r routine
4824 * is available to getprotobyname re-entrantly.
4825 */
4826/* GETPROTOBYNAME_R_PROTO:
4827 * This symbol encodes the prototype of getprotobyname_r.
4828 * It is zero if d_getprotobyname_r is undef, and one of the
4829 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobyname_r
4830 * is defined.
4831 */
4832/*#define HAS_GETPROTOBYNAME_R / **/
4833#define GETPROTOBYNAME_R_PROTO 0 /**/
4834
4835/* HAS_GETPROTOBYNUMBER_R:
4836 * This symbol, if defined, indicates that the getprotobynumber_r routine
4837 * is available to getprotobynumber re-entrantly.
4838 */
4839/* GETPROTOBYNUMBER_R_PROTO:
4840 * This symbol encodes the prototype of getprotobynumber_r.
4841 * It is zero if d_getprotobynumber_r is undef, and one of the
4842 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobynumber_r
4843 * is defined.
4844 */
4845/*#define HAS_GETPROTOBYNUMBER_R / **/
4846#define GETPROTOBYNUMBER_R_PROTO 0 /**/
4847
4848/* HAS_GETPROTOENT_R:
4849 * This symbol, if defined, indicates that the getprotoent_r routine
4850 * is available to getprotoent re-entrantly.
4851 */
4852/* GETPROTOENT_R_PROTO:
4853 * This symbol encodes the prototype of getprotoent_r.
4854 * It is zero if d_getprotoent_r is undef, and one of the
4855 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotoent_r
4856 * is defined.
4857 */
4858/*#define HAS_GETPROTOENT_R / **/
4859#define GETPROTOENT_R_PROTO 0 /**/
4860
4861/* HAS_GETPWENT_R:
4862 * This symbol, if defined, indicates that the getpwent_r routine
4863 * is available to getpwent re-entrantly.
4864 */
4865/* GETPWENT_R_PROTO:
4866 * This symbol encodes the prototype of getpwent_r.
4867 * It is zero if d_getpwent_r is undef, and one of the
4868 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwent_r
4869 * is defined.
4870 */
4871/*#define HAS_GETPWENT_R / **/
4872#define GETPWENT_R_PROTO 0 /**/
4873
4874/* HAS_GETPWNAM_R:
4875 * This symbol, if defined, indicates that the getpwnam_r routine
4876 * is available to getpwnam re-entrantly.
4877 */
4878/* GETPWNAM_R_PROTO:
4879 * This symbol encodes the prototype of getpwnam_r.
4880 * It is zero if d_getpwnam_r is undef, and one of the
4881 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwnam_r
4882 * is defined.
4883 */
4884/*#define HAS_GETPWNAM_R / **/
4885#define GETPWNAM_R_PROTO 0 /**/
4886
4887/* HAS_GETPWUID_R:
4888 * This symbol, if defined, indicates that the getpwuid_r routine
4889 * is available to getpwuid re-entrantly.
4890 */
4891/* GETPWUID_R_PROTO:
4892 * This symbol encodes the prototype of getpwuid_r.
4893 * It is zero if d_getpwuid_r is undef, and one of the
4894 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwuid_r
4895 * is defined.
4896 */
4897/*#define HAS_GETPWUID_R / **/
4898#define GETPWUID_R_PROTO 0 /**/
4899
4900/* HAS_GETSERVBYNAME_R:
4901 * This symbol, if defined, indicates that the getservbyname_r routine
4902 * is available to getservbyname re-entrantly.
4903 */
4904/* GETSERVBYNAME_R_PROTO:
4905 * This symbol encodes the prototype of getservbyname_r.
4906 * It is zero if d_getservbyname_r is undef, and one of the
4907 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyname_r
4908 * is defined.
4909 */
4910/*#define HAS_GETSERVBYNAME_R / **/
4911#define GETSERVBYNAME_R_PROTO 0 /**/
4912
4913/* HAS_GETSERVBYPORT_R:
4914 * This symbol, if defined, indicates that the getservbyport_r routine
4915 * is available to getservbyport re-entrantly.
4916 */
4917/* GETSERVBYPORT_R_PROTO:
4918 * This symbol encodes the prototype of getservbyport_r.
4919 * It is zero if d_getservbyport_r is undef, and one of the
4920 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyport_r
4921 * is defined.
4922 */
4923/*#define HAS_GETSERVBYPORT_R / **/
4924#define GETSERVBYPORT_R_PROTO 0 /**/
4925
4926/* HAS_GETSERVENT_R:
4927 * This symbol, if defined, indicates that the getservent_r routine
4928 * is available to getservent re-entrantly.
4929 */
4930/* GETSERVENT_R_PROTO:
4931 * This symbol encodes the prototype of getservent_r.
4932 * It is zero if d_getservent_r is undef, and one of the
4933 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservent_r
4934 * is defined.
4935 */
4936/*#define HAS_GETSERVENT_R / **/
4937#define GETSERVENT_R_PROTO 0 /**/
4938
4939/* HAS_GETSPNAM_R:
4940 * This symbol, if defined, indicates that the getspnam_r routine
4941 * is available to getspnam re-entrantly.
4942 */
4943/* GETSPNAM_R_PROTO:
4944 * This symbol encodes the prototype of getspnam_r.
4945 * It is zero if d_getspnam_r is undef, and one of the
4946 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getspnam_r
4947 * is defined.
4948 */
4949/*#define HAS_GETSPNAM_R / **/
4950#define GETSPNAM_R_PROTO 0 /**/
4951
4952/* HAS_GMTIME_R:
4953 * This symbol, if defined, indicates that the gmtime_r routine
4954 * is available to gmtime re-entrantly.
4955 */
4956/* GMTIME_R_PROTO:
4957 * This symbol encodes the prototype of gmtime_r.
4958 * It is zero if d_gmtime_r is undef, and one of the
4959 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gmtime_r
4960 * is defined.
4961 */
4962/*#define HAS_GMTIME_R / **/
4963#define GMTIME_R_PROTO 0 /**/
4964
4965/* HAS_LOCALTIME_R:
4966 * This symbol, if defined, indicates that the localtime_r routine
4967 * is available to localtime re-entrantly.
4968 */
4969/* LOCALTIME_R_NEEDS_TZSET:
4970 * Many libc's localtime_r implementations do not call tzset,
4971 * making them differ from localtime(), and making timezone
4972 * changes using $ENV{TZ} without explicitly calling tzset
4973 * impossible. This symbol makes us call tzset before localtime_r
4974 */
4975/*#define LOCALTIME_R_NEEDS_TZSET / **/
4976#ifdef LOCALTIME_R_NEEDS_TZSET
4977#define L_R_TZSET tzset(),
4978#else
4979#define L_R_TZSET
4980#endif
4981
4982/* LOCALTIME_R_PROTO:
4983 * This symbol encodes the prototype of localtime_r.
4984 * It is zero if d_localtime_r is undef, and one of the
4985 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_localtime_r
4986 * is defined.
4987 */
4988/*#define HAS_LOCALTIME_R / **/
4989#define LOCALTIME_R_PROTO 0 /**/
4990
4991/* OLD_PTHREAD_CREATE_JOINABLE:
4992 * This symbol, if defined, indicates how to create pthread
4993 * in joinable (aka undetached) state. NOTE: not defined
4994 * if pthread.h already has defined PTHREAD_CREATE_JOINABLE
4995 * (the new version of the constant).
4996 * If defined, known values are PTHREAD_CREATE_UNDETACHED
4997 * and __UNDETACHED.
4998 */
4999/*#define OLD_PTHREAD_CREATE_JOINABLE / **/
5000
5001/* HAS_PTHREAD_ATFORK:
5002 * This symbol, if defined, indicates that the pthread_atfork routine
5003 * is available to setup fork handlers.
5004 */
5005/*#define HAS_PTHREAD_ATFORK / **/
5006
5007/* HAS_PTHREAD_YIELD:
5008 * This symbol, if defined, indicates that the pthread_yield
5009 * routine is available to yield the execution of the current
5010 * thread. sched_yield is preferable to pthread_yield.
5011 */
5012/* SCHED_YIELD:
5013 * This symbol defines the way to yield the execution of
5014 * the current thread. Known ways are sched_yield,
5015 * pthread_yield, and pthread_yield with NULL.
5016 */
5017/* HAS_SCHED_YIELD:
5018 * This symbol, if defined, indicates that the sched_yield
5019 * routine is available to yield the execution of the current
5020 * thread. sched_yield is preferable to pthread_yield.
5021 */
5022/*#define HAS_PTHREAD_YIELD / **/
5023#define SCHED_YIELD sched_yield() /**/
5024/*#define HAS_SCHED_YIELD / **/
5025
5026/* HAS_RANDOM_R:
5027 * This symbol, if defined, indicates that the random_r routine
5028 * is available to random re-entrantly.
5029 */
5030/* RANDOM_R_PROTO:
5031 * This symbol encodes the prototype of random_r.
5032 * It is zero if d_random_r is undef, and one of the
5033 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_random_r
5034 * is defined.
5035 */
5036/*#define HAS_RANDOM_R / **/
5037#define RANDOM_R_PROTO 0 /**/
5038
5039/* HAS_READDIR64_R:
5040 * This symbol, if defined, indicates that the readdir64_r routine
5041 * is available to readdir64 re-entrantly.
5042 */
5043/* READDIR64_R_PROTO:
5044 * This symbol encodes the prototype of readdir64_r.
5045 * It is zero if d_readdir64_r is undef, and one of the
5046 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir64_r
5047 * is defined.
5048 */
5049/*#define HAS_READDIR64_R / **/
5050#define READDIR64_R_PROTO 0 /**/
5051
5052/* HAS_READDIR_R:
5053 * This symbol, if defined, indicates that the readdir_r routine
5054 * is available to readdir re-entrantly.
5055 */
5056/* READDIR_R_PROTO:
5057 * This symbol encodes the prototype of readdir_r.
5058 * It is zero if d_readdir_r is undef, and one of the
5059 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir_r
5060 * is defined.
5061 */
5062/*#define HAS_READDIR_R / **/
5063#define READDIR_R_PROTO 0 /**/
5064
5065/* HAS_SETGRENT_R:
5066 * This symbol, if defined, indicates that the setgrent_r routine
5067 * is available to setgrent re-entrantly.
5068 */
5069/* SETGRENT_R_PROTO:
5070 * This symbol encodes the prototype of setgrent_r.
5071 * It is zero if d_setgrent_r is undef, and one of the
5072 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setgrent_r
5073 * is defined.
5074 */
5075/*#define HAS_SETGRENT_R / **/
5076#define SETGRENT_R_PROTO 0 /**/
5077
5078/* HAS_SETHOSTENT_R:
5079 * This symbol, if defined, indicates that the sethostent_r routine
5080 * is available to sethostent re-entrantly.
5081 */
5082/* SETHOSTENT_R_PROTO:
5083 * This symbol encodes the prototype of sethostent_r.
5084 * It is zero if d_sethostent_r is undef, and one of the
5085 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_sethostent_r
5086 * is defined.
5087 */
5088/*#define HAS_SETHOSTENT_R / **/
5089#define SETHOSTENT_R_PROTO 0 /**/
5090
5091/* HAS_SETLOCALE_R:
5092 * This symbol, if defined, indicates that the setlocale_r routine
5093 * is available to setlocale re-entrantly.
5094 */
5095/* SETLOCALE_R_PROTO:
5096 * This symbol encodes the prototype of setlocale_r.
5097 * It is zero if d_setlocale_r is undef, and one of the
5098 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setlocale_r
5099 * is defined.
5100 */
5101/*#define HAS_SETLOCALE_R / **/
5102#define SETLOCALE_R_PROTO 0 /**/
5103
5104/* HAS_SETNETENT_R:
5105 * This symbol, if defined, indicates that the setnetent_r routine
5106 * is available to setnetent re-entrantly.
5107 */
5108/* SETNETENT_R_PROTO:
5109 * This symbol encodes the prototype of setnetent_r.
5110 * It is zero if d_setnetent_r is undef, and one of the
5111 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setnetent_r
5112 * is defined.
5113 */
5114/*#define HAS_SETNETENT_R / **/
5115#define SETNETENT_R_PROTO 0 /**/
5116
5117/* HAS_SETPROTOENT_R:
5118 * This symbol, if defined, indicates that the setprotoent_r routine
5119 * is available to setprotoent re-entrantly.
5120 */
5121/* SETPROTOENT_R_PROTO:
5122 * This symbol encodes the prototype of setprotoent_r.
5123 * It is zero if d_setprotoent_r is undef, and one of the
5124 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setprotoent_r
5125 * is defined.
5126 */
5127/*#define HAS_SETPROTOENT_R / **/
5128#define SETPROTOENT_R_PROTO 0 /**/
5129
5130/* HAS_SETPWENT_R:
5131 * This symbol, if defined, indicates that the setpwent_r routine
5132 * is available to setpwent re-entrantly.
5133 */
5134/* SETPWENT_R_PROTO:
5135 * This symbol encodes the prototype of setpwent_r.
5136 * It is zero if d_setpwent_r is undef, and one of the
5137 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setpwent_r
5138 * is defined.
5139 */
5140/*#define HAS_SETPWENT_R / **/
5141#define SETPWENT_R_PROTO 0 /**/
5142
5143/* HAS_SETSERVENT_R:
5144 * This symbol, if defined, indicates that the setservent_r routine
5145 * is available to setservent re-entrantly.
5146 */
5147/* SETSERVENT_R_PROTO:
5148 * This symbol encodes the prototype of setservent_r.
5149 * It is zero if d_setservent_r is undef, and one of the
5150 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setservent_r
5151 * is defined.
5152 */
5153/*#define HAS_SETSERVENT_R / **/
5154#define SETSERVENT_R_PROTO 0 /**/
5155
5156/* HAS_SRAND48_R:
5157 * This symbol, if defined, indicates that the srand48_r routine
5158 * is available to srand48 re-entrantly.
5159 */
5160/* SRAND48_R_PROTO:
5161 * This symbol encodes the prototype of srand48_r.
5162 * It is zero if d_srand48_r is undef, and one of the
5163 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_srand48_r
5164 * is defined.
5165 */
5166/*#define HAS_SRAND48_R / **/
5167#define SRAND48_R_PROTO 0 /**/
5168
5169/* HAS_SRANDOM_R:
5170 * This symbol, if defined, indicates that the srandom_r routine
5171 * is available to srandom re-entrantly.
5172 */
5173/* SRANDOM_R_PROTO:
5174 * This symbol encodes the prototype of srandom_r.
5175 * It is zero if d_srandom_r is undef, and one of the
5176 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_srandom_r
5177 * is defined.
5178 */
5179/*#define HAS_SRANDOM_R / **/
5180#define SRANDOM_R_PROTO 0 /**/
5181
5182/* HAS_STRERROR_R:
5183 * This symbol, if defined, indicates that the strerror_r routine
5184 * is available to strerror re-entrantly.
5185 */
5186/* STRERROR_R_PROTO:
5187 * This symbol encodes the prototype of strerror_r.
5188 * It is zero if d_strerror_r is undef, and one of the
5189 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_strerror_r
5190 * is defined.
5191 */
5192/*#define HAS_STRERROR_R / **/
5193#define STRERROR_R_PROTO 0 /**/
5194
5195/* HAS_TMPNAM_R:
5196 * This symbol, if defined, indicates that the tmpnam_r routine
5197 * is available to tmpnam re-entrantly.
5198 */
5199/* TMPNAM_R_PROTO:
5200 * This symbol encodes the prototype of tmpnam_r.
5201 * It is zero if d_tmpnam_r is undef, and one of the
5202 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_tmpnam_r
5203 * is defined.
5204 */
5205/*#define HAS_TMPNAM_R / **/
5206#define TMPNAM_R_PROTO 0 /**/
5207
5208/* HAS_TTYNAME_R:
5209 * This symbol, if defined, indicates that the ttyname_r routine
5210 * is available to ttyname re-entrantly.
dcfe4a1a 5211 */
7e69463d
AC
5212/* TTYNAME_R_PROTO:
5213 * This symbol encodes the prototype of ttyname_r.
5214 * It is zero if d_ttyname_r is undef, and one of the
5215 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_ttyname_r
5216 * is defined.
dcfe4a1a 5217 */
7e69463d
AC
5218/*#define HAS_TTYNAME_R / **/
5219#define TTYNAME_R_PROTO 0 /**/
dcfe4a1a 5220
7e69463d
AC
5221/* I_MACH_CTHREADS:
5222 * This symbol, if defined, indicates to the C program that it should
5223 * include <mach/cthreads.h>.
9244ff22 5224 */
7e69463d 5225/*#define I_MACH_CTHREADS / **/
9244ff22 5226
7e69463d
AC
5227/* I_PTHREAD:
5228 * This symbol, if defined, indicates to the C program that it should
5229 * include <pthread.h>.
9244ff22 5230 */
7e69463d
AC
5231/*#define I_PTHREAD / **/
5232
5233/* USE_ITHREADS:
5234 * This symbol, if defined, indicates that Perl should be built to
5235 * use the interpreter-based threading implementation.
9244ff22 5236 */
7e69463d
AC
5237/* USE_5005THREADS:
5238 * This symbol, if defined, indicates that Perl should be built to
5239 * use the 5.005-based threading implementation.
5240 * Only valid up to 5.8.x.
5241 */
5242/* OLD_PTHREADS_API:
5243 * This symbol, if defined, indicates that Perl should
5244 * be built to use the old draft POSIX threads API.
5245 */
5246/* USE_REENTRANT_API:
5247 * This symbol, if defined, indicates that Perl should
5248 * try to use the various _r versions of library functions.
5249 * This is extremely experimental.
5250 */
5251/*#define USE_5005THREADS / **/
5252/*#define USE_ITHREADS / **/
5253#if defined(USE_5005THREADS) && !defined(USE_ITHREADS)
5254#define USE_THREADS /* until src is revised*/
0639114f 5255#endif
7e69463d
AC
5256/*#define OLD_PTHREADS_API / **/
5257/*#define USE_REENTRANT_API / **/
0639114f 5258
7e69463d
AC
5259/* HAS_TIME:
5260 * This symbol, if defined, indicates that the time() routine exists.
0639114f 5261 */
7e69463d
AC
5262/* Time_t:
5263 * This symbol holds the type returned by time(). It can be long,
5264 * or time_t on BSD sites (in which case <sys/types.h> should be
5265 * included).
0639114f 5266 */
7e69463d
AC
5267#define HAS_TIME /**/
5268#define Time_t time_t /* Time type */
5269
5270/* HAS_TIMES:
5271 * This symbol, if defined, indicates that the times() routine exists.
5272 * Note that this became obsolete on some systems (SUNOS), which now
5273 * use getrusage(). It may be necessary to include <sys/times.h>.
0639114f 5274 */
7e69463d 5275/*#define HAS_TIMES / **/
9244ff22 5276
7e69463d
AC
5277/* Fpos_t:
5278 * This symbol holds the type used to declare file positions in libc.
5279 * It can be fpos_t, long, uint, etc... It may be necessary to include
5280 * <sys/types.h> to get any typedef'ed information.
9244ff22 5281 */
7e69463d
AC
5282#define Fpos_t int /* File position type */
5283
5284/* Gid_t_f:
5285 * This symbol defines the format string used for printing a Gid_t.
9244ff22 5286 */
7e69463d 5287#define Gid_t_f "lu" /**/
9244ff22 5288
7e69463d
AC
5289/* Gid_t_sign:
5290 * This symbol holds the signedness of a Gid_t.
5291 * 1 for unsigned, -1 for signed.
f6a82ade 5292 */
7e69463d 5293#define Gid_t_sign 1 /* GID sign */
f6a82ade 5294
7e69463d
AC
5295/* Gid_t_size:
5296 * This symbol holds the size of a Gid_t in bytes.
b10924eb 5297 */
7e69463d 5298#define Gid_t_size 4 /* GID size */
b10924eb 5299
7e69463d
AC
5300/* Gid_t:
5301 * This symbol holds the return type of getgid() and the type of
5302 * argument to setrgid() and related functions. Typically,
5303 * it is the type of group ids in the kernel. It can be int, ushort,
5304 * gid_t, etc... It may be necessary to include <sys/types.h> to get
5305 * any typedef'ed information.
9244ff22 5306 */
7e69463d 5307#define Gid_t int /* Type for getgid(), etc... */
9244ff22 5308
7e69463d
AC
5309/* Off_t:
5310 * This symbol holds the type used to declare offsets in the kernel.
5311 * It can be int, long, off_t, etc... It may be necessary to include
5312 * <sys/types.h> to get any typedef'ed information.
d78f9ffa 5313 */
7e69463d
AC
5314/* LSEEKSIZE:
5315 * This symbol holds the number of bytes used by the Off_t.
5316 */
5317/* Off_t_size:
5318 * This symbol holds the number of bytes used by the Off_t.
5319 */
5320#define Off_t int /* <offset> type */
5321#define LSEEKSIZE 4 /* <offset> size */
5322#define Off_t_size 4 /* <offset> size */
d78f9ffa 5323
7e69463d
AC
5324/* Mode_t:
5325 * This symbol holds the type used to declare file modes
5326 * for systems calls. It is usually mode_t, but may be
5327 * int or unsigned short. It may be necessary to include <sys/types.h>
5328 * to get any typedef'ed information.
9244ff22 5329 */
7e69463d 5330#define Mode_t int /* file mode parameter for system calls */
9244ff22 5331
7e69463d
AC
5332/* Pid_t:
5333 * This symbol holds the type used to declare process ids in the kernel.
5334 * It can be int, uint, pid_t, etc... It may be necessary to include
5335 * <sys/types.h> to get any typedef'ed information.
9244ff22 5336 */
7e69463d 5337#define Pid_t int /* PID type */
9244ff22 5338
7e69463d
AC
5339/* Size_t_size:
5340 * This symbol holds the size of a Size_t in bytes.
9244ff22 5341 */
7e69463d 5342#define Size_t_size 4 /**/
9244ff22 5343
7e69463d
AC
5344/* Size_t:
5345 * This symbol holds the type used to declare length parameters
5346 * for string functions. It is usually size_t, but may be
5347 * unsigned long, int, etc. It may be necessary to include
5348 * <sys/types.h> to get any typedef'ed information.
9244ff22 5349 */
7e69463d 5350#define Size_t size_t /* length parameter for string functions */
9244ff22 5351
7e69463d
AC
5352/* Uid_t_f:
5353 * This symbol defines the format string used for printing a Uid_t.
d78f9ffa 5354 */
7e69463d 5355#define Uid_t_f "lu" /**/
d78f9ffa 5356
7e69463d
AC
5357/* Uid_t_sign:
5358 * This symbol holds the signedness of a Uid_t.
5359 * 1 for unsigned, -1 for signed.
9244ff22 5360 */
7e69463d 5361#define Uid_t_sign 1 /* UID sign */
9244ff22 5362
7e69463d
AC
5363/* Uid_t_size:
5364 * This symbol holds the size of a Uid_t in bytes.
f40bbcbf 5365 */
7e69463d 5366#define Uid_t_size 4 /* UID size */
f40bbcbf 5367
7e69463d
AC
5368/* Uid_t:
5369 * This symbol holds the type used to declare user ids in the kernel.
5370 * It can be int, ushort, uid_t, etc... It may be necessary to include
5371 * <sys/types.h> to get any typedef'ed information.
9244ff22 5372 */
7e69463d 5373#define Uid_t int /* UID type */
666ea192 5374
3ebb1980 5375#endif
d0817dbe
NC
5376
5377/* Generated from:
3e09f0e1 5378 * 2068b3888dbafff8fe3ae7aa6b8c5fb1f89db5b3931b89068053eb588d023b64 config_h.SH
d226c0a2 5379 * a088a21b0ddb63b48c794da959469ddb98da178e5b2d4ec568331a988d59e146 uconfig.sh
d0817dbe 5380 * ex: set ro: */