2 * This file was produced by running the config_h.SH script, which
3 * gets its values from undef, which is generally produced by
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.
8 * For a more permanent change edit undef and rerun config_h.SH.
10 * $Id: Config_h.U 1 2006-08-24 12:32:52Z rmanfredi $
14 * Package name : perl5
16 * Configuration time: Wed Jul 9 14:12:37 2008
17 * Configured by : shay
25 * This symbol holds the complete pathname to the sed program.
27 #define LOC_SED "" /**/
30 * This symbol, if defined, indicates that the alarm routine is
33 #define HAS_ALARM /**/
36 * This symbol is defined if the bcmp() routine is available to
37 * compare blocks of memory.
39 /*#define HAS_BCMP /**/
42 * This symbol is defined if the bcopy() routine is available to
43 * copy blocks of memory.
45 /*#define HAS_BCOPY /**/
48 * This symbol is defined if the bzero() routine is available to
49 * set a memory block to 0.
51 /*#define HAS_BZERO /**/
54 * This symbol, if defined, indicates that the chown routine is
57 /*#define HAS_CHOWN /**/
60 * This symbol, if defined, indicates that the chroot routine is
63 /*#define HAS_CHROOT /**/
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.
69 #define HAS_CHSIZE /**/
72 * This symbol, if defined, indicates that the crypt routine is available
73 * to encrypt passwords and the like.
75 /*#define HAS_CRYPT /**/
78 * This symbol, if defined, indicates that the ctermid routine is
79 * available to generate filename for terminal.
81 /*#define HAS_CTERMID /**/
84 * This symbol, if defined, indicates that the cuserid routine is
85 * available to get character login names.
87 /*#define HAS_CUSERID /**/
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.
95 #define HAS_DBL_DIG /**/
98 * This symbol, if defined, indicates that the difftime routine is
101 #define HAS_DIFFTIME /**/
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().
108 #define HAS_DLERROR /**/
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.
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.
127 /*#define SETUID_SCRIPTS_ARE_SECURE_NOW /**/
128 /*#define DOSUID /**/
131 * This symbol, if defined, indicates that the dup2 routine is
132 * available to duplicate file descriptors.
134 #define HAS_DUP2 /**/
137 * This symbol, if defined, indicates that the fchmod routine is available
138 * to change mode of opened files. If unavailable, use chmod().
140 /*#define HAS_FCHMOD /**/
143 * This symbol, if defined, indicates that the fchown routine is available
144 * to change ownership of opened files. If unavailable, use chown().
146 /*#define HAS_FCHOWN /**/
149 * This symbol, if defined, indicates to the C program that
150 * the fcntl() function exists.
152 /*#define HAS_FCNTL /**/
155 * This symbol, if defined, indicates that the fgetpos routine is
156 * available to get the file position indicator, similar to ftell().
158 #define HAS_FGETPOS /**/
161 * This symbol, if defined, indicates that the flock routine is
162 * available to do file locking.
164 #define HAS_FLOCK /**/
167 * This symbol, if defined, indicates that the fork routine is
170 /*#define HAS_FORK /**/
173 * This symbol, if defined, indicates that the fsetpos routine is
174 * available to set the file position indicator, similar to fseek().
176 #define HAS_FSETPOS /**/
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".
184 #define HAS_GETTIMEOFDAY /**/
185 #ifdef HAS_GETTIMEOFDAY
186 #define Timeval struct timeval /* Structure used by gettimeofday() */
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.
194 /*#define HAS_GETGROUPS /**/
197 * This symbol, if defined, indicates that the getlogin routine is
198 * available to get the login name.
200 #define HAS_GETLOGIN /**/
203 * This symbol, if defined, indicates to the C program that
204 * the getpgid(pid) function is available to get the
207 /*#define HAS_GETPGID /**/
210 * This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
211 * routine is available to get the current process group.
213 /*#define HAS_GETPGRP2 /**/
216 * This symbol, if defined, indicates that the getppid routine is
217 * available to get the parent process ID.
219 /*#define HAS_GETPPID /**/
222 * This symbol, if defined, indicates that the getpriority routine is
223 * available to get a process's priority.
225 /*#define HAS_GETPRIORITY /**/
228 * This symbol, if defined, indicates to the C program that the
229 * inet_aton() function is available to parse IP address "dotted-quad"
232 /*#define HAS_INET_ATON /**/
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.
239 #define HAS_KILLPG /**/
242 * This symbol, if defined, indicates that the link routine is
243 * available to create hard links.
245 #define HAS_LINK /**/
248 * This symbol, if defined, indicates that the localeconv routine is
249 * available for numeric and monetary formatting conventions.
251 #define HAS_LOCALECONV /**/
254 * This symbol, if defined, indicates that the lockf routine is
255 * available to do file locking.
257 /*#define HAS_LOCKF /**/
260 * This symbol, if defined, indicates that the lstat routine is
261 * available to do file stats on symbolic links.
263 /*#define HAS_LSTAT /**/
266 * This symbol, if defined, indicates that the mblen routine is available
267 * to find the number of bytes in a multibye character.
269 #define HAS_MBLEN /**/
272 * This symbol, if defined, indicates that the mbstowcs routine is
273 * available to covert a multibyte string into a wide character string.
275 #define HAS_MBSTOWCS /**/
278 * This symbol, if defined, indicates that the mbtowc routine is available
279 * to covert a multibyte to a wide character.
281 #define HAS_MBTOWC /**/
284 * This symbol, if defined, indicates that the memcmp routine is available
285 * to compare blocks of memory.
287 #define HAS_MEMCMP /**/
290 * This symbol, if defined, indicates that the memcpy routine is available
291 * to copy blocks of memory.
293 #define HAS_MEMCPY /**/
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
301 #define HAS_MEMMOVE /**/
304 * This symbol, if defined, indicates that the memset routine is available
305 * to set blocks of memory.
307 #define HAS_MEMSET /**/
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
314 #define HAS_MKDIR /**/
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.
322 /*#define HAS_MKFIFO /**/
325 * This symbol, if defined, indicates that the mktime routine is
328 #define HAS_MKTIME /**/
331 * This symbol, if defined, indicates that the msync system call is
332 * available to synchronize a mapped file.
334 /*#define HAS_MSYNC /**/
337 * This symbol, if defined, indicates that the munmap system call is
338 * available to unmap a region, usually mapped by mmap().
340 /*#define HAS_MUNMAP /**/
343 * This symbol, if defined, indicates that the nice routine is
346 /*#define HAS_NICE /**/
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.
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.
358 /*#define HAS_PATHCONF /**/
359 /*#define HAS_FPATHCONF /**/
362 * This symbol, if defined, indicates that the pause routine is
363 * available to suspend a process until a signal is received.
365 #define HAS_PAUSE /**/
368 * This symbol, if defined, indicates that the pipe routine is
369 * available to create an inter-process channel.
371 #define HAS_PIPE /**/
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.
378 /*#define HAS_POLL /**/
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.
385 #define HAS_READDIR /**/
388 * This symbol, if defined, indicates that the seekdir routine is
389 * available. You may have to include <dirent.h>. See I_DIRENT.
391 #define HAS_SEEKDIR /**/
394 * This symbol, if defined, indicates that the telldir routine is
395 * available. You may have to include <dirent.h>. See I_DIRENT.
397 #define HAS_TELLDIR /**/
400 * This symbol, if defined, indicates that the rewinddir routine is
401 * available. You may have to include <dirent.h>. See I_DIRENT.
403 #define HAS_REWINDDIR /**/
406 * This symbol, if defined, indicates that the readlink routine is
407 * available to read the value of a symbolic link.
409 /*#define HAS_READLINK /**/
412 * This symbol, if defined, indicates that the rename routine is available
413 * to rename files. Otherwise you should do the unlink(), link(), unlink()
416 #define HAS_RENAME /**/
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.
423 #define HAS_RMDIR /**/
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.
430 #define HAS_SELECT /**/
433 * This symbol, if defined, indicates that the setegid routine is available
434 * to change the effective gid of the current program.
436 /*#define HAS_SETEGID /**/
439 * This symbol, if defined, indicates that the seteuid routine is available
440 * to change the effective uid of the current program.
442 /*#define HAS_SETEUID /**/
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.
449 /*#define HAS_SETGROUPS /**/
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.
456 /*#define HAS_SETLINEBUF /**/
459 * This symbol, if defined, indicates that the setlocale routine is
460 * available to handle locale-specific ctype implementations.
462 #define HAS_SETLOCALE /**/
465 * This symbol, if defined, indicates that the setpgid(pid, gpid)
466 * routine is available to set process group ID.
468 /*#define HAS_SETPGID /**/
471 * This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
472 * routine is available to set the current process group.
474 /*#define HAS_SETPGRP2 /**/
477 * This symbol, if defined, indicates that the setpriority routine is
478 * available to set a process's priority.
480 /*#define HAS_SETPRIORITY /**/
483 * This symbol, if defined, indicates that the setregid routine is
484 * available to change the real and effective gid of the current
488 * This symbol, if defined, indicates that the setresgid routine is
489 * available to change the real, effective and saved gid of the current
492 /*#define HAS_SETREGID /**/
493 /*#define HAS_SETRESGID /**/
496 * This symbol, if defined, indicates that the setreuid routine is
497 * available to change the real and effective uid of the current
501 * This symbol, if defined, indicates that the setresuid routine is
502 * available to change the real, effective and saved uid of the current
505 /*#define HAS_SETREUID /**/
506 /*#define HAS_SETRESUID /**/
509 * This symbol, if defined, indicates that the setrgid routine is available
510 * to change the real gid of the current program.
512 /*#define HAS_SETRGID /**/
515 * This symbol, if defined, indicates that the setruid routine is available
516 * to change the real uid of the current program.
518 /*#define HAS_SETRUID /**/
521 * This symbol, if defined, indicates that the setsid routine is
522 * available to set the process group ID.
524 /*#define HAS_SETSID /**/
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.
532 * This symbol is defined to indicate that the index()/rindex()
533 * functions are available for string searching.
535 #define HAS_STRCHR /**/
536 /*#define HAS_INDEX /**/
539 * This symbol, if defined, indicates that the strcoll routine is
540 * available to compare strings using collating information.
542 #define HAS_STRCOLL /**/
545 * This symbol, if defined, indicates that the strtod routine is
546 * available to provide better numeric string conversion than atof().
548 #define HAS_STRTOD /**/
551 * This symbol, if defined, indicates that the strtol routine is available
552 * to provide better numeric string conversion than atoi() and friends.
554 #define HAS_STRTOL /**/
557 * This symbol, if defined, indicates that the strxfrm() routine is
558 * available to transform strings.
560 #define HAS_STRXFRM /**/
563 * This symbol, if defined, indicates that the symlink routine is available
564 * to create symbolic links.
566 /*#define HAS_SYMLINK /**/
569 * This symbol, if defined, indicates that the syscall routine is
570 * available to call arbitrary system calls. If undefined, that's tough.
572 /*#define HAS_SYSCALL /**/
575 * This symbol, if defined, indicates that sysconf() is available
576 * to determine system related limits and options.
578 /*#define HAS_SYSCONF /**/
581 * This symbol, if defined, indicates that the system routine is
582 * available to issue a shell command.
584 #define HAS_SYSTEM /**/
587 * This symbol, if defined, indicates that the tcgetpgrp routine is
588 * available to get foreground process group ID.
590 /*#define HAS_TCGETPGRP /**/
593 * This symbol, if defined, indicates that the tcsetpgrp routine is
594 * available to set foreground process group ID.
596 /*#define HAS_TCSETPGRP /**/
599 * This symbol, if defined, indicates that the truncate routine is
600 * available to truncate files.
602 /*#define HAS_TRUNCATE /**/
605 * This symbol, if defined, indicates that the tzname[] array is
606 * available to access timezone names.
608 #define HAS_TZNAME /**/
611 * This symbol, if defined, indicates that the umask routine is
612 * available to set and get the value of the file creation mask.
614 #define HAS_UMASK /**/
617 * This symbol, if defined, indicates that the usleep routine is
618 * available to let the process sleep on a sub-second accuracy.
620 /*#define HAS_USLEEP /**/
623 * This symbol, if defined, indicates that wait4() exists.
625 /*#define HAS_WAIT4 /**/
628 * This symbol, if defined, indicates that the waitpid routine is
629 * available to wait for child process.
631 #define HAS_WAITPID /**/
634 * This symbol, if defined, indicates that the wcstombs routine is
635 * available to convert wide character strings to multibyte strings.
637 #define HAS_WCSTOMBS /**/
640 * This symbol, if defined, indicates that the wctomb routine is available
641 * to covert a wide character to a multibyte.
643 #define HAS_WCTOMB /**/
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()..
654 #if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
655 #define Groups_t gid_t /* Type for 2nd arg to [sg]etgroups() */
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.
662 #define I_ARPA_INET /**/
665 * This symbol, if defined, indicates that <dbm.h> exists and should
669 * This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
670 * should be included.
673 #define I_RPCSVC_DBM /**/
676 * This symbol, if defined, indicates that <dlfcn.h> exists and should
682 * This manifest constant tells the C program to include <fcntl.h>.
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.
694 * This symbol, if defined, indicates that <gdbm.h> exists and should
697 /*#define I_GDBM /**/
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.
704 #define I_LIMITS /**/
707 * This symbol, if defined, indicates to the C program that it should
708 * include <locale.h>.
710 #define I_LOCALE /**/
713 * This symbol, if defined, indicates to the C program that it should
719 * This symbol, if defined, indicates to the C program that it should
720 * include <memory.h>.
722 /*#define I_MEMORY /**/
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>.
728 /*#define I_NETINET_IN /**/
731 * This symbol, if defined, indicates to the C program that it should
734 /*#define I_SFIO /**/
737 * This symbol, if defined, indicates that <stddef.h> exists and should
740 #define I_STDDEF /**/
743 * This symbol, if defined, indicates that <stdlib.h> exists and should
746 #define I_STDLIB /**/
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).
752 #define I_STRING /**/
755 * This symbol, if defined, indicates to the C program that it should
756 * include <sys/dir.h>.
758 /*#define I_SYS_DIR /**/
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.
764 /*#define I_SYS_FILE /**/
767 * This symbol, if defined, indicates that <sys/ioctl.h> exists and should
768 * be included. Otherwise, include <sgtty.h> or <termio.h>.
771 * This symbol, if defined, indicates the <sys/sockio.h> should be included
772 * to get socket ioctl options, like SIOCATMARK.
774 /*#define I_SYS_IOCTL /**/
775 /*#define I_SYS_SOCKIO /**/
778 * This symbol, if defined, indicates to the C program that it should
779 * include <sys/ndir.h>.
781 /*#define I_SYS_NDIR /**/
784 * This symbol, if defined, indicates to the C program that it should
785 * include <sys/param.h>.
787 /*#define I_SYS_PARAM /**/
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>.
794 /*#define I_SYS_POLL /**/
797 * This symbol, if defined, indicates to the C program that it should
798 * include <sys/resource.h>.
800 /*#define I_SYS_RESOURCE /**/
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.
806 /*#define I_SYS_SELECT /**/
809 * This symbol, if defined, indicates to the C program that it should
810 * include <sys/stat.h>.
812 #define I_SYS_STAT /**/
815 * This symbol, if defined, indicates to the C program that it should
816 * include <sys/times.h>.
818 /*#define I_SYS_TIMES /**/
821 * This symbol, if defined, indicates to the C program that it should
822 * include <sys/types.h>.
824 #define I_SYS_TYPES /**/
827 * This symbol, if defined, indicates to the C program that it should
828 * include <sys/un.h> to get UNIX domain socket definitions.
830 /*#define I_SYS_UN /**/
833 * This symbol, if defined, indicates to the C program that it should
834 * include <sys/wait.h>.
836 /*#define I_SYS_WAIT /**/
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.
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.
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.
854 /*#define I_TERMIO /**/
855 /*#define I_TERMIOS /**/
856 /*#define I_SGTTY /**/
859 * This symbol, if defined, indicates to the C program that it should
860 * include <unistd.h>.
862 /*#define I_UNISTD /**/
865 * This symbol, if defined, indicates to the C program that it should
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.
876 /*#define I_VALUES /**/
879 * This symbol, if defined, indicates to the C program that it should
882 /*#define I_VFORK /**/
885 * This symbol contains the value of sizeof(int) so that the C
886 * preprocessor can make decisions based on it.
889 * This symbol contains the value of sizeof(long) so that the C
890 * preprocessor can make decisions based on it.
893 * This symbol contains the value of sizeof(short) so that the C
894 * preprocessor can make decisions based on it.
896 #define INTSIZE 4 /**/
897 #define LONGSIZE 4 /**/
898 #define SHORTSIZE 2 /**/
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
907 /*#define MULTIARCH /**/
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
912 * of QUAD_IS_INT, QUAD_IS_LONG, QUAD_IS_LONG_LONG, QUAD_IS_INT64_T,
913 * or QUAD_IS___INT64.
915 #define 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
924 # define QUAD_IS___INT64 5
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.
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.
937 #define OSNAME "MSWin32" /**/
938 #define OSVERS "5.1" /**/
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.
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.
953 #define ARCHLIB "c:\\perl\\lib" /**/
954 /*#define ARCHLIB_EXP "" /**/
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
962 #define ARCHNAME "MSWin32-x86" /**/
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.
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.
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.
976 #define BIN "c:\\perl\\bin" /**/
977 #define BIN_EXP "c:\\perl\\bin" /**/
978 #define PERL_RELOCATABLE_INC "undef" /**/
981 * This macro concatenates 2 tokens together.
984 * This macro surrounds its token with double quotes.
987 #define CAT2(a,b) a/**/b
988 #define STRINGIFY(a) "a"
991 #define PeRl_CaTiFy(a, b) a ## b
992 #define PeRl_StGiFy(a) #a
993 #define CAT2(a,b) PeRl_CaTiFy(a,b)
994 #define StGiFy(a) PeRl_StGiFy(a)
995 #define STRINGIFY(a) PeRl_StGiFy(a)
997 #if 42 != 1 && 42 != 42
998 #include "Bletch: How does this C preprocessor concatenate tokens?"
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.
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 "".
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.
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 "".
1026 #define CPPSTDIN "cppstdin"
1028 #define CPPRUN "cpp32 -oCON"
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.)
1036 #define HAS_ACCESS /**/
1039 * This symbol, if defined, indicates that the accessx routine is
1040 * available to do extended access checks.
1042 /*#define HAS_ACCESSX /**/
1045 * This symbol, if defined, indicates that the asctime_r routine
1046 * is available to asctime re-entrantly.
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
1054 /*#define HAS_ASCTIME_R /**/
1055 #define ASCTIME_R_PROTO 0 /**/
1057 /* HASATTRIBUTE_FORMAT:
1058 * Can we handle GCC attribute for checking printf-style formats
1060 /* PRINTF_FORMAT_NULL_OK:
1061 * Allows __printf__ format to be null when checking printf-style
1063 /* HASATTRIBUTE_MALLOC:
1064 * Can we handle GCC attribute for malloc-style functions.
1066 /* HASATTRIBUTE_NONNULL:
1067 * Can we handle GCC attribute for nonnull function parms.
1069 /* HASATTRIBUTE_NORETURN:
1070 * Can we handle GCC attribute for functions that do not return
1072 /* HASATTRIBUTE_PURE:
1073 * Can we handle GCC attribute for pure functions
1075 /* HASATTRIBUTE_UNUSED:
1076 * Can we handle GCC attribute for unused variables and arguments
1078 /* HASATTRIBUTE_WARN_UNUSED_RESULT:
1079 * Can we handle GCC attribute for warning on unused results
1081 /*#define HASATTRIBUTE_FORMAT /**/
1082 /*#define PRINTF_FORMAT_NULL_OK /**/
1083 /*#define HASATTRIBUTE_NORETURN /**/
1084 /*#define HASATTRIBUTE_MALLOC /**/
1085 /*#define HASATTRIBUTE_NONNULL /**/
1086 /*#define HASATTRIBUTE_PURE /**/
1087 /*#define HASATTRIBUTE_UNUSED /**/
1088 /*#define HASATTRIBUTE_WARN_UNUSED_RESULT /**/
1091 * This symbol, if defined, indicates that this C compiler knows about
1092 * the const type. There is no need to actually test for that symbol
1093 * within your programs. The mere use of the "const" keyword will
1094 * trigger the necessary tests.
1096 #define HASCONST /**/
1102 * This symbol, if defined, indicates that the crypt_r routine
1103 * is available to crypt re-entrantly.
1106 * This symbol encodes the prototype of crypt_r.
1107 * It is zero if d_crypt_r is undef, and one of the
1108 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_crypt_r
1111 /*#define HAS_CRYPT_R /**/
1112 #define CRYPT_R_PROTO 0 /**/
1115 * This symbol, if defined, indicates that the C-shell exists.
1118 * This symbol, if defined, contains the full pathname of csh.
1120 /*#define HAS_CSH /**/
1126 * This symbol, if defined, indicates that the ctermid_r routine
1127 * is available to ctermid re-entrantly.
1130 * This symbol encodes the prototype of ctermid_r.
1131 * It is zero if d_ctermid_r is undef, and one of the
1132 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctermid_r
1135 /*#define HAS_CTERMID_R /**/
1136 #define CTERMID_R_PROTO 0 /**/
1139 * This symbol, if defined, indicates that the ctime_r routine
1140 * is available to ctime re-entrantly.
1143 * This symbol encodes the prototype of ctime_r.
1144 * It is zero if d_ctime_r is undef, and one of the
1145 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctime_r
1148 /*#define HAS_CTIME_R /**/
1149 #define CTIME_R_PROTO 0 /**/
1152 * This symbol, if defined, indicates that the drand48_r routine
1153 * is available to drand48 re-entrantly.
1156 * This symbol encodes the prototype of drand48_r.
1157 * It is zero if d_drand48_r is undef, and one of the
1158 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_drand48_r
1161 /*#define HAS_DRAND48_R /**/
1162 #define DRAND48_R_PROTO 0 /**/
1164 /* HAS_DRAND48_PROTO:
1165 * This symbol, if defined, indicates that the system provides
1166 * a prototype for the drand48() function. Otherwise, it is up
1167 * to the program to supply one. A good guess is
1168 * extern double drand48(void);
1170 /*#define HAS_DRAND48_PROTO /**/
1173 * This symbol, if defined, indicates that the eaccess routine is
1174 * available to do extended access checks.
1176 /*#define HAS_EACCESS /**/
1179 * This symbol, if defined, indicates that the getgrent routine is
1180 * available for finalizing sequential access of the group database.
1182 /*#define HAS_ENDGRENT /**/
1185 * This symbol, if defined, indicates that the endgrent_r routine
1186 * is available to endgrent re-entrantly.
1188 /* ENDGRENT_R_PROTO:
1189 * This symbol encodes the prototype of endgrent_r.
1190 * It is zero if d_endgrent_r is undef, and one of the
1191 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endgrent_r
1194 /*#define HAS_ENDGRENT_R /**/
1195 #define ENDGRENT_R_PROTO 0 /**/
1198 * This symbol, if defined, indicates that the endhostent() routine is
1199 * available to close whatever was being used for host queries.
1201 /*#define HAS_ENDHOSTENT /**/
1203 /* HAS_ENDHOSTENT_R:
1204 * This symbol, if defined, indicates that the endhostent_r routine
1205 * is available to endhostent re-entrantly.
1207 /* ENDHOSTENT_R_PROTO:
1208 * This symbol encodes the prototype of endhostent_r.
1209 * It is zero if d_endhostent_r is undef, and one of the
1210 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endhostent_r
1213 /*#define HAS_ENDHOSTENT_R /**/
1214 #define ENDHOSTENT_R_PROTO 0 /**/
1217 * This symbol, if defined, indicates that the endnetent() routine is
1218 * available to close whatever was being used for network queries.
1220 /*#define HAS_ENDNETENT /**/
1223 * This symbol, if defined, indicates that the endnetent_r routine
1224 * is available to endnetent re-entrantly.
1226 /* ENDNETENT_R_PROTO:
1227 * This symbol encodes the prototype of endnetent_r.
1228 * It is zero if d_endnetent_r is undef, and one of the
1229 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endnetent_r
1232 /*#define HAS_ENDNETENT_R /**/
1233 #define ENDNETENT_R_PROTO 0 /**/
1236 * This symbol, if defined, indicates that the endprotoent() routine is
1237 * available to close whatever was being used for protocol queries.
1239 /*#define HAS_ENDPROTOENT /**/
1241 /* HAS_ENDPROTOENT_R:
1242 * This symbol, if defined, indicates that the endprotoent_r routine
1243 * is available to endprotoent re-entrantly.
1245 /* ENDPROTOENT_R_PROTO:
1246 * This symbol encodes the prototype of endprotoent_r.
1247 * It is zero if d_endprotoent_r is undef, and one of the
1248 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endprotoent_r
1251 /*#define HAS_ENDPROTOENT_R /**/
1252 #define ENDPROTOENT_R_PROTO 0 /**/
1255 * This symbol, if defined, indicates that the getgrent routine is
1256 * available for finalizing sequential access of the passwd database.
1258 /*#define HAS_ENDPWENT /**/
1261 * This symbol, if defined, indicates that the endpwent_r routine
1262 * is available to endpwent re-entrantly.
1264 /* ENDPWENT_R_PROTO:
1265 * This symbol encodes the prototype of endpwent_r.
1266 * It is zero if d_endpwent_r is undef, and one of the
1267 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endpwent_r
1270 /*#define HAS_ENDPWENT_R /**/
1271 #define ENDPWENT_R_PROTO 0 /**/
1274 * This symbol, if defined, indicates that the endservent() routine is
1275 * available to close whatever was being used for service queries.
1277 /*#define HAS_ENDSERVENT /**/
1279 /* HAS_ENDSERVENT_R:
1280 * This symbol, if defined, indicates that the endservent_r routine
1281 * is available to endservent re-entrantly.
1283 /* ENDSERVENT_R_PROTO:
1284 * This symbol encodes the prototype of endservent_r.
1285 * It is zero if d_endservent_r is undef, and one of the
1286 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endservent_r
1289 /*#define HAS_ENDSERVENT_R /**/
1290 #define ENDSERVENT_R_PROTO 0 /**/
1293 * This symbol, if defined, indicates that the system supports filenames
1294 * longer than 14 characters.
1296 #define FLEXFILENAMES /**/
1299 * This symbol, if defined, indicates that the getgrent routine is
1300 * available for sequential access of the group database.
1302 /*#define HAS_GETGRENT /**/
1305 * This symbol, if defined, indicates that the getgrent_r routine
1306 * is available to getgrent re-entrantly.
1308 /* GETGRENT_R_PROTO:
1309 * This symbol encodes the prototype of getgrent_r.
1310 * It is zero if d_getgrent_r is undef, and one of the
1311 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrent_r
1314 /*#define HAS_GETGRENT_R /**/
1315 #define GETGRENT_R_PROTO 0 /**/
1318 * This symbol, if defined, indicates that the getgrgid_r routine
1319 * is available to getgrgid re-entrantly.
1321 /* GETGRGID_R_PROTO:
1322 * This symbol encodes the prototype of getgrgid_r.
1323 * It is zero if d_getgrgid_r is undef, and one of the
1324 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrgid_r
1327 /*#define HAS_GETGRGID_R /**/
1328 #define GETGRGID_R_PROTO 0 /**/
1331 * This symbol, if defined, indicates that the getgrnam_r routine
1332 * is available to getgrnam re-entrantly.
1334 /* GETGRNAM_R_PROTO:
1335 * This symbol encodes the prototype of getgrnam_r.
1336 * It is zero if d_getgrnam_r is undef, and one of the
1337 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrnam_r
1340 /*#define HAS_GETGRNAM_R /**/
1341 #define GETGRNAM_R_PROTO 0 /**/
1343 /* HAS_GETHOSTBYADDR:
1344 * This symbol, if defined, indicates that the gethostbyaddr() routine is
1345 * available to look up hosts by their IP addresses.
1347 #define HAS_GETHOSTBYADDR /**/
1349 /* HAS_GETHOSTBYNAME:
1350 * This symbol, if defined, indicates that the gethostbyname() routine is
1351 * available to look up host names in some data base or other.
1353 #define HAS_GETHOSTBYNAME /**/
1356 * This symbol, if defined, indicates that the gethostent() routine is
1357 * available to look up host names in some data base or another.
1359 /*#define HAS_GETHOSTENT /**/
1362 * This symbol, if defined, indicates that the C program may use the
1363 * gethostname() routine to derive the host name. See also HAS_UNAME
1367 * This symbol, if defined, indicates that the C program may use the
1368 * uname() routine to derive the host name. See also HAS_GETHOSTNAME
1372 * This symbol, if defined, indicates the command to feed to the
1373 * popen() routine to derive the host name. See also HAS_GETHOSTNAME
1374 * and HAS_UNAME. Note that the command uses a fully qualified path,
1375 * so that it is safe even if used by a process with super-user
1379 * This symbol, if defined, indicates that the C program may use the
1380 * contents of PHOSTNAME as a command to feed to the popen() routine
1381 * to derive the host name.
1383 #define HAS_GETHOSTNAME /**/
1384 #define HAS_UNAME /**/
1385 /*#define HAS_PHOSTNAME /**/
1386 #ifdef HAS_PHOSTNAME
1387 #define PHOSTNAME "" /* How to get the host name */
1390 /* HAS_GETHOSTBYADDR_R:
1391 * This symbol, if defined, indicates that the gethostbyaddr_r routine
1392 * is available to gethostbyaddr re-entrantly.
1394 /* GETHOSTBYADDR_R_PROTO:
1395 * This symbol encodes the prototype of gethostbyaddr_r.
1396 * It is zero if d_gethostbyaddr_r is undef, and one of the
1397 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyaddr_r
1400 /*#define HAS_GETHOSTBYADDR_R /**/
1401 #define GETHOSTBYADDR_R_PROTO 0 /**/
1403 /* HAS_GETHOSTBYNAME_R:
1404 * This symbol, if defined, indicates that the gethostbyname_r routine
1405 * is available to gethostbyname re-entrantly.
1407 /* GETHOSTBYNAME_R_PROTO:
1408 * This symbol encodes the prototype of gethostbyname_r.
1409 * It is zero if d_gethostbyname_r is undef, and one of the
1410 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyname_r
1413 /*#define HAS_GETHOSTBYNAME_R /**/
1414 #define GETHOSTBYNAME_R_PROTO 0 /**/
1416 /* HAS_GETHOSTENT_R:
1417 * This symbol, if defined, indicates that the gethostent_r routine
1418 * is available to gethostent re-entrantly.
1420 /* GETHOSTENT_R_PROTO:
1421 * This symbol encodes the prototype of gethostent_r.
1422 * It is zero if d_gethostent_r is undef, and one of the
1423 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostent_r
1426 /*#define HAS_GETHOSTENT_R /**/
1427 #define GETHOSTENT_R_PROTO 0 /**/
1429 /* HAS_GETHOST_PROTOS:
1430 * This symbol, if defined, indicates that <netdb.h> includes
1431 * prototypes for gethostent(), gethostbyname(), and
1432 * gethostbyaddr(). Otherwise, it is up to the program to guess
1433 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
1435 #define HAS_GETHOST_PROTOS /**/
1438 * This symbol, if defined, indicates that the getlogin_r routine
1439 * is available to getlogin re-entrantly.
1441 /* GETLOGIN_R_PROTO:
1442 * This symbol encodes the prototype of getlogin_r.
1443 * It is zero if d_getlogin_r is undef, and one of the
1444 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getlogin_r
1447 /*#define HAS_GETLOGIN_R /**/
1448 #define GETLOGIN_R_PROTO 0 /**/
1450 /* HAS_GETNETBYADDR:
1451 * This symbol, if defined, indicates that the getnetbyaddr() routine is
1452 * available to look up networks by their IP addresses.
1454 /*#define HAS_GETNETBYADDR /**/
1456 /* HAS_GETNETBYNAME:
1457 * This symbol, if defined, indicates that the getnetbyname() routine is
1458 * available to look up networks by their names.
1460 /*#define HAS_GETNETBYNAME /**/
1463 * This symbol, if defined, indicates that the getnetent() routine is
1464 * available to look up network names in some data base or another.
1466 /*#define HAS_GETNETENT /**/
1468 /* HAS_GETNETBYADDR_R:
1469 * This symbol, if defined, indicates that the getnetbyaddr_r routine
1470 * is available to getnetbyaddr re-entrantly.
1472 /* GETNETBYADDR_R_PROTO:
1473 * This symbol encodes the prototype of getnetbyaddr_r.
1474 * It is zero if d_getnetbyaddr_r is undef, and one of the
1475 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyaddr_r
1478 /*#define HAS_GETNETBYADDR_R /**/
1479 #define GETNETBYADDR_R_PROTO 0 /**/
1481 /* HAS_GETNETBYNAME_R:
1482 * This symbol, if defined, indicates that the getnetbyname_r routine
1483 * is available to getnetbyname re-entrantly.
1485 /* GETNETBYNAME_R_PROTO:
1486 * This symbol encodes the prototype of getnetbyname_r.
1487 * It is zero if d_getnetbyname_r is undef, and one of the
1488 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyname_r
1491 /*#define HAS_GETNETBYNAME_R /**/
1492 #define GETNETBYNAME_R_PROTO 0 /**/
1495 * This symbol, if defined, indicates that the getnetent_r routine
1496 * is available to getnetent re-entrantly.
1498 /* GETNETENT_R_PROTO:
1499 * This symbol encodes the prototype of getnetent_r.
1500 * It is zero if d_getnetent_r is undef, and one of the
1501 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetent_r
1504 /*#define HAS_GETNETENT_R /**/
1505 #define GETNETENT_R_PROTO 0 /**/
1507 /* HAS_GETNET_PROTOS:
1508 * This symbol, if defined, indicates that <netdb.h> includes
1509 * prototypes for getnetent(), getnetbyname(), and
1510 * getnetbyaddr(). Otherwise, it is up to the program to guess
1511 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
1513 /*#define HAS_GETNET_PROTOS /**/
1516 * This symbol, if defined, indicates that the getprotoent() routine is
1517 * available to look up protocols in some data base or another.
1519 /*#define HAS_GETPROTOENT /**/
1522 * This symbol, if defined, indicates that the getpgrp routine is
1523 * available to get the current process group.
1526 * This symbol, if defined, indicates that getpgrp needs one
1527 * arguments whereas USG one needs none.
1529 /*#define HAS_GETPGRP /**/
1530 /*#define USE_BSD_GETPGRP /**/
1532 /* HAS_GETPROTOBYNAME:
1533 * This symbol, if defined, indicates that the getprotobyname()
1534 * routine is available to look up protocols by their name.
1536 /* HAS_GETPROTOBYNUMBER:
1537 * This symbol, if defined, indicates that the getprotobynumber()
1538 * routine is available to look up protocols by their number.
1540 #define HAS_GETPROTOBYNAME /**/
1541 #define HAS_GETPROTOBYNUMBER /**/
1543 /* HAS_GETPROTOBYNAME_R:
1544 * This symbol, if defined, indicates that the getprotobyname_r routine
1545 * is available to getprotobyname re-entrantly.
1547 /* GETPROTOBYNAME_R_PROTO:
1548 * This symbol encodes the prototype of getprotobyname_r.
1549 * It is zero if d_getprotobyname_r is undef, and one of the
1550 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobyname_r
1553 /*#define HAS_GETPROTOBYNAME_R /**/
1554 #define GETPROTOBYNAME_R_PROTO 0 /**/
1556 /* HAS_GETPROTOBYNUMBER_R:
1557 * This symbol, if defined, indicates that the getprotobynumber_r routine
1558 * is available to getprotobynumber re-entrantly.
1560 /* GETPROTOBYNUMBER_R_PROTO:
1561 * This symbol encodes the prototype of getprotobynumber_r.
1562 * It is zero if d_getprotobynumber_r is undef, and one of the
1563 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobynumber_r
1566 /*#define HAS_GETPROTOBYNUMBER_R /**/
1567 #define GETPROTOBYNUMBER_R_PROTO 0 /**/
1569 /* HAS_GETPROTOENT_R:
1570 * This symbol, if defined, indicates that the getprotoent_r routine
1571 * is available to getprotoent re-entrantly.
1573 /* GETPROTOENT_R_PROTO:
1574 * This symbol encodes the prototype of getprotoent_r.
1575 * It is zero if d_getprotoent_r is undef, and one of the
1576 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotoent_r
1579 /*#define HAS_GETPROTOENT_R /**/
1580 #define GETPROTOENT_R_PROTO 0 /**/
1582 /* HAS_GETPROTO_PROTOS:
1583 * This symbol, if defined, indicates that <netdb.h> includes
1584 * prototypes for getprotoent(), getprotobyname(), and
1585 * getprotobyaddr(). Otherwise, it is up to the program to guess
1586 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
1588 #define HAS_GETPROTO_PROTOS /**/
1591 * This symbol, if defined, indicates that the getpwent routine is
1592 * available for sequential access of the passwd database.
1593 * If this is not available, the older getpw() function may be available.
1595 /*#define HAS_GETPWENT /**/
1598 * This symbol, if defined, indicates that the getpwent_r routine
1599 * is available to getpwent re-entrantly.
1601 /* GETPWENT_R_PROTO:
1602 * This symbol encodes the prototype of getpwent_r.
1603 * It is zero if d_getpwent_r is undef, and one of the
1604 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwent_r
1607 /*#define HAS_GETPWENT_R /**/
1608 #define GETPWENT_R_PROTO 0 /**/
1611 * This symbol, if defined, indicates that the getpwnam_r routine
1612 * is available to getpwnam re-entrantly.
1614 /* GETPWNAM_R_PROTO:
1615 * This symbol encodes the prototype of getpwnam_r.
1616 * It is zero if d_getpwnam_r is undef, and one of the
1617 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwnam_r
1620 /*#define HAS_GETPWNAM_R /**/
1621 #define GETPWNAM_R_PROTO 0 /**/
1624 * This symbol, if defined, indicates that the getpwuid_r routine
1625 * is available to getpwuid re-entrantly.
1627 /* GETPWUID_R_PROTO:
1628 * This symbol encodes the prototype of getpwuid_r.
1629 * It is zero if d_getpwuid_r is undef, and one of the
1630 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwuid_r
1633 /*#define HAS_GETPWUID_R /**/
1634 #define GETPWUID_R_PROTO 0 /**/
1637 * This symbol, if defined, indicates that the getservent() routine is
1638 * available to look up network services in some data base or another.
1640 /*#define HAS_GETSERVENT /**/
1642 /* HAS_GETSERVBYNAME_R:
1643 * This symbol, if defined, indicates that the getservbyname_r routine
1644 * is available to getservbyname re-entrantly.
1646 /* GETSERVBYNAME_R_PROTO:
1647 * This symbol encodes the prototype of getservbyname_r.
1648 * It is zero if d_getservbyname_r is undef, and one of the
1649 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyname_r
1652 /*#define HAS_GETSERVBYNAME_R /**/
1653 #define GETSERVBYNAME_R_PROTO 0 /**/
1655 /* HAS_GETSERVBYPORT_R:
1656 * This symbol, if defined, indicates that the getservbyport_r routine
1657 * is available to getservbyport re-entrantly.
1659 /* GETSERVBYPORT_R_PROTO:
1660 * This symbol encodes the prototype of getservbyport_r.
1661 * It is zero if d_getservbyport_r is undef, and one of the
1662 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyport_r
1665 /*#define HAS_GETSERVBYPORT_R /**/
1666 #define GETSERVBYPORT_R_PROTO 0 /**/
1668 /* HAS_GETSERVENT_R:
1669 * This symbol, if defined, indicates that the getservent_r routine
1670 * is available to getservent re-entrantly.
1672 /* GETSERVENT_R_PROTO:
1673 * This symbol encodes the prototype of getservent_r.
1674 * It is zero if d_getservent_r is undef, and one of the
1675 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservent_r
1678 /*#define HAS_GETSERVENT_R /**/
1679 #define GETSERVENT_R_PROTO 0 /**/
1681 /* HAS_GETSERV_PROTOS:
1682 * This symbol, if defined, indicates that <netdb.h> includes
1683 * prototypes for getservent(), getservbyname(), and
1684 * getservbyaddr(). Otherwise, it is up to the program to guess
1685 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
1687 #define HAS_GETSERV_PROTOS /**/
1690 * This symbol, if defined, indicates that the getspnam_r routine
1691 * is available to getspnam re-entrantly.
1693 /* GETSPNAM_R_PROTO:
1694 * This symbol encodes the prototype of getspnam_r.
1695 * It is zero if d_getspnam_r is undef, and one of the
1696 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getspnam_r
1699 /*#define HAS_GETSPNAM_R /**/
1700 #define GETSPNAM_R_PROTO 0 /**/
1702 /* HAS_GETSERVBYNAME:
1703 * This symbol, if defined, indicates that the getservbyname()
1704 * routine is available to look up services by their name.
1706 /* HAS_GETSERVBYPORT:
1707 * This symbol, if defined, indicates that the getservbyport()
1708 * routine is available to look up services by their port.
1710 #define HAS_GETSERVBYNAME /**/
1711 #define HAS_GETSERVBYPORT /**/
1714 * This symbol, if defined, indicates that the gmtime_r routine
1715 * is available to gmtime re-entrantly.
1718 * This symbol encodes the prototype of gmtime_r.
1719 * It is zero if d_gmtime_r is undef, and one of the
1720 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gmtime_r
1723 /*#define HAS_GMTIME_R /**/
1724 #define GMTIME_R_PROTO 0 /**/
1727 * This symbol, if defined, indicates that the htonl() routine (and
1728 * friends htons() ntohl() ntohs()) are available to do network
1729 * order byte swapping.
1732 * This symbol, if defined, indicates that the htons() routine (and
1733 * friends htonl() ntohl() ntohs()) are available to do network
1734 * order byte swapping.
1737 * This symbol, if defined, indicates that the ntohl() routine (and
1738 * friends htonl() htons() ntohs()) are available to do network
1739 * order byte swapping.
1742 * This symbol, if defined, indicates that the ntohs() routine (and
1743 * friends htonl() htons() ntohl()) are available to do network
1744 * order byte swapping.
1746 #define HAS_HTONL /**/
1747 #define HAS_HTONS /**/
1748 #define HAS_NTOHL /**/
1749 #define HAS_NTOHS /**/
1752 * This symbol, if defined, indicates that the localtime_r routine
1753 * is available to localtime re-entrantly.
1755 /* LOCALTIME_R_NEEDS_TZSET:
1756 * Many libc's localtime_r implementations do not call tzset,
1757 * making them differ from localtime(), and making timezone
1758 * changes using \undef{TZ} without explicitly calling tzset
1759 * impossible. This symbol makes us call tzset before localtime_r
1761 /*#define LOCALTIME_R_NEEDS_TZSET /**/
1762 #ifdef LOCALTIME_R_NEEDS_TZSET
1763 #define L_R_TZSET tzset(),
1768 /* LOCALTIME_R_PROTO:
1769 * This symbol encodes the prototype of localtime_r.
1770 * It is zero if d_localtime_r is undef, and one of the
1771 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_localtime_r
1774 /*#define HAS_LOCALTIME_R /**/
1775 #define LOCALTIME_R_PROTO 0 /**/
1778 * This symbol will be defined if the C compiler supports long
1782 * This symbol contains the size of a long double, so that the
1783 * C preprocessor can make decisions based on it. It is only
1784 * defined if the system supports long doubles.
1786 #define HAS_LONG_DOUBLE /**/
1787 #ifdef HAS_LONG_DOUBLE
1788 #define LONG_DOUBLESIZE 10 /**/
1792 * This symbol will be defined if the C compiler supports long long.
1795 * This symbol contains the size of a long long, so that the
1796 * C preprocessor can make decisions based on it. It is only
1797 * defined if the system supports long long.
1799 /*#define HAS_LONG_LONG /**/
1800 #ifdef HAS_LONG_LONG
1801 #define LONGLONGSIZE 8 /**/
1805 * This symbol, if defined, indicates that the system provides
1806 * a prototype for the lseek() function. Otherwise, it is up
1807 * to the program to supply one. A good guess is
1808 * extern off_t lseek(int, off_t, int);
1810 #define HAS_LSEEK_PROTO /**/
1813 * This symbol, if defined, indicates that the memchr routine is available
1814 * to locate characters within a C string.
1816 #define HAS_MEMCHR /**/
1819 * This symbol, if defined, indicates that the mkstemp routine is
1820 * available to exclusively create and open a uniquely named
1823 /*#define HAS_MKSTEMP /**/
1826 * This symbol, if defined, indicates that the mmap system call is
1827 * available to map a file into memory.
1830 * This symbol holds the return type of the mmap() system call
1831 * (and simultaneously the type of the first argument).
1832 * Usually set to 'void *' or 'caddr_t'.
1834 /*#define HAS_MMAP /**/
1835 #define Mmap_t void * /**/
1838 * This symbol, if defined, indicates that the entire msg*(2) library is
1839 * supported (IPC mechanism based on message queues).
1841 /*#define HAS_MSG /**/
1843 /* OLD_PTHREAD_CREATE_JOINABLE:
1844 * This symbol, if defined, indicates how to create pthread
1845 * in joinable (aka undetached) state. NOTE: not defined
1846 * if pthread.h already has defined PTHREAD_CREATE_JOINABLE
1847 * (the new version of the constant).
1848 * If defined, known values are PTHREAD_CREATE_UNDETACHED
1851 /*#define OLD_PTHREAD_CREATE_JOINABLE /**/
1853 /* HAS_PTHREAD_ATFORK:
1854 * This symbol, if defined, indicates that the pthread_atfork routine
1855 * is available to setup fork handlers.
1857 /*#define HAS_PTHREAD_ATFORK /**/
1859 /* HAS_PTHREAD_YIELD:
1860 * This symbol, if defined, indicates that the pthread_yield
1861 * routine is available to yield the execution of the current
1862 * thread. sched_yield is preferable to pthread_yield.
1865 * This symbol defines the way to yield the execution of
1866 * the current thread. Known ways are sched_yield,
1867 * pthread_yield, and pthread_yield with NULL.
1870 * This symbol, if defined, indicates that the sched_yield
1871 * routine is available to yield the execution of the current
1872 * thread. sched_yield is preferable to pthread_yield.
1874 /*#define HAS_PTHREAD_YIELD /**/
1875 #define SCHED_YIELD /**/
1876 /*#define HAS_SCHED_YIELD /**/
1879 * This symbol, if defined, indicates that the random_r routine
1880 * is available to random re-entrantly.
1883 * This symbol encodes the prototype of random_r.
1884 * It is zero if d_random_r is undef, and one of the
1885 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_random_r
1888 /*#define HAS_RANDOM_R /**/
1889 #define RANDOM_R_PROTO 0 /**/
1892 * This symbol, if defined, indicates that the readdir64_r routine
1893 * is available to readdir64 re-entrantly.
1895 /* READDIR64_R_PROTO:
1896 * This symbol encodes the prototype of readdir64_r.
1897 * It is zero if d_readdir64_r is undef, and one of the
1898 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir64_r
1901 /*#define HAS_READDIR64_R /**/
1902 #define READDIR64_R_PROTO 0 /**/
1905 * This symbol, if defined, indicates that the readdir_r routine
1906 * is available to readdir re-entrantly.
1909 * This symbol encodes the prototype of readdir_r.
1910 * It is zero if d_readdir_r is undef, and one of the
1911 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir_r
1914 /*#define HAS_READDIR_R /**/
1915 #define READDIR_R_PROTO 0 /**/
1918 * This symbol, if defined, indicates that the entire sem*(2) library is
1921 /*#define HAS_SEM /**/
1924 * This symbol, if defined, indicates that the setgrent routine is
1925 * available for initializing sequential access of the group database.
1927 /*#define HAS_SETGRENT /**/
1930 * This symbol, if defined, indicates that the setgrent_r routine
1931 * is available to setgrent re-entrantly.
1933 /* SETGRENT_R_PROTO:
1934 * This symbol encodes the prototype of setgrent_r.
1935 * It is zero if d_setgrent_r is undef, and one of the
1936 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setgrent_r
1939 /*#define HAS_SETGRENT_R /**/
1940 #define SETGRENT_R_PROTO 0 /**/
1943 * This symbol, if defined, indicates that the sethostent() routine is
1946 /*#define HAS_SETHOSTENT /**/
1948 /* HAS_SETHOSTENT_R:
1949 * This symbol, if defined, indicates that the sethostent_r routine
1950 * is available to sethostent re-entrantly.
1952 /* SETHOSTENT_R_PROTO:
1953 * This symbol encodes the prototype of sethostent_r.
1954 * It is zero if d_sethostent_r is undef, and one of the
1955 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_sethostent_r
1958 /*#define HAS_SETHOSTENT_R /**/
1959 #define SETHOSTENT_R_PROTO 0 /**/
1962 * This symbol, if defined, indicates that the setlocale_r routine
1963 * is available to setlocale re-entrantly.
1965 /* SETLOCALE_R_PROTO:
1966 * This symbol encodes the prototype of setlocale_r.
1967 * It is zero if d_setlocale_r is undef, and one of the
1968 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setlocale_r
1971 /*#define HAS_SETLOCALE_R /**/
1972 #define SETLOCALE_R_PROTO 0 /**/
1975 * This symbol, if defined, indicates that the setnetent() routine is
1978 /*#define HAS_SETNETENT /**/
1981 * This symbol, if defined, indicates that the setnetent_r routine
1982 * is available to setnetent re-entrantly.
1984 /* SETNETENT_R_PROTO:
1985 * This symbol encodes the prototype of setnetent_r.
1986 * It is zero if d_setnetent_r is undef, and one of the
1987 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setnetent_r
1990 /*#define HAS_SETNETENT_R /**/
1991 #define SETNETENT_R_PROTO 0 /**/
1994 * This symbol, if defined, indicates that the setprotoent() routine is
1997 /*#define HAS_SETPROTOENT /**/
2000 * This symbol, if defined, indicates that the setpgrp routine is
2001 * available to set the current process group.
2004 * This symbol, if defined, indicates that setpgrp needs two
2005 * arguments whereas USG one needs none. See also HAS_SETPGID
2006 * for a POSIX interface.
2008 /*#define HAS_SETPGRP /**/
2009 /*#define USE_BSD_SETPGRP /**/
2011 /* HAS_SETPROTOENT_R:
2012 * This symbol, if defined, indicates that the setprotoent_r routine
2013 * is available to setprotoent re-entrantly.
2015 /* SETPROTOENT_R_PROTO:
2016 * This symbol encodes the prototype of setprotoent_r.
2017 * It is zero if d_setprotoent_r is undef, and one of the
2018 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setprotoent_r
2021 /*#define HAS_SETPROTOENT_R /**/
2022 #define SETPROTOENT_R_PROTO 0 /**/
2025 * This symbol, if defined, indicates that the setpwent routine is
2026 * available for initializing sequential access of the passwd database.
2028 /*#define HAS_SETPWENT /**/
2031 * This symbol, if defined, indicates that the setpwent_r routine
2032 * is available to setpwent re-entrantly.
2034 /* SETPWENT_R_PROTO:
2035 * This symbol encodes the prototype of setpwent_r.
2036 * It is zero if d_setpwent_r is undef, and one of the
2037 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setpwent_r
2040 /*#define HAS_SETPWENT_R /**/
2041 #define SETPWENT_R_PROTO 0 /**/
2044 * This symbol, if defined, indicates that the setservent() routine is
2047 /*#define HAS_SETSERVENT /**/
2049 /* HAS_SETSERVENT_R:
2050 * This symbol, if defined, indicates that the setservent_r routine
2051 * is available to setservent re-entrantly.
2053 /* SETSERVENT_R_PROTO:
2054 * This symbol encodes the prototype of setservent_r.
2055 * It is zero if d_setservent_r is undef, and one of the
2056 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setservent_r
2059 /*#define HAS_SETSERVENT_R /**/
2060 #define SETSERVENT_R_PROTO 0 /**/
2063 * This symbol, if defined, indicates that the setvbuf routine is
2064 * available to change buffering on an open stdio stream.
2065 * to a line-buffered mode.
2067 #define HAS_SETVBUF /**/
2070 * This symbol, if defined, indicates that the entire shm*(2) library is
2073 /*#define HAS_SHM /**/
2076 * This symbol holds the return type of the shmat() system call.
2077 * Usually set to 'void *' or 'char *'.
2079 /* HAS_SHMAT_PROTOTYPE:
2080 * This symbol, if defined, indicates that the sys/shm.h includes
2081 * a prototype for shmat(). Otherwise, it is up to the program to
2082 * guess one. Shmat_t shmat(int, Shmat_t, int) is a good guess,
2083 * but not always right so it should be emitted by the program only
2084 * when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
2086 #define Shmat_t void * /**/
2087 /*#define HAS_SHMAT_PROTOTYPE /**/
2090 * This symbol, if defined, indicates that the BSD socket interface is
2094 * This symbol, if defined, indicates that the BSD socketpair() call is
2098 * This symbol, if defined, indicates that the MSG_CTRUNC is supported.
2099 * Checking just with #ifdef might not be enough because this symbol
2100 * has been known to be an enum.
2102 /* HAS_MSG_DONTROUTE:
2103 * This symbol, if defined, indicates that the MSG_DONTROUTE is supported.
2104 * Checking just with #ifdef might not be enough because this symbol
2105 * has been known to be an enum.
2108 * This symbol, if defined, indicates that the MSG_OOB is supported.
2109 * Checking just with #ifdef might not be enough because this symbol
2110 * has been known to be an enum.
2113 * This symbol, if defined, indicates that the MSG_PEEK is supported.
2114 * Checking just with #ifdef might not be enough because this symbol
2115 * has been known to be an enum.
2118 * This symbol, if defined, indicates that the MSG_PROXY is supported.
2119 * Checking just with #ifdef might not be enough because this symbol
2120 * has been known to be an enum.
2123 * This symbol, if defined, indicates that the SCM_RIGHTS is supported.
2124 * Checking just with #ifdef might not be enough because this symbol
2125 * has been known to be an enum.
2127 #define HAS_SOCKET /**/
2128 /*#define HAS_SOCKETPAIR /**/
2129 /*#define HAS_MSG_CTRUNC /**/
2130 /*#define HAS_MSG_DONTROUTE /**/
2131 /*#define HAS_MSG_OOB /**/
2132 /*#define HAS_MSG_PEEK /**/
2133 /*#define HAS_MSG_PROXY /**/
2134 /*#define HAS_SCM_RIGHTS /**/
2137 * This symbol, if defined, indicates that the srand48_r routine
2138 * is available to srand48 re-entrantly.
2141 * This symbol encodes the prototype of srand48_r.
2142 * It is zero if d_srand48_r is undef, and one of the
2143 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_srand48_r
2146 /*#define HAS_SRAND48_R /**/
2147 #define SRAND48_R_PROTO 0 /**/
2150 * This symbol, if defined, indicates that the srandom_r routine
2151 * is available to srandom re-entrantly.
2154 * This symbol encodes the prototype of srandom_r.
2155 * It is zero if d_srandom_r is undef, and one of the
2156 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_srandom_r
2159 /*#define HAS_SRANDOM_R /**/
2160 #define SRANDOM_R_PROTO 0 /**/
2163 * This symbol is defined if this system has a stat structure declaring
2164 * st_blksize and st_blocks.
2166 #ifndef USE_STAT_BLOCKS
2167 /*#define USE_STAT_BLOCKS /**/
2171 * This symbol, if defined, indicates that this C compiler knows how
2172 * to copy structures. If undefined, you'll need to use a block copy
2173 * routine of some sort instead.
2175 #define USE_STRUCT_COPY /**/
2178 * This symbol, if defined, indicates that the strerror routine is
2179 * available to translate error numbers to strings. See the writeup
2180 * of Strerror() in this file before you try to define your own.
2183 * This symbol, if defined, indicates that the sys_errlist array is
2184 * available to translate error numbers to strings. The extern int
2185 * sys_nerr gives the size of that table.
2188 * This preprocessor symbol is defined as a macro if strerror() is
2189 * not available to translate error numbers to strings but sys_errlist[]
2192 #define HAS_STRERROR /**/
2193 #define HAS_SYS_ERRLIST /**/
2194 #define Strerror(e) strerror(e)
2197 * This symbol, if defined, indicates that the strerror_r routine
2198 * is available to strerror re-entrantly.
2200 /* STRERROR_R_PROTO:
2201 * This symbol encodes the prototype of strerror_r.
2202 * It is zero if d_strerror_r is undef, and one of the
2203 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_strerror_r
2206 /*#define HAS_STRERROR_R /**/
2207 #define STRERROR_R_PROTO 0 /**/
2210 * This symbol, if defined, indicates that the strtoul routine is
2211 * available to provide conversion of strings to unsigned long.
2213 #define HAS_STRTOUL /**/
2216 * This symbol, if defined, indicates that the time() routine exists.
2219 * This symbol holds the type returned by time(). It can be long,
2220 * or time_t on BSD sites (in which case <sys/types.h> should be
2223 #define HAS_TIME /**/
2224 #define Time_t time_t /* Time type */
2227 * This symbol, if defined, indicates that the times() routine exists.
2228 * Note that this became obsolete on some systems (SUNOS), which now
2229 * use getrusage(). It may be necessary to include <sys/times.h>.
2231 #define HAS_TIMES /**/
2234 * This symbol, if defined, indicates that the tmpnam_r routine
2235 * is available to tmpnam re-entrantly.
2238 * This symbol encodes the prototype of tmpnam_r.
2239 * It is zero if d_tmpnam_r is undef, and one of the
2240 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_tmpnam_r
2243 /*#define HAS_TMPNAM_R /**/
2244 #define TMPNAM_R_PROTO 0 /**/
2247 * This symbol, if defined, indicates that the ttyname_r routine
2248 * is available to ttyname re-entrantly.
2251 * This symbol encodes the prototype of ttyname_r.
2252 * It is zero if d_ttyname_r is undef, and one of the
2253 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_ttyname_r
2256 /*#define HAS_TTYNAME_R /**/
2257 #define TTYNAME_R_PROTO 0 /**/
2260 * This symbol, if defined, indicates that the union semun is
2261 * defined by including <sys/sem.h>. If not, the user code
2262 * probably needs to define it as:
2265 * struct semid_ds *buf;
2266 * unsigned short *array;
2269 /* USE_SEMCTL_SEMUN:
2270 * This symbol, if defined, indicates that union semun is
2271 * used for semctl IPC_STAT.
2273 /* USE_SEMCTL_SEMID_DS:
2274 * This symbol, if defined, indicates that struct semid_ds * is
2275 * used for semctl IPC_STAT.
2277 #define HAS_UNION_SEMUN /**/
2278 /*#define USE_SEMCTL_SEMUN /**/
2279 /*#define USE_SEMCTL_SEMID_DS /**/
2282 * This symbol, if defined, indicates that vfork() exists.
2284 /*#define HAS_VFORK /**/
2287 * This symbol, if defined, indicates that an emulation of the
2288 * fork routine is available.
2290 /*#define HAS_PSEUDOFORK /**/
2293 * This symbol's value is either "void" or "int", corresponding to the
2294 * appropriate return type of a signal handler. Thus, you can declare
2295 * a signal handler using "Signal_t (*handler)()", and define the
2296 * handler using "Signal_t handler(sig)".
2298 #define Signal_t void /* Signal handler's return type */
2301 * This symbol, if defined, indicates that this C compiler knows about
2302 * the volatile declaration.
2304 #define HASVOLATILE /**/
2310 * This symbol holds the type used to declare file positions in libc.
2311 * It can be fpos_t, long, uint, etc... It may be necessary to include
2312 * <sys/types.h> to get any typedef'ed information.
2314 #define Fpos_t fpos_t /* File position type */
2317 * This symbol defines the format string used for printing a Gid_t.
2319 #define Gid_t_f "d" /**/
2322 * This symbol holds the signedess of a Gid_t.
2323 * 1 for unsigned, -1 for signed.
2325 #define Gid_t_sign -1 /* GID sign */
2328 * This symbol holds the size of a Gid_t in bytes.
2330 #define Gid_t_size 4 /* GID size */
2333 * This symbol holds the return type of getgid() and the type of
2334 * argument to setrgid() and related functions. Typically,
2335 * it is the type of group ids in the kernel. It can be int, ushort,
2336 * gid_t, etc... It may be necessary to include <sys/types.h> to get
2337 * any typedef'ed information.
2339 #define Gid_t gid_t /* Type for getgid(), etc... */
2342 * This symbol, if defined, indicates to the C program that it should
2343 * include <dirent.h>. Using this symbol also triggers the definition
2344 * of the Direntry_t define which ends up being 'struct dirent' or
2345 * 'struct direct' depending on the availability of <dirent.h>.
2348 * This symbol, if defined, indicates to the C program that the length
2349 * of directory entry names is provided by a d_namlen field. Otherwise
2350 * you need to do strlen() on the d_name field.
2353 * This symbol is set to 'struct direct' or 'struct dirent' depending on
2354 * whether dirent is available or not. You should use this pseudo type to
2355 * portably declare your directory entries.
2357 #define I_DIRENT /**/
2358 #define DIRNAMLEN /**/
2359 #define Direntry_t struct direct
2362 * This symbol, if defined, indicates to the C program that it should
2366 * This symbol, if defined, indicates to the C program that struct group
2367 * in <grp.h> contains gr_passwd.
2369 /*#define I_GRP /**/
2370 /*#define GRPASSWD /**/
2373 * This symbol, if defined, indicates to the C program that it should
2374 * include <mach/cthreads.h>.
2376 /*#define I_MACH_CTHREADS /**/
2379 * This symbol, if defined, indicates that <ndbm.h> exists and should
2383 * This symbol, if defined, indicates that <gdbm/ndbm.h> exists and should
2384 * be included. This was the location of the ndbm.h compatibility file
2388 * This symbol, if defined, indicates that <gdbm-ndbm.h> exists and should
2389 * be included. This is the location of the ndbm.h compatibility file
2392 /*#define I_NDBM /**/
2393 /*#define I_GDBMNDBM /**/
2394 /*#define I_GDBM_NDBM /**/
2397 * This symbol, if defined, indicates that <netdb.h> exists and
2398 * should be included.
2400 /*#define I_NETDB /**/
2403 * This symbol, if defined, indicates that <net/errno.h> exists and
2404 * should be included.
2406 /*#define I_NET_ERRNO /**/
2409 * This symbol, if defined, indicates to the C program that it should
2410 * include <pthread.h>.
2412 /*#define I_PTHREAD /**/
2415 * This symbol, if defined, indicates to the C program that it should
2419 * This symbol, if defined, indicates to the C program that struct passwd
2420 * contains pw_quota.
2423 * This symbol, if defined, indicates to the C program that struct passwd
2427 * This symbol, if defined, indicates to the C program that struct passwd
2428 * contains pw_change.
2431 * This symbol, if defined, indicates to the C program that struct passwd
2432 * contains pw_class.
2435 * This symbol, if defined, indicates to the C program that struct passwd
2436 * contains pw_expire.
2439 * This symbol, if defined, indicates to the C program that struct passwd
2440 * contains pw_comment.
2443 * This symbol, if defined, indicates to the C program that struct passwd
2444 * contains pw_gecos.
2447 * This symbol, if defined, indicates to the C program that struct passwd
2448 * contains pw_passwd.
2450 /*#define I_PWD /**/
2451 /*#define PWQUOTA /**/
2452 /*#define PWAGE /**/
2453 /*#define PWCHANGE /**/
2454 /*#define PWCLASS /**/
2455 /*#define PWEXPIRE /**/
2456 /*#define PWCOMMENT /**/
2457 /*#define PWGECOS /**/
2458 /*#define PWPASSWD /**/
2461 * This symbol, if defined, indicates to the C program that it should
2462 * include <sys/access.h>.
2464 /*#define I_SYS_ACCESS /**/
2467 * This symbol, if defined, indicates to the C program that it should
2468 * include <sys/security.h>.
2470 /*#define I_SYS_SECURITY /**/
2473 * This symbol, if defined, indicates that <sys/uio.h> exists and
2474 * should be included.
2476 /*#define I_SYSUIO /**/
2479 * This symbol, if defined, indicates that <stdarg.h> exists and should
2483 * This symbol, if defined, indicates to the C program that it should
2484 * include <varargs.h>.
2486 #define I_STDARG /**/
2487 /*#define I_VARARGS /**/
2489 /* PERL_INC_VERSION_LIST:
2490 * This variable specifies the list of subdirectories in over
2491 * which perl.c:incpush() and lib/lib.pm will automatically
2492 * search when adding directories to @INC, in a format suitable
2493 * for a C initialization string. See the inc_version_list entry
2494 * in Porting/Glossary for more details.
2496 /*#define PERL_INC_VERSION_LIST 0 /**/
2498 /* INSTALL_USR_BIN_PERL:
2499 * This symbol, if defined, indicates that Perl is to be installed
2500 * also as /usr/bin/perl.
2502 /*#define INSTALL_USR_BIN_PERL /**/
2505 * This symbol holds the type used to declare offsets in the kernel.
2506 * It can be int, long, off_t, etc... It may be necessary to include
2507 * <sys/types.h> to get any typedef'ed information.
2510 * This symbol holds the number of bytes used by the Off_t.
2513 * This symbol holds the number of bytes used by the Off_t.
2515 #define Off_t long /* <offset> type */
2516 #define LSEEKSIZE 4 /* <offset> size */
2517 #define Off_t_size 4 /* <offset> size */
2520 * This variable contains the return type of free(). It is usually
2521 * void, but occasionally int.
2524 * This symbol is the type of pointer returned by malloc and realloc.
2526 #define Malloc_t void * /**/
2527 #define Free_t void /**/
2529 /* PERL_MALLOC_WRAP:
2530 * This symbol, if defined, indicates that we'd like malloc wrap checks.
2532 #define PERL_MALLOC_WRAP /**/
2535 * This symbol, if defined, indicates that we're using our own malloc.
2537 /*#define MYMALLOC /**/
2540 * This symbol holds the type used to declare file modes
2541 * for systems calls. It is usually mode_t, but may be
2542 * int or unsigned short. It may be necessary to include <sys/types.h>
2543 * to get any typedef'ed information.
2545 #define Mode_t mode_t /* file mode parameter for system calls */
2548 * This symbol holds the type used for the 1st argument
2549 * to gethostbyaddr().
2552 * This symbol holds the type used for the 2nd argument
2553 * to gethostbyaddr().
2556 * This symbol holds the type used for the argument to
2560 * This symbol holds the type used for the 1st argument to
2563 #define Netdb_host_t char * /**/
2564 #define Netdb_hlen_t int /**/
2565 #define Netdb_name_t char * /**/
2566 #define Netdb_net_t long /**/
2568 /* PERL_OTHERLIBDIRS:
2569 * This variable contains a colon-separated set of paths for the perl
2570 * binary to search for additional library files or modules.
2571 * These directories will be tacked to the end of @INC.
2572 * Perl will automatically search below each path for version-
2573 * and architecture-specific directories. See PERL_INC_VERSION_LIST
2576 /*#define PERL_OTHERLIBDIRS "" /**/
2579 * This symbol holds the type used to declare process ids in the kernel.
2580 * It can be int, uint, pid_t, etc... It may be necessary to include
2581 * <sys/types.h> to get any typedef'ed information.
2583 #define Pid_t int /* PID type */
2586 * This symbol contains the name of the private library for this package.
2587 * The library is private in the sense that it needn't be in anyone's
2588 * execution path, but it should be accessible by the world. The program
2589 * should be prepared to do ~ expansion.
2592 * This symbol contains the ~name expanded version of PRIVLIB, to be used
2593 * in programs that are not prepared to deal with ~ expansion at run-time.
2595 #define PRIVLIB "c:\\perl\\lib" /**/
2596 #define PRIVLIB_EXP (win32_get_privlib("5.11.0")) /**/
2599 * If defined, this macro indicates that the C compiler can handle
2600 * function prototypes.
2603 * This macro is used to declare function parameters for folks who want
2604 * to make declarations with prototypes using a different style than
2605 * the above macros. Use double parentheses. For example:
2607 * int main _((int argc, char *argv[]));
2609 #define CAN_PROTOTYPE /**/
2610 #ifdef CAN_PROTOTYPE
2611 #define _(args) args
2617 * This symbol holds the type used for the 2nd, 3rd, and 4th
2618 * arguments to select. Usually, this is 'fd_set *', if HAS_FD_SET
2619 * is defined, and 'int *' otherwise. This is only useful if you
2620 * have select(), of course.
2622 #define Select_fd_set_t Perl_fd_set * /**/
2625 * This symbol contains the full pathname to the shell used on this
2626 * on this system to execute Bourne shell scripts. Usually, this will be
2627 * /bin/sh, though it's possible that some systems will have /bin/ksh,
2628 * /bin/pdksh, /bin/ash, /bin/bash, or even something such as
2631 #define SH_PATH "cmd /x /c" /**/
2634 * This symbol contains a list of signal names in order of
2635 * signal number. This is intended
2636 * to be used as a static array initialization, like this:
2637 * char *sig_name[] = { SIG_NAME };
2638 * The signals in the list are separated with commas, and each signal
2639 * is surrounded by double quotes. There is no leading SIG in the signal
2640 * name, i.e. SIGQUIT is known as "QUIT".
2641 * Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
2642 * etc., where nn is the actual signal number (e.g. NUM37).
2643 * The signal number for sig_name[i] is stored in sig_num[i].
2644 * The last element is 0 to terminate the list with a NULL. This
2645 * corresponds to the 0 at the end of the sig_name_init list.
2646 * Note that this variable is initialized from the sig_name_init,
2647 * not from sig_name (which is unused).
2650 * This symbol contains a list of signal numbers, in the same order as the
2651 * SIG_NAME list. It is suitable for static array initialization, as in:
2652 * int sig_num[] = { SIG_NUM };
2653 * The signals in the list are separated with commas, and the indices
2654 * within that list and the SIG_NAME list match, so it's easy to compute
2655 * the signal name from a number or vice versa at the price of a small
2656 * dynamic linear lookup.
2657 * Duplicates are allowed, but are moved to the end of the list.
2658 * The signal number corresponding to sig_name[i] is sig_number[i].
2659 * if (i < NSIG) then sig_number[i] == i.
2660 * The last element is 0, corresponding to the 0 at the end of
2661 * the sig_name_init list.
2662 * Note that this variable is initialized from the sig_num_init,
2663 * not from sig_num (which is unused).
2666 * This variable contains the number of elements of the SIG_NAME
2667 * and SIG_NUM arrays, excluding the final NULL entry.
2669 #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 /**/
2670 #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 /**/
2671 #define SIG_SIZE 27 /**/
2674 * This symbol contains the name of the private library for this package.
2675 * The library is private in the sense that it needn't be in anyone's
2676 * execution path, but it should be accessible by the world. The program
2677 * should be prepared to do ~ expansion.
2678 * The standard distribution will put nothing in this directory.
2679 * After perl has been installed, users may install their own local
2680 * architecture-dependent modules in this directory with
2681 * MakeMaker Makefile.PL
2682 * or equivalent. See INSTALL for details.
2685 * This symbol contains the ~name expanded version of SITEARCH, to be used
2686 * in programs that are not prepared to deal with ~ expansion at run-time.
2688 #define SITEARCH "c:\\perl\\site\\lib" /**/
2689 /*#define SITEARCH_EXP "" /**/
2692 * This symbol contains the name of the private library for this package.
2693 * The library is private in the sense that it needn't be in anyone's
2694 * execution path, but it should be accessible by the world. The program
2695 * should be prepared to do ~ expansion.
2696 * The standard distribution will put nothing in this directory.
2697 * After perl has been installed, users may install their own local
2698 * architecture-independent modules in this directory with
2699 * MakeMaker Makefile.PL
2700 * or equivalent. See INSTALL for details.
2703 * This symbol contains the ~name expanded version of SITELIB, to be used
2704 * in programs that are not prepared to deal with ~ expansion at run-time.
2707 * This define is SITELIB_EXP with any trailing version-specific component
2708 * removed. The elements in inc_version_list (inc_version_list.U) can
2709 * be tacked onto this variable to generate a list of directories to search.
2711 #define SITELIB "c:\\perl\\site\\lib" /**/
2712 #define SITELIB_EXP (win32_get_sitelib("5.11.0")) /**/
2713 #define SITELIB_STEM "" /**/
2716 * This symbol holds the size of a Size_t in bytes.
2718 #define Size_t_size 4 /**/
2721 * This symbol holds the type used to declare length parameters
2722 * for string functions. It is usually size_t, but may be
2723 * unsigned long, int, etc. It may be necessary to include
2724 * <sys/types.h> to get any typedef'ed information.
2726 #define Size_t size_t /* length paramater for string functions */
2729 * This symbol holds the type used for the size argument of
2730 * various socket calls (just the base type, not the pointer-to).
2732 #define Sock_size_t int /**/
2735 * This symbol defines the format string used for printing a Uid_t.
2737 #define Uid_t_f "d" /**/
2740 * This symbol holds the signedess of a Uid_t.
2741 * 1 for unsigned, -1 for signed.
2743 #define Uid_t_sign -1 /* UID sign */
2746 * This symbol holds the size of a Uid_t in bytes.
2748 #define Uid_t_size 4 /* UID size */
2751 * This symbol holds the type used to declare user ids in the kernel.
2752 * It can be int, ushort, uid_t, etc... It may be necessary to include
2753 * <sys/types.h> to get any typedef'ed information.
2755 #define Uid_t uid_t /* UID type */
2758 * This symbol, if defined, indicates that Perl should be built to
2759 * use the interpreter-based threading implementation.
2762 * This symbol, if defined, indicates that Perl should be built to
2763 * use the 5.005-based threading implementation.
2764 * Only valid up to 5.8.x.
2766 /* OLD_PTHREADS_API:
2767 * This symbol, if defined, indicates that Perl should
2768 * be built to use the old draft POSIX threads API.
2770 /* USE_REENTRANT_API:
2771 * This symbol, if defined, indicates that Perl should
2772 * try to use the various _r versions of library functions.
2773 * This is extremely experimental.
2775 /*#define USE_5005THREADS /**/
2776 /*#define USE_ITHREADS /**/
2777 #if defined(USE_5005THREADS) && !defined(USE_ITHREADS)
2778 #define USE_THREADS /* until src is revised*/
2780 /*#define OLD_PTHREADS_API /**/
2781 /*#define USE_REENTRANT_API /**/
2784 * If defined, this symbol contains the name of a private library.
2785 * The library is private in the sense that it needn't be in anyone's
2786 * execution path, but it should be accessible by the world.
2787 * It may have a ~ on the front.
2788 * The standard distribution will put nothing in this directory.
2789 * Vendors who distribute perl may wish to place their own
2790 * architecture-dependent modules and extensions in this directory with
2791 * MakeMaker Makefile.PL INSTALLDIRS=vendor
2792 * or equivalent. See INSTALL for details.
2794 /* PERL_VENDORARCH_EXP:
2795 * This symbol contains the ~name expanded version of PERL_VENDORARCH, to be used
2796 * in programs that are not prepared to deal with ~ expansion at run-time.
2798 /*#define PERL_VENDORARCH "" /**/
2799 /*#define PERL_VENDORARCH_EXP "" /**/
2801 /* PERL_VENDORLIB_EXP:
2802 * This symbol contains the ~name expanded version of VENDORLIB, to be used
2803 * in programs that are not prepared to deal with ~ expansion at run-time.
2805 /* PERL_VENDORLIB_STEM:
2806 * This define is PERL_VENDORLIB_EXP with any trailing version-specific component
2807 * removed. The elements in inc_version_list (inc_version_list.U) can
2808 * be tacked onto this variable to generate a list of directories to search.
2810 /*#define PERL_VENDORLIB_EXP "" /**/
2811 /*#define PERL_VENDORLIB_STEM "" /**/
2814 * This symbol indicates how much support of the void type is given by this
2815 * compiler. What various bits mean:
2817 * 1 = supports declaration of void
2818 * 2 = supports arrays of pointers to functions returning void
2819 * 4 = supports comparisons between pointers to void functions and
2820 * addresses of void functions
2821 * 8 = suports declaration of generic void pointers
2823 * The package designer should define VOIDUSED to indicate the requirements
2824 * of the package. This can be done either by #defining VOIDUSED before
2825 * including config.h, or by defining defvoidused in Myinit.U. If the
2826 * latter approach is taken, only those flags will be tested. If the
2827 * level of void support necessary is not present, defines void to int.
2832 #define VOIDFLAGS 15
2833 #if (VOIDFLAGS & VOIDUSED) != VOIDUSED
2834 #define void int /* is void to be avoided? */
2835 #define M_VOID /* Xenix strikes again */
2838 /* USE_CROSS_COMPILE:
2839 * This symbol, if defined, indicates that Perl is being cross-compiled.
2842 * This symbol, if defined, indicates the target architecture
2843 * Perl has been cross-compiled to. Undefined if not a cross-compile.
2845 #ifndef USE_CROSS_COMPILE
2846 /*#define USE_CROSS_COMPILE /**/
2847 #define PERL_TARGETARCH "" /**/
2851 * This symbol contains the number of bytes required to align a
2852 * double, or a long double when applicable. Usual values are 2,
2853 * 4 and 8. The default is eight, for safety.
2855 #if defined(USE_CROSS_COMPILE) || defined(MULTIARCH)
2856 # define MEM_ALIGNBYTES 8
2858 #define MEM_ALIGNBYTES 8
2862 * This symbol holds the hexadecimal constant defined in byteorder,
2863 * in a UV, i.e. 0x1234 or 0x4321 or 0x12345678, etc...
2864 * If the compiler supports cross-compiling or multiple-architecture
2865 * binaries (eg. on NeXT systems), use compiler-defined macros to
2866 * determine the byte order.
2867 * On NeXT 3.2 (and greater), you can build "Fat" Multiple Architecture
2868 * Binaries (MAB) on either big endian or little endian machines.
2869 * The endian-ness is available at compile-time. This only matters
2870 * for perl, where the config.h can be generated and installed on
2871 * one system, and used by a different architecture to build an
2872 * extension. Older versions of NeXT that might not have
2873 * defined either *_ENDIAN__ were all on Motorola 680x0 series,
2874 * so the default case (for NeXT) is big endian to catch them.
2875 * This might matter for NeXT 3.0.
2877 #if defined(USE_CROSS_COMPILE) || defined(MULTIARCH)
2878 # ifdef __LITTLE_ENDIAN__
2880 # define BYTEORDER 0x1234
2883 # define BYTEORDER 0x12345678
2887 # ifdef __BIG_ENDIAN__
2889 # define BYTEORDER 0x4321
2892 # define BYTEORDER 0x87654321
2897 # if !defined(BYTEORDER) && (defined(NeXT) || defined(__NeXT__))
2898 # define BYTEORDER 0x4321
2901 #define BYTEORDER 0x1234 /* large digits for MSB */
2905 * This symbol is defined if the C compiler can cast negative
2906 * or large floating point numbers to 32-bit ints.
2908 #define CASTI32 /**/
2911 * This symbol is defined if the C compiler can cast negative
2912 * numbers to unsigned longs, ints and shorts.
2915 * This symbol contains flags that say what difficulties the compiler
2916 * has casting odd floating values to unsigned long:
2918 * 1 = couldn't cast < 0
2919 * 2 = couldn't cast >= 0x80000000
2920 * 4 = couldn't cast in argument expression list
2922 #define CASTNEGFLOAT /**/
2923 #define CASTFLAGS 0 /**/
2926 * This symbol, if defined, indicates that the closedir() routine
2927 * does not return a value.
2929 /*#define VOID_CLOSEDIR /**/
2932 * This symbol, when defined, indicates presence of the fd_set typedef
2935 #define HAS_FD_SET /**/
2938 * This preprocessor macro is defined to convert a floating point
2939 * number to a string without a trailing decimal point. This
2940 * emulates the behavior of sprintf("%g"), but is sometimes much more
2941 * efficient. If gconvert() is not available, but gcvt() drops the
2942 * trailing decimal point, then gcvt() is used. If all else fails,
2943 * a macro using sprintf("%g") is used. Arguments for the Gconvert
2944 * macro are: value, number of digits, whether trailing zeros should
2945 * be retained, and the output buffer.
2946 * The usual values are:
2947 * d_Gconvert='gconvert((x),(n),(t),(b))'
2948 * d_Gconvert='gcvt((x),(n),(b))'
2949 * d_Gconvert='sprintf((b),"%.*g",(n),(x))'
2950 * The last two assume trailing zeros should not be kept.
2952 #define Gconvert(x,n,t,b) gcvt((x),(n),(b))
2955 * This symbol, if defined, indicates that the getpagesize system call
2956 * is available to get system page size, which is the granularity of
2957 * many memory management calls.
2959 /*#define HAS_GETPAGESIZE /**/
2962 * This symbol, if defined, indicates to the C program that
2963 * the GNU C library is being used. A better check is to use
2964 * the __GLIBC__ and __GLIBC_MINOR__ symbols supplied with glibc.
2966 /*#define HAS_GNULIBC /**/
2967 #if defined(HAS_GNULIBC) && !defined(_GNU_SOURCE)
2968 # define _GNU_SOURCE
2972 * This manifest constant lets the C program know that isascii
2975 #define HAS_ISASCII /**/
2978 * This symbol, if defined, indicates that the lchown routine is
2979 * available to operate on a symbolic link (instead of following the
2982 /*#define HAS_LCHOWN /**/
2985 * This manifest constant lets the C program know that the three
2986 * argument form of open(2) is available.
2988 /*#define HAS_OPEN3 /**/
2991 * This symbol, if defined, indicates that the bcopy routine is available
2992 * to copy potentially overlapping memory blocks. Normally, you should
2993 * probably use memmove() or memcpy(). If neither is defined, roll your
2996 /*#define HAS_SAFE_BCOPY /**/
2999 * This symbol, if defined, indicates that the memcpy routine is available
3000 * to copy potentially overlapping memory blocks. If you need to
3001 * copy overlapping memory blocks, you should check HAS_MEMMOVE and
3002 * use memmove() instead, if available.
3004 /*#define HAS_SAFE_MEMCPY /**/
3007 * This symbol, if defined, indicates that the memcmp routine is available
3008 * and can be used to compare relative magnitudes of chars with their high
3009 * bits set. If it is not defined, roll your own version.
3011 #define HAS_SANE_MEMCMP /**/
3014 * This symbol, if defined, indicates that Vr4's sigaction() routine
3017 /*#define HAS_SIGACTION /**/
3020 * This variable indicates to the C program that the sigsetjmp()
3021 * routine is available to save the calling process's registers
3022 * and stack environment for later use by siglongjmp(), and
3023 * to optionally save the process's signal mask. See
3024 * Sigjmp_buf, Sigsetjmp, and Siglongjmp.
3027 * This is the buffer type to be used with Sigsetjmp and Siglongjmp.
3030 * This macro is used in the same way as sigsetjmp(), but will invoke
3031 * traditional setjmp() if sigsetjmp isn't available.
3032 * See HAS_SIGSETJMP.
3035 * This macro is used in the same way as siglongjmp(), but will invoke
3036 * traditional longjmp() if siglongjmp isn't available.
3037 * See HAS_SIGSETJMP.
3039 /*#define HAS_SIGSETJMP /**/
3040 #ifdef HAS_SIGSETJMP
3041 #define Sigjmp_buf sigjmp_buf
3042 #define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
3043 #define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
3045 #define Sigjmp_buf jmp_buf
3046 #define Sigsetjmp(buf,save_mask) setjmp((buf))
3047 #define Siglongjmp(buf,retval) longjmp((buf),(retval))
3051 * This symbol is defined if the _ptr and _cnt fields (or similar)
3052 * of the stdio FILE structure can be used to access the stdio buffer
3053 * for a file handle. If this is defined, then the FILE_ptr(fp)
3054 * and FILE_cnt(fp) macros will also be defined and should be used
3055 * to access these fields.
3058 * This macro is used to access the _ptr field (or equivalent) of the
3059 * FILE structure pointed to by its argument. This macro will always be
3060 * defined if USE_STDIO_PTR is defined.
3062 /* STDIO_PTR_LVALUE:
3063 * This symbol is defined if the FILE_ptr macro can be used as an
3067 * This macro is used to access the _cnt field (or equivalent) of the
3068 * FILE structure pointed to by its argument. This macro will always be
3069 * defined if USE_STDIO_PTR is defined.
3071 /* STDIO_CNT_LVALUE:
3072 * This symbol is defined if the FILE_cnt macro can be used as an
3075 /* STDIO_PTR_LVAL_SETS_CNT:
3076 * This symbol is defined if using the FILE_ptr macro as an lvalue
3077 * to increase the pointer by n has the side effect of decreasing the
3078 * value of File_cnt(fp) by n.
3080 /* STDIO_PTR_LVAL_NOCHANGE_CNT:
3081 * This symbol is defined if using the FILE_ptr macro as an lvalue
3082 * to increase the pointer by n leaves File_cnt(fp) unchanged.
3084 #define USE_STDIO_PTR /**/
3085 #ifdef USE_STDIO_PTR
3086 #define FILE_ptr(fp) ((fp)->curp)
3087 #define STDIO_PTR_LVALUE /**/
3088 #define FILE_cnt(fp) ((fp)->level)
3089 #define STDIO_CNT_LVALUE /**/
3090 /*#define STDIO_PTR_LVAL_SETS_CNT /**/
3091 #define STDIO_PTR_LVAL_NOCHANGE_CNT /**/
3095 * This symbol is defined if the _base field (or similar) of the
3096 * stdio FILE structure can be used to access the stdio buffer for
3097 * a file handle. If this is defined, then the FILE_base(fp) macro
3098 * will also be defined and should be used to access this field.
3099 * Also, the FILE_bufsiz(fp) macro will be defined and should be used
3100 * to determine the number of bytes in the buffer. USE_STDIO_BASE
3101 * will never be defined unless USE_STDIO_PTR is.
3104 * This macro is used to access the _base field (or equivalent) of the
3105 * FILE structure pointed to by its argument. This macro will always be
3106 * defined if USE_STDIO_BASE is defined.
3109 * This macro is used to determine the number of bytes in the I/O
3110 * buffer pointed to by _base field (or equivalent) of the FILE
3111 * structure pointed to its argument. This macro will always be defined
3112 * if USE_STDIO_BASE is defined.
3114 #define USE_STDIO_BASE /**/
3115 #ifdef USE_STDIO_BASE
3116 #define FILE_base(fp) ((fp)->buffer)
3117 #define FILE_bufsiz(fp) ((fp)->level + (fp)->curp - (fp)->buffer)
3121 * This symbol, if defined, indicates that the vprintf routine is available
3122 * to printf with a pointer to an argument list. If unavailable, you
3123 * may need to write your own, probably in terms of _doprnt().
3125 /* USE_CHAR_VSPRINTF:
3126 * This symbol is defined if this system has vsprintf() returning type
3127 * (char*). The trend seems to be to declare it as "int vsprintf()". It
3128 * is up to the package author to declare vsprintf correctly based on the
3131 #define HAS_VPRINTF /**/
3132 /*#define USE_CHAR_VSPRINTF /**/
3135 * This symbol contains the size of a double, so that the C preprocessor
3136 * can make decisions based on it.
3138 #define DOUBLESIZE 8 /**/
3141 * This symbol, if defined, indicates to the C program that it should
3145 * This symbol, if defined, indicates to the C program that it should
3146 * include <sys/time.h>.
3148 /* I_SYS_TIME_KERNEL:
3149 * This symbol, if defined, indicates to the C program that it should
3150 * include <sys/time.h> with KERNEL defined.
3153 * This symbol, if defined, indicates to the C program that
3154 * the struct tm has a tm_zone field.
3156 /* HAS_TM_TM_GMTOFF:
3157 * This symbol, if defined, indicates to the C program that
3158 * the struct tm has a tm_gmtoff field.
3161 /*#define I_SYS_TIME /**/
3162 /*#define I_SYS_TIME_KERNEL /**/
3163 /*#define HAS_TM_TM_ZONE /**/
3164 /*#define HAS_TM_TM_GMTOFF /**/
3167 * This symbol is to be used during open() or fcntl(F_SETFL) to turn on
3168 * non-blocking I/O for the file descriptor. Note that there is no way
3169 * back, i.e. you cannot turn it blocking again this way. If you wish to
3170 * alternatively switch between blocking and non-blocking, use the
3171 * ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
3174 * This symbol holds the errno error code set by read() when no data was
3175 * present on the non-blocking file descriptor.
3178 * This symbol holds the return code from read() when no data is present
3179 * on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
3180 * not defined, then you can't distinguish between no data and EOF by
3181 * issuing a read(). You'll have to find another way to tell for sure!
3184 * This symbol, if defined, indicates to the C program that a read() on
3185 * a non-blocking file descriptor will return 0 on EOF, and not the value
3186 * held in RD_NODATA (-1 usually, in that case!).
3188 #define VAL_O_NONBLOCK O_NONBLOCK
3189 #define VAL_EAGAIN EAGAIN
3190 #define RD_NODATA -1
3191 #define EOF_NONBLOCK
3194 * This symbol contains the size of a pointer, so that the C preprocessor
3195 * can make decisions based on it. It will be sizeof(void *) if
3196 * the compiler supports (void *); otherwise it will be
3199 #define PTRSIZE 4 /**/
3202 * This macro is to be used to generate uniformly distributed
3203 * random numbers over the range [0., 1.[. You may have to supply
3204 * an 'extern double drand48();' in your program since SunOS 4.1.3
3205 * doesn't provide you with anything relevant in its headers.
3206 * See HAS_DRAND48_PROTO.
3209 * This symbol defines the type of the argument of the
3210 * random seed function.
3213 * This symbol defines the macro to be used in seeding the
3214 * random number generator (see Drand01).
3217 * This symbol indicates how many bits are produced by the
3218 * function used to generate normalized random numbers.
3219 * Values include 15, 16, 31, and 48.
3221 #define Drand01() (rand()/(double)((unsigned)1<<RANDBITS)) /**/
3222 #define Rand_seed_t unsigned /**/
3223 #define seedDrand01(x) srand((Rand_seed_t)x) /**/
3224 #define RANDBITS 15 /**/
3227 * This symbol holds the type used by functions that return
3228 * a count of bytes or an error condition. It must be a signed type.
3229 * It is usually ssize_t, but may be long or int, etc.
3230 * It may be necessary to include <sys/types.h> or <unistd.h>
3231 * to get any typedef'ed information.
3232 * We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
3234 #define SSize_t int /* signed count of bytes */
3237 * This symbol, if defined, indicates that this system uses
3240 /*#define EBCDIC /**/
3243 * This symbol is defined to be the type of char used in stdio.h.
3244 * It has the values "unsigned char" or "char".
3246 #define STDCHAR unsigned char /**/
3249 * This symbol, if defined, indicates that the atolf routine is
3250 * available to convert strings into long doubles.
3252 /*#define HAS_ATOLF /**/
3255 * This symbol, if defined, indicates that the atoll routine is
3256 * available to convert strings into long longs.
3258 /*#define HAS_ATOLL /**/
3261 * This symbol, if defined, indicates that the _fwalk system call is
3262 * available to apply a function to all the file handles.
3264 /*#define HAS__FWALK /**/
3267 * This symbol, if defined, indicates that the aintl routine is
3268 * available. If copysignl is also present we can emulate modfl.
3270 /*#define HAS_AINTL /**/
3272 /* HAS_BUILTIN_CHOOSE_EXPR:
3273 * Can we handle GCC builtin for compile-time ternary-like expressions
3275 /* HAS_BUILTIN_EXPECT:
3276 * Can we handle GCC builtin for telling that certain values are more
3279 /*#define HAS_BUILTIN_EXPECT /**/
3280 /*#define HAS_BUILTIN_CHOOSE_EXPR /**/
3282 /* HAS_C99_VARIADIC_MACROS:
3283 * If defined, the compiler supports C99 variadic macros.
3285 /*#define HAS_C99_VARIADIC_MACROS /**/
3288 * This symbol, if defined, indicates that the class routine is
3289 * available to classify doubles. Available for example in AIX.
3290 * The returned values are defined in <float.h> and are:
3292 * FP_PLUS_NORM Positive normalized, nonzero
3293 * FP_MINUS_NORM Negative normalized, nonzero
3294 * FP_PLUS_DENORM Positive denormalized, nonzero
3295 * FP_MINUS_DENORM Negative denormalized, nonzero
3297 * FP_MINUS_ZERO -0.0
3300 * FP_NANS Signaling Not a Number (NaNS)
3301 * FP_NANQ Quiet Not a Number (NaNQ)
3303 /*#define HAS_CLASS /**/
3306 * This symbol, if defined, indicates that the clearenv () routine is
3307 * available for use.
3309 /*#define HAS_CLEARENV /**/
3311 /* HAS_STRUCT_CMSGHDR:
3312 * This symbol, if defined, indicates that the struct cmsghdr
3315 /*#define HAS_STRUCT_CMSGHDR /**/
3318 * This symbol, if defined, indicates that the copysignl routine is
3319 * available. If aintl is also present we can emulate modfl.
3321 /*#define HAS_COPYSIGNL /**/
3324 * This symbol, if defined, indicates that a C++ compiler was
3325 * used to compiled Perl and will be used to compile extensions.
3327 /*#define USE_CPLUSPLUS /**/
3329 /* HAS_DBMINIT_PROTO:
3330 * This symbol, if defined, indicates that the system provides
3331 * a prototype for the dbminit() function. Otherwise, it is up
3332 * to the program to supply one. A good guess is
3333 * extern int dbminit(char *);
3335 /*#define HAS_DBMINIT_PROTO /**/
3338 * This symbol, if defined, indicates that the the DIR* dirstream
3339 * structure contains a member variable named dd_fd.
3341 /*#define HAS_DIR_DD_FD /**/
3344 * This manifest constant lets the C program know that dirfd
3347 /*#define HAS_DIRFD /**/
3349 /* DLSYM_NEEDS_UNDERSCORE:
3350 * This symbol, if defined, indicates that we need to prepend an
3351 * underscore to the symbol name before calling dlsym(). This only
3352 * makes sense if you *have* dlsym, which we will presume is the
3353 * case if you're using dl_dlopen.xs.
3355 /*#define DLSYM_NEEDS_UNDERSCORE /**/
3358 * This symbol, if defined, indicates that the "fast stdio"
3359 * is available to manipulate the stdio buffers directly.
3361 #define HAS_FAST_STDIO /**/
3364 * This symbol, if defined, indicates that the fchdir routine is
3365 * available to change directory using a file descriptor.
3367 /*#define HAS_FCHDIR /**/
3370 * This symbol, if defined, indicates that fcntl() can be used
3371 * for file locking. Normally on Unix systems this is defined.
3372 * It may be undefined on VMS.
3374 /*#define FCNTL_CAN_LOCK /**/
3377 * This symbol, if defined, indicates that the finite routine is
3378 * available to check whether a double is finite (non-infinity non-NaN).
3380 /*#define HAS_FINITE /**/
3383 * This symbol, if defined, indicates that the finitel routine is
3384 * available to check whether a long double is finite
3385 * (non-infinity non-NaN).
3387 /*#define HAS_FINITEL /**/
3390 * This symbol, if defined, indicates that the system provides
3391 * a prototype for the flock() function. Otherwise, it is up
3392 * to the program to supply one. A good guess is
3393 * extern int flock(int, int);
3395 #define HAS_FLOCK_PROTO /**/
3398 * This symbol, if defined, indicates that the fp_class routine is
3399 * available to classify doubles. Available for example in Digital UNIX.
3400 * The returned values are defined in <math.h> and are:
3402 * FP_SNAN Signaling NaN (Not-a-Number)
3403 * FP_QNAN Quiet NaN (Not-a-Number)
3404 * FP_POS_INF +infinity
3405 * FP_NEG_INF -infinity
3406 * FP_POS_NORM Positive normalized
3407 * FP_NEG_NORM Negative normalized
3408 * FP_POS_DENORM Positive denormalized
3409 * FP_NEG_DENORM Negative denormalized
3410 * FP_POS_ZERO +0.0 (positive zero)
3411 * FP_NEG_ZERO -0.0 (negative zero)
3413 /*#define HAS_FP_CLASS /**/
3416 * This symbol, if defined, indicates that the fpclass routine is
3417 * available to classify doubles. Available for example in Solaris/SVR4.
3418 * The returned values are defined in <ieeefp.h> and are:
3420 * FP_SNAN signaling NaN
3422 * FP_NINF negative infinity
3423 * FP_PINF positive infinity
3424 * FP_NDENORM negative denormalized non-zero
3425 * FP_PDENORM positive denormalized non-zero
3426 * FP_NZERO negative zero
3427 * FP_PZERO positive zero
3428 * FP_NNORM negative normalized non-zero
3429 * FP_PNORM positive normalized non-zero
3431 /*#define HAS_FPCLASS /**/
3434 * This symbol, if defined, indicates that the fpclassify routine is
3435 * available to classify doubles. Available for example in HP-UX.
3436 * The returned values are defined in <math.h> and are
3438 * FP_NORMAL Normalized
3440 * FP_INFINITE Infinity
3441 * FP_SUBNORMAL Denormalized
3445 /*#define HAS_FPCLASSIFY /**/
3448 * This symbol, if defined, indicates that the fpclassl routine is
3449 * available to classify long doubles. Available for example in IRIX.
3450 * The returned values are defined in <ieeefp.h> and are:
3452 * FP_SNAN signaling 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
3463 /*#define HAS_FPCLASSL /**/
3466 * This symbol will be defined if the C compiler supports fpos64_t.
3468 /*#define HAS_FPOS64_T /**/
3471 * This symbol, if defined, indicates that the frexpl routine is
3472 * available to break a long double floating-point number into
3473 * a normalized fraction and an integral power of 2.
3475 /*#define HAS_FREXPL /**/
3477 /* HAS_STRUCT_FS_DATA:
3478 * This symbol, if defined, indicates that the struct fs_data
3479 * to do statfs() is supported.
3481 /*#define HAS_STRUCT_FS_DATA /**/
3484 * This symbol, if defined, indicates that the fseeko routine is
3485 * available to fseek beyond 32 bits (useful for ILP32 hosts).
3487 /*#define HAS_FSEEKO /**/
3490 * This symbol, if defined, indicates that the fstatfs routine is
3491 * available to stat filesystems by file descriptors.
3493 /*#define HAS_FSTATFS /**/
3496 * This symbol, if defined, indicates that the fsync routine is
3497 * available to write a file's modified data and attributes to
3498 * permanent storage.
3500 /*#define HAS_FSYNC /**/
3503 * This symbol, if defined, indicates that the ftello routine is
3504 * available to ftell beyond 32 bits (useful for ILP32 hosts).
3506 /*#define HAS_FTELLO /**/
3509 * This symbol, if defined, indicates that the futimes routine is
3510 * available to change file descriptor time stamps with struct timevals.
3512 /*#define HAS_FUTIMES /**/
3515 * This symbol, if defined, indicates that the getcwd routine is
3516 * available to get the current working directory.
3518 #define HAS_GETCWD /**/
3521 * This symbol, if defined, indicates that the getespwnam system call is
3522 * available to retrieve enchanced (shadow) password entries by name.
3524 /*#define HAS_GETESPWNAM /**/
3527 * This symbol, if defined, indicates that the getfsstat routine is
3528 * available to stat filesystems in bulk.
3530 /*#define HAS_GETFSSTAT /**/
3533 * This symbol, if defined, indicates that the getitimer routine is
3534 * available to return interval timers.
3536 /*#define HAS_GETITIMER /**/
3539 * This symbol, if defined, indicates that the getmnt routine is
3540 * available to get filesystem mount info by filename.
3542 /*#define HAS_GETMNT /**/
3545 * This symbol, if defined, indicates that the getmntent routine is
3546 * available to iterate through mounted file systems to get their info.
3548 /*#define HAS_GETMNTENT /**/
3551 * This symbol, if defined, indicates that the getprpwnam system call is
3552 * available to retrieve protected (shadow) password entries by name.
3554 /*#define HAS_GETPRPWNAM /**/
3557 * This symbol, if defined, indicates that the getspnam system call is
3558 * available to retrieve SysV shadow password entries by name.
3560 /*#define HAS_GETSPNAM /**/
3563 * This symbol, if defined, indicates that the hasmntopt routine is
3564 * available to query the mount options of file systems.
3566 /*#define HAS_HASMNTOPT /**/
3569 * This symbol, if defined, indicates that the ilogbl routine is
3570 * available. If scalbnl is also present we can emulate frexpl.
3572 /*#define HAS_ILOGBL /**/
3575 * This symbol will defined if the C compiler supports int64_t.
3576 * Usually the <inttypes.h> needs to be included, but sometimes
3577 * <sys/types.h> is enough.
3579 /*#define HAS_INT64_T /**/
3582 * This symbol, if defined, indicates that the isfinite routine is
3583 * available to check whether a double is finite (non-infinity non-NaN).
3585 /*#define HAS_ISFINITE /**/
3588 * This symbol, if defined, indicates that the isinf routine is
3589 * available to check whether a double is an infinity.
3591 /*#define HAS_ISINF /**/
3594 * This symbol, if defined, indicates that the isnan routine is
3595 * available to check whether a double is a NaN.
3597 #define HAS_ISNAN /**/
3600 * This symbol, if defined, indicates that the isnanl routine is
3601 * available to check whether a long double is a NaN.
3603 /*#define HAS_ISNANL /**/
3606 * This symbol, if defined, indicates that this system's <float.h>
3607 * or <limits.h> defines the symbol LDBL_DIG, which is the number
3608 * of significant digits in a long double precision number. Unlike
3609 * for DBL_DIG, there's no good guess for LDBL_DIG if it is undefined.
3611 #define HAS_LDBL_DIG /**/
3613 /* LIBM_LIB_VERSION:
3614 * This symbol, if defined, indicates that libm exports _LIB_VERSION
3615 * and that math.h defines the enum to manipulate it.
3617 /*#define LIBM_LIB_VERSION /**/
3620 * This symbol, if defined, indicates that the madvise system call is
3621 * available to map a file into memory.
3623 /*#define HAS_MADVISE /**/
3626 * This symbol, if defined, indicates that the malloc_size
3627 * routine is available for use.
3629 /*#define HAS_MALLOC_SIZE /**/
3631 /* HAS_MALLOC_GOOD_SIZE:
3632 * This symbol, if defined, indicates that the malloc_good_size
3633 * routine is available for use.
3635 /*#define HAS_MALLOC_GOOD_SIZE /**/
3638 * This symbol, if defined, indicates that the mkdtemp routine is
3639 * available to exclusively create a uniquely named temporary directory.
3641 /*#define HAS_MKDTEMP /**/
3644 * This symbol, if defined, indicates that the mkstemps routine is
3645 * available to excluslvely create and open a uniquely named
3646 * (with a suffix) temporary file.
3648 /*#define HAS_MKSTEMPS /**/
3651 * This symbol, if defined, indicates that the modfl routine is
3652 * available to split a long double x into a fractional part f and
3653 * an integer part i such that |f| < 1.0 and (f + i) = x.
3656 * This symbol, if defined, indicates that the system provides
3657 * a prototype for the modfl() function. Otherwise, it is up
3658 * to the program to supply one.
3660 /* HAS_MODFL_POW32_BUG:
3661 * This symbol, if defined, indicates that the modfl routine is
3662 * broken for long doubles >= pow(2, 32).
3663 * For example from 4294967303.150000 one would get 4294967302.000000
3664 * and 1.150000. The bug has been seen in certain versions of glibc,
3665 * release 2.2.2 is known to be okay.
3667 /*#define HAS_MODFL /**/
3668 /*#define HAS_MODFL_PROTO /**/
3669 /*#define HAS_MODFL_POW32_BUG /**/
3672 * This symbol, if defined, indicates that the mprotect system call is
3673 * available to modify the access protection of a memory mapped file.
3675 /*#define HAS_MPROTECT /**/
3677 /* HAS_STRUCT_MSGHDR:
3678 * This symbol, if defined, indicates that the struct msghdr
3681 /*#define HAS_STRUCT_MSGHDR /**/
3684 * This symbol, if defined, indicates that the nl_langinfo routine is
3685 * available to return local data. You will also need <langinfo.h>
3686 * and therefore I_LANGINFO.
3688 /*#define HAS_NL_LANGINFO /**/
3691 * This symbol will be defined if the C compiler supports off64_t.
3693 /*#define HAS_OFF64_T /**/
3696 * This symbol is defined if PROCSELFEXE_PATH is a symlink
3697 * to the absolute pathname of the executing program.
3699 /* PROCSELFEXE_PATH:
3700 * If HAS_PROCSELFEXE is defined this symbol is the filename
3701 * of the symbolic link pointing to the absolute pathname of
3702 * the executing program.
3704 /*#define HAS_PROCSELFEXE /**/
3705 #if defined(HAS_PROCSELFEXE) && !defined(PROCSELFEXE_PATH)
3706 #define PROCSELFEXE_PATH /**/
3709 /* HAS_PTHREAD_ATTR_SETSCOPE:
3710 * This symbol, if defined, indicates that the pthread_attr_setscope
3711 * system call is available to set the contention scope attribute of
3712 * a thread attribute object.
3714 /*#define HAS_PTHREAD_ATTR_SETSCOPE /**/
3717 * This symbol, if defined, indicates that the readv routine is
3718 * available to do gather reads. You will also need <sys/uio.h>
3719 * and there I_SYSUIO.
3721 /*#define HAS_READV /**/
3724 * This symbol, if defined, indicates that the recvmsg routine is
3725 * available to send structured socket messages.
3727 /*#define HAS_RECVMSG /**/
3730 * This symbol, if defined, indicates that the system provides
3731 * a prototype for the sbrk() function. Otherwise, it is up
3732 * to the program to supply one. Good guesses are
3733 * extern void* sbrk(int);
3734 * extern void* sbrk(size_t);
3736 /*#define HAS_SBRK_PROTO /**/
3739 * This symbol, if defined, indicates that the scalbnl routine is
3740 * available. If ilogbl is also present we can emulate frexpl.
3742 /*#define HAS_SCALBNL /**/
3745 * This symbol, if defined, indicates that the sendmsg routine is
3746 * available to send structured socket messages.
3748 /*#define HAS_SENDMSG /**/
3751 * This symbol, if defined, indicates that the setitimer routine is
3752 * available to set interval timers.
3754 /*#define HAS_SETITIMER /**/
3756 /* HAS_SETPROCTITLE:
3757 * This symbol, if defined, indicates that the setproctitle routine is
3758 * available to set process title.
3760 /*#define HAS_SETPROCTITLE /**/
3763 * This symbol, if defined, indicates that sfio should
3766 /*#define USE_SFIO /**/
3769 * This symbol, if defined, indicates that the signbit routine is
3770 * available to check if the given number has the sign bit set.
3771 * This should include correct testing of -0.0. This will only be set
3772 * if the signbit() routine is safe to use with the NV type used internally
3773 * in perl. Users should call Perl_signbit(), which will be #defined to
3774 * the system's signbit() function or macro if this symbol is defined.
3776 /*#define HAS_SIGNBIT /**/
3779 * This symbol, if defined, indicates that the sigprocmask
3780 * system call is available to examine or change the signal mask
3781 * of the calling process.
3783 /*#define HAS_SIGPROCMASK /**/
3785 /* USE_SITECUSTOMIZE:
3786 * This symbol, if defined, indicates that sitecustomize should
3789 #ifndef USE_SITECUSTOMIZE
3790 /*#define USE_SITECUSTOMIZE /**/
3794 * This symbol, if defined, indicates that the snprintf () library
3795 * function is available for use.
3798 * This symbol, if defined, indicates that the vsnprintf () library
3799 * function is available for use.
3801 #define HAS_SNPRINTF /**/
3802 #define HAS_VSNPRINTF /**/
3805 * This symbol, if defined, indicates that the sockatmark routine is
3806 * available to test whether a socket is at the out-of-band mark.
3808 /*#define HAS_SOCKATMARK /**/
3810 /* HAS_SOCKATMARK_PROTO:
3811 * This symbol, if defined, indicates that the system provides
3812 * a prototype for the sockatmark() function. Otherwise, it is up
3813 * to the program to supply one. A good guess is
3814 * extern int sockatmark(int);
3816 /*#define HAS_SOCKATMARK_PROTO /**/
3819 * This symbol, if defined, indicates that the socks5_init routine is
3820 * available to initialize SOCKS 5.
3822 /*#define HAS_SOCKS5_INIT /**/
3824 /* SPRINTF_RETURNS_STRLEN:
3825 * This variable defines whether sprintf returns the length of the string
3826 * (as per the ANSI spec). Some C libraries retain compatibility with
3827 * pre-ANSI C and return a pointer to the passed in buffer; for these
3828 * this variable will be undef.
3830 #define SPRINTF_RETURNS_STRLEN /**/
3833 * This symbol, if defined, indicates that the sqrtl routine is
3834 * available to do long double square roots.
3836 /*#define HAS_SQRTL /**/
3838 /* HAS_SETRESGID_PROTO:
3839 * This symbol, if defined, indicates that the system provides
3840 * a prototype for the setresgid() function. Otherwise, it is up
3841 * to the program to supply one. Good guesses are
3842 * extern int setresgid(uid_t ruid, uid_t euid, uid_t suid);
3844 /*#define HAS_SETRESGID_PROTO /**/
3846 /* HAS_SETRESUID_PROTO:
3847 * This symbol, if defined, indicates that the system provides
3848 * a prototype for the setresuid() function. Otherwise, it is up
3849 * to the program to supply one. Good guesses are
3850 * extern int setresuid(uid_t ruid, uid_t euid, uid_t suid);
3852 /*#define HAS_SETRESUID_PROTO /**/
3854 /* HAS_STRUCT_STATFS_F_FLAGS:
3855 * This symbol, if defined, indicates that the struct statfs
3856 * does have the f_flags member containing the mount flags of
3857 * the filesystem containing the file.
3858 * This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3),
3859 * not from <sys/statfs.h> (SYSV). Older BSDs (like Ultrix) do not
3860 * have statfs() and struct statfs, they have ustat() and getmnt()
3861 * with struct ustat and struct fs_data.
3863 /*#define HAS_STRUCT_STATFS_F_FLAGS /**/
3865 /* HAS_STRUCT_STATFS:
3866 * This symbol, if defined, indicates that the struct statfs
3867 * to do statfs() is supported.
3869 /*#define HAS_STRUCT_STATFS /**/
3872 * This symbol, if defined, indicates that the fstatvfs routine is
3873 * available to stat filesystems by file descriptors.
3875 /*#define HAS_FSTATVFS /**/
3878 * This symbol, if defined, indicates that the strftime routine is
3879 * available to do time formatting.
3881 #define HAS_STRFTIME /**/
3884 * This symbol, if defined, indicates that the strlcat () routine is
3885 * available to do string concatenation.
3887 /*#define HAS_STRLCAT /**/
3890 * This symbol, if defined, indicates that the strlcpy () routine is
3891 * available to do string copying.
3893 /*#define HAS_STRLCPY /**/
3896 * This symbol, if defined, indicates that the strtold routine is
3897 * available to convert strings to long doubles.
3899 /*#define HAS_STRTOLD /**/
3902 * This symbol, if defined, indicates that the strtoll routine is
3903 * available to convert strings to long longs.
3905 /*#define HAS_STRTOLL /**/
3908 * This symbol, if defined, indicates that the strtoq routine is
3909 * available to convert strings to long longs (quads).
3911 /*#define HAS_STRTOQ /**/
3914 * This symbol, if defined, indicates that the strtoull routine is
3915 * available to convert strings to unsigned long longs.
3917 /*#define HAS_STRTOULL /**/
3920 * This symbol, if defined, indicates that the strtouq routine is
3921 * available to convert strings to unsigned long longs (quads).
3923 /*#define HAS_STRTOUQ /**/
3925 /* HAS_SYSCALL_PROTO:
3926 * This symbol, if defined, indicates that the system provides
3927 * a prototype for the syscall() function. Otherwise, it is up
3928 * to the program to supply one. Good guesses are
3929 * extern int syscall(int, ...);
3930 * extern int syscall(long, ...);
3932 /*#define HAS_SYSCALL_PROTO /**/
3934 /* HAS_TELLDIR_PROTO:
3935 * This symbol, if defined, indicates that the system provides
3936 * a prototype for the telldir() function. Otherwise, it is up
3937 * to the program to supply one. A good guess is
3938 * extern long telldir(DIR*);
3940 #define HAS_TELLDIR_PROTO /**/
3943 * This symbol, if defined, indicates that the timegm routine is
3944 * available to do the opposite of gmtime ()
3946 /*#define HAS_TIMEGM /**/
3948 /* U32_ALIGNMENT_REQUIRED:
3949 * This symbol, if defined, indicates that you must access
3950 * character data through U32-aligned pointers.
3952 #ifndef U32_ALIGNMENT_REQUIRED
3953 #define U32_ALIGNMENT_REQUIRED /**/
3957 * This symbol, if defined, indicates that the ualarm routine is
3958 * available to do alarms with microsecond granularity.
3960 /*#define HAS_UALARM /**/
3963 * This symbol, if defined, indicates that the unordered routine is
3964 * available to check whether two doubles are unordered
3965 * (effectively: whether either of them is NaN)
3967 /*#define HAS_UNORDERED /**/
3970 * This symbol, if defined, indicates that the unsetenv () routine is
3971 * available for use.
3973 /*#define HAS_UNSETENV /**/
3975 /* HAS_USLEEP_PROTO:
3976 * This symbol, if defined, indicates that the system provides
3977 * a prototype for the usleep() function. Otherwise, it is up
3978 * to the program to supply one. A good guess is
3979 * extern int usleep(useconds_t);
3981 /*#define HAS_USLEEP_PROTO /**/
3984 * This symbol, if defined, indicates that the ustat system call is
3985 * available to query file system statistics by dev_t.
3987 /*#define HAS_USTAT /**/
3990 * This symbol, if defined, indicates that the writev routine is
3991 * available to do scatter writes.
3993 /*#define HAS_WRITEV /**/
3995 /* USE_DYNAMIC_LOADING:
3996 * This symbol, if defined, indicates that dynamic loading of
3997 * some sort is available.
3999 #define USE_DYNAMIC_LOADING /**/
4002 * This symbol, if defined, tells that fflush(NULL) does flush
4003 * all pending stdio output.
4006 * This symbol, if defined, tells that to flush
4007 * all pending stdio output one must loop through all
4008 * the stdio file handles stored in an array and fflush them.
4009 * Note that if fflushNULL is defined, fflushall will not
4010 * even be probed for and will be left undefined.
4012 #define FFLUSH_NULL /**/
4013 /*#define FFLUSH_ALL /**/
4016 * This symbol, if defined, indicates that <assert.h> exists and
4017 * could be included by the C program to get the assert() macro.
4019 #define I_ASSERT /**/
4022 * This symbol, if defined, indicates that <crypt.h> exists and
4023 * should be included.
4025 /*#define I_CRYPT /**/
4028 * This symbol contains the type of the prefix structure element
4029 * in the <db.h> header file. In older versions of DB, it was
4030 * int, while in newer ones it is u_int32_t.
4033 * This symbol contains the type of the prefix structure element
4034 * in the <db.h> header file. In older versions of DB, it was
4035 * int, while in newer ones it is size_t.
4037 /* DB_VERSION_MAJOR_CFG:
4038 * This symbol, if defined, defines the major version number of
4039 * Berkeley DB found in the <db.h> header when Perl was configured.
4041 /* DB_VERSION_MINOR_CFG:
4042 * This symbol, if defined, defines the minor version number of
4043 * Berkeley DB found in the <db.h> header when Perl was configured.
4044 * For DB version 1 this is always 0.
4046 /* DB_VERSION_PATCH_CFG:
4047 * This symbol, if defined, defines the patch version number of
4048 * Berkeley DB found in the <db.h> header when Perl was configured.
4049 * For DB version 1 this is always 0.
4051 #define DB_Hash_t int /**/
4052 #define DB_Prefix_t int /**/
4053 #define DB_VERSION_MAJOR_CFG 0 /**/
4054 #define DB_VERSION_MINOR_CFG 0 /**/
4055 #define DB_VERSION_PATCH_CFG 0 /**/
4058 * This symbol, if defined, indicates that <fp.h> exists and
4059 * should be included.
4064 * This symbol, if defined, indicates that <fp_class.h> exists and
4065 * should be included.
4067 /*#define I_FP_CLASS /**/
4070 * This symbol, if defined, indicates that <ieeefp.h> exists and
4071 * should be included.
4073 /*#define I_IEEEFP /**/
4076 * This symbol, if defined, indicates to the C program that it should
4077 * include <inttypes.h>.
4079 /*#define I_INTTYPES /**/
4082 * This symbol, if defined, indicates that <langinfo.h> exists and
4083 * should be included.
4085 /*#define I_LANGINFO /**/
4088 * This symbol, if defined, indicates that <libutil.h> exists and
4089 * should be included.
4091 /*#define I_LIBUTIL /**/
4094 * This symbol, if defined, indicates to the C program that it should
4095 * include <malloc/malloc.h>.
4097 /*#define I_MALLOCMALLOC /**/
4100 * This symbol, if defined, indicates that <mntent.h> exists and
4101 * should be included.
4103 /*#define I_MNTENT /**/
4106 * This symbol, if defined, indicates to the C program that it should
4107 * include <netinet/tcp.h>.
4109 /*#define I_NETINET_TCP /**/
4112 * This symbol, if defined, indicates that <poll.h> exists and
4113 * should be included. (see also HAS_POLL)
4115 /*#define I_POLL /**/
4118 * This symbol, if defined, indicates that <prot.h> exists and
4119 * should be included.
4121 /*#define I_PROT /**/
4124 * This symbol, if defined, indicates that <shadow.h> exists and
4125 * should be included.
4127 /*#define I_SHADOW /**/
4130 * This symbol, if defined, indicates that <socks.h> exists and
4131 * should be included.
4133 /*#define I_SOCKS /**/
4136 * This symbol, if defined, indicates that <sunmath.h> exists and
4137 * should be included.
4139 /*#define I_SUNMATH /**/
4142 * This symbol, if defined, indicates that <syslog.h> exists and
4143 * should be included.
4145 /*#define I_SYSLOG /**/
4148 * This symbol, if defined, indicates that <sys/mode.h> exists and
4149 * should be included.
4151 /*#define I_SYSMODE /**/
4154 * This symbol, if defined, indicates that <sys/mount.h> exists and
4155 * should be included.
4157 /*#define I_SYS_MOUNT /**/
4160 * This symbol, if defined, indicates that <sys/statfs.h> exists.
4162 /*#define I_SYS_STATFS /**/
4165 * This symbol, if defined, indicates that <sys/statvfs.h> exists and
4166 * should be included.
4168 /*#define I_SYS_STATVFS /**/
4171 * This symbol, if defined, indicates that <sys/utsname.h> exists and
4172 * should be included.
4174 /*#define I_SYSUTSNAME /**/
4177 * This symbol, if defined, indicates that <sys/vfs.h> exists and
4178 * should be included.
4180 /*#define I_SYS_VFS /**/
4183 * This symbol, if defined, indicates that <ustat.h> exists and
4184 * should be included.
4186 /*#define I_USTAT /**/
4189 * This symbol, if defined, contains the string used by stdio to
4190 * format long doubles (format 'f') for output.
4193 * This symbol, if defined, contains the string used by stdio to
4194 * format long doubles (format 'g') for output.
4197 * This symbol, if defined, contains the string used by stdio to
4198 * format long doubles (format 'e') for output.
4201 * This symbol, if defined, contains the string used by stdio to
4202 * format long doubles (format 'f') for input.
4204 /*#define PERL_PRIfldbl "Lf" /**/
4205 /*#define PERL_PRIgldbl "Lg" /**/
4206 /*#define PERL_PRIeldbl "Le" /**/
4207 /*#define PERL_SCNfldbl "Lf" /**/
4210 * This symbol, if defined, indicates that the Misc Attribution
4211 * Declaration code should be conditionally compiled.
4213 /*#define PERL_MAD /**/
4216 * This symbol, if defined, indicates that the system stores
4217 * the variable argument list datatype, va_list, in a format
4218 * that cannot be copied by simple assignment, so that some
4219 * other means must be used when copying is required.
4220 * As such systems vary in their provision (or non-provision)
4221 * of copying mechanisms, handy.h defines a platform-
4222 * independent macro, Perl_va_copy(src, dst), to do the job.
4224 /*#define NEED_VA_COPY /**/
4227 * This symbol defines the C type used for Perl's IV.
4230 * This symbol defines the C type used for Perl's UV.
4233 * This symbol defines the C type used for Perl's I8.
4236 * This symbol defines the C type used for Perl's U8.
4239 * This symbol defines the C type used for Perl's I16.
4242 * This symbol defines the C type used for Perl's U16.
4245 * This symbol defines the C type used for Perl's I32.
4248 * This symbol defines the C type used for Perl's U32.
4251 * This symbol defines the C type used for Perl's I64.
4254 * This symbol defines the C type used for Perl's U64.
4257 * This symbol defines the C type used for Perl's NV.
4260 * This symbol contains the sizeof(IV).
4263 * This symbol contains the sizeof(UV).
4266 * This symbol contains the sizeof(I8).
4269 * This symbol contains the sizeof(U8).
4272 * This symbol contains the sizeof(I16).
4275 * This symbol contains the sizeof(U16).
4278 * This symbol contains the sizeof(I32).
4281 * This symbol contains the sizeof(U32).
4284 * This symbol contains the sizeof(I64).
4287 * This symbol contains the sizeof(U64).
4290 * This symbol contains the sizeof(NV).
4293 * This symbol, if defined, indicates that a variable of type NVTYPE
4294 * can preserve all the bits of a variable of type UVTYPE.
4296 /* NV_PRESERVES_UV_BITS:
4297 * This symbol contains the number of bits a variable of type NVTYPE
4298 * can preserve of a variable of type UVTYPE.
4300 /* NV_OVERFLOWS_INTEGERS_AT:
4301 * This symbol gives the largest integer value that NVs can hold. This
4302 * value + 1.0 cannot be stored accurately. It is expressed as constant
4303 * floating point expression to reduce the chance of decimale/binary
4304 * conversion issues. If it can not be determined, the value 0 is given.
4306 /* NV_ZERO_IS_ALLBITS_ZERO:
4307 * This symbol, if defined, indicates that a variable of type NVTYPE
4308 * stores 0.0 in memory as all bits zero.
4310 #define IVTYPE long /**/
4311 #define UVTYPE unsigned long /**/
4312 #define I8TYPE char /**/
4313 #define U8TYPE unsigned char /**/
4314 #define I16TYPE short /**/
4315 #define U16TYPE unsigned short /**/
4316 #define I32TYPE long /**/
4317 #define U32TYPE unsigned long /**/
4319 #define I64TYPE __int64 /**/
4320 #define U64TYPE unsigned __int64 /**/
4322 #define NVTYPE double /**/
4323 #define IVSIZE 4 /**/
4324 #define UVSIZE 4 /**/
4325 #define I8SIZE 1 /**/
4326 #define U8SIZE 1 /**/
4327 #define I16SIZE 2 /**/
4328 #define U16SIZE 2 /**/
4329 #define I32SIZE 4 /**/
4330 #define U32SIZE 4 /**/
4332 #define I64SIZE 8 /**/
4333 #define U64SIZE 8 /**/
4335 #define NVSIZE 8 /**/
4336 #define NV_PRESERVES_UV
4337 #define NV_PRESERVES_UV_BITS 32
4338 #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
4339 #define NV_ZERO_IS_ALLBITS_ZERO
4342 # if BYTEORDER == 0x1234
4344 # define BYTEORDER 0x12345678
4346 # if BYTEORDER == 0x4321
4348 # define BYTEORDER 0x87654321
4355 * This symbol defines the format string used for printing a Perl IV
4356 * as a signed decimal integer.
4359 * This symbol defines the format string used for printing a Perl UV
4360 * as an unsigned decimal integer.
4363 * This symbol defines the format string used for printing a Perl UV
4364 * as an unsigned octal integer.
4367 * This symbol defines the format string used for printing a Perl UV
4368 * as an unsigned hexadecimal integer in lowercase abcdef.
4371 * This symbol defines the format string used for printing a Perl UV
4372 * as an unsigned hexadecimal integer in uppercase ABCDEF.
4375 * This symbol defines the format string used for printing a Perl NV
4376 * using %e-ish floating point format.
4379 * This symbol defines the format string used for printing a Perl NV
4380 * using %f-ish floating point format.
4383 * This symbol defines the format string used for printing a Perl NV
4384 * using %g-ish floating point format.
4386 #define IVdf "ld" /**/
4387 #define UVuf "lu" /**/
4388 #define UVof "lo" /**/
4389 #define UVxf "lx" /**/
4390 #define UVXf "lX" /**/
4391 #define NVef "e" /**/
4392 #define NVff "f" /**/
4393 #define NVgf "g" /**/
4396 * This symbol holds the minimum number of bits operated by select.
4397 * That is, if you do select(n, ...), how many bits at least will be
4398 * cleared in the masks if some activity is detected. Usually this
4399 * is either n or 32*ceil(n/32), especially many little-endians do
4400 * the latter. This is only useful if you have select(), naturally.
4402 #define SELECT_MIN_BITS 32 /**/
4405 * This variable contains the string to put in front of a perl
4406 * script to make sure (one hopes) that it runs with perl and not
4409 #define STARTPERL "#!perl" /**/
4411 /* HAS_STDIO_STREAM_ARRAY:
4412 * This symbol, if defined, tells that there is an array
4413 * holding the stdio streams.
4415 /* STDIO_STREAM_ARRAY:
4416 * This symbol tells the name of the array holding the stdio streams.
4417 * Usual values include _iob, __iob, and __sF.
4419 /*#define HAS_STDIO_STREAM_ARRAY /**/
4420 #ifdef HAS_STDIO_STREAM_ARRAY
4421 #define STDIO_STREAM_ARRAY
4425 * This symbol contains the maximum value for the time_t offset that
4426 * the system function gmtime () accepts, and defaults to 0
4429 * This symbol contains the minimum value for the time_t offset that
4430 * the system function gmtime () accepts, and defaults to 0
4432 #define GMTIME_MAX 2147483647 /**/
4433 #define GMTIME_MIN 0 /**/
4436 * This symbol contains the maximum value for the time_t offset that
4437 * the system function localtime () accepts, and defaults to 0
4440 * This symbol contains the minimum value for the time_t offset that
4441 * the system function localtime () accepts, and defaults to 0
4443 #define LOCALTIME_MAX 2147483647 /**/
4444 #define LOCALTIME_MIN 0 /**/
4447 * This symbol, if defined, indicates that 64-bit integers should
4448 * be used when available. If not defined, the native integers
4449 * will be employed (be they 32 or 64 bits). The minimal possible
4450 * 64-bitness is used, just enough to get 64-bit integers into Perl.
4451 * This may mean using for example "long longs", while your memory
4452 * may still be limited to 2 gigabytes.
4455 * This symbol, if defined, indicates that 64-bit integers should
4456 * be used when available. If not defined, the native integers
4457 * will be used (be they 32 or 64 bits). The maximal possible
4458 * 64-bitness is employed: LP64 or ILP64, meaning that you will
4459 * be able to use more than 2 gigabytes of memory. This mode is
4460 * even more binary incompatible than USE_64_BIT_INT. You may not
4461 * be able to run the resulting executable in a 32-bit CPU at all or
4462 * you may need at least to reboot your OS to 64-bit mode.
4464 #ifndef USE_64_BIT_INT
4465 /*#define USE_64_BIT_INT /**/
4467 #ifndef USE_64_BIT_ALL
4468 /*#define USE_64_BIT_ALL /**/
4472 * This symbol, if defined, indicates that Perl should
4473 * be built with support for DTrace.
4475 /*#define USE_DTRACE /**/
4478 * This symbol, if defined, indicates that Perl should
4479 * be built to use 'fast stdio'.
4480 * Defaults to define in Perls 5.8 and earlier, to undef later.
4482 #ifndef USE_FAST_STDIO
4483 /*#define USE_FAST_STDIO /**/
4487 * This symbol, if defined, indicates that large file support
4488 * should be used when available.
4490 #ifndef USE_LARGE_FILES
4491 /*#define USE_LARGE_FILES /**/
4495 * This symbol, if defined, indicates that long doubles should
4496 * be used when available.
4498 #ifndef USE_LONG_DOUBLE
4499 /*#define USE_LONG_DOUBLE /**/
4503 * This symbol, if defined, indicates that 64-bit interfaces and
4504 * long doubles should be used when available.
4506 #ifndef USE_MORE_BITS
4507 /*#define USE_MORE_BITS /**/
4511 * This symbol, if defined, indicates that Perl should
4512 * be built to use multiplicity.
4514 #ifndef MULTIPLICITY
4515 /*#define MULTIPLICITY /**/
4519 * This symbol, if defined, indicates that the PerlIO abstraction should
4520 * be used throughout. If not defined, stdio should be
4521 * used in a fully backward compatible manner.
4524 /*#define USE_PERLIO /**/
4528 * This symbol, if defined, indicates that Perl should
4529 * be built to use socks.
4532 /*#define USE_SOCKS /**/