cdf900a9cdd3e2eaf5682802ba79f18dc1e82c15
[p5sagit/p5-mst-13.2.git] / vms / config.vms
1 /*
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.
9  *
10  * config.h for VMS
11  * Version: 5.2.b1
12  */                 
13
14 /* Configuration time:  4-Dec-1995 17:00
15  * Configured by: Charles Bailey  bailey@genetics.upenn.edu
16  * Target system: VMS
17  */
18
19 #ifndef _config_h_
20 #define _config_h_
21
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
49 /* MEM_ALIGNBYTES:
50  *      This symbol contains the number of bytes required to align a
51  *      double. Usual values are 2, 4 and 8.
52  */
53 #define MEM_ALIGNBYTES 8        /**/
54
55 /* ARCHLIB_EXP:
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
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.
63  */
64 #ifdef __ALPHA
65 #define ARCHLIB_EXP "/perl_root/lib/VMS_AXP"  /* config-skip */
66 #else
67 #define ARCHLIB_EXP "/perl_root/lib/VMS_VAX" /* config-skip */
68 #endif
69
70 /* CPPSTDIN:
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
73  *      output.  Typical value of "cc -E" or "/lib/cpp", but it can also
74  *      call a wrapper. See CPPRUN.
75  */
76 /* CPPMINUS:
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  */
82 #define CPPSTDIN "cc/noobj/preprocess=sys$output sys$input"
83 #define CPPMINUS ""
84
85 /* HAS_BCMP:
86  *      This symbol is defined if the bcmp() routine is available to
87  *      compare blocks of memory.
88  */
89 #undef HAS_BCMP /**/
90
91 /* HAS_BCOPY:
92  *      This symbol is defined if the bcopy() routine is available to
93  *      copy blocks of memory.
94  */
95 #undef HAS_BCOPY        /**/
96
97 /* HAS_BZERO:
98  *      This symbol is defined if the bzero() routine is available to
99  *      set a memory block to 0.
100  */
101 #undef HAS_BZERO        /**/
102
103 /* CASTNEGFLOAT:
104  *      This symbol is defined if the C compiler can cast negative
105  *      numbers to unsigned longs, ints and shorts.
106  */
107 /* CASTFLAGS:
108  *      This symbol contains flags that say what difficulties the compiler
109  *      has casting odd floating values to unsigned long:
110  *              0 = ok
111  *              1 = couldn't cast < 0
112  *              2 = couldn't cast >= 0x80000000
113  */
114 #define CASTNEGFLOAT            /**/
115 #define CASTFLAGS 0             /**/
116
117 /* HAS_CHSIZE:
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  */
121 #undef  HAS_CHSIZE              /**/
122
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  */
129 #define HASCONST        /**/
130 #ifndef HASCONST
131 #define const
132 #endif
133
134 /* HAS_CRYPT:
135  *      This symbol, if defined, indicates that the crypt routine is available
136  *      to encrypt passwords and the like.
137  */
138 #define HAS_CRYPT               /**/
139
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
146 /* CSH:
147  *      This symbol, if defined, indicates that the C-shell exists.
148  *      If defined, contains the full pathname of csh.
149  */
150 #undef CSH              /**/
151
152 /* HAS_DUP2:
153  *      This symbol, if defined, indicates that the dup2 routine is
154  *      available to duplicate file descriptors.
155  */
156 #define HAS_DUP2        /**/
157
158 /* HAS_FCHMOD:
159  *      This symbol, if defined, indicates that the fchmod routine is available
160  *      to change mode of opened files.  If unavailable, use chmod().
161  */
162 #undef HAS_FCHMOD               /**/
163
164 /* HAS_FCHOWN:
165  *      This symbol, if defined, indicates that the fchown routine is available
166  *      to change ownership of opened files.  If unavailable, use chown().
167  */
168 #undef HAS_FCHOWN               /**/
169
170 /* HAS_FCNTL:
171  *      This symbol, if defined, indicates to the C program that
172  *      the fcntl() function exists.
173  */
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     /**/
181
182 /* FLEXFILENAMES:
183  *      This symbol, if defined, indicates that the system supports filenames
184  *      longer than 14 characters.
185  */
186 #define FLEXFILENAMES           /**/
187
188 /* HAS_FLOCK:
189  *      This symbol, if defined, indicates that the flock routine is
190  *      available to do file locking.
191  */
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     /**/
199
200 /* HAS_GETGROUPS:
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  */
205 #undef HAS_GETGROUPS            /**/
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  */
212 #undef HAS_UNAME                /**/
213
214 /* HAS_GETPGRP:
215  *      This symbol, if defined, indicates that the getpgrp routine is
216  *      available to get the current process group.
217  */
218 #undef HAS_GETPGRP              /**/
219
220 /* HAS_GETPGRP2:
221  *      This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
222  *      routine is available to get the current process group.
223  */
224 #undef HAS_GETPGRP2             /**/
225
226 /* HAS_GETPRIORITY:
227  *      This symbol, if defined, indicates that the getpriority routine is
228  *      available to get a process's priority.
229  */
230 #undef HAS_GETPRIORITY          /**/
231
232 /* HAS_KILLPG:
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  */
237 #undef HAS_KILLPG       /**/
238
239 /* HAS_LINK:
240  *      This symbol, if defined, indicates that the link routine is
241  *      available to create hard links.
242  */
243 #undef HAS_LINK /**/
244
245 /* HAS_LSTAT:
246  *      This symbol, if defined, indicates that the lstat routine is
247  *      available to do file stats on symbolic links.
248  */
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               /**/
268
269 /* HAS_MEMCMP:
270  *      This symbol, if defined, indicates that the memcmp routine is available
271  *      to compare blocks of memory.
272  */
273 #define HAS_MEMCMP      /**/
274
275 /* HAS_MEMCPY:
276  *      This symbol, if defined, indicates that the memcpy routine is available
277  *      to copy blocks of memory.
278  */
279 #define HAS_MEMCPY      /**/
280
281 /* HAS_MEMMOVE:
282  *      This symbol, if defined, indicates that the memmove routine is available
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.
286  */
287 #define HAS_MEMMOVE     /**/
288
289 /* HAS_MEMSET:
290  *      This symbol, if defined, indicates that the memset routine is available
291  *      to set blocks of memory.
292  */
293 #define HAS_MEMSET      /**/
294
295 /* HAS_MKDIR:
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  */
300 #define HAS_MKDIR               /**/
301
302 /* HAS_MSG:
303  *      This symbol, if defined, indicates that the entire msg*(2) library is
304  *      supported (IPC mechanism based on message queues).
305  */
306 #undef HAS_MSG          /**/
307
308 /* HAS_OPEN3:
309  *      This manifest constant lets the C program know that the three
310  *      argument form of open(2) is available.
311  */
312 #define HAS_OPEN3               /**/
313
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
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.
324  */
325 #define HAS_READDIR             /**/
326
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.
330  */
331 #define HAS_SEEKDIR             /**/
332
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.
336  */
337 #define HAS_TELLDIR             /**/
338
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.
342  */
343 #define HAS_REWINDDIR           /**/
344
345 /* HAS_RENAME:
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  */
350 #define HAS_RENAME      /**/
351
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.
356  */
357 #define HAS_RMDIR               /**/
358
359 /* HAS_SEM:
360  *      This symbol, if defined, indicates that the entire sem*(2) library is
361  *      supported.
362  */
363 #undef HAS_SEM          /**/
364
365 /* HAS_SETEGID:
366  *      This symbol, if defined, indicates that the setegid routine is available
367  *      to change the effective gid of the current program.
368  */
369 #undef HAS_SETEGID              /**/
370
371 /* HAS_SETEUID:
372  *      This symbol, if defined, indicates that the seteuid routine is available
373  *      to change the effective uid of the current program.
374  */
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    /**/
382
383 /* HAS_SETPGID:
384  *      This symbol, if defined, indicates that the setpgid routine is
385  *      available to set process group ID.
386  */
387 #undef HAS_SETPGID      /**/
388
389 /* HAS_SETPGRP2:
390  *      This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
391  *      routine is available to set the current process group.
392  */
393 #undef HAS_SETPGRP2             /**/
394
395 /* HAS_SETPRIORITY:
396  *      This symbol, if defined, indicates that the setpriority routine is
397  *      available to set a process's priority.
398  */
399 #undef HAS_SETPRIORITY          /**/
400
401 /* HAS_SETREGID:
402  *      This symbol, if defined, indicates that the setregid routine is
403  *      available to change the real and effective gid of the current
404  *      process.
405  */
406 /* HAS_SETRESGID:
407  *      This symbol, if defined, indicates that the setresgid routine is
408  *      available to change the real, effective and saved gid of the current
409  *      process.
410  */
411 #undef HAS_SETREGID             /**/
412 #undef HAS_SETRESGID            /**/
413
414 /* HAS_SETREUID:
415  *      This symbol, if defined, indicates that the setreuid routine is
416  *      available to change the real and effective uid of the current
417  *      process.
418  */
419 /* HAS_SETRESUID:
420  *      This symbol, if defined, indicates that the setresuid routine is
421  *      available to change the real, effective and saved uid of the current
422  *      process.
423  */
424 #undef HAS_SETREUID             /**/
425 #undef HAS_SETRESUID            /**/
426
427 /* HAS_SETRGID:
428  *      This symbol, if defined, indicates that the setrgid routine is available
429  *      to change the real gid of the current program.
430  */
431 #undef HAS_SETRGID              /**/
432
433 /* HAS_SETRUID:
434  *      This symbol, if defined, indicates that the setruid routine is available
435  *      to change the real uid of the current program.
436  */
437 #undef HAS_SETRUID              /**/
438
439 /* HAS_SETSID:
440  *      This symbol, if defined, indicates that the setsid routine is
441  *      available to set the process group ID.
442  */
443 #undef HAS_SETSID       /**/
444
445 /* HAS_SHM:
446  *      This symbol, if defined, indicates that the entire shm*(2) library is
447  *      supported.
448  */
449 #undef HAS_SHM          /**/
450
451 /* Shmat_t:
452  *      This symbol holds the return type of the shmat() system call.
453  *      Usually set to 'void *' or 'char *'.
454  */
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.
461  */
462 #undef Shmat_t  /**/ /* config-skip */
463 #undef HAS_SHMAT_PROTOTYPE      /**/
464
465 /* HAS_SIGACTION:
466  *      This symbol, if defined, indicates that Vr4's sigaction() routine
467  *      is available.
468  */
469 #undef HAS_SIGACTION    /**/
470
471 /* USE_STAT_BLOCKS:
472  *      This symbol is defined if this system has a stat structure declaring
473  *      st_blksize and st_blocks.
474  */
475 #undef USE_STAT_BLOCKS  /**/
476
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  */
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
496  * and non-socket filehandles.
497  */
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  */
506 /* STDIO_PTR_LVALUE:
507  *      This symbol is defined if the FILE_ptr macro can be used as an
508  *      lvalue.
509  */
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  */
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
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.
528  */
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  */
535 #undef FILE_base
536 #undef FILE_bufsiz
537
538 /* USE_STRUCT_COPY:
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  */
543 #define USE_STRUCT_COPY /**/
544
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
568 /* HAS_SYMLINK:
569  *      This symbol, if defined, indicates that the symlink routine is available
570  *      to create symbolic links.
571  */
572 #undef HAS_SYMLINK      /**/
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  */
578 #undef HAS_SYSCALL      /**/
579
580 /* HAS_SYSTEM:
581  *      This symbol, if defined, indicates that the system routine is
582  *      available to issue a shell command.
583  */
584 #define HAS_SYSTEM      /**/
585
586 /* 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  */
591 #define Time_t time_t           /* Time type */
592
593 /* HAS_TRUNCATE:
594  *      This symbol, if defined, indicates that the truncate routine is
595  *      available to truncate files.
596  */
597 #undef HAS_TRUNCATE     /**/
598
599
600 /* HAS_VFORK:
601  *      This symbol, if defined, indicates that vfork() exists.
602  */
603 #define HAS_VFORK       /**/
604
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
613 /* HASVOLATILE:
614  *      This symbol, if defined, indicates that this C compiler knows about
615  *      the volatile declaration.
616  */
617 #define HASVOLATILE     /**/
618 #ifndef HASVOLATILE
619 #define volatile /* config-skip */
620 #endif
621
622 /* HAS_VPRINTF:
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  */
627 /* USE_CHAR_VSPRINTF:
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  */
633 #define HAS_VPRINTF     /**/
634 #undef USE_CHAR_VSPRINTF        /**/
635
636 /* HAS_WAIT4:
637  *      This symbol, if defined, indicates that wait4() exists.
638  */
639 #undef HAS_WAIT4        /**/
640
641 /* HAS_WAITPID:
642  *      This symbol, if defined, indicates that the waitpid routine is
643  *      available to wait for child process.
644  */
645 #define HAS_WAITPID     /**/
646
647 /* HAS_WCSTOMBS:
648  *      This symbol, if defined, indicates that the wcstombs routine is
649  *      available to convert wide character strings to multibyte strings.
650  */
651 #undef HAS_WCSTOMBS     /**/
652
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>.
658  */
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  */
664 #undef I_DIRENT         /**/
665 #define DIRNAMLEN       /**/
666 #define Direntry_t struct dirent
667
668 /* I_FCNTL:
669  *      This manifest constant tells the C program to include <fcntl.h>.
670  */
671 #undef I_FCNTL  /**/
672
673 /* I_GRP:
674  *      This symbol, if defined, indicates to the C program that it should
675  *      include <grp.h>.
676  */
677 #undef I_GRP            /**/
678
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.
683  */
684 #undef I_LIMITS         /**/
685
686 /* I_MEMORY:
687  *      This symbol, if defined, indicates to the C program that it should
688  *      include <memory.h>.
689  */
690 #undef I_MEMORY         /**/
691
692 /* I_NDBM:
693  *      This symbol, if defined, indicates that ndbm.h exists and should
694  *      be included.
695  */
696 #undef I_NDBM   /**/
697
698 /* I_STDARG:
699  *      This symbol, if defined, indicates that <stdarg.h> exists and should
700  *      be included.
701  */
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 /**/
738 #define PWCOMMENT       /**/
739
740 /* I_STDDEF:
741  *      This symbol, if defined, indicates that <stddef.h> exists and should
742  *      be included.
743  */
744 #define I_STDDEF        /**/
745
746 /* I_STDLIB:
747 *       This symbol, if defined, indicates that <stdlib.h> exists and should
748 *       be included.
749 */
750 #define I_STDLIB                /**/
751
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
758 /* I_SYS_DIR:
759  *      This symbol, if defined, indicates to the C program that it should
760  *      include <sys/dir.h>.
761  */
762 #undef I_SYS_DIR                /**/
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  */
768 #undef I_SYS_FILE               /**/
769
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>.
773  */
774 #undef  I_SYS_IOCTL             /**/
775
776 /* I_SYS_NDIR:
777  *      This symbol, if defined, indicates to the C program that it should
778  *      include <sys/ndir.h>.
779  */
780 #undef I_SYS_NDIR       /**/
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  */
786 #undef I_SYS_SELECT     /**/
787
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
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              /**/
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
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
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
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                /**/
842
843 /* I_TIME:
844  *      This symbol, if defined, indicates to the C program that it should
845  *      include <time.h>.
846  */
847 /* I_SYS_TIME:
848  *      This symbol, if defined, indicates to the C program that it should
849  *      include <sys/time.h>.
850  */
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  */
855 #define I_TIME          /**/
856 #undef I_SYS_TIME               /**/
857 #undef I_SYS_TIME_KERNEL                /**/
858
859 /* I_UNISTD:
860  *      This symbol, if defined, indicates to the C program that it should
861  *      include <unistd.h>.
862  */
863 #undef I_UNISTD         /**/
864
865 /* I_UTIME:
866  *      This symbol, if defined, indicates to the C program that it should
867  *      include <utime.h>.
868  */
869 #undef I_UTIME          /**/
870
871 /* I_VARARGS:
872  *      This symbol, if defined, indicates to the C program that it should
873  *      include <varargs.h>.
874  */
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  /**/
883
884 /* CAN_PROTOTYPE:
885  *      If defined, this macro indicates that the C compiler can handle
886  *      function prototypes.
887  */
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[]));
894  */
895 #define CAN_PROTOTYPE   /**/
896 #ifdef CAN_PROTOTYPE
897 #define _(args) args  /* config-skip */
898 #else
899 #define _(args) ()    /* config-skip */
900 #endif
901
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.
905  */
906 #define RANDBITS 31             /**/
907
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.
914  */
915 #define Select_fd_set_t         int *   /**/
916
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".
920  */
921 #define STDCHAR char    /**/
922
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.
926  */
927 #undef UNLINK_ALL_VERSIONS              /**/
928
929 /* LOC_SED:
930  *      This symbol holds the complete pathname to the sed program.
931  */
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               /**/
945
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
959 /* CASTI32:
960  *      This symbol is defined if the C compiler can cast negative
961  *      or large floating point numbers to 32-bit ints.
962  */
963 #define CASTI32         /**/
964
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  */
1011 #define HAS_GETLOGIN            /**/
1012
1013 /* HAS_GETPPID:
1014  *      This symbol, if defined, indicates that the getppid routine is
1015  *      available.
1016  */
1017 #undef HAS_GETPPID              /**/
1018
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  */
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                /**/
1049
1050 /* HAS_MKTIME:
1051  *      This symbol, if defined, indicates that the mktime routine is
1052  *      available.
1053  */
1054 #undef HAS_MKTIME               /**/
1055
1056 /* HAS_NICE:
1057  *      This symbol, if defined, indicates that the nice routine is
1058  *      available.
1059  */
1060 #define HAS_NICE                /**/
1061
1062 /* HAS_PAUSE:
1063  *      This symbol, if defined, indicates that the pause routine is
1064  *      available.
1065  */
1066 #define HAS_PAUSE               /**/
1067
1068 /* HAS_PIPE:
1069  *      This symbol, if defined, indicates that the pipe routine is
1070  *      available.
1071  */
1072 #define HAS_PIPE                /**/
1073
1074 /* HAS_READLINK:
1075  *      This symbol, if defined, indicates that the readlink routine is
1076  *      available.
1077  */
1078 #undef HAS_READLINK             /**/
1079
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.
1084  */
1085 #undef HAS_SETLINEBUF           /**/
1086
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.
1091  */
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        /**/
1098
1099 /* HAS_STRCOLL:
1100  *      This symbol, if defined, indicates that the strcoll routine is
1101  *      available to compare strings using collating information.
1102  */
1103 #undef HAS_STRCOLL      /**/
1104
1105 /* HAS_STRXFRM:
1106  *      This symbol, if defined, indicates that the strxfrm() routine is
1107  *      available to compare strings using collating information.
1108  */
1109 #undef HAS_STRXFRM      /**/
1110
1111 /* HAS_TCGETPGRP:
1112  *      This symbol, if defined, indicates that the tcgetpgrp routine is
1113  *      available to get foreground process group ID.
1114  */
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.
1120  */
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>.
1127  */
1128 #define HAS_TIMES               /**/
1129
1130 /* HAS_TZNAME:
1131  *      This symbol, if defined, indicates that the tzname[] array is
1132  *      available to access timezone names.
1133  */
1134 #undef HAS_TZNAME               /**/
1135
1136 /* HAS_UMASK:
1137  *      This symbol, if defined, indicates that the umask routine is
1138  *      available to get the file creation mask.
1139  */
1140 #define HAS_UMASK               /**/
1141
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 */
1154
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.
1161  */
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
1167
1168 /* I_DLFCN:
1169  *      This symbol, if defined, indicates that <dlfcn.h> exists and should
1170  *      be included.
1171  */
1172 #undef I_DLFCN          /**/
1173
1174 /* I_FLOAT:
1175  *      This symbol, if defined, indicates to the C program that it should
1176  *      include <float.h> to get definition of symbols like DBL_MAX or
1177  *      DBL_MIN, i.e. machine dependent floating point values.
1178  */
1179 #define I_FLOAT         /**/
1180
1181 /* I_MATH:
1182  *      This symbol, if defined, indicates to the C program that it should
1183  *      include <math.h>.
1184  */
1185 #define I_MATH          /**/
1186
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
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
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               /**/
1204
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.
1209  */
1210 #define Off_t int               /* <offset> type */
1211
1212 /* Free_t:
1213  *      This variable contains the return type of free().  It is usually
1214  * void, but occasionally int.
1215  */
1216 /* Malloc_t:
1217  *      This symbol is the type of pointer returned by malloc and realloc.
1218  */
1219 #define Malloc_t void *                 /**/
1220 #define Free_t void                     /**/
1221
1222 /* MYMALLOC:
1223  *      This symbol, if defined, indicates that we're using our own malloc.
1224  */
1225 #undef MYMALLOC                 /**/
1226
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
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.
1263  */
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).
1273  */
1274 #define SSize_t int      /* signed count of bytes */
1275
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  */
1308 #define OLDARCHLIB_EXP "/perl_root/lib"         /**/
1309
1310 /* PRIVLIB_EXP:
1311  *      This symbol contains the name of the private library for this package.
1312  *      The library is private in the sense that it needn't be in anyone's
1313  *      execution path, but it should be accessible by the world.  The program
1314  *      should be prepared to do ~ expansion.
1315  */
1316 #define PRIVLIB_EXP "/perl_root/lib"            /**/
1317
1318 /* SITELIB_EXP:
1319  *      This symbol contains the ~name expanded version of SITELIB, to be used
1320  *      in programs that are not prepared to deal with ~ expansion at run-time.
1321  */
1322 #undef SITELIB_EXP              /**/
1323
1324 /* SITEARCH_EXP:
1325  *      This symbol contains the ~name expanded version of SITEARCH, to be used
1326  *      in programs that are not prepared to deal with ~ expansion at run-time.
1327  */
1328 #undef SITEARCH_EXP             /**/
1329
1330 /* SCRIPTDIR:
1331  *      This symbol holds the name of the directory in which the user wants
1332  *      to put publicly executable scripts for the package in question.  It
1333  *      is often a directory that is mounted across diverse architectures.
1334  *      Programs must be prepared to deal with ~name expansion.
1335  */
1336 #define SCRIPTDIR "/perl_root/script"   /**/
1337
1338 /* Size_t:
1339  *      This symbol holds the type used to declare length parameters
1340  *      for string functions.  It is usually size_t, but may be
1341  *      unsigned long, int, etc.  It may be necessary to include
1342  *      <sys/types.h> to get any typedef'ed information.
1343  */
1344 #define Size_t size_t    /* length paramater for string functions */
1345
1346 /* Uid_t:
1347  *      This symbol holds the type used to declare user ids in the kernel.
1348  *      It can be int, ushort, uid_t, etc... It may be necessary to include
1349  *      <sys/types.h> to get any typedef'ed information.
1350  */
1351 #define Uid_t unsigned int              /* UID type */
1352
1353 /* I_SYS_PARAM:
1354  *      This symbol, if defined, indicates to the C program that it should
1355  *      include <sys/param.h>.
1356  */
1357 #undef I_SYS_PARAM
1358
1359 /* GNUC_ATTRIBUTE_CHECK:
1360  *      This symbol indicates the C compiler can check for function attributes,
1361  *      such as printf formats.
1362  */
1363 /* VMS: true for gcc, undef for VAXC/DECC.  This is handled in Descrip.MMS
1364  * C. Bailey  26-Aug-1994
1365  */
1366 /*#define       GNUC_ATTRIBUTE_CHECK    /**/
1367
1368 /* VOID_CLOSEDIR:
1369  *      This symbol, if defined, indicates that the closedir() routine
1370  *      does not return a value.
1371  */
1372 #define VOID_CLOSEDIR           /**/
1373
1374 /* HAS_DLERROR:
1375  *      This symbol, if defined, indicates that the dlerror routine is
1376  *      available.
1377 */
1378 #undef HAS_DLERROR              /**/
1379
1380 /* DLSYM_NEEDS_UNDERSCORE:
1381  *      This symbol, if defined, indicates that we need to prepend an
1382  *      underscore to the symbol name before calling dlsym().  This only
1383  *      makes sense if you *have* dlsym, which we will presume is the
1384  *      case if you're using dl_dlopen.xs.
1385  */
1386 #undef  DLSYM_NEEDS_UNDERSCORE  /* */
1387
1388 /* SETUID_SCRIPTS_ARE_SECURE_NOW:
1389  *      This symbol, if defined, indicates that setuid scripts are secure.
1390  */
1391 /* DOSUID:
1392  *      This symbol, if defined, indicates that the C program should
1393  *      check the script that it is executing for setuid/setgid bits, and
1394  *      attempt to emulate setuid/setgid on systems that have disabled
1395  *      setuid #! scripts because the kernel can't do it securely.
1396  *      It is up to the package designer to make sure that this emulation
1397  *      is done securely.  Among other things, it should do an fstat on
1398  *      the script it just opened to make sure it really is a setuid/setgid
1399  *      script, it should make sure the arguments passed correspond exactly
1400  *      to the argument on the #! line, and it should not trust any
1401  *      subprocesses to which it must pass the filename rather than the
1402  *      file descriptor of the script to be executed.
1403  */
1404 #undef SETUID_SCRIPTS_ARE_SECURE_NOW    /**/
1405 #undef DOSUID           /**/
1406
1407 /* HAS_ISASCII:
1408  *      This manifest constant lets the C program know that the
1409  *      isascii is available.
1410  */
1411 #define HAS_ISASCII             /**/
1412
1413 /* HAS_LOCALECONV:
1414  *      This symbol, if defined, indicates that the localeconv routine is
1415  *      available for numeric and monetary formatting conventions.
1416  */
1417 #undef HAS_LOCALECONV   /**/
1418
1419 /* HAS_MKFIFO:
1420  *      This symbol, if defined, indicates that the mkfifo routine is
1421  *      available.
1422  */
1423 #undef HAS_MKFIFO               /**/
1424
1425 /* HAS_PATHCONF:
1426  *      This symbol, if defined, indicates that pathconf() is available
1427  *      to determine file-system related limits and options associated
1428  *      with a given filename.
1429  */
1430 /* HAS_FPATHCONF:
1431  *      This symbol, if defined, indicates that pathconf() is available
1432  *      to determine file-system related limits and options associated
1433  *      with a given open file descriptor.
1434  */
1435 #undef HAS_PATHCONF       /**/
1436 #undef HAS_FPATHCONF     /**/
1437
1438 /* HAS_SAFE_BCOPY:
1439  *      This symbol, if defined, indicates that the bcopy routine is available
1440  *      to copy potentially overlapping memory blocks. Otherwise you should
1441  *      probably use memmove() or memcpy(). If neither is defined, roll your
1442  *      own version.
1443  */
1444 #undef HAS_SAFE_BCOPY   /**/
1445
1446 /* HAS_SAFE_MEMCPY:
1447  *      This symbol, if defined, indicates that the memcpy 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 #define HAS_SAFE_MEMCPY /**/
1453
1454 /* HAS_SETPGRP:
1455  *      This symbol, if defined, indicates that the setpgrp routine is
1456  *      available to set the current process group.
1457  */
1458 /* USE_BSDPGRP:
1459  *      This symbol, if defined, indicates that the BSD notion of process
1460  *      group is to be used. For instance, you have to say setpgrp(pid, pgrp)
1461  *      instead of the USG setpgrp().
1462  */
1463 #undef HAS_SETPGRP              /**/
1464 #undef USE_BSDPGRP              /**/
1465
1466 /* HAS_SYSCONF:
1467  *      This symbol, if defined, indicates that sysconf() is available
1468  *      to determine system related limits and options.
1469  */
1470 #undef HAS_SYSCONF     /**/
1471
1472 /* Gconvert:
1473  *      This preprocessor macro is defined to convert a floating point
1474  *      number to a string without a trailing decimal point.  This
1475  *      emulates the behavior of sprintf("%g"), but is sometimes much more
1476  *      efficient.  If gconvert() is not available, but gcvt() drops the
1477  *      trailing decimal point, then gcvt() is used.  If all else fails,
1478  *      a macro using sprintf("%g") is used.  Arguments for the Gconvert
1479  *      macro are: value, number of digits, whether trailing zeros should
1480  *      be retained, and the output buffer.
1481  *      Possible values are:
1482  *              d_Gconvert='gconvert((x),(n),(t),(b))'
1483  *              d_Gconvert='gcvt((x),(n),(b))'
1484  *              d_Gconvert='sprintf((b),"%.*g",(n),(x))'
1485  *      The last two assume trailing zeros should not be kept.
1486  */
1487 #define Gconvert(x,n,t,b) my_gconvert(x,n,t,b)
1488
1489 /* USE_DYNAMIC_LOADING:
1490  *      This symbol, if defined, indicates that dynamic loading of
1491  *      some sort is available.
1492  */
1493 #define USE_DYNAMIC_LOADING             /**/
1494
1495 /* STARTPERL:
1496  *      This variable contains the string to put in front of a perl
1497  *      script to make sure (one hopes) that it runs with perl and not
1498  *      some shell.
1499  */
1500 #define STARTPERL ""            /**/
1501
1502 /* VOIDFLAGS:
1503  *      This symbol indicates how much support of the void type is given by this
1504  *      compiler.  What various bits mean:
1505  *
1506  *          1 = supports declaration of void
1507  *          2 = supports arrays of pointers to functions returning void
1508  *          4 = supports comparisons between pointers to void functions and
1509  *                  addresses of void functions
1510  *          8 = suports declaration of generic void pointers
1511  *
1512  *      The package designer should define VOIDUSED to indicate the requirements
1513  *      of the package.  This can be done either by #defining VOIDUSED before
1514  *      including config.h, or by defining defvoidused in Myinit.U.  If the
1515  *      latter approach is taken, only those flags will be tested.  If the
1516  *      level of void support necessary is not present, defines void to int.
1517  */
1518 #ifndef VOIDUSED
1519 #define VOIDUSED 15
1520 #endif
1521 #define VOIDFLAGS 15
1522 #if (VOIDFLAGS & VOIDUSED) != VOIDUSED
1523 #define void int                /* is void to be avoided? */  /* config-skip */
1524 #define M_VOID                  /* Xenix strikes again */     /* config-skip */
1525 #endif
1526
1527 #ifdef VMS_DO_SOCKETS
1528 /* HAS_SOCKET:
1529  *      This symbol, if defined, indicates that the BSD socket interface is
1530  *      supported.
1531  */
1532 /* HAS_SOCKETPAIR:
1533  *      This symbol, if defined, indicates that the BSD socketpair() call is
1534  *      supported.
1535  */
1536 #define HAS_SOCKET              /**/          /* config-skip */
1537 #undef HAS_SOCKETPAIR   /**/          /* config-skip */
1538
1539 /* HAS_GETHOSTENT:
1540  *      This symbol, if defined, indicates that the gethostent routine is
1541  *      available to lookup host names in some data base or other.
1542  */
1543 #define HAS_GETHOSTENT          /**/      /* config-skip */
1544
1545 /* VMS: In general, TCP/IP header files should be included from
1546  * sockadapt.h, instead of here, in order to keep the TCP/IP code
1547  * together as much as possible.
1548  */
1549 /* I_NETINET_IN:
1550  *      This symbol, if defined, indicates to the C program that it should
1551  *      include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
1552  */
1553 #undef I_NETINET_IN     /**/              /* config-skip */
1554
1555 /* Groups_t:
1556  *      This symbol holds the type used for the second argument to
1557  *      getgroups().  Usually, this is the same of gidtype, but
1558  *      sometimes it isn't.  It can be int, ushort, uid_t, etc... 
1559  *      It may be necessary to include <sys/types.h> to get any 
1560  *      typedef'ed information.  This is only required if you have
1561  *      getgroups().
1562  */
1563 #ifdef HAS_GETGROUPS
1564 #define Groups_t unsigned int   /* Type for 2nd arg to getgroups() */  /* config-skip */
1565 #endif
1566
1567 /* DB_Prefix_t:
1568  *      This symbol contains the type of the prefix structure element
1569  *      in the <db.h> header file.  In older versions of DB, it was
1570  *      int, while in newer ones it is u_int32_t.
1571  */
1572 /* DB_Hash_t:
1573  *      This symbol contains the type of the prefix structure element
1574  *      in the <db.h> header file.  In older versions of DB, it was
1575  *      int, while in newer ones it is size_t.
1576  */
1577 #undef DB_Hash_t        /**/
1578 #undef DB_Prefix_t      /**/
1579
1580 /* I_NET_ERRNO:
1581  *      This symbol, if defined, indicates that <net/errno.h> exists and 
1582  *      should be included.
1583 */
1584 #undef I_NET_ERRNO              /**/          /* config-skip */
1585
1586 /* HAS_SELECT:
1587  *      This symbol, if defined, indicates that the select routine is
1588  *      available to select active file descriptors. If the timeout field
1589  *      is used, <sys/time.h> may need to be included.
1590  */
1591 #define HAS_SELECT      /**/              /* config-skip */
1592
1593 #else /* VMS_DO_SOCKETS */
1594
1595 #undef HAS_SOCKET               /**/          /* config-skip */
1596 #undef HAS_SOCKETPAIR   /**/          /* config-skip */
1597 #undef HAS_GETHOSTENT           /**/      /* config-skip */
1598 #undef I_NETINET_IN     /**/              /* config-skip */
1599 #undef I_NET_ERRNO              /**/          /* config-skip */
1600 #undef HAS_SELECT       /**/              /* config-skip */
1601
1602 #endif /* !VMS_DO_SOCKETS */
1603
1604 #endif