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