Change to use $^O and &Cwd:cwd
[p5sagit/p5-mst-13.2.git] / vms / config.vms
CommitLineData
2304df62 1/*
a0d0e21e 2 * This file was produced by hand because the configure utilities which
3 * are in the perl distribution are all shell scripts. Someday, I hope
4 * we'll get a perl configure utility, but until then . . .
5 *
6 * Feel free to add or change things to suit your needs, but be careful
7 * about moving the comments which say "config-skip" - they're used by
8 * GenConfig.pl when producing Config.pm.
79072805 9 *
a0d0e21e 10 * config.h for VMS
e518068a 11 * Version: 5.2.b1
a0d0e21e 12 */
2304df62 13
e518068a 14/* Configuration time: 4-Dec-1995 17:00
a0d0e21e 15 * Configured by: Charles Bailey bailey@genetics.upenn.edu
16 * Target system: VMS
79072805 17 */
79072805 18
2304df62 19#ifndef _config_h_
20#define _config_h_
79072805 21
e518068a 22/* CAT2:
23 * This macro catenates 2 tokens together.
24 */
25/* STRINGIFY:
26 * This macro surrounds its token with double quotes.
27 */
28#ifdef __STDC__
29#define CAT2(a,b)a ## b
30#define CAT3(a,b,c)a ## b ## c
31#define CAT4(a,b,c,d)a ## b ## c ##d
32#define CAT5(a,b,c,d,e)a ## b ## c ## d ## e
33#define StGiFy(a) # a
34#define STRINGIFY(A)StGiFy(a)
35#define SCAT2(a,b)StGiFy(a) StGiFy(b)
36#define SCAT3(a,b,c)StGiFy(a) StGiFy(b) StGiFy(c)
37#define SCAT4(a,b,c,d)StGiFy(a) StGiFy(b) StGiFy(c) StGiFy(d)
38#define SCAT5(a,b,c,d,e)StGiFy(a) StGiFy(b) StGiFy(c) StGiFy(d) StGiFy(e)
39#else
40#define CAT2(a,b)a/**/b
41#define CAT3(a,b,c)a/**/b/**/c
42#define CAT4(a,b,c,d)a/**/b/**/c/**/d
43#define CAT5(a,b,c,d,e)a/**/b/**/c/**/d/**/e
44#define STRINGIFY(a)"a"
45#endif
46
47/* config-start */
48
a0d0e21e 49/* MEM_ALIGNBYTES:
50 * This symbol contains the number of bytes required to align a
51 * double. Usual values are 2, 4 and 8.
79072805 52 */
a0d0e21e 53#define MEM_ALIGNBYTES 8 /**/
79072805 54
fed7345c 55/* ARCHLIB_EXP:
a0d0e21e 56 * This variable, if defined, holds the name of the directory in
57 * which the user wants to put architecture-dependent public
58 * library files for $package. It is most often a local directory
59 * such as /usr/local/lib. Programs using this variable must be
fed7345c 60 * prepared to deal with filename expansion. If ARCHLIB_EXP is the
61 * same as PRIVLIB_EXP, it is not defined, since presumably the
62 * program already searches PRIVLIB_EXP.
a0d0e21e 63 */
4633a7c4 64#ifdef __ALPHA
482b294c 65#define ARCHLIB_EXP "/perl_root/lib/VMS_AXP/5_002" /* config-skip */
748a9306 66#else
482b294c 67#define ARCHLIB_EXP "/perl_root/lib/VMS_VAX/5_002" /* config-skip */
748a9306 68#endif
a0d0e21e 69
2304df62 70/* CPPSTDIN:
79072805 71 * This symbol contains the first part of the string which will invoke
72 * the C preprocessor on the standard input and produce to standard
2304df62 73 * output. Typical value of "cc -E" or "/lib/cpp", but it can also
74 * call a wrapper. See CPPRUN.
79072805 75 */
2304df62 76/* CPPMINUS:
79072805 77 * This symbol contains the second part of the string which will invoke
78 * the C preprocessor on the standard input and produce to standard
79 * output. This symbol will have the value "-" if CPPSTDIN needs a minus
80 * to specify standard input, otherwise the value is "".
81 */
a0d0e21e 82#define CPPSTDIN "cc/noobj/preprocess=sys$output sys$input"
79072805 83#define CPPMINUS ""
84
2304df62 85/* HAS_BCMP:
86 * This symbol is defined if the bcmp() routine is available to
87 * compare blocks of memory.
79072805 88 */
a0d0e21e 89#undef HAS_BCMP /**/
79072805 90
2304df62 91/* HAS_BCOPY:
92 * This symbol is defined if the bcopy() routine is available to
93 * copy blocks of memory.
79072805 94 */
a0d0e21e 95#undef HAS_BCOPY /**/
79072805 96
2304df62 97/* HAS_BZERO:
98 * This symbol is defined if the bzero() routine is available to
99 * set a memory block to 0.
79072805 100 */
a0d0e21e 101#undef HAS_BZERO /**/
79072805 102
2304df62 103/* CASTNEGFLOAT:
104 * This symbol is defined if the C compiler can cast negative
105 * numbers to unsigned longs, ints and shorts.
79072805 106 */
2304df62 107/* CASTFLAGS:
79072805 108 * This symbol contains flags that say what difficulties the compiler
109 * has casting odd floating values to unsigned long:
2304df62 110 * 0 = ok
79072805 111 * 1 = couldn't cast < 0
112 * 2 = couldn't cast >= 0x80000000
113 */
2304df62 114#define CASTNEGFLOAT /**/
115#define CASTFLAGS 0 /**/
79072805 116
2304df62 117/* HAS_CHSIZE:
79072805 118 * This symbol, if defined, indicates that the chsize routine is available
119 * to truncate files. You might need a -lx to get this routine.
120 */
a0d0e21e 121#undef HAS_CHSIZE /**/
79072805 122
2304df62 123/* HASCONST:
124 * This symbol, if defined, indicates that this C compiler knows about
125 * the const type. There is no need to actually test for that symbol
126 * within your programs. The mere use of the "const" keyword will
127 * trigger the necessary tests.
128 */
a0d0e21e 129#define HASCONST /**/
2304df62 130#ifndef HASCONST
131#define const
132#endif
133
134/* HAS_CRYPT:
79072805 135 * This symbol, if defined, indicates that the crypt routine is available
136 * to encrypt passwords and the like.
137 */
c07a80fd 138#define HAS_CRYPT /**/
79072805 139
e518068a 140/* BYTEORDER:
141 * This symbol hold the hexadecimal constant defined in byteorder,
142 * i.e. 0x1234 or 0x4321, etc...
143 */
144#define BYTEORDER 0x1234 /* large digits for MSB */
145
2304df62 146/* CSH:
79072805 147 * This symbol, if defined, indicates that the C-shell exists.
148 * If defined, contains the full pathname of csh.
149 */
a0d0e21e 150#undef CSH /**/
79072805 151
2304df62 152/* HAS_DUP2:
153 * This symbol, if defined, indicates that the dup2 routine is
154 * available to duplicate file descriptors.
79072805 155 */
2304df62 156#define HAS_DUP2 /**/
79072805 157
2304df62 158/* HAS_FCHMOD:
79072805 159 * This symbol, if defined, indicates that the fchmod routine is available
160 * to change mode of opened files. If unavailable, use chmod().
161 */
a0d0e21e 162#undef HAS_FCHMOD /**/
79072805 163
2304df62 164/* HAS_FCHOWN:
79072805 165 * This symbol, if defined, indicates that the fchown routine is available
166 * to change ownership of opened files. If unavailable, use chown().
167 */
a0d0e21e 168#undef HAS_FCHOWN /**/
79072805 169
2304df62 170/* HAS_FCNTL:
79072805 171 * This symbol, if defined, indicates to the C program that
172 * the fcntl() function exists.
173 */
a0d0e21e 174#undef HAS_FCNTL /**/
175
176/* HAS_FGETPOS:
177 * This symbol, if defined, indicates that the fgetpos routine is
178 * available to get the file position indicator, similar to ftell().
179 */
180#define HAS_FGETPOS /**/
79072805 181
2304df62 182/* FLEXFILENAMES:
79072805 183 * This symbol, if defined, indicates that the system supports filenames
184 * longer than 14 characters.
185 */
186#define FLEXFILENAMES /**/
187
2304df62 188/* HAS_FLOCK:
189 * This symbol, if defined, indicates that the flock routine is
79072805 190 * available to do file locking.
191 */
a0d0e21e 192#undef HAS_FLOCK /**/
193
194/* HAS_FSETPOS:
195 * This symbol, if defined, indicates that the fsetpos routine is
196 * available to set the file position indicator, similar to fseek().
197 */
198#define HAS_FSETPOS /**/
79072805 199
2304df62 200/* HAS_GETGROUPS:
79072805 201 * This symbol, if defined, indicates that the getgroups() routine is
202 * available to get the list of process groups. If unavailable, multiple
203 * groups are probably not supported.
204 */
a0d0e21e 205#undef HAS_GETGROUPS /**/
2304df62 206
207/* HAS_UNAME:
208 * This symbol, if defined, indicates that the C program may use the
209 * uname() routine to derive the host name. See also HAS_GETHOSTNAME
210 * and PHOSTNAME.
211 */
a0d0e21e 212#undef HAS_UNAME /**/
79072805 213
2304df62 214/* HAS_GETPGRP:
215 * This symbol, if defined, indicates that the getpgrp routine is
79072805 216 * available to get the current process group.
217 */
a0d0e21e 218#undef HAS_GETPGRP /**/
79072805 219
2304df62 220/* HAS_GETPGRP2:
79072805 221 * This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
222 * routine is available to get the current process group.
223 */
a0d0e21e 224#undef HAS_GETPGRP2 /**/
79072805 225
2304df62 226/* HAS_GETPRIORITY:
227 * This symbol, if defined, indicates that the getpriority routine is
79072805 228 * available to get a process's priority.
229 */
a0d0e21e 230#undef HAS_GETPRIORITY /**/
79072805 231
2304df62 232/* HAS_KILLPG:
79072805 233 * This symbol, if defined, indicates that the killpg routine is available
234 * to kill process groups. If unavailable, you probably should use kill
235 * with a negative process number.
236 */
a0d0e21e 237#undef HAS_KILLPG /**/
79072805 238
2304df62 239/* HAS_LINK:
240 * This symbol, if defined, indicates that the link routine is
241 * available to create hard links.
79072805 242 */
a0d0e21e 243#undef HAS_LINK /**/
79072805 244
2304df62 245/* HAS_LSTAT:
246 * This symbol, if defined, indicates that the lstat routine is
247 * available to do file stats on symbolic links.
79072805 248 */
a0d0e21e 249#undef HAS_LSTAT /**/
250
251/* HAS_LOCKF:
252 * This symbol, if defined, indicates that the lockf routine is
253 * available to do file locking.
254 */
255#undef HAS_LOCKF /**/
256
257/* HAS_MBSTOWCS:
258 * This symbol, if defined, indicates that the mbstowcs routine is
259 * available to covert a multibyte string into a wide character string.
260 */
261#undef HAS_MBSTOWCS /**/
262
263/* HAS_MBTOWC:
264 * This symbol, if defined, indicates that the mbtowc routine is available
265 * to covert a multibyte to a wide character.
266 */
267#undef HAS_MBTOWC /**/
79072805 268
2304df62 269/* HAS_MEMCMP:
270 * This symbol, if defined, indicates that the memcmp routine is available
271 * to compare blocks of memory.
79072805 272 */
2304df62 273#define HAS_MEMCMP /**/
274
275/* HAS_MEMCPY:
79072805 276 * This symbol, if defined, indicates that the memcpy routine is available
2304df62 277 * to copy blocks of memory.
79072805 278 */
2304df62 279#define HAS_MEMCPY /**/
79072805 280
2304df62 281/* HAS_MEMMOVE:
79072805 282 * This symbol, if defined, indicates that the memmove routine is available
2304df62 283 * to copy potentially overlapping blocks of memory. This should be used
284 * only when HAS_SAFE_BCOPY is not defined. If neither is there, roll your
285 * own version.
79072805 286 */
a0d0e21e 287#define HAS_MEMMOVE /**/
79072805 288
2304df62 289/* HAS_MEMSET:
79072805 290 * This symbol, if defined, indicates that the memset routine is available
2304df62 291 * to set blocks of memory.
79072805 292 */
2304df62 293#define HAS_MEMSET /**/
79072805 294
2304df62 295/* HAS_MKDIR:
79072805 296 * This symbol, if defined, indicates that the mkdir routine is available
297 * to create directories. Otherwise you should fork off a new process to
298 * exec /bin/mkdir.
299 */
2304df62 300#define HAS_MKDIR /**/
79072805 301
2304df62 302/* HAS_MSG:
79072805 303 * This symbol, if defined, indicates that the entire msg*(2) library is
2304df62 304 * supported (IPC mechanism based on message queues).
79072805 305 */
a0d0e21e 306#undef HAS_MSG /**/
79072805 307
a0d0e21e 308/* HAS_OPEN3:
309 * This manifest constant lets the C program know that the three
310 * argument form of open(2) is available.
79072805 311 */
a0d0e21e 312#define HAS_OPEN3 /**/
79072805 313
e518068a 314/* HAS_POLL:
315 * This symbol, if defined, indicates that the poll routine is
316 * available to poll active file descriptors.
317 */
318#undef HAS_POLL /**/
319
a0d0e21e 320/* HAS_READDIR:
321 * This symbol, if defined, indicates that the readdir routine is
322 * available to read directory entries. You may have to include
323 * <dirent.h>. See I_DIRENT.
79072805 324 */
a0d0e21e 325#define HAS_READDIR /**/
79072805 326
a0d0e21e 327/* HAS_SEEKDIR:
328 * This symbol, if defined, indicates that the seekdir routine is
329 * available. You may have to include <dirent.h>. See I_DIRENT.
79072805 330 */
a0d0e21e 331#define HAS_SEEKDIR /**/
79072805 332
a0d0e21e 333/* HAS_TELLDIR:
334 * This symbol, if defined, indicates that the telldir routine is
335 * available. You may have to include <dirent.h>. See I_DIRENT.
79072805 336 */
a0d0e21e 337#define HAS_TELLDIR /**/
79072805 338
a0d0e21e 339/* HAS_REWINDDIR:
340 * This symbol, if defined, indicates that the rewinddir routine is
341 * available. You may have to include <dirent.h>. See I_DIRENT.
79072805 342 */
a0d0e21e 343#define HAS_REWINDDIR /**/
79072805 344
2304df62 345/* HAS_RENAME:
79072805 346 * This symbol, if defined, indicates that the rename routine is available
347 * to rename files. Otherwise you should do the unlink(), link(), unlink()
348 * trick.
349 */
2304df62 350#define HAS_RENAME /**/
79072805 351
2304df62 352/* HAS_RMDIR:
353 * This symbol, if defined, indicates that the rmdir routine is
354 * available to remove directories. Otherwise you should fork off a
355 * new process to exec /bin/rmdir.
79072805 356 */
2304df62 357#define HAS_RMDIR /**/
79072805 358
2304df62 359/* HAS_SEM:
79072805 360 * This symbol, if defined, indicates that the entire sem*(2) library is
361 * supported.
362 */
a0d0e21e 363#undef HAS_SEM /**/
79072805 364
2304df62 365/* HAS_SETEGID:
79072805 366 * This symbol, if defined, indicates that the setegid routine is available
367 * to change the effective gid of the current program.
368 */
a0d0e21e 369#undef HAS_SETEGID /**/
79072805 370
2304df62 371/* HAS_SETEUID:
79072805 372 * This symbol, if defined, indicates that the seteuid routine is available
373 * to change the effective uid of the current program.
374 */
a0d0e21e 375#undef HAS_SETEUID /**/
376
377/* HAS_SETLOCALE:
378 * This symbol, if defined, indicates that the setlocale routine is
379 * available to handle locale-specific ctype implementations.
380 */
381#undef HAS_SETLOCALE /**/
79072805 382
2304df62 383/* HAS_SETPGID:
384 * This symbol, if defined, indicates that the setpgid routine is
385 * available to set process group ID.
386 */
a0d0e21e 387#undef HAS_SETPGID /**/
79072805 388
2304df62 389/* HAS_SETPGRP2:
79072805 390 * This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
391 * routine is available to set the current process group.
392 */
a0d0e21e 393#undef HAS_SETPGRP2 /**/
79072805 394
2304df62 395/* HAS_SETPRIORITY:
396 * This symbol, if defined, indicates that the setpriority routine is
79072805 397 * available to set a process's priority.
398 */
a0d0e21e 399#undef HAS_SETPRIORITY /**/
79072805 400
2304df62 401/* HAS_SETREGID:
79072805 402 * This symbol, if defined, indicates that the setregid routine is
2304df62 403 * available to change the real and effective gid of the current
404 * process.
79072805 405 */
2304df62 406/* HAS_SETRESGID:
79072805 407 * This symbol, if defined, indicates that the setresgid routine is
408 * available to change the real, effective and saved gid of the current
2304df62 409 * process.
79072805 410 */
a0d0e21e 411#undef HAS_SETREGID /**/
412#undef HAS_SETRESGID /**/
79072805 413
2304df62 414/* HAS_SETREUID:
79072805 415 * This symbol, if defined, indicates that the setreuid routine is
2304df62 416 * available to change the real and effective uid of the current
417 * process.
79072805 418 */
2304df62 419/* HAS_SETRESUID:
79072805 420 * This symbol, if defined, indicates that the setresuid routine is
421 * available to change the real, effective and saved uid of the current
2304df62 422 * process.
79072805 423 */
a0d0e21e 424#undef HAS_SETREUID /**/
425#undef HAS_SETRESUID /**/
79072805 426
2304df62 427/* HAS_SETRGID:
79072805 428 * This symbol, if defined, indicates that the setrgid routine is available
429 * to change the real gid of the current program.
430 */
a0d0e21e 431#undef HAS_SETRGID /**/
79072805 432
2304df62 433/* HAS_SETRUID:
79072805 434 * This symbol, if defined, indicates that the setruid routine is available
435 * to change the real uid of the current program.
436 */
a0d0e21e 437#undef HAS_SETRUID /**/
79072805 438
2304df62 439/* HAS_SETSID:
440 * This symbol, if defined, indicates that the setsid routine is
441 * available to set the process group ID.
442 */
a0d0e21e 443#undef HAS_SETSID /**/
2304df62 444
445/* HAS_SHM:
79072805 446 * This symbol, if defined, indicates that the entire shm*(2) library is
447 * supported.
448 */
a0d0e21e 449#undef HAS_SHM /**/
79072805 450
a0d0e21e 451/* Shmat_t:
452 * This symbol holds the return type of the shmat() system call.
453 * Usually set to 'void *' or 'char *'.
79072805 454 */
a0d0e21e 455/* HAS_SHMAT_PROTOTYPE:
456 * This symbol, if defined, indicates that the sys/shm.h includes
457 * a prototype for shmat(). Otherwise, it is up to the program to
458 * guess one. Shmat_t shmat _((int, Shmat_t, int)) is a good guess,
459 * but not always right so it should be emitted by the program only
460 * when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
79072805 461 */
16d20bd9 462#undef Shmat_t /**/ /* config-skip */
a0d0e21e 463#undef HAS_SHMAT_PROTOTYPE /**/
79072805 464
c07a80fd 465/* HAS_SIGACTION:
466 * This symbol, if defined, indicates that Vr4's sigaction() routine
467 * is available.
468 */
469#undef HAS_SIGACTION /**/
470
2304df62 471/* USE_STAT_BLOCKS:
79072805 472 * This symbol is defined if this system has a stat structure declaring
473 * st_blksize and st_blocks.
474 */
a0d0e21e 475#undef USE_STAT_BLOCKS /**/
79072805 476
16d20bd9 477/* USE_STDIO_PTR:
478 * This symbol is defined if the _ptr and _cnt fields (or similar)
479 * of the stdio FILE structure can be used to access the stdio buffer
480 * for a file handle. If this is defined, then the FILE_ptr(fp)
481 * and FILE_cnt(fp) macros will also be defined and should be used
482 * to access these fields.
483 */
484/* USE_STDIO_BASE:
485 * This symbol is defined if the _base field (or similar) of the
486 * stdio FILE structure can be used to access the stdio buffer for
487 * a file handle. If this is defined, then the FILE_base(fp) macro
488 * will also be defined and should be used to access this field.
489 * Also, the FILE_bufsiz(fp) macro will be defined and should be used
490 * to determine the number of bytes in the buffer. USE_STDIO_BASE
491 * will never be defined unless USE_STDIO_PTR is.
492 */
4633a7c4 493/* VMS:
494 * Regular FILE * are pretty close to meeting these criteria, but socket
495 * I/O uses a summy FILE *, and Perl doesn't distinguish between socket
e518068a 496 * and non-socket filehandles.
497 */
16d20bd9 498#undef USE_STDIO_PTR /**/
499#undef USE_STDIO_BASE /**/
500
501/* FILE_ptr:
502 * This macro is used to access the _ptr field (or equivalent) of the
503 * FILE structure pointed to by its argument. This macro will always be
504 * defined if USE_STDIO_PTR is defined.
505 */
4633a7c4 506/* STDIO_PTR_LVALUE:
507 * This symbol is defined if the FILE_ptr macro can be used as an
508 * lvalue.
509 */
16d20bd9 510/* FILE_cnt:
511 * This macro is used to access the _cnt field (or equivalent) of the
512 * FILE structure pointed to by its argument. This macro will always be
513 * defined if USE_STDIO_PTR is defined.
514 */
4633a7c4 515/* STDIO_CNT_LVALUE:
516 * This symbol is defined if the FILE_cnt macro can be used as an
517 * lvalue.
518 */
519#undef FILE_ptr
520#undef STDIO_PTR_LVALUE
521#undef FILE_cnt
522#undef STDIO_CNT_LVALUE
16d20bd9 523
524/* FILE_base:
525 * This macro is used to access the _base field (or equivalent) of the
526 * FILE structure pointed to by its argument. This macro will always be
527 * defined if USE_STDIO_BASE is defined.
79072805 528 */
16d20bd9 529/* FILE_bufsiz:
530 * This macro is used to determine the number of bytes in the I/O
531 * buffer pointed to by _base field (or equivalent) of the FILE
532 * structure pointed to its argument. This macro will always be defined
533 * if USE_STDIO_BASE is defined.
534 */
4633a7c4 535#undef FILE_base
536#undef FILE_bufsiz
79072805 537
2304df62 538/* USE_STRUCT_COPY:
79072805 539 * This symbol, if defined, indicates that this C compiler knows how
540 * to copy structures. If undefined, you'll need to use a block copy
541 * routine of some sort instead.
542 */
2304df62 543#define USE_STRUCT_COPY /**/
79072805 544
a0d0e21e 545/* HAS_STRERROR:
546 * This symbol, if defined, indicates that the strerror routine is
547 * available to translate error numbers to strings. See the writeup
548 * of Strerror() in this file before you try to define your own.
549 */
550/* HAS_SYS_ERRLIST:
551 * This symbol, if defined, indicates that the sys_errlist array is
552 * available to translate error numbers to strings. The extern int
553 * sys_nerr gives the size of that table.
554 */
555/* Strerror:
556 * This preprocessor symbol is defined as a macro if strerror() is
557 * not available to translate error numbers to strings but sys_errlist[]
558 * array is there.
559 */
560#define HAS_STRERROR /**/
561#undef HAS_SYS_ERRLIST /**/
562#ifdef HAS_STRERROR
563# define Strerror(e) strerror((e),vaxc$errno)
564#else
565#define Strerror(e) ((e)<0||(e)>=sys_nerr?"unknown":sys_errlist[e]) /**/ /* config-skip */
566#endif
567
2304df62 568/* HAS_SYMLINK:
79072805 569 * This symbol, if defined, indicates that the symlink routine is available
570 * to create symbolic links.
571 */
a0d0e21e 572#undef HAS_SYMLINK /**/
2304df62 573
574/* HAS_SYSCALL:
575 * This symbol, if defined, indicates that the syscall routine is
576 * available to call arbitrary system calls. If undefined, that's tough.
577 */
a0d0e21e 578#undef HAS_SYSCALL /**/
79072805 579
2304df62 580/* HAS_SYSTEM:
581 * This symbol, if defined, indicates that the system routine is
582 * available to issue a shell command.
79072805 583 */
2304df62 584#define HAS_SYSTEM /**/
79072805 585
85e6fe83 586/* Time_t:
587 * This symbol holds the type returned by time(). It can be long,
588 * or time_t on BSD sites (in which case <sys/types.h> should be
589 * included).
590 */
a0d0e21e 591#define Time_t time_t /* Time type */
79072805 592
2304df62 593/* HAS_TRUNCATE:
79072805 594 * This symbol, if defined, indicates that the truncate routine is
595 * available to truncate files.
596 */
a0d0e21e 597#undef HAS_TRUNCATE /**/
79072805 598
2304df62 599
a0d0e21e 600/* HAS_VFORK:
601 * This symbol, if defined, indicates that vfork() exists.
79072805 602 */
a0d0e21e 603#define HAS_VFORK /**/
79072805 604
748a9306 605/* Signal_t:
606 * This symbol's value is either "void" or "int", corresponding to the
607 * appropriate return type of a signal handler. Thus, you can declare
608 * a signal handler using "Signal_t (*handler)()", and define the
609 * handler using "Signal_t handler(sig)".
610 */
611#define Signal_t void /* Signal handler's return type */
612
2304df62 613/* HASVOLATILE:
79072805 614 * This symbol, if defined, indicates that this C compiler knows about
615 * the volatile declaration.
616 */
a0d0e21e 617#define HASVOLATILE /**/
2304df62 618#ifndef HASVOLATILE
a0d0e21e 619#define volatile /* config-skip */
2304df62 620#endif
79072805 621
2304df62 622/* HAS_VPRINTF:
79072805 623 * This symbol, if defined, indicates that the vprintf routine is available
624 * to printf with a pointer to an argument list. If unavailable, you
625 * may need to write your own, probably in terms of _doprnt().
626 */
2304df62 627/* USE_CHAR_VSPRINTF:
79072805 628 * This symbol is defined if this system has vsprintf() returning type
629 * (char*). The trend seems to be to declare it as "int vsprintf()". It
630 * is up to the package author to declare vsprintf correctly based on the
631 * symbol.
632 */
2304df62 633#define HAS_VPRINTF /**/
a0d0e21e 634#undef USE_CHAR_VSPRINTF /**/
79072805 635
2304df62 636/* HAS_WAIT4:
79072805 637 * This symbol, if defined, indicates that wait4() exists.
638 */
a0d0e21e 639#undef HAS_WAIT4 /**/
79072805 640
2304df62 641/* HAS_WAITPID:
642 * This symbol, if defined, indicates that the waitpid routine is
643 * available to wait for child process.
79072805 644 */
748a9306 645#define HAS_WAITPID /**/
79072805 646
a0d0e21e 647/* HAS_WCSTOMBS:
648 * This symbol, if defined, indicates that the wcstombs routine is
649 * available to convert wide character strings to multibyte strings.
79072805 650 */
a0d0e21e 651#undef HAS_WCSTOMBS /**/
79072805 652
2304df62 653/* I_DIRENT:
654 * This symbol, if defined, indicates to the C program that it should
655 * include <dirent.h>. Using this symbol also triggers the definition
656 * of the Direntry_t define which ends up being 'struct dirent' or
657 * 'struct direct' depending on the availability of <dirent.h>.
79072805 658 */
2304df62 659/* DIRNAMLEN:
660 * This symbol, if defined, indicates to the C program that the length
661 * of directory entry names is provided by a d_namlen field. Otherwise
662 * you need to do strlen() on the d_name field.
663 */
a0d0e21e 664#undef I_DIRENT /**/
665#define DIRNAMLEN /**/
2304df62 666#define Direntry_t struct dirent
79072805 667
2304df62 668/* I_FCNTL:
79072805 669 * This manifest constant tells the C program to include <fcntl.h>.
670 */
a0d0e21e 671#undef I_FCNTL /**/
79072805 672
2304df62 673/* I_GRP:
79072805 674 * This symbol, if defined, indicates to the C program that it should
2304df62 675 * include <grp.h>.
79072805 676 */
a0d0e21e 677#undef I_GRP /**/
79072805 678
a0d0e21e 679/* I_LIMITS:
680 * This symbol, if defined, indicates to the C program that it should
681 * include <limits.h> to get definition of symbols like WORD_BIT or
682 * LONG_MAX, i.e. machine dependant limitations.
2304df62 683 */
a0d0e21e 684#undef I_LIMITS /**/
2304df62 685
a0d0e21e 686/* I_MEMORY:
79072805 687 * This symbol, if defined, indicates to the C program that it should
a0d0e21e 688 * include <memory.h>.
79072805 689 */
a0d0e21e 690#undef I_MEMORY /**/
691
692/* I_NDBM:
693 * This symbol, if defined, indicates that ndbm.h exists and should
694 * be included.
79072805 695 */
a0d0e21e 696#undef I_NDBM /**/
79072805 697
2304df62 698/* I_STDARG:
699 * This symbol, if defined, indicates that <stdarg.h> exists and should
700 * be included.
79072805 701 */
a0d0e21e 702#define I_STDARG /**/
703
704/* I_PWD:
705 * This symbol, if defined, indicates to the C program that it should
706 * include <pwd.h>.
707 */
708/* PWQUOTA:
709 * This symbol, if defined, indicates to the C program that struct passwd
710 * contains pw_quota.
711 */
712/* PWAGE:
713 * This symbol, if defined, indicates to the C program that struct passwd
714 * contains pw_age.
715 */
716/* PWCHANGE:
717 * This symbol, if defined, indicates to the C program that struct passwd
718 * contains pw_change.
719 */
720/* PWCLASS:
721 * This symbol, if defined, indicates to the C program that struct passwd
722 * contains pw_class.
723 */
724/* PWEXPIRE:
725 * This symbol, if defined, indicates to the C program that struct passwd
726 * contains pw_expire.
727 */
728/* PWCOMMENT:
729 * This symbol, if defined, indicates to the C program that struct passwd
730 * contains pw_comment.
731 */
732#undef I_PWD /**/
733#undef PWQUOTA /**/
734#undef PWAGE /**/
735#undef PWCHANGE /**/
736#undef PWCLASS /**/
737#undef PWEXPIRE /**/
748a9306 738#define PWCOMMENT /**/
79072805 739
2304df62 740/* I_STDDEF:
741 * This symbol, if defined, indicates that <stddef.h> exists and should
79072805 742 * be included.
743 */
2304df62 744#define I_STDDEF /**/
745
a0d0e21e 746/* I_STDLIB:
747* This symbol, if defined, indicates that <stdlib.h> exists and should
748* be included.
749*/
750#define I_STDLIB /**/
751
85e6fe83 752/* I_STRING:
753 * This symbol, if defined, indicates to the C program that it should
754 * include <string.h> (USG systems) instead of <strings.h> (BSD systems).
755 */
756#define I_STRING /**/
757
2304df62 758/* I_SYS_DIR:
759 * This symbol, if defined, indicates to the C program that it should
760 * include <sys/dir.h>.
761 */
a0d0e21e 762#undef I_SYS_DIR /**/
2304df62 763
764/* I_SYS_FILE:
765 * This symbol, if defined, indicates to the C program that it should
766 * include <sys/file.h> to get definition of R_OK and friends.
767 */
a0d0e21e 768#undef I_SYS_FILE /**/
79072805 769
2304df62 770/* I_SYS_IOCTL:
771 * This symbol, if defined, indicates that <sys/ioctl.h> exists and should
772 * be included. Otherwise, include <sgtty.h> or <termio.h>.
79072805 773 */
a0d0e21e 774#undef I_SYS_IOCTL /**/
775
2304df62 776/* I_SYS_NDIR:
777 * This symbol, if defined, indicates to the C program that it should
778 * include <sys/ndir.h>.
79072805 779 */
a0d0e21e 780#undef I_SYS_NDIR /**/
2304df62 781
782/* I_SYS_SELECT:
783 * This symbol, if defined, indicates to the C program that it should
784 * include <sys/select.h> in order to get definition of struct timeval.
785 */
a0d0e21e 786#undef I_SYS_SELECT /**/
787
e518068a 788/* I_DBM:
789 * This symbol, if defined, indicates that <dbm.h> exists and should
790 * be included.
791 */
792/* I_RPCSVC_DBM:
793 * This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
794 * should be included.
795 */
796#undef I_DBM /**/
797#undef I_RPCSVC_DBM /**/
798
40000a8c 799/* I_SYS_STAT:
800 * This symbol, if defined, indicates to the C program that it should
801 * include <sys/stat.h>.
802 */
803#define I_SYS_STAT /**/
a0d0e21e 804
805/* I_SYS_TIMES:
806 * This symbol, if defined, indicates to the C program that it should
807 * include <sys/times.h>.
808 */
809#undef I_SYS_TIMES /**/
810
40000a8c 811/* I_SYS_TYPES:
812 * This symbol, if defined, indicates to the C program that it should
813 * include <sys/types.h>.
814 */
815#define I_SYS_TYPES /**/
816
e518068a 817/* I_SYS_UN:
818 * This symbol, if defined, indicates to the C program that it should
819 * include <sys/un.h> to get UNIX domain socket definitions.
820 */
821#undef I_SYS_UN /**/
822
a0d0e21e 823/* I_TERMIO:
824 * This symbol, if defined, indicates that the program should include
825 * <termio.h> rather than <sgtty.h>. There are also differences in
826 * the ioctl() calls that depend on the value of this symbol.
827 */
828/* I_TERMIOS:
829 * This symbol, if defined, indicates that the program should include
830 * the POSIX termios.h rather than sgtty.h or termio.h.
831 * There are also differences in the ioctl() calls that depend on the
832 * value of this symbol.
833 */
834/* I_SGTTY:
835 * This symbol, if defined, indicates that the program should include
836 * <sgtty.h> rather than <termio.h>. There are also differences in
837 * the ioctl() calls that depend on the value of this symbol.
838 */
839#undef I_TERMIO /**/
840#undef I_SGTTY /**/
841#undef I_TERMIOS /**/
2304df62 842
843/* I_TIME:
844 * This symbol, if defined, indicates to the C program that it should
845 * include <time.h>.
79072805 846 */
2304df62 847/* I_SYS_TIME:
848 * This symbol, if defined, indicates to the C program that it should
849 * include <sys/time.h>.
79072805 850 */
85e6fe83 851/* I_SYS_TIME_KERNEL:
852 * This symbol, if defined, indicates to the C program that it should
853 * include <sys/time.h> with KERNEL defined.
854 */
a0d0e21e 855#define I_TIME /**/
856#undef I_SYS_TIME /**/
857#undef I_SYS_TIME_KERNEL /**/
85e6fe83 858
859/* I_UNISTD:
860 * This symbol, if defined, indicates to the C program that it should
861 * include <unistd.h>.
862 */
a0d0e21e 863#undef I_UNISTD /**/
79072805 864
2304df62 865/* I_UTIME:
79072805 866 * This symbol, if defined, indicates to the C program that it should
2304df62 867 * include <utime.h>.
79072805 868 */
a0d0e21e 869#undef I_UTIME /**/
870
2304df62 871/* I_VARARGS:
79072805 872 * This symbol, if defined, indicates to the C program that it should
2304df62 873 * include <varargs.h>.
79072805 874 */
a0d0e21e 875#undef I_VARARGS /**/
876
877
878/* I_VFORK:
879 * This symbol, if defined, indicates to the C program that it should
880 * include vfork.h.
881 */
882#undef I_VFORK /**/
79072805 883
a0d0e21e 884/* CAN_PROTOTYPE:
885 * If defined, this macro indicates that the C compiler can handle
886 * function prototypes.
79072805 887 */
a0d0e21e 888/* _:
889 * This macro is used to declare function parameters for folks who want
890 * to make declarations with prototypes using a different style than
891 * the above macros. Use double parentheses. For example:
892 *
893 * int main _((int argc, char *argv[]));
85e6fe83 894 */
a0d0e21e 895#define CAN_PROTOTYPE /**/
896#ifdef CAN_PROTOTYPE
897#define _(args) args /* config-skip */
898#else
899#define _(args) () /* config-skip */
900#endif
85e6fe83 901
2304df62 902/* RANDBITS:
903 * This symbol contains the number of bits of random number the rand()
904 * function produces. Usual values are 15, 16, and 31.
79072805 905 */
2304df62 906#define RANDBITS 31 /**/
907
a0d0e21e 908
909/* Select_fd_set_t:
910 * This symbol holds the type used for the 2nd, 3rd, and 4th
911 * arguments to select. Usually, this is 'fd_set *', if HAS_FD_SET
912 * is defined, and 'int *' otherwise. This is only useful if you
913 * have select(), of course.
79072805 914 */
e518068a 915#define Select_fd_set_t int * /**/
2304df62 916
2304df62 917/* STDCHAR:
918 * This symbol is defined to be the type of char used in stdio.h.
919 * It has the values "unsigned char" or "char".
79072805 920 */
a0d0e21e 921#define STDCHAR char /**/
79072805 922
16d20bd9 923/* UNLINK_ALL_VERSIONS:
924 * This symbol, if defined, indicates that the program should arrange
925 * to remove all versions of a file if unlink() is called.
85e6fe83 926 */
16d20bd9 927#undef UNLINK_ALL_VERSIONS /**/
928
a0d0e21e 929/* LOC_SED:
930 * This symbol holds the complete pathname to the sed program.
85e6fe83 931 */
a0d0e21e 932#define LOC_SED "_NLA0:" /**/
933
934/* BIN:
935 * This symbol holds the path of the bin directory where the package will
936 * be installed. Program must be prepared to deal with ~name substitution.
937 */
938#define BIN "/perl_root/000000" /**/
939
940/* HAS_ALARM:
941 * This symbol, if defined, indicates that the alarm routine is
942 * available.
943 */
944#define HAS_ALARM /**/
85e6fe83 945
e518068a 946/* HASATTRIBUTE:
947 * This symbol indicates the C compiler can check for function attributes,
948 * such as printf formats. This is normally only supported by GNU cc.
949 */
950#ifdef __GNUC__
951# define HASATTRIBUTE /*config-skip*/
952#else
953# undef HASATTRIBUTE /*config-skip*/
954#endif
955#ifndef HASATTRIBUTE
956#define __attribute__(_arg_)
957#endif
958
2304df62 959/* CASTI32:
960 * This symbol is defined if the C compiler can cast negative
961 * or large floating point numbers to 32-bit ints.
79072805 962 */
2304df62 963#define CASTI32 /**/
964
a0d0e21e 965/* HAS_CHOWN:
966 * This symbol, if defined, indicates that the chown routine is
967 * available.
968 */
969#define HAS_CHOWN /**/
970
971/* HAS_CHROOT:
972 * This symbol, if defined, indicates that the chroot routine is
973 * available.
974 */
975#undef HAS_CHROOT /**/
976
977/* HAS_CUSERID:
978 * This symbol, if defined, indicates that the cuserid routine is
979 * available to get character login names.
980 */
981#define HAS_CUSERID /**/
982
983/* HAS_DBL_DIG:
984 * This symbol, if defined, indicates that this system's <float.h>
985 * or <limits.h> defines the symbol DBL_DIG, which is the number
986 * of significant digits in a double precision number. If this
987 * symbol is not defined, a guess of 15 is usually pretty good.
988 */
989#define HAS_DBL_DIG /* */
990
991/* HAS_DIFFTIME:
992 * This symbol, if defined, indicates that the difftime routine is
993 * available.
994 */
995#define HAS_DIFFTIME /**/
996
997/* HAS_FORK:
998 * This symbol, if defined, indicates that the fork routine is
999 * available.
1000 */
1001/* VMS: In vmsish.h, fork is #defined to vfork. This kludge gets around
1002 * some obsolete code in pp.c, which should be fixed in its own right
1003 * sometime. - C. Bailey 26-Aug-1994
1004 */
1005#define HAS_FORK /**/
1006
1007/* HAS_GETLOGIN:
1008 * This symbol, if defined, indicates that the getlogin routine is
1009 * available.
1010 */
c07a80fd 1011#define HAS_GETLOGIN /**/
a0d0e21e 1012
1013/* HAS_GETPPID:
1014 * This symbol, if defined, indicates that the getppid routine is
1015 * available.
1016 */
1017#undef HAS_GETPPID /**/
1018
85e6fe83 1019/* HAS_HTONL:
1020 * This symbol, if defined, indicates that the htonl() routine (and
1021 * friends htons() ntohl() ntohs()) are available to do network
1022 * order byte swapping.
1023 */
1024/* HAS_HTONS:
1025 * This symbol, if defined, indicates that the htons() routine (and
1026 * friends htonl() ntohl() ntohs()) are available to do network
1027 * order byte swapping.
1028 */
1029/* HAS_NTOHL:
1030 * This symbol, if defined, indicates that the ntohl() routine (and
1031 * friends htonl() htons() ntohs()) are available to do network
1032 * order byte swapping.
1033 */
1034/* HAS_NTOHS:
1035 * This symbol, if defined, indicates that the ntohs() routine (and
1036 * friends htonl() htons() ntohl()) are available to do network
1037 * order byte swapping.
1038 */
a0d0e21e 1039#define HAS_HTONL /**/
1040#define HAS_HTONS /**/
1041#define HAS_NTOHL /**/
1042#define HAS_NTOHS /**/
1043
1044/* HAS_MBLEN:
1045 * This symbol, if defined, indicates that the mblen routine is available
1046 * to find the number of bytes in a multibye character.
1047 */
1048#undef HAS_MBLEN /**/
85e6fe83 1049
a0d0e21e 1050/* HAS_MKTIME:
1051 * This symbol, if defined, indicates that the mktime routine is
1052 * available.
79072805 1053 */
a0d0e21e 1054#undef HAS_MKTIME /**/
79072805 1055
a0d0e21e 1056/* HAS_NICE:
1057 * This symbol, if defined, indicates that the nice routine is
1058 * available.
85e6fe83 1059 */
a0d0e21e 1060#define HAS_NICE /**/
85e6fe83 1061
a0d0e21e 1062/* HAS_PAUSE:
1063 * This symbol, if defined, indicates that the pause routine is
1064 * available.
85e6fe83 1065 */
a0d0e21e 1066#define HAS_PAUSE /**/
85e6fe83 1067
a0d0e21e 1068/* HAS_PIPE:
1069 * This symbol, if defined, indicates that the pipe routine is
1070 * available.
85e6fe83 1071 */
a0d0e21e 1072#define HAS_PIPE /**/
85e6fe83 1073
a0d0e21e 1074/* HAS_READLINK:
1075 * This symbol, if defined, indicates that the readlink routine is
1076 * available.
85e6fe83 1077 */
a0d0e21e 1078#undef HAS_READLINK /**/
85e6fe83 1079
a0d0e21e 1080/* HAS_SETLINEBUF:
1081 * This symbol, if defined, indicates that the setlinebuf routine is
1082 * available to change stderr or stdout from block-buffered or unbuffered
1083 * to a line-buffered mode.
85e6fe83 1084 */
a0d0e21e 1085#undef HAS_SETLINEBUF /**/
85e6fe83 1086
a0d0e21e 1087/* HAS_STRCHR:
1088 * This symbol is defined to indicate that the strchr()/strrchr()
1089 * functions are available for string searching. If not, try the
1090 * index()/rindex() pair.
2304df62 1091 */
a0d0e21e 1092/* HAS_INDEX:
1093 * This symbol is defined to indicate that the index()/rindex()
1094 * functions are available for string searching.
1095 */
1096#define HAS_STRCHR /**/
1097#undef HAS_INDEX /**/
79072805 1098
a0d0e21e 1099/* HAS_STRCOLL:
1100 * This symbol, if defined, indicates that the strcoll routine is
1101 * available to compare strings using collating information.
85e6fe83 1102 */
a0d0e21e 1103#undef HAS_STRCOLL /**/
85e6fe83 1104
a0d0e21e 1105/* HAS_STRXFRM:
1106 * This symbol, if defined, indicates that the strxfrm() routine is
1107 * available to compare strings using collating information.
85e6fe83 1108 */
a0d0e21e 1109#undef HAS_STRXFRM /**/
85e6fe83 1110
a0d0e21e 1111/* HAS_TCGETPGRP:
1112 * This symbol, if defined, indicates that the tcgetpgrp routine is
1113 * available to get foreground process group ID.
2304df62 1114 */
a0d0e21e 1115#undef HAS_TCGETPGRP /**/
1116
1117/* HAS_TCSETPGRP:
1118 * This symbol, if defined, indicates that the tcsetpgrp routine is
1119 * available to set foreground process group ID.
2304df62 1120 */
a0d0e21e 1121#undef HAS_TCSETPGRP /**/
1122
1123/* HAS_TIMES:
1124 * This symbol, if defined, indicates that the times() routine exists.
1125 * Note that this became obsolete on some systems (SUNOS), which now
1126 * use getrusage(). It may be necessary to include <sys/times.h>.
2304df62 1127 */
a0d0e21e 1128#define HAS_TIMES /**/
79072805 1129
a0d0e21e 1130/* HAS_TZNAME:
1131 * This symbol, if defined, indicates that the tzname[] array is
1132 * available to access timezone names.
85e6fe83 1133 */
a0d0e21e 1134#undef HAS_TZNAME /**/
85e6fe83 1135
a0d0e21e 1136/* HAS_UMASK:
1137 * This symbol, if defined, indicates that the umask routine is
1138 * available to get the file creation mask.
79072805 1139 */
a0d0e21e 1140#define HAS_UMASK /**/
1141
a0d0e21e 1142/* HAS_WCTOMB:
1143 * This symbol, if defined, indicates that the wctomb routine is available
1144 * to covert a wide character to a multibyte.
1145 */
1146#undef HAS_WCTOMB /**/
1147
1148/* Fpos_t:
1149 * This symbol holds the type used to declare file positions in libc.
1150 * It can be fpos_t, long, uint, etc... It may be necessary to include
1151 * <sys/types.h> to get any typedef'ed information.
1152 */
1153#define Fpos_t fpos_t /* File position type */
79072805 1154
2304df62 1155/* Gid_t:
1156 * This symbol holds the return type of getgid() and the type of
1157 * argument to setrgid() and related functions. Typically,
1158 * it is the type of group ids in the kernel.
1159 * It can be int, ushort, uid_t, etc... It may be necessary to include
1160 * <sys/types.h> to get any typedef'ed information.
79072805 1161 */
e518068a 1162#if defined(__DECC) && defined(__DECC_VER) && (__DECC_VER >= 500000)
1163# define Gid_t gid_t /* config-skip */
1164#else
1165# define Gid_t unsigned int /* config-skip */
1166#endif
79072805 1167
85e6fe83 1168/* I_DLFCN:
1169 * This symbol, if defined, indicates that <dlfcn.h> exists and should
1170 * be included.
1171 */
a0d0e21e 1172#undef I_DLFCN /**/
85e6fe83 1173
a0d0e21e 1174/* I_FLOAT:
85e6fe83 1175 * This symbol, if defined, indicates to the C program that it should
a0d0e21e 1176 * include <float.h> to get definition of symbols like DBL_MAX or
1177 * DBL_MIN, i.e. machine dependent floating point values.
85e6fe83 1178 */
a0d0e21e 1179#define I_FLOAT /**/
85e6fe83 1180
a0d0e21e 1181/* I_MATH:
1182 * This symbol, if defined, indicates to the C program that it should
1183 * include <math.h>.
85e6fe83 1184 */
a0d0e21e 1185#define I_MATH /**/
85e6fe83 1186
e518068a 1187/* I_LOCALE:
1188 * This symbol, if defined, indicates to the C program that it should
1189 * include <locale.h>.
1190 */
1191#undef I_LOCALE /**/
1192
748a9306 1193/* I_SYS_STAT:
1194 * This symbol, if defined, indicates to the C program that it should
1195 * include <sys/stat.h>.
1196 */
1197#define I_SYS_STAT /**/
1198
e518068a 1199/* INTSIZE:
1200 * This symbol contains the size of an int, so that the C preprocessor
1201 * can make decisions based on it.
1202 */
1203#define INTSIZE 4 /**/
748a9306 1204
a0d0e21e 1205/* Off_t:
1206 * This symbol holds the type used to declare offsets in the kernel.
1207 * It can be int, long, off_t, etc... It may be necessary to include
1208 * <sys/types.h> to get any typedef'ed information.
85e6fe83 1209 */
a0d0e21e 1210#define Off_t int /* <offset> type */
e518068a 1211
1212/* Free_t:
1213 * This variable contains the return type of free(). It is usually
1214 * void, but occasionally int.
1215 */
a0d0e21e 1216/* Malloc_t:
1217 * This symbol is the type of pointer returned by malloc and realloc.
85e6fe83 1218 */
a0d0e21e 1219#define Malloc_t void * /**/
e518068a 1220#define Free_t void /**/
a0d0e21e 1221
1222/* MYMALLOC:
1223 * This symbol, if defined, indicates that we're using our own malloc.
85e6fe83 1224 */
a0d0e21e 1225#undef MYMALLOC /**/
1226
e518068a 1227/* SIG_NAME:
1228 * This symbol contains a list of signal names in order. This is intended
1229 * to be used as a static array initialization, like this:
1230 * char *sig_name[] = { SIG_NAME };
1231 * The signals in the list are separated with commas, and each signal
1232 * is surrounded by double quotes. There is no leading SIG in the signal
1233 * name, i.e. SIGQUIT is known as "QUIT". Duplicates are allowed.
1234 * The signal number for sig_name[i] is stored in sig_num[i].
1235 * The last element is 0 to terminate the list with a NULL. This
1236 * corresponds to the 0 at the end of the sig_num list.
1237 * See SIG_NUM and SIG_MAX.
1238 */
1239#define SIG_NAME "ZERO","HUP","INT","QUIT","ILL","TRAP","IOT","EMT","FPE",\
1240 "KILL","BUS","SEGV","SYS","PIPE","ALRM","TERM",\
1241 "ABRT","USR1","USR2",0
1242
1243/* SIG_NUM:
1244 * This symbol contains a list of signal number, in the same order as the
1245 * SIG_NAME list. It is suitable for static array initialization, as in:
1246 * int sig_num[] = { SIG_NUM };
1247 * The signals in the list are separated with commas, and the indices
1248 * within that list and the SIG_NAME list match, so it's easy to compute
1249 * the signal name from a number or vice versa at the price of a small
1250 * dynamic linear lookup. Duplicates are allowed, so you can't assume
1251 * sig_num[i] == i. Instead, the signal number corresponding to
1252 * sig_name[i] is sig_number[i].
1253 * The last element is 0, corresponding to the 0 at the end of
1254 * the sig_name list.
1255 */
1256#define SIG_NUM 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,6,16,17,0 /**/
1257
a0d0e21e 1258/* Mode_t:
1259 * This symbol holds the type used to declare file modes
1260 * for systems calls. It is usually mode_t, but may be
1261 * int or unsigned short. It may be necessary to include <sys/types.h>
1262 * to get any typedef'ed information.
85e6fe83 1263 */
a0d0e21e 1264#define Mode_t unsigned int /* file mode parameter for system calls*/
1265
1266/* SSize_t:
1267 * This symbol holds the type used by functions that return
1268 * a count of bytes or an error condition. It must be a signed type.
1269 * It is usually ssize_t, but may be long or int, etc.
1270 * It may be necessary to include <sys/types.h> or <unistd.h>
1271 * to get any typedef'ed information.
1272 * We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
85e6fe83 1273 */
a0d0e21e 1274#define SSize_t int /* signed count of bytes */
1275
e518068a 1276/* VAL_O_NONBLOCK:
1277 * This symbol is to be used during open() or fcntl(F_SETFL) to turn on
1278 * non-blocking I/O for the file descriptor. Note that there is no way
1279 * back, i.e. you cannot turn it blocking again this way. If you wish to
1280 * alternatively switch between blocking and non-blocking, use the
1281 * ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
1282 */
1283/* VAL_EAGAIN:
1284 * This symbol holds the errno error code set by read() when no data was
1285 * present on the non-blocking file descriptor.
1286 */
1287/* RD_NODATA:
1288 * This symbol holds the return code from read() when no data is present
1289 * on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
1290 * not defined, then you can't distinguish between no data and EOF by
1291 * issuing a read(). You'll have to find another way to tell for sure!
1292 */
1293/* EOF_NONBLOCK:
1294 * This symbol, if defined, indicates to the C program that a read() on
1295 * a non-blocking file descriptor will return 0 on EOF, and not the value
1296 * held in RD_NODATA (-1 usually, in that case!).
1297 */
1298#define VAL_O_NONBLOCK
1299#define VAL_EAGAIN
1300#define RD_NODATA
1301#undef EOF_NONBLOCK
1302
1303/* OLDARCHLIB_EXP:
1304 * This symbol contains the ~name expanded version of OLDARCHLIB, to be
1305 * used in programs that are not prepared to deal with ~ expansion at
1306 * run-time.
1307 */
482b294c 1308#ifdef __ALPHA
1309#define OLDARCHLIB_EXP "/perl_root/lib/VMS_AXP" /* config-skip */
1310#else
1311#define OLDARCHLIB_EXP "/perl_root/lib/VMS_VAX" /* config-skip */
1312#endif
a0d0e21e 1313
fed7345c 1314/* PRIVLIB_EXP:
a0d0e21e 1315 * This symbol contains the name of the private library for this package.
1316 * The library is private in the sense that it needn't be in anyone's
1317 * execution path, but it should be accessible by the world. The program
1318 * should be prepared to do ~ expansion.
85e6fe83 1319 */
fed7345c 1320#define PRIVLIB_EXP "/perl_root/lib" /**/
a0d0e21e 1321
e518068a 1322/* SITELIB_EXP:
1323 * This symbol contains the ~name expanded version of SITELIB, to be used
1324 * in programs that are not prepared to deal with ~ expansion at run-time.
1325 */
482b294c 1326#define SITELIB_EXP "/perl_root/lib/site_perl" /**/
e518068a 1327
1328/* SITEARCH_EXP:
1329 * This symbol contains the ~name expanded version of SITEARCH, to be used
1330 * in programs that are not prepared to deal with ~ expansion at run-time.
1331 */
482b294c 1332#ifdef __ALPHA
1333#define SITEARCH_EXP "/perl_root/lib/site_perl/VMS_AXP" /* config-skip */
1334#else
1335#define SITEARCH_EXP "/perl_root/lib/site_perl/VMS_VAX" /* config-skip */
1336#endif
e518068a 1337
a0d0e21e 1338/* SCRIPTDIR:
1339 * This symbol holds the name of the directory in which the user wants
1340 * to put publicly executable scripts for the package in question. It
1341 * is often a directory that is mounted across diverse architectures.
1342 * Programs must be prepared to deal with ~name expansion.
85e6fe83 1343 */
a0d0e21e 1344#define SCRIPTDIR "/perl_root/script" /**/
85e6fe83 1345
a0d0e21e 1346/* Size_t:
1347 * This symbol holds the type used to declare length parameters
1348 * for string functions. It is usually size_t, but may be
1349 * unsigned long, int, etc. It may be necessary to include
1350 * <sys/types.h> to get any typedef'ed information.
85e6fe83 1351 */
a0d0e21e 1352#define Size_t size_t /* length paramater for string functions */
1353
1354/* Uid_t:
1355 * This symbol holds the type used to declare user ids in the kernel.
1356 * It can be int, ushort, uid_t, etc... It may be necessary to include
1357 * <sys/types.h> to get any typedef'ed information.
85e6fe83 1358 */
a0d0e21e 1359#define Uid_t unsigned int /* UID type */
85e6fe83 1360
a0d0e21e 1361/* I_SYS_PARAM:
85e6fe83 1362 * This symbol, if defined, indicates to the C program that it should
a0d0e21e 1363 * include <sys/param.h>.
85e6fe83 1364 */
a0d0e21e 1365#undef I_SYS_PARAM
85e6fe83 1366
a0d0e21e 1367/* GNUC_ATTRIBUTE_CHECK:
1368 * This symbol indicates the C compiler can check for function attributes,
1369 * such as printf formats.
85e6fe83 1370 */
a0d0e21e 1371/* VMS: true for gcc, undef for VAXC/DECC. This is handled in Descrip.MMS
1372 * C. Bailey 26-Aug-1994
1373 */
c07a80fd 1374/*#define GNUC_ATTRIBUTE_CHECK /**/
85e6fe83 1375
a0d0e21e 1376/* VOID_CLOSEDIR:
1377 * This symbol, if defined, indicates that the closedir() routine
1378 * does not return a value.
79072805 1379 */
a0d0e21e 1380#define VOID_CLOSEDIR /**/
79072805 1381
a0d0e21e 1382/* HAS_DLERROR:
1383 * This symbol, if defined, indicates that the dlerror routine is
1384 * available.
1385*/
1386#undef HAS_DLERROR /**/
1387
1388/* DLSYM_NEEDS_UNDERSCORE:
1389 * This symbol, if defined, indicates that we need to prepend an
1390 * underscore to the symbol name before calling dlsym(). This only
1391 * makes sense if you *have* dlsym, which we will presume is the
1392 * case if you're using dl_dlopen.xs.
85e6fe83 1393 */
a0d0e21e 1394#undef DLSYM_NEEDS_UNDERSCORE /* */
85e6fe83 1395
a0d0e21e 1396/* SETUID_SCRIPTS_ARE_SECURE_NOW:
1397 * This symbol, if defined, indicates that setuid scripts are secure.
79072805 1398 */
a0d0e21e 1399/* DOSUID:
1400 * This symbol, if defined, indicates that the C program should
1401 * check the script that it is executing for setuid/setgid bits, and
1402 * attempt to emulate setuid/setgid on systems that have disabled
1403 * setuid #! scripts because the kernel can't do it securely.
1404 * It is up to the package designer to make sure that this emulation
1405 * is done securely. Among other things, it should do an fstat on
1406 * the script it just opened to make sure it really is a setuid/setgid
1407 * script, it should make sure the arguments passed correspond exactly
1408 * to the argument on the #! line, and it should not trust any
1409 * subprocesses to which it must pass the filename rather than the
1410 * file descriptor of the script to be executed.
1411 */
1412#undef SETUID_SCRIPTS_ARE_SECURE_NOW /**/
1413#undef DOSUID /**/
79072805 1414
a0d0e21e 1415/* HAS_ISASCII:
1416 * This manifest constant lets the C program know that the
1417 * isascii is available.
1418 */
1419#define HAS_ISASCII /**/
85e6fe83 1420
a0d0e21e 1421/* HAS_LOCALECONV:
1422 * This symbol, if defined, indicates that the localeconv routine is
1423 * available for numeric and monetary formatting conventions.
1424 */
1425#undef HAS_LOCALECONV /**/
2304df62 1426
a0d0e21e 1427/* HAS_MKFIFO:
1428 * This symbol, if defined, indicates that the mkfifo routine is
1429 * available.
1430 */
1431#undef HAS_MKFIFO /**/
2304df62 1432
a0d0e21e 1433/* HAS_PATHCONF:
1434 * This symbol, if defined, indicates that pathconf() is available
1435 * to determine file-system related limits and options associated
1436 * with a given filename.
1437 */
1438/* HAS_FPATHCONF:
1439 * This symbol, if defined, indicates that pathconf() is available
1440 * to determine file-system related limits and options associated
1441 * with a given open file descriptor.
1442 */
1443#undef HAS_PATHCONF /**/
1444#undef HAS_FPATHCONF /**/
85e6fe83 1445
a0d0e21e 1446/* HAS_SAFE_BCOPY:
1447 * This symbol, if defined, indicates that the bcopy routine is available
1448 * to copy potentially overlapping memory blocks. Otherwise you should
1449 * probably use memmove() or memcpy(). If neither is defined, roll your
1450 * own version.
1451 */
1452#undef HAS_SAFE_BCOPY /**/
85e6fe83 1453
a0d0e21e 1454/* HAS_SAFE_MEMCPY:
1455 * This symbol, if defined, indicates that the memcpy routine is available
1456 * to copy potentially overlapping memory blocks. Otherwise you should
1457 * probably use memmove() or memcpy(). If neither is defined, roll your
1458 * own version.
1459 */
1460#define HAS_SAFE_MEMCPY /**/
85e6fe83 1461
a0d0e21e 1462/* HAS_SETPGRP:
1463 * This symbol, if defined, indicates that the setpgrp routine is
1464 * available to set the current process group.
1465 */
1466/* USE_BSDPGRP:
1467 * This symbol, if defined, indicates that the BSD notion of process
1468 * group is to be used. For instance, you have to say setpgrp(pid, pgrp)
1469 * instead of the USG setpgrp().
1470 */
1471#undef HAS_SETPGRP /**/
1472#undef USE_BSDPGRP /**/
85e6fe83 1473
a0d0e21e 1474/* HAS_SYSCONF:
1475 * This symbol, if defined, indicates that sysconf() is available
1476 * to determine system related limits and options.
1477 */
1478#undef HAS_SYSCONF /**/
85e6fe83 1479
e518068a 1480/* Gconvert:
1481 * This preprocessor macro is defined to convert a floating point
1482 * number to a string without a trailing decimal point. This
1483 * emulates the behavior of sprintf("%g"), but is sometimes much more
1484 * efficient. If gconvert() is not available, but gcvt() drops the
1485 * trailing decimal point, then gcvt() is used. If all else fails,
1486 * a macro using sprintf("%g") is used. Arguments for the Gconvert
1487 * macro are: value, number of digits, whether trailing zeros should
1488 * be retained, and the output buffer.
1489 * Possible values are:
1490 * d_Gconvert='gconvert((x),(n),(t),(b))'
1491 * d_Gconvert='gcvt((x),(n),(b))'
1492 * d_Gconvert='sprintf((b),"%.*g",(n),(x))'
1493 * The last two assume trailing zeros should not be kept.
1494 */
1495#define Gconvert(x,n,t,b) my_gconvert(x,n,t,b)
1496
a0d0e21e 1497/* USE_DYNAMIC_LOADING:
1498 * This symbol, if defined, indicates that dynamic loading of
1499 * some sort is available.
1500 */
1501#define USE_DYNAMIC_LOADING /**/
2304df62 1502
c07a80fd 1503/* STARTPERL:
1504 * This variable contains the string to put in front of a perl
1505 * script to make sure (one hopes) that it runs with perl and not
1506 * some shell.
1507 */
1508#define STARTPERL "" /**/
1509
e518068a 1510/* VOIDFLAGS:
1511 * This symbol indicates how much support of the void type is given by this
1512 * compiler. What various bits mean:
1513 *
1514 * 1 = supports declaration of void
1515 * 2 = supports arrays of pointers to functions returning void
1516 * 4 = supports comparisons between pointers to void functions and
1517 * addresses of void functions
1518 * 8 = suports declaration of generic void pointers
1519 *
1520 * The package designer should define VOIDUSED to indicate the requirements
1521 * of the package. This can be done either by #defining VOIDUSED before
1522 * including config.h, or by defining defvoidused in Myinit.U. If the
1523 * latter approach is taken, only those flags will be tested. If the
1524 * level of void support necessary is not present, defines void to int.
1525 */
1526#ifndef VOIDUSED
1527#define VOIDUSED 15
1528#endif
1529#define VOIDFLAGS 15
1530#if (VOIDFLAGS & VOIDUSED) != VOIDUSED
1531#define void int /* is void to be avoided? */ /* config-skip */
1532#define M_VOID /* Xenix strikes again */ /* config-skip */
1533#endif
1534
a0d0e21e 1535#ifdef VMS_DO_SOCKETS
1536/* HAS_SOCKET:
1537 * This symbol, if defined, indicates that the BSD socket interface is
1538 * supported.
1539 */
1540/* HAS_SOCKETPAIR:
1541 * This symbol, if defined, indicates that the BSD socketpair() call is
1542 * supported.
1543 */
1544#define HAS_SOCKET /**/ /* config-skip */
1545#undef HAS_SOCKETPAIR /**/ /* config-skip */
85e6fe83 1546
a0d0e21e 1547/* HAS_GETHOSTENT:
1548 * This symbol, if defined, indicates that the gethostent routine is
1549 * available to lookup host names in some data base or other.
1550 */
1551#define HAS_GETHOSTENT /**/ /* config-skip */
2304df62 1552
a0d0e21e 1553/* VMS: In general, TCP/IP header files should be included from
1554 * sockadapt.h, instead of here, in order to keep the TCP/IP code
1555 * together as much as possible.
1556 */
1557/* I_NETINET_IN:
1558 * This symbol, if defined, indicates to the C program that it should
1559 * include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
1560 */
1561#undef I_NETINET_IN /**/ /* config-skip */
2304df62 1562
a0d0e21e 1563/* Groups_t:
1564 * This symbol holds the type used for the second argument to
1565 * getgroups(). Usually, this is the same of gidtype, but
1566 * sometimes it isn't. It can be int, ushort, uid_t, etc...
1567 * It may be necessary to include <sys/types.h> to get any
1568 * typedef'ed information. This is only required if you have
1569 * getgroups().
1570 */
1571#ifdef HAS_GETGROUPS
1572#define Groups_t unsigned int /* Type for 2nd arg to getgroups() */ /* config-skip */
85e6fe83 1573#endif
1574
e518068a 1575/* DB_Prefix_t:
1576 * This symbol contains the type of the prefix structure element
1577 * in the <db.h> header file. In older versions of DB, it was
1578 * int, while in newer ones it is u_int32_t.
1579 */
1580/* DB_Hash_t:
1581 * This symbol contains the type of the prefix structure element
1582 * in the <db.h> header file. In older versions of DB, it was
1583 * int, while in newer ones it is size_t.
1584 */
1585#undef DB_Hash_t /**/
1586#undef DB_Prefix_t /**/
1587
a0d0e21e 1588/* I_NET_ERRNO:
1589 * This symbol, if defined, indicates that <net/errno.h> exists and
1590 * should be included.
1591*/
1592#undef I_NET_ERRNO /**/ /* config-skip */
85e6fe83 1593
e518068a 1594/* HAS_SELECT:
1595 * This symbol, if defined, indicates that the select routine is
1596 * available to select active file descriptors. If the timeout field
1597 * is used, <sys/time.h> may need to be included.
1598 */
1599#define HAS_SELECT /**/ /* config-skip */
1600
a0d0e21e 1601#else /* VMS_DO_SOCKETS */
1602
1603#undef HAS_SOCKET /**/ /* config-skip */
1604#undef HAS_SOCKETPAIR /**/ /* config-skip */
1605#undef HAS_GETHOSTENT /**/ /* config-skip */
1606#undef I_NETINET_IN /**/ /* config-skip */
1607#undef I_NET_ERRNO /**/ /* config-skip */
e518068a 1608#undef HAS_SELECT /**/ /* config-skip */
a0d0e21e 1609
1610#endif /* !VMS_DO_SOCKETS */
79072805 1611
1612#endif