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