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