2 * This file was produced by running the config_h.SH script, which
3 * gets its values from config.sh, 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 config.sh and rerun config_h.SH.
10 * $Id: Config_h.U,v 3.0.1.4 1995/09/25 09:10:49 ram Exp $
13 /* Configuration time: Thu Apr 11 06:20:49 PDT 1996
14 * Configured by: garyng
22 * This symbol contains the number of bytes required to align a
23 * double. Usual values are 2, 4 and 8.
25 #define MEM_ALIGNBYTES 8 /**/
28 * This symbol holds a string representing the architecture name.
29 * It may be used to construct an architecture-dependant pathname
30 * where library files may be held under a private library, for
33 #define ARCHNAME "MSWin32" /**/
36 * This symbol holds the path of the bin directory where the package will
37 * be installed. Program must be prepared to deal with ~name substitution.
40 * This symbol is the filename expanded version of the BIN symbol, for
41 * programs that do not want to deal with that at run-time.
43 #define BIN "c:\\perl\\bin" /**/
44 #define BIN_EXP "c:\\perl\\bin" /**/
47 * This macro catenates 2 tokens together.
50 * This macro surrounds its token with double quotes.
53 #define CAT2(a,b)a/**/b
54 #define CAT3(a,b,c)a/**/b/**/c
55 #define CAT4(a,b,c,d)a/**/b/**/c/**/d
56 #define CAT5(a,b,c,d,e)a/**/b/**/c/**/d/**/e
57 #define STRINGIFY(a)"a"
58 /* If you can get stringification with catify, tell me how! */
61 #define CAT2(a,b)a ## b
62 #define CAT3(a,b,c)a ## b ## c
63 #define CAT4(a,b,c,d)a ## b ## c ## d
64 #define CAT5(a,b,c,d,e)a ## b ## c ## d ## e
66 #define STRINGIFY(a)StGiFy(a)
67 #define SCAT2(a,b)StGiFy(a) StGiFy(b)
68 #define SCAT3(a,b,c)StGiFy(a) StGiFy(b) StGiFy(c)
69 #define SCAT4(a,b,c,d)StGiFy(a) StGiFy(b) StGiFy(c) StGiFy(d)
70 #define SCAT5(a,b,c,d,e)StGiFy(a) StGiFy(b) StGiFy(c) StGiFy(d) StGiFy(e)
73 #include "Bletch: How does this C preprocessor catenate tokens?"
77 * This symbol contains the first part of the string which will invoke
78 * the C preprocessor on the standard input and produce to standard
79 * output. Typical value of "cc -E" or "/lib/cpp", but it can also
80 * call a wrapper. See CPPRUN.
83 * This symbol contains the second part of the string which will invoke
84 * the C preprocessor on the standard input and produce to standard
85 * output. This symbol will have the value "-" if CPPSTDIN needs a minus
86 * to specify standard input, otherwise the value is "".
88 #define CPPSTDIN "cl -E"
92 * This symbol, if defined, indicates that the alarm routine is
95 /*#define HAS_ALARM /**/
98 * This symbol indicates the C compiler can check for function attributes,
99 * such as printf formats. This is normally only supported by GNU cc.
101 /*#define HASATTRIBUTE /**/
103 #define __attribute__(_arg_)
107 * This symbol is defined if the bcmp() routine is available to
108 * compare blocks of memory.
110 /*#define HAS_BCMP /**/
113 * This symbol is defined if the bcopy() routine is available to
114 * copy blocks of memory.
116 /*#define HAS_BCOPY /**/
119 * This symbol is defined if the bzero() routine is available to
120 * set a memory block to 0.
122 /*#define HAS_BZERO /**/
125 * This symbol is defined if the C compiler can cast negative
126 * or large floating point numbers to 32-bit ints.
131 * This symbol is defined if the C compiler can cast negative
132 * numbers to unsigned longs, ints and shorts.
135 * This symbol contains flags that say what difficulties the compiler
136 * has casting odd floating values to unsigned long:
138 * 1 = couldn't cast < 0
139 * 2 = couldn't cast >= 0x80000000
140 * 4 = couldn't cast in argument expression list
142 #define CASTNEGFLOAT /**/
143 #define CASTFLAGS 0 /**/
146 * This symbol, if defined, indicates that the chown routine is
149 /*#define HAS_CHOWN /**/
152 * This symbol, if defined, indicates that the chroot routine is
155 /*#define HAS_CHROOT /**/
158 * This symbol, if defined, indicates that the chsize routine is available
159 * to truncate files. You might need a -lx to get this routine.
161 #define HAS_CHSIZE /**/
164 * This symbol, if defined, indicates that the closedir() routine
165 * does not return a value.
167 /*#define VOID_CLOSEDIR /**/
170 * This symbol, if defined, indicates that this C compiler knows about
171 * the const type. There is no need to actually test for that symbol
172 * within your programs. The mere use of the "const" keyword will
173 * trigger the necessary tests.
175 #define HASCONST /**/
181 * This symbol, if defined, indicates that the crypt routine is available
182 * to encrypt passwords and the like.
184 /*#define HAS_CRYPT /**/
187 * This symbol, if defined, indicates that the cuserid routine is
188 * available to get character login names.
190 /*#define HAS_CUSERID /**/
193 * This symbol, if defined, indicates that this system's <float.h>
194 * or <limits.h> defines the symbol DBL_DIG, which is the number
195 * of significant digits in a double precision number. If this
196 * symbol is not defined, a guess of 15 is usually pretty good.
198 #define HAS_DBL_DIG /**/
201 * This symbol, if defined, indicates that the difftime routine is
204 #define HAS_DIFFTIME /**/
207 * This symbol, if defined, indicates that the dlerror routine is
208 * available to return a string describing the last error that
209 * occurred from a call to dlopen(), dlclose() or dlsym().
211 #define HAS_DLERROR /**/
214 * This symbol, if defined, indicates that the dup2 routine is
215 * available to duplicate file descriptors.
217 #define HAS_DUP2 /**/
220 * This symbol, if defined, indicates that the fchmod routine is available
221 * to change mode of opened files. If unavailable, use chmod().
223 /*#define HAS_FCHMOD /**/
226 * This symbol, if defined, indicates that the fchown routine is available
227 * to change ownership of opened files. If unavailable, use chown().
229 /*#define HAS_FCHOWN /**/
232 * This symbol, if defined, indicates to the C program that
233 * the fcntl() function exists.
235 /*#define HAS_FCNTL /**/
238 * This symbol, if defined, indicates that the fgetpos routine is
239 * available to get the file position indicator, similar to ftell().
241 #define HAS_FGETPOS /**/
244 * This symbol, if defined, indicates that the system supports filenames
245 * longer than 14 characters.
247 #define FLEXFILENAMES /**/
250 * This symbol, if defined, indicates that the flock routine is
251 * available to do file locking.
253 #define HAS_FLOCK /**/
256 * This symbol, if defined, indicates that the fork routine is
259 /*#define HAS_FORK /**/
262 * This symbol, if defined, indicates that the fsetpos routine is
263 * available to set the file position indicator, similar to fseek().
265 #define HAS_FSETPOS /**/
268 * This symbol, if defined, indicates that the gettimeofday() system
269 * call is available for a sub-second accuracy clock. Usually, the file
270 * <sys/resource.h> needs to be included (see I_SYS_RESOURCE).
271 * The type "Timeval" should be used to refer to "struct timeval".
273 /*#define HAS_GETTIMEOFDAY /**/
274 #ifdef HAS_GETTIMEOFDAY
275 #define Timeval struct timeval /* Structure used by gettimeofday() */
279 * This symbol, if defined, indicates that the getgroups() routine is
280 * available to get the list of process groups. If unavailable, multiple
281 * groups are probably not supported.
284 * This symbol, if defined, indicates that the setgroups() routine is
285 * available to set the list of process groups. If unavailable, multiple
286 * groups are probably not supported.
288 /*#define HAS_GETGROUPS /**/
289 /*#define HAS_SETGROUPS /**/
292 * This symbol, if defined, indicates that the gethostent routine is
293 * available to lookup host names in some data base or other.
295 /*#define HAS_GETHOSTENT /**/
298 * This symbol, if defined, indicates that the C program may use the
299 * uname() routine to derive the host name. See also HAS_GETHOSTNAME
302 /*#define HAS_UNAME /**/
305 * This symbol, if defined, indicates that the getlogin routine is
306 * available to get the login name.
308 /*#define HAS_GETLOGIN /**/
311 * This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
312 * routine is available to get the current process group.
314 /*#define HAS_GETPGRP2 /**/
317 * This symbol, if defined, indicates that the getppid routine is
318 * available to get the parent process ID.
320 /*#define HAS_GETPPID /**/
323 * This symbol, if defined, indicates that the getpriority routine is
324 * available to get a process's priority.
326 /*#define HAS_GETPRIORITY /**/
329 * This symbol, if defined, indicates that the htonl() routine (and
330 * friends htons() ntohl() ntohs()) are available to do network
331 * order byte swapping.
334 * This symbol, if defined, indicates that the htons() routine (and
335 * friends htonl() ntohl() ntohs()) are available to do network
336 * order byte swapping.
339 * This symbol, if defined, indicates that the ntohl() routine (and
340 * friends htonl() htons() ntohs()) are available to do network
341 * order byte swapping.
344 * This symbol, if defined, indicates that the ntohs() routine (and
345 * friends htonl() htons() ntohl()) are available to do network
346 * order byte swapping.
348 #define HAS_HTONL /**/
349 #define HAS_HTONS /**/
350 #define HAS_NTOHL /**/
351 #define HAS_NTOHS /**/
354 * This manifest constant lets the C program know that isascii
357 #define HAS_ISASCII /**/
360 * This symbol, if defined, indicates that the killpg routine is available
361 * to kill process groups. If unavailable, you probably should use kill
362 * with a negative process number.
364 /*#define HAS_KILLPG /**/
367 * This symbol, if defined, indicates that the link routine is
368 * available to create hard links.
370 /*#define HAS_LINK /**/
373 * This symbol, if defined, indicates that the localeconv routine is
374 * available for numeric and monetary formatting conventions.
376 #define HAS_LOCALECONV /**/
379 * This symbol, if defined, indicates that the lockf routine is
380 * available to do file locking.
382 /*#define HAS_LOCKF /**/
385 * This symbol, if defined, indicates that the lstat routine is
386 * available to do file stats on symbolic links.
388 /*#define HAS_LSTAT /**/
391 * This symbol, if defined, indicates that the mblen routine is available
392 * to find the number of bytes in a multibye character.
394 #define HAS_MBLEN /**/
397 * This symbol, if defined, indicates that the mbstowcs routine is
398 * available to covert a multibyte string into a wide character string.
400 #define HAS_MBSTOWCS /**/
403 * This symbol, if defined, indicates that the mbtowc routine is available
404 * to covert a multibyte to a wide character.
406 #define HAS_MBTOWC /**/
409 * This symbol, if defined, indicates that the memcmp routine is available
410 * to compare blocks of memory.
412 #define HAS_MEMCMP /**/
415 * This symbol, if defined, indicates that the memcpy routine is available
416 * to copy blocks of memory.
418 #define HAS_MEMCPY /**/
421 * This symbol, if defined, indicates that the memmove routine is available
422 * to copy potentially overlapping blocks of memory. This should be used
423 * only when HAS_SAFE_BCOPY is not defined. If neither is there, roll your
426 #define HAS_MEMMOVE /**/
429 * This symbol, if defined, indicates that the memset routine is available
430 * to set blocks of memory.
432 #define HAS_MEMSET /**/
435 * This symbol, if defined, indicates that the mkdir routine is available
436 * to create directories. Otherwise you should fork off a new process to
439 #define HAS_MKDIR /**/
442 * This symbol, if defined, indicates that the mkfifo routine is
443 * available to create FIFOs. Otherwise, mknod should be able to
444 * do it for you. However, if mkfifo is there, mknod might require
445 * super-user privileges which mkfifo will not.
447 /*#define HAS_MKFIFO /**/
450 * This symbol, if defined, indicates that the mktime routine is
453 #define HAS_MKTIME /**/
456 * This symbol, if defined, indicates that the entire msg*(2) library is
457 * supported (IPC mechanism based on message queues).
459 /*#define HAS_MSG /**/
462 * This symbol, if defined, indicates that the nice routine is
465 /*#define HAS_NICE /**/
468 * This manifest constant lets the C program know that the three
469 * argument form of open(2) is available.
471 /*#define HAS_OPEN3 /**/
474 * This symbol, if defined, indicates that pathconf() is available
475 * to determine file-system related limits and options associated
476 * with a given filename.
479 * This symbol, if defined, indicates that pathconf() is available
480 * to determine file-system related limits and options associated
481 * with a given open file descriptor.
483 /*#define HAS_PATHCONF /**/
484 /*#define HAS_FPATHCONF /**/
487 * This symbol, if defined, indicates that the pause routine is
488 * available to suspend a process until a signal is received.
490 #define HAS_PAUSE /**/
493 * This symbol, if defined, indicates that the pipe routine is
494 * available to create an inter-process channel.
496 #define HAS_PIPE /**/
499 * This symbol, if defined, indicates that the poll routine is
500 * available to poll active file descriptors.
502 /*#define HAS_POLL /**/
505 * This symbol, if defined, indicates that the readdir routine is
506 * available to read directory entries. You may have to include
507 * <dirent.h>. See I_DIRENT.
509 #define HAS_READDIR /**/
512 * This symbol, if defined, indicates that the seekdir routine is
513 * available. You may have to include <dirent.h>. See I_DIRENT.
515 #define HAS_SEEKDIR /**/
518 * This symbol, if defined, indicates that the telldir routine is
519 * available. You may have to include <dirent.h>. See I_DIRENT.
521 #define HAS_TELLDIR /**/
524 * This symbol, if defined, indicates that the rewinddir routine is
525 * available. You may have to include <dirent.h>. See I_DIRENT.
527 #define HAS_REWINDDIR /**/
530 * This symbol, if defined, indicates that the readlink routine is
531 * available to read the value of a symbolic link.
533 /*#define HAS_READLINK /**/
536 * This symbol, if defined, indicates that the rename routine is available
537 * to rename files. Otherwise you should do the unlink(), link(), unlink()
540 #define HAS_RENAME /**/
543 * This symbol, if defined, indicates that the rmdir routine is
544 * available to remove directories. Otherwise you should fork off a
545 * new process to exec /bin/rmdir.
547 #define HAS_RMDIR /**/
550 * This symbol, if defined, indicates that the bcopy routine is available
551 * to copy potentially overlapping memory blocks. Otherwise you should
552 * probably use memmove() or memcpy(). If neither is defined, roll your
555 /*#define HAS_SAFE_BCOPY /**/
558 * This symbol, if defined, indicates that the memcpy routine is available
559 * to copy potentially overlapping memory blocks. Otherwise you should
560 * probably use memmove() or memcpy(). If neither is defined, roll your
563 /*#define HAS_SAFE_MEMCPY /**/
566 * This symbol, if defined, indicates that the memcmp routine is available
567 * and can be used to compare relative magnitudes of chars with their high
568 * bits set. If it is not defined, roll your own version.
570 #define HAS_SANE_MEMCMP /**/
573 * This symbol, if defined, indicates that the select routine is
574 * available to select active file descriptors. If the timeout field
575 * is used, <sys/time.h> may need to be included.
577 #define HAS_SELECT /**/
580 * This symbol, if defined, indicates that the entire sem*(2) library is
583 /*#define HAS_SEM /**/
586 * This symbol, if defined, indicates that the setegid routine is available
587 * to change the effective gid of the current program.
589 /*#define HAS_SETEGID /**/
592 * This symbol, if defined, indicates that the seteuid routine is available
593 * to change the effective uid of the current program.
595 /*#define HAS_SETEUID /**/
598 * This symbol, if defined, indicates that the setlinebuf routine is
599 * available to change stderr or stdout from block-buffered or unbuffered
600 * to a line-buffered mode.
602 /*#define HAS_SETLINEBUF /**/
605 * This symbol, if defined, indicates that the setlocale routine is
606 * available to handle locale-specific ctype implementations.
608 #define HAS_SETLOCALE /**/
611 * This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
612 * routine is available to set the current process group.
614 /*#define HAS_SETPGRP2 /**/
617 * This symbol, if defined, indicates that the setpriority routine is
618 * available to set a process's priority.
620 /*#define HAS_SETPRIORITY /**/
623 * This symbol, if defined, indicates that the setregid routine is
624 * available to change the real and effective gid of the current
628 * This symbol, if defined, indicates that the setresgid routine is
629 * available to change the real, effective and saved gid of the current
632 /*#define HAS_SETREGID /**/
633 /*#define HAS_SETRESGID /**/
636 * This symbol, if defined, indicates that the setreuid routine is
637 * available to change the real and effective uid of the current
641 * This symbol, if defined, indicates that the setresuid routine is
642 * available to change the real, effective and saved uid of the current
645 /*#define HAS_SETREUID /**/
646 /*#define HAS_SETRESUID /**/
649 * This symbol, if defined, indicates that the setrgid routine is available
650 * to change the real gid of the current program.
652 /*#define HAS_SETRGID /**/
655 * This symbol, if defined, indicates that the setruid routine is available
656 * to change the real uid of the current program.
658 /*#define HAS_SETRUID /**/
661 * This symbol, if defined, indicates that the setsid routine is
662 * available to set the process group ID.
664 /*#define HAS_SETSID /**/
667 * This symbol, if defined, indicates that the entire shm*(2) library is
670 /*#define HAS_SHM /**/
673 * This symbol holds the return type of the shmat() system call.
674 * Usually set to 'void *' or 'char *'.
676 /* HAS_SHMAT_PROTOTYPE:
677 * This symbol, if defined, indicates that the sys/shm.h includes
678 * a prototype for shmat(). Otherwise, it is up to the program to
679 * guess one. Shmat_t shmat _((int, Shmat_t, int)) is a good guess,
680 * but not always right so it should be emitted by the program only
681 * when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
683 #define Shmat_t void * /**/
684 /*#define HAS_SHMAT_PROTOTYPE /**/
687 * This symbol, if defined, indicates that Vr4's sigaction() routine
690 /*#define HAS_SIGACTION /**/
693 * This symbol, if defined, indicates that the BSD socket interface is
697 * This symbol, if defined, indicates that the BSD socketpair() call is
700 #define HAS_SOCKET /**/
701 /*#define HAS_SOCKETPAIR /**/
704 * This symbol is defined if this system has a stat structure declaring
705 * st_blksize and st_blocks.
707 /*#define USE_STAT_BLOCKS /**/
710 * This symbol is defined if the _ptr and _cnt fields (or similar)
711 * of the stdio FILE structure can be used to access the stdio buffer
712 * for a file handle. If this is defined, then the FILE_ptr(fp)
713 * and FILE_cnt(fp) macros will also be defined and should be used
714 * to access these fields.
717 * This macro is used to access the _ptr field (or equivalent) of the
718 * FILE structure pointed to by its argument. This macro will always be
719 * defined if USE_STDIO_PTR is defined.
722 * This symbol is defined if the FILE_ptr macro can be used as an
726 * This macro is used to access the _cnt field (or equivalent) of the
727 * FILE structure pointed to by its argument. This macro will always be
728 * defined if USE_STDIO_PTR is defined.
731 * This symbol is defined if the FILE_cnt macro can be used as an
734 #define USE_STDIO_PTR /**/
736 #define FILE_ptr(fp) ((fp)->_ptr)
737 #define STDIO_PTR_LVALUE /**/
738 #define FILE_cnt(fp) ((fp)->_cnt)
739 #define STDIO_CNT_LVALUE /**/
743 * This symbol is defined if the _base field (or similar) of the
744 * stdio FILE structure can be used to access the stdio buffer for
745 * a file handle. If this is defined, then the FILE_base(fp) macro
746 * will also be defined and should be used to access this field.
747 * Also, the FILE_bufsiz(fp) macro will be defined and should be used
748 * to determine the number of bytes in the buffer. USE_STDIO_BASE
749 * will never be defined unless USE_STDIO_PTR is.
752 * This macro is used to access the _base field (or equivalent) of the
753 * FILE structure pointed to by its argument. This macro will always be
754 * defined if USE_STDIO_BASE is defined.
757 * This macro is used to determine the number of bytes in the I/O
758 * buffer pointed to by _base field (or equivalent) of the FILE
759 * structure pointed to its argument. This macro will always be defined
760 * if USE_STDIO_BASE is defined.
762 #define USE_STDIO_BASE /**/
763 #ifdef USE_STDIO_BASE
764 #define FILE_base(fp) ((fp)->_base)
765 #define FILE_bufsiz(fp) ((fp)->_cnt + (fp)->_ptr - (fp)->_base)
769 * This symbol is defined to indicate that the strchr()/strrchr()
770 * functions are available for string searching. If not, try the
771 * index()/rindex() pair.
774 * This symbol is defined to indicate that the index()/rindex()
775 * functions are available for string searching.
777 #define HAS_STRCHR /**/
778 /*#define HAS_INDEX /**/
781 * This symbol, if defined, indicates that the strcoll routine is
782 * available to compare strings using collating information.
784 #define HAS_STRCOLL /**/
787 * This symbol, if defined, indicates that this C compiler knows how
788 * to copy structures. If undefined, you'll need to use a block copy
789 * routine of some sort instead.
791 #define USE_STRUCT_COPY /**/
794 * This symbol, if defined, indicates that the strerror routine is
795 * available to translate error numbers to strings. See the writeup
796 * of Strerror() in this file before you try to define your own.
799 * This symbol, if defined, indicates that the sys_errlist array is
800 * available to translate error numbers to strings. The extern int
801 * sys_nerr gives the size of that table.
804 * This preprocessor symbol is defined as a macro if strerror() is
805 * not available to translate error numbers to strings but sys_errlist[]
808 #define HAS_STRERROR /**/
809 #define HAS_SYS_ERRLIST /**/
810 #define Strerror(e) strerror(e)
813 * This symbol, if defined, indicates that the strtod routine is
814 * available to provide better numeric string conversion than atof().
816 #define HAS_STRTOD /**/
819 * This symbol, if defined, indicates that the strtol routine is available
820 * to provide better numeric string conversion than atoi() and friends.
822 #define HAS_STRTOL /**/
825 * This symbol, if defined, indicates that the strtoul routine is
826 * available to provide conversion of strings to unsigned long.
828 #define HAS_STRTOUL /**/
831 * This symbol, if defined, indicates that the strxfrm() routine is
832 * available to transform strings.
834 #define HAS_STRXFRM /**/
837 * This symbol, if defined, indicates that the symlink routine is available
838 * to create symbolic links.
840 /*#define HAS_SYMLINK /**/
843 * This symbol, if defined, indicates that the syscall routine is
844 * available to call arbitrary system calls. If undefined, that's tough.
846 /*#define HAS_SYSCALL /**/
849 * This symbol, if defined, indicates that sysconf() is available
850 * to determine system related limits and options.
852 /*#define HAS_SYSCONF /**/
855 * This symbol, if defined, indicates that the system routine is
856 * available to issue a shell command.
858 #define HAS_SYSTEM /**/
861 * This symbol, if defined, indicates that the tcgetpgrp routine is
862 * available to get foreground process group ID.
864 /*#define HAS_TCGETPGRP /**/
867 * This symbol, if defined, indicates that the tcsetpgrp routine is
868 * available to set foreground process group ID.
870 /*#define HAS_TCSETPGRP /**/
873 * This symbol holds the type returned by time(). It can be long,
874 * or time_t on BSD sites (in which case <sys/types.h> should be
877 #define Time_t time_t /* Time type */
880 * This symbol, if defined, indicates that the times() routine exists.
881 * Note that this became obsolete on some systems (SUNOS), which now
882 * use getrusage(). It may be necessary to include <sys/times.h>.
884 #define HAS_TIMES /**/
887 * This symbol, if defined, indicates that the truncate routine is
888 * available to truncate files.
890 /*#define HAS_TRUNCATE /**/
893 * This symbol, if defined, indicates that the tzname[] array is
894 * available to access timezone names.
896 #define HAS_TZNAME /**/
899 * This symbol, if defined, indicates that the umask routine is
900 * available to set and get the value of the file creation mask.
902 #define HAS_UMASK /**/
905 * This symbol, if defined, indicates that vfork() exists.
907 /*#define HAS_VFORK /**/
910 * This symbol's value is either "void" or "int", corresponding to the
911 * appropriate return type of a signal handler. Thus, you can declare
912 * a signal handler using "Signal_t (*handler)()", and define the
913 * handler using "Signal_t handler(sig)".
915 #define Signal_t void /* Signal handler's return type */
918 * This symbol, if defined, indicates that this C compiler knows about
919 * the volatile declaration.
921 #define HASVOLATILE /**/
927 * This symbol, if defined, indicates that the vprintf routine is available
928 * to printf with a pointer to an argument list. If unavailable, you
929 * may need to write your own, probably in terms of _doprnt().
931 /* USE_CHAR_VSPRINTF:
932 * This symbol is defined if this system has vsprintf() returning type
933 * (char*). The trend seems to be to declare it as "int vsprintf()". It
934 * is up to the package author to declare vsprintf correctly based on the
937 #define HAS_VPRINTF /**/
938 /*#define USE_CHAR_VSPRINTF /**/
941 * This symbol, if defined, indicates that wait4() exists.
943 /*#define HAS_WAIT4 /**/
946 * This symbol, if defined, indicates that the waitpid routine is
947 * available to wait for child process.
949 /*#define HAS_WAITPID /**/
952 * This symbol, if defined, indicates that the wcstombs routine is
953 * available to convert wide character strings to multibyte strings.
955 #define HAS_WCSTOMBS /**/
958 * This symbol, if defined, indicates that the wctomb routine is available
959 * to covert a wide character to a multibyte.
961 #define HAS_WCTOMB /**/
964 * This symbol holds the type used to declare file positions in libc.
965 * It can be fpos_t, long, uint, etc... It may be necessary to include
966 * <sys/types.h> to get any typedef'ed information.
968 #define Fpos_t fpos_t /* File position type */
971 * This symbol holds the return type of getgid() and the type of
972 * argument to setrgid() and related functions. Typically,
973 * it is the type of group ids in the kernel. It can be int, ushort,
974 * uid_t, etc... It may be necessary to include <sys/types.h> to get
975 * any typedef'ed information.
977 #define Gid_t gid_t /* Type for getgid(), etc... */
980 * This symbol holds the type used for the second argument to
981 * [gs]etgroups(). Usually, this is the same of gidtype, but
982 * sometimes it isn't. It can be int, ushort, uid_t, etc...
983 * It may be necessary to include <sys/types.h> to get any
984 * typedef'ed information. This is only required if you have
985 * getgroups() or setgroups().
987 #if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
988 #define Groups_t gid_t /* Type for 2nd arg to [gs]etgroups() */
992 * This symbol contains the type of the prefix structure element
993 * in the <db.h> header file. In older versions of DB, it was
994 * int, while in newer ones it is u_int32_t.
997 * This symbol contains the type of the prefix structure element
998 * in the <db.h> header file. In older versions of DB, it was
999 * int, while in newer ones it is size_t.
1001 #define DB_Hash_t int /**/
1002 #define DB_Prefix_t int /**/
1005 * This symbol, if defined, indicates to the C program that it should
1006 * include <dirent.h>. Using this symbol also triggers the definition
1007 * of the Direntry_t define which ends up being 'struct dirent' or
1008 * 'struct direct' depending on the availability of <dirent.h>.
1011 * This symbol, if defined, indicates to the C program that the length
1012 * of directory entry names is provided by a d_namlen field. Otherwise
1013 * you need to do strlen() on the d_name field.
1016 * This symbol is set to 'struct direct' or 'struct dirent' depending on
1017 * whether dirent is available or not. You should use this pseudo type to
1018 * portably declare your directory entries.
1020 #define I_DIRENT /**/
1021 #define DIRNAMLEN /**/
1022 #define Direntry_t struct direct
1025 * This symbol, if defined, indicates that <dlfcn.h> exists and should
1028 #define I_DLFCN /**/
1031 * This manifest constant tells the C program to include <fcntl.h>.
1033 #define I_FCNTL /**/
1036 * This symbol, if defined, indicates to the C program that it should
1037 * include <float.h> to get definition of symbols like DBL_MAX or
1038 * DBL_MIN, i.e. machine dependent floating point values.
1040 #define I_FLOAT /**/
1043 * This symbol, if defined, indicates to the C program that it should
1049 * This symbol, if defined, indicates to the C program that it should
1050 * include <limits.h> to get definition of symbols like WORD_BIT or
1051 * LONG_MAX, i.e. machine dependant limitations.
1053 #define I_LIMITS /**/
1056 * This symbol, if defined, indicates to the C program that it should
1062 * This symbol, if defined, indicates to the C program that it should
1063 * include <memory.h>.
1065 /*#define I_MEMORY /**/
1068 * This symbol, if defined, indicates that <ndbm.h> exists and should
1071 /*#define I_NDBM /**/
1074 * This symbol, if defined, indicates that <net/errno.h> exists and
1075 * should be included.
1077 /*#define I_NET_ERRNO /**/
1080 * This symbol, if defined, indicates to the C program that it should
1081 * include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
1083 /*#define I_NETINET_IN /**/
1086 * This symbol, if defined, indicates to the C program that it should
1090 * This symbol, if defined, indicates to the C program that struct passwd
1091 * contains pw_quota.
1094 * This symbol, if defined, indicates to the C program that struct passwd
1098 * This symbol, if defined, indicates to the C program that struct passwd
1099 * contains pw_change.
1102 * This symbol, if defined, indicates to the C program that struct passwd
1103 * contains pw_class.
1106 * This symbol, if defined, indicates to the C program that struct passwd
1107 * contains pw_expire.
1110 * This symbol, if defined, indicates to the C program that struct passwd
1111 * contains pw_comment.
1113 /*#define I_PWD /**/
1114 /*#define PWQUOTA /**/
1115 /*#define PWAGE /**/
1116 /*#define PWCHANGE /**/
1117 /*#define PWCLASS /**/
1118 /*#define PWEXPIRE /**/
1119 /*#define PWCOMMENT /**/
1122 * This symbol, if defined, indicates that <stddef.h> exists and should
1125 #define I_STDDEF /**/
1128 * This symbol, if defined, indicates that <stdlib.h> exists and should
1131 #define I_STDLIB /**/
1134 * This symbol, if defined, indicates to the C program that it should
1135 * include <string.h> (USG systems) instead of <strings.h> (BSD systems).
1137 #define I_STRING /**/
1140 * This symbol, if defined, indicates to the C program that it should
1141 * include <sys/dir.h>.
1143 /*#define I_SYS_DIR /**/
1146 * This symbol, if defined, indicates to the C program that it should
1147 * include <sys/file.h> to get definition of R_OK and friends.
1149 /*#define I_SYS_FILE /**/
1152 * This symbol, if defined, indicates that <sys/ioctl.h> exists and should
1153 * be included. Otherwise, include <sgtty.h> or <termio.h>.
1155 /*#define I_SYS_IOCTL /**/
1158 * This symbol, if defined, indicates to the C program that it should
1159 * include <sys/ndir.h>.
1161 /*#define I_SYS_NDIR /**/
1164 * This symbol, if defined, indicates to the C program that it should
1165 * include <sys/param.h>.
1167 /*#define I_SYS_PARAM /**/
1170 * This symbol, if defined, indicates to the C program that it should
1171 * include <sys/resource.h>.
1173 /*#define I_SYS_RESOURCE /**/
1176 * This symbol, if defined, indicates to the C program that it should
1177 * include <sys/select.h> in order to get definition of struct timeval.
1179 /*#define I_SYS_SELECT /**/
1182 * This symbol, if defined, indicates to the C program that it should
1183 * include <sys/times.h>.
1185 /*#define I_SYS_TIMES /**/
1188 * This symbol, if defined, indicates to the C program that it should
1189 * include <sys/types.h>.
1191 #define I_SYS_TYPES /**/
1194 * This symbol, if defined, indicates to the C program that it should
1195 * include <sys/un.h> to get UNIX domain socket definitions.
1197 /*#define I_SYS_UN /**/
1200 * This symbol, if defined, indicates to the C program that it should
1201 * include <sys/wait.h>.
1203 /*#define I_SYS_WAIT /**/
1206 * This symbol, if defined, indicates that the program should include
1207 * <termio.h> rather than <sgtty.h>. There are also differences in
1208 * the ioctl() calls that depend on the value of this symbol.
1211 * This symbol, if defined, indicates that the program should include
1212 * the POSIX termios.h rather than sgtty.h or termio.h.
1213 * There are also differences in the ioctl() calls that depend on the
1214 * value of this symbol.
1217 * This symbol, if defined, indicates that the program should include
1218 * <sgtty.h> rather than <termio.h>. There are also differences in
1219 * the ioctl() calls that depend on the value of this symbol.
1221 /*#define I_TERMIO /**/
1222 /*#define I_TERMIOS /**/
1223 /*#define I_SGTTY /**/
1226 * This symbol, if defined, indicates to the C program that it should
1230 * This symbol, if defined, indicates to the C program that it should
1231 * include <sys/time.h>.
1233 /* I_SYS_TIME_KERNEL:
1234 * This symbol, if defined, indicates to the C program that it should
1235 * include <sys/time.h> with KERNEL defined.
1238 /*#define I_SYS_TIME /**/
1239 /*#define I_SYS_TIME_KERNEL /**/
1242 * This symbol, if defined, indicates to the C program that it should
1243 * include <unistd.h>.
1245 /*#define I_UNISTD /**/
1248 * This symbol, if defined, indicates to the C program that it should
1249 * include <utime.h>.
1251 #define I_UTIME /**/
1254 * This symbol, if defined, indicates that <stdarg.h> exists and should
1258 * This symbol, if defined, indicates to the C program that it should
1259 * include <varargs.h>.
1261 #define I_STDARG /**/
1262 /*#define I_VARARGS /**/
1265 * This symbol, if defined, indicates to the C program that it should
1268 /*#define I_VFORK /**/
1271 * This symbol contains the value of sizeof(int) so that the C
1272 * preprocessor can make decisions based on it.
1275 * This symbol contains the value of sizeof(long) so that the C
1276 * preprocessor can make decisions based on it.
1279 * This symbol contains the value of sizeof(short) so that the C
1280 * preprocessor can make decisions based on it.
1282 #define INTSIZE 4 /**/
1283 #define LONGSIZE 4 /**/
1284 #define SHORTSIZE 2 /**/
1287 * This symbol holds the type used to declare offsets in the kernel.
1288 * It can be int, long, off_t, etc... It may be necessary to include
1289 * <sys/types.h> to get any typedef'ed information.
1291 #define Off_t off_t /* <offset> type */
1294 * This symbol holds the type used to declare file modes
1295 * for systems calls. It is usually mode_t, but may be
1296 * int or unsigned short. It may be necessary to include <sys/types.h>
1297 * to get any typedef'ed information.
1299 #define Mode_t mode_t /* file mode parameter for system calls */
1302 * This symbol is to be used during open() or fcntl(F_SETFL) to turn on
1303 * non-blocking I/O for the file descriptor. Note that there is no way
1304 * back, i.e. you cannot turn it blocking again this way. If you wish to
1305 * alternatively switch between blocking and non-blocking, use the
1306 * ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
1309 * This symbol holds the errno error code set by read() when no data was
1310 * present on the non-blocking file descriptor.
1313 * This symbol holds the return code from read() when no data is present
1314 * on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
1315 * not defined, then you can't distinguish between no data and EOF by
1316 * issuing a read(). You'll have to find another way to tell for sure!
1319 * This symbol, if defined, indicates to the C program that a read() on
1320 * a non-blocking file descriptor will return 0 on EOF, and not the value
1321 * held in RD_NODATA (-1 usually, in that case!).
1323 #define VAL_O_NONBLOCK O_NONBLOCK
1324 #define VAL_EAGAIN EAGAIN
1325 #define RD_NODATA -1
1326 #define EOF_NONBLOCK
1329 * If defined, this macro indicates that the C compiler can handle
1330 * function prototypes.
1333 * This macro is used to declare function parameters for folks who want
1334 * to make declarations with prototypes using a different style than
1335 * the above macros. Use double parentheses. For example:
1337 * int main _((int argc, char *argv[]));
1339 #define CAN_PROTOTYPE /**/
1340 #ifdef CAN_PROTOTYPE
1341 #define _(args) args
1347 * This symbol contains the number of bits of random number the rand()
1348 * function produces. Usual values are 15, 16, and 31.
1350 #define RANDBITS 15 /**/
1353 * This symbol holds the type used for the 2nd, 3rd, and 4th
1354 * arguments to select. Usually, this is 'fd_set *', if HAS_FD_SET
1355 * is defined, and 'int *' otherwise. This is only useful if you
1356 * have select(), of course.
1358 #define Select_fd_set_t int * /**/
1361 * This symbol holds the type used to declare length parameters
1362 * for string functions. It is usually size_t, but may be
1363 * unsigned long, int, etc. It may be necessary to include
1364 * <sys/types.h> to get any typedef'ed information.
1366 #define Size_t size_t /* length paramater for string functions */
1369 * This symbol holds the type used by functions that return
1370 * a count of bytes or an error condition. It must be a signed type.
1371 * It is usually ssize_t, but may be long or int, etc.
1372 * It may be necessary to include <sys/types.h> or <unistd.h>
1373 * to get any typedef'ed information.
1374 * We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
1376 #define SSize_t int /* signed count of bytes */
1379 * This symbol is defined to be the type of char used in stdio.h.
1380 * It has the values "unsigned char" or "char".
1382 #define STDCHAR unsigned char /**/
1385 * This symbol holds the type used to declare user ids in the kernel.
1386 * It can be int, ushort, uid_t, etc... It may be necessary to include
1387 * <sys/types.h> to get any typedef'ed information.
1389 #define Uid_t uid_t /* UID type */
1392 * This symbol holds the complete pathname to the sed program.
1394 #define LOC_SED "" /**/
1397 * This symbol contains the name of the operating system, as determined
1398 * by Configure. You shouldn't rely on it too much; the specific
1399 * feature tests from Configure are generally more reliable.
1401 #define OSNAME "MSWin32" /**/
1404 * This variable, if defined, holds the name of the directory in
1405 * which the user wants to put architecture-dependent public
1406 * library files for perl5. It is most often a local directory
1407 * such as /usr/local/lib. Programs using this variable must be
1408 * prepared to deal with filename expansion. If ARCHLIB is the
1409 * same as PRIVLIB, it is not defined, since presumably the
1410 * program already searches PRIVLIB.
1413 * This symbol contains the ~name expanded version of ARCHLIB, to be used
1414 * in programs that are not prepared to deal with ~ expansion at run-time.
1416 #define ARCHLIB "c:\\perl\\lib" /**/
1417 #define ARCHLIB_EXP (win32PerlLibPath()) /**/
1420 * This symbol, if defined, indicates that Perl 5.004 should be
1421 * binary-compatible with Perl 5.003.
1423 /*#define BINCOMPAT3 /**/
1426 * This symbol holds the hexadecimal constant defined in byteorder,
1427 * i.e. 0x1234 or 0x4321, etc...
1428 * On NeXT 4 (and greater), you can build "Fat" Multiple Architecture
1429 * Binaries (MAB) on either big endian or little endian machines.
1430 * The endian-ness is available at compile-time. This only matters
1431 * for perl, where the config.h can be generated and installed on
1432 * one system, and used by a different architecture to build an
1433 * extension. Older versions of NeXT that might not have
1434 * defined either *_ENDIAN__ were all on Motorola 680x0 series,
1435 * so the default case (for NeXT) is big endian to catch them.
1436 * This might matter for NeXT 3.0.
1439 #define BYTEORDER 0x1234 /* large digits for MSB */
1441 #ifdef __LITTLE_ENDIAN__
1442 #define BYTEORDER 0x1234
1443 #else /* __BIG_ENDIAN__ */
1444 #define BYTEORDER 0x4321
1445 #endif /* ENDIAN CHECK */
1449 * This symbol, if defined, indicates that the C-shell exists.
1450 * If defined, contains the full pathname of csh.
1452 /*#define CSH "" /**/
1454 /* DLSYM_NEEDS_UNDERSCORE:
1455 * This symbol, if defined, indicates that we need to prepend an
1456 * underscore to the symbol name before calling dlsym(). This only
1457 * makes sense if you *have* dlsym, which we will presume is the
1458 * case if you're using dl_dlopen.xs.
1460 /*#define DLSYM_NEEDS_UNDERSCORE /**/
1462 /* SETUID_SCRIPTS_ARE_SECURE_NOW:
1463 * This symbol, if defined, indicates that the bug that prevents
1464 * setuid scripts from being secure is not present in this kernel.
1467 * This symbol, if defined, indicates that the C program should
1468 * check the script that it is executing for setuid/setgid bits, and
1469 * attempt to emulate setuid/setgid on systems that have disabled
1470 * setuid #! scripts because the kernel can't do it securely.
1471 * It is up to the package designer to make sure that this emulation
1472 * is done securely. Among other things, it should do an fstat on
1473 * the script it just opened to make sure it really is a setuid/setgid
1474 * script, it should make sure the arguments passed correspond exactly
1475 * to the argument on the #! line, and it should not trust any
1476 * subprocesses to which it must pass the filename rather than the
1477 * file descriptor of the script to be executed.
1479 /*#define SETUID_SCRIPTS_ARE_SECURE_NOW /**/
1480 /*#define DOSUID /**/
1483 * This preprocessor macro is defined to convert a floating point
1484 * number to a string without a trailing decimal point. This
1485 * emulates the behavior of sprintf("%g"), but is sometimes much more
1486 * efficient. If gconvert() is not available, but gcvt() drops the
1487 * trailing decimal point, then gcvt() is used. If all else fails,
1488 * a macro using sprintf("%g") is used. Arguments for the Gconvert
1489 * macro are: value, number of digits, whether trailing zeros should
1490 * be retained, and the output buffer.
1491 * Possible values are:
1492 * d_Gconvert='gconvert((x),(n),(t),(b))'
1493 * d_Gconvert='gcvt((x),(n),(b))'
1494 * d_Gconvert='sprintf((b),"%.*g",(n),(x))'
1495 * The last two assume trailing zeros should not be kept.
1497 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
1500 * This symbol, if defined, indicates to the C program that
1501 * the getpgid(pid) function is available to get the
1504 /*#define HAS_GETPGID /**/
1507 * This symbol, if defined, indicates that the getpgrp routine is
1508 * available to get the current process group.
1511 * This symbol, if defined, indicates that getpgrp needs one
1512 * arguments whereas USG one needs none.
1514 /*#define HAS_GETPGRP /**/
1515 /*#define USE_BSD_GETPGRP /**/
1518 * This symbol, if defined, indicates to the C program that the
1519 * inet_aton() function is available to parse IP address "dotted-quad"
1522 /*#define HAS_INET_ATON /**/
1525 * This symbol, if defined, indicates to the C program that
1526 * the setpgid(pid, gpid) function is available to set the
1529 /*#define HAS_SETPGID /**/
1532 * This symbol, if defined, indicates that the setpgrp routine is
1533 * available to set the current process group.
1536 * This symbol, if defined, indicates that setpgrp needs two
1537 * arguments whereas USG one needs none. See also HAS_SETPGID
1538 * for a POSIX interface.
1541 * This symbol, if defined, indicates that the BSD notion of process
1542 * group is to be used. For instance, you have to say setpgrp(pid, pgrp)
1543 * instead of the USG setpgrp(). This should be obsolete since
1544 * there are systems which have BSD-ish setpgrp but USG-ish getpgrp.
1546 /*#define HAS_SETPGRP /**/
1547 /*#define USE_BSD_SETPGRP /**/
1548 /*#define USE_BSDPGRP /**/
1551 * This symbol, if defined, indicates that sfio should
1554 /*#define USE_SFIO /**/
1557 * This is the buffer type to be used with Sigsetjmp and Siglongjmp.
1560 * This macro is used in the same way as sigsetjmp(), but will invoke
1561 * traditional setjmp() if sigsetjmp isn't available.
1562 * See HAS_SIGSETJMP.
1565 * This macro is used in the same way as siglongjmp(), but will invoke
1566 * traditional longjmp() if siglongjmp isn't available.
1567 * See HAS_SIGSETJMP.
1569 /*#define HAS_SIGSETJMP /**/
1570 #ifdef HAS_SIGSETJMP
1571 #define Sigjmp_buf sigjmp_buf
1572 #define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
1573 #define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
1575 #define Sigjmp_buf jmp_buf
1576 #define Sigsetjmp(buf,save_mask) setjmp((buf))
1577 #define Siglongjmp(buf,retval) longjmp((buf),(retval))
1580 /* USE_DYNAMIC_LOADING:
1581 * This symbol, if defined, indicates that dynamic loading of
1582 * some sort is available.
1584 #define USE_DYNAMIC_LOADING /**/
1587 * This symbol, if defined, indicates that <dbm.h> exists and should
1591 * This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
1592 * should be included.
1594 /*#define I_DBM /**/
1595 #define I_RPCSVC_DBM /**/
1598 * This symbol, if defined, indicates to the C program that it should
1599 * include <locale.h>.
1601 #define I_LOCALE /**/
1604 * This symbol, if defined, indicates to the C program that it should
1607 /*#define I_SFIO /**/
1610 * This symbol, if defined, indicates to the C program that it should
1611 * include <sys/stat.h>.
1613 #define I_SYS_STAT /**/
1616 * This symbol, if defined, indicates to the C program that it should
1617 * include <values.h> to get definition of symbols like MINFLOAT or
1618 * MAXLONG, i.e. machine dependant limitations. Probably, you
1619 * should use <limits.h> instead, if it is available.
1621 /*#define I_VALUES /**/
1624 * This variable contains the return type of free(). It is usually
1625 * void, but occasionally int.
1628 * This symbol is the type of pointer returned by malloc and realloc.
1630 #define Malloc_t void * /**/
1631 #define Free_t void /**/
1634 * This symbol, if defined, indicates that we're using our own malloc.
1636 /*#define MYMALLOC /**/
1639 * This variable, if defined, holds the name of the directory in
1640 * which the user has perl5.000 or perl5.001 architecture-dependent
1641 * public library files for perl5. For the most part, these
1642 * files will work with 5.002 (and later), but that is not
1646 * This symbol contains the ~name expanded version of OLDARCHLIB, to be
1647 * used in programs that are not prepared to deal with ~ expansion at
1650 /*#define OLDARCHLIB "" /**/
1651 /*#define OLDARCHLIB_EXP "" /**/
1654 * This symbol contains the name of the private library for this package.
1655 * The library is private in the sense that it needn't be in anyone's
1656 * execution path, but it should be accessible by the world. The program
1657 * should be prepared to do ~ expansion.
1660 * This symbol contains the ~name expanded version of PRIVLIB, to be used
1661 * in programs that are not prepared to deal with ~ expansion at run-time.
1663 #define PRIVLIB "c:\\perl\\lib" /**/
1664 #define PRIVLIB_EXP "c:\\perl\\lib" /**/
1667 * This symbol contains the full pathname to the shell used on this
1668 * on this system to execute Bourne shell scripts. Usually, this will be
1669 * /bin/sh, though it's possible that some systems will have /bin/ksh,
1670 * /bin/pdksh, /bin/ash, /bin/bash, or even something such as
1673 #define SH_PATH "cmd /x /c" /**/
1676 * This symbol contains a list of signal names in order of
1677 * signal number. This is intended
1678 * to be used as a static array initialization, like this:
1679 * char *sig_name[] = { SIG_NAME };
1680 * The signals in the list are separated with commas, and each signal
1681 * is surrounded by double quotes. There is no leading SIG in the signal
1682 * name, i.e. SIGQUIT is known as "QUIT".
1683 * Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
1684 * etc., where nn is the actual signal number (e.g. NUM37).
1685 * The signal number for sig_name[i] is stored in sig_num[i].
1686 * The last element is 0 to terminate the list with a NULL. This
1687 * corresponds to the 0 at the end of the sig_num list.
1690 * This symbol contains a list of signal numbers, in the same order as the
1691 * SIG_NAME list. It is suitable for static array initialization, as in:
1692 * int sig_num[] = { SIG_NUM };
1693 * The signals in the list are separated with commas, and the indices
1694 * within that list and the SIG_NAME list match, so it's easy to compute
1695 * the signal name from a number or vice versa at the price of a small
1696 * dynamic linear lookup.
1697 * Duplicates are allowed, but are moved to the end of the list.
1698 * The signal number corresponding to sig_name[i] is sig_number[i].
1699 * if (i < NSIG) then sig_number[i] == i.
1700 * The last element is 0, corresponding to the 0 at the end of
1701 * the sig_name list.
1703 #define SIG_NAME "ZERO","HUP","INT","QUIT","ILL","TRAP","ABRT","EMT","FPE","KILL","BUS","SEGV","SYS","PIPE","ALRM","TERM","USR1","USR2","CHLD","PWR","WINCH","URG","IO","STOP","TSTP","CONT","TTIN","TTOU","VTALRM","PROF","XCPU","XFSZ","WAITING","LWP","FREEZE","THAW","RTMIN","NUM37","NUM38","NUM39","NUM40","NUM41","NUM42","RTMAX","IOT","CLD","POLL",0 /**/
1704 #define SIG_NUM 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,6,18,22,0 /**/
1707 * This symbol contains the name of the private library for this package.
1708 * The library is private in the sense that it needn't be in anyone's
1709 * execution path, but it should be accessible by the world. The program
1710 * should be prepared to do ~ expansion.
1711 * The standard distribution will put nothing in this directory.
1712 * Individual sites may place their own extensions and modules in
1716 * This symbol contains the ~name expanded version of SITEARCH, to be used
1717 * in programs that are not prepared to deal with ~ expansion at run-time.
1719 #define SITEARCH "c:\\perl\\lib\\site" /**/
1720 #define SITEARCH_EXP "c:\\perl\\lib\\site" /**/
1723 * This symbol contains the name of the private library for this package.
1724 * The library is private in the sense that it needn't be in anyone's
1725 * execution path, but it should be accessible by the world. The program
1726 * should be prepared to do ~ expansion.
1727 * The standard distribution will put nothing in this directory.
1728 * Individual sites may place their own extensions and modules in
1732 * This symbol contains the ~name expanded version of SITELIB, to be used
1733 * in programs that are not prepared to deal with ~ expansion at run-time.
1735 #define SITELIB "c:\\perl\\lib\\site" /**/
1736 #define SITELIB_EXP "c:\\perl\\lib\\site" /**/
1739 * This variable contains the string to put in front of a perl
1740 * script to make sure (one hopes) that it runs with perl and not
1743 #define STARTPERL "#perl" /**/
1746 * This symbol, if defined, indicates that the PerlIO abstraction should
1747 * be used throughout. If not defined, stdio should be
1748 * used in a fully backward compatible manner.
1750 /*#define USE_PERLIO /**/
1753 * This symbol indicates how much support of the void type is given by this
1754 * compiler. What various bits mean:
1756 * 1 = supports declaration of void
1757 * 2 = supports arrays of pointers to functions returning void
1758 * 4 = supports comparisons between pointers to void functions and
1759 * addresses of void functions
1760 * 8 = suports declaration of generic void pointers
1762 * The package designer should define VOIDUSED to indicate the requirements
1763 * of the package. This can be done either by #defining VOIDUSED before
1764 * including config.h, or by defining defvoidused in Myinit.U. If the
1765 * latter approach is taken, only those flags will be tested. If the
1766 * level of void support necessary is not present, defines void to int.
1771 #define VOIDFLAGS 15
1772 #if (VOIDFLAGS & VOIDUSED) != VOIDUSED
1773 #define void int /* is void to be avoided? */
1774 #define M_VOID /* Xenix strikes again */