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