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