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