1d3a13d209a42d2b80442da88db10a44ab7b8d41
[p5sagit/p5-mst-13.2.git] / config_h.SH
1 case $CONFIG in
2 '')
3         if test -f config.sh; then TOP=.;
4         elif test -f ../config.sh; then TOP=..;
5         elif test -f ../../config.sh; then TOP=../..;
6         elif test -f ../../../config.sh; then TOP=../../..;
7         elif test -f ../../../../config.sh; then TOP=../../../..;
8         else
9                 echo "Can't find config.sh."; exit 1
10         fi
11         . $TOP/config.sh
12         ;;
13 esac
14 case "$0" in
15 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
16 esac
17 echo "Extracting config.h (with variable substitutions)"
18 sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un-def!#undef!'
19 /*
20  * This file was produced by running the config_h.SH script, which
21  * gets its values from config.sh, which is generally produced by
22  * running Configure.
23  *
24  * Feel free to modify any of this as the need arises.  Note, however,
25  * that running config_h.SH again will wipe out any changes you've made.
26  * For a more permanent change edit config.sh and rerun config_h.SH.
27  *
28  * \$Id: Config_h.U,v 3.0.1.5 1997/02/28 14:57:43 ram Exp $
29  */
30
31 /*
32  * Package name      : $package
33  * Source directory  : $src
34  * Configuration time: $cf_time
35  * Configured by     : $cf_by
36  * Target system     : $myuname
37  */
38
39 #ifndef _config_h_
40 #define _config_h_
41
42 /* LOC_SED:
43  *      This symbol holds the complete pathname to the sed program.
44  */
45 #define LOC_SED         "$full_sed"     /**/
46
47 /* BIN:
48  *      This symbol holds the path of the bin directory where the package will
49  *      be installed. Program must be prepared to deal with ~name substitution.
50  */
51 /* BIN_EXP:
52  *      This symbol is the filename expanded version of the BIN symbol, for
53  *      programs that do not want to deal with that at run-time.
54  */
55 #define BIN "$bin"      /**/
56 #define BIN_EXP "$binexp"       /**/
57
58 /* CPPSTDIN:
59  *      This symbol contains the first part of the string which will invoke
60  *      the C preprocessor on the standard input and produce to standard
61  *      output.  Typical value of "cc -E" or "/lib/cpp", but it can also
62  *      call a wrapper. See CPPRUN.
63  */
64 /* CPPMINUS:
65  *      This symbol contains the second part of the string which will invoke
66  *      the C preprocessor on the standard input and produce to standard
67  *      output.  This symbol will have the value "-" if CPPSTDIN needs a minus
68  *      to specify standard input, otherwise the value is "".
69  */
70 #define CPPSTDIN "$cppstdin"
71 #define CPPMINUS "$cppminus"
72
73 /* HAS_ALARM:
74  *      This symbol, if defined, indicates that the alarm routine is
75  *      available.
76  */
77 #$d_alarm HAS_ALARM             /**/
78
79 /* HASATTRIBUTE:
80  *      This symbol indicates the C compiler can check for function attributes,
81  *      such as printf formats. This is normally only supported by GNU cc.
82  */
83 #$d_attribut HASATTRIBUTE       /**/
84 #ifndef HASATTRIBUTE
85 #define __attribute__(_arg_)
86 #endif
87
88 /* HAS_BCMP:
89  *      This symbol is defined if the bcmp() routine is available to
90  *      compare blocks of memory.
91  */
92 #$d_bcmp HAS_BCMP       /**/
93
94 /* HAS_BCOPY:
95  *      This symbol is defined if the bcopy() routine is available to
96  *      copy blocks of memory.
97  */
98 #$d_bcopy HAS_BCOPY     /**/
99
100 /* HAS_BZERO:
101  *      This symbol is defined if the bzero() routine is available to
102  *      set a memory block to 0.
103  */
104 #$d_bzero HAS_BZERO     /**/
105
106 /* HAS_CHOWN:
107  *      This symbol, if defined, indicates that the chown routine is
108  *      available.
109  */
110 #$d_chown HAS_CHOWN             /**/
111
112 /* HAS_CHROOT:
113  *      This symbol, if defined, indicates that the chroot routine is
114  *      available.
115  */
116 #$d_chroot HAS_CHROOT           /**/
117
118 /* HAS_CHSIZE:
119  *      This symbol, if defined, indicates that the chsize routine is available
120  *      to truncate files.  You might need a -lx to get this routine.
121  */
122 #$d_chsize      HAS_CHSIZE              /**/
123
124 /* HASCONST:
125  *      This symbol, if defined, indicates that this C compiler knows about
126  *      the const type. There is no need to actually test for that symbol
127  *      within your programs. The mere use of the "const" keyword will
128  *      trigger the necessary tests.
129  */
130 #$d_const HASCONST      /**/
131 #ifndef HASCONST
132 #define const
133 #endif
134
135 /* HAS_CRYPT:
136  *      This symbol, if defined, indicates that the crypt routine is available
137  *      to encrypt passwords and the like.
138  */
139 #$d_crypt HAS_CRYPT             /**/
140
141 /* HAS_CUSERID:
142  *      This symbol, if defined, indicates that the cuserid routine is
143  *      available to get character login names.
144  */
145 #$d_cuserid HAS_CUSERID         /**/
146
147 /* HAS_DBL_DIG:
148  *      This symbol, if defined, indicates that this system's <float.h>
149  *      or <limits.h> defines the symbol DBL_DIG, which is the number
150  *      of significant digits in a double precision number.  If this
151  *      symbol is not defined, a guess of 15 is usually pretty good.
152  */
153 #$d_dbl_dig HAS_DBL_DIG         /* */
154
155 /* HAS_DIFFTIME:
156  *      This symbol, if defined, indicates that the difftime routine is
157  *      available.
158  */
159 #$d_difftime HAS_DIFFTIME               /**/
160
161 /* HAS_DLERROR:
162  *      This symbol, if defined, indicates that the dlerror routine is
163  *      available to return a string describing the last error that
164  *      occurred from a call to dlopen(), dlclose() or dlsym().
165  */
166 #$d_dlerror HAS_DLERROR /**/
167
168 /* SETUID_SCRIPTS_ARE_SECURE_NOW:
169  *      This symbol, if defined, indicates that the bug that prevents
170  *      setuid scripts from being secure is not present in this kernel.
171  */
172 /* DOSUID:
173  *      This symbol, if defined, indicates that the C program should
174  *      check the script that it is executing for setuid/setgid bits, and
175  *      attempt to emulate setuid/setgid on systems that have disabled
176  *      setuid #! scripts because the kernel can't do it securely.
177  *      It is up to the package designer to make sure that this emulation
178  *      is done securely.  Among other things, it should do an fstat on
179  *      the script it just opened to make sure it really is a setuid/setgid
180  *      script, it should make sure the arguments passed correspond exactly
181  *      to the argument on the #! line, and it should not trust any
182  *      subprocesses to which it must pass the filename rather than the
183  *      file descriptor of the script to be executed.
184  */
185 #$d_suidsafe SETUID_SCRIPTS_ARE_SECURE_NOW      /**/
186 #$d_dosuid DOSUID               /**/
187
188 /* HAS_DUP2:
189  *      This symbol, if defined, indicates that the dup2 routine is
190  *      available to duplicate file descriptors.
191  */
192 #$d_dup2 HAS_DUP2       /**/
193
194 /* HAS_FCHMOD:
195  *      This symbol, if defined, indicates that the fchmod routine is available
196  *      to change mode of opened files.  If unavailable, use chmod().
197  */
198 #$d_fchmod HAS_FCHMOD           /**/
199
200 /* HAS_FCHOWN:
201  *      This symbol, if defined, indicates that the fchown routine is available
202  *      to change ownership of opened files.  If unavailable, use chown().
203  */
204 #$d_fchown HAS_FCHOWN           /**/
205
206 /* HAS_FCNTL:
207  *      This symbol, if defined, indicates to the C program that
208  *      the fcntl() function exists.
209  */
210 #$d_fcntl HAS_FCNTL             /**/
211
212 /* HAS_FGETPOS:
213  *      This symbol, if defined, indicates that the fgetpos routine is
214  *      available to get the file position indicator, similar to ftell().
215  */
216 #$d_fgetpos HAS_FGETPOS /**/
217
218 /* FLEXFILENAMES:
219  *      This symbol, if defined, indicates that the system supports filenames
220  *      longer than 14 characters.
221  */
222 #$d_flexfnam    FLEXFILENAMES           /**/
223
224 /* HAS_FLOCK:
225  *      This symbol, if defined, indicates that the flock routine is
226  *      available to do file locking.
227  */
228 #$d_flock HAS_FLOCK             /**/
229
230 /* HAS_FORK:
231  *      This symbol, if defined, indicates that the fork routine is
232  *      available.
233  */
234 #$d_fork HAS_FORK               /**/
235
236 /* HAS_FSETPOS:
237  *      This symbol, if defined, indicates that the fsetpos routine is
238  *      available to set the file position indicator, similar to fseek().
239  */
240 #$d_fsetpos HAS_FSETPOS /**/
241
242 /* HAS_GETTIMEOFDAY:
243  *      This symbol, if defined, indicates that the gettimeofday() system
244  *      call is available for a sub-second accuracy clock. Usually, the file
245  *      <sys/resource.h> needs to be included (see I_SYS_RESOURCE).
246  *      The type "Timeval" should be used to refer to "struct timeval".
247  */
248 #$d_gettimeod HAS_GETTIMEOFDAY  /**/
249 #ifdef HAS_GETTIMEOFDAY
250 #define Timeval struct timeval  /* Structure used by gettimeofday() */
251 #endif
252
253 /* HAS_GETGROUPS:
254  *      This symbol, if defined, indicates that the getgroups() routine is
255  *      available to get the list of process groups.  If unavailable, multiple
256  *      groups are probably not supported.
257  */
258 #$d_getgrps HAS_GETGROUPS               /**/
259
260 /* HAS_UNAME:
261  *      This symbol, if defined, indicates that the C program may use the
262  *      uname() routine to derive the host name.  See also HAS_GETHOSTNAME
263  *      and PHOSTNAME.
264  */
265 #$d_uname HAS_UNAME             /**/
266
267 /* HAS_GETLOGIN:
268  *      This symbol, if defined, indicates that the getlogin routine is
269  *      available to get the login name.
270  */
271 #$d_getlogin HAS_GETLOGIN               /**/
272
273 /* HAS_GETPGID:
274  *      This symbol, if defined, indicates to the C program that 
275  *      the getpgid(pid) function is available to get the
276  *      process group id.
277  */
278 #$d_getpgid HAS_GETPGID         /**/
279
280 /* HAS_GETPGRP:
281  *      This symbol, if defined, indicates that the getpgrp routine is
282  *      available to get the current process group.
283  */
284 /* USE_BSD_GETPGRP:
285  *      This symbol, if defined, indicates that getpgrp needs one
286  *      arguments whereas USG one needs none.
287  */
288 #$d_getpgrp HAS_GETPGRP         /**/
289 #$d_bsdgetpgrp USE_BSD_GETPGRP  /**/
290
291 /* HAS_GETPGRP2:
292  *      This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
293  *      routine is available to get the current process group.
294  */
295 #$d_getpgrp2 HAS_GETPGRP2               /**/
296
297 /* HAS_GETPPID:
298  *      This symbol, if defined, indicates that the getppid routine is
299  *      available to get the parent process ID.
300  */
301 #$d_getppid HAS_GETPPID         /**/
302
303 /* HAS_GETPRIORITY:
304  *      This symbol, if defined, indicates that the getpriority routine is
305  *      available to get a process's priority.
306  */
307 #$d_getprior HAS_GETPRIORITY            /**/
308
309 /* HAS_HTONL:
310  *      This symbol, if defined, indicates that the htonl() routine (and
311  *      friends htons() ntohl() ntohs()) are available to do network
312  *      order byte swapping.
313  */
314 /* HAS_HTONS:
315  *      This symbol, if defined, indicates that the htons() routine (and
316  *      friends htonl() ntohl() ntohs()) are available to do network
317  *      order byte swapping.
318  */
319 /* HAS_NTOHL:
320  *      This symbol, if defined, indicates that the ntohl() routine (and
321  *      friends htonl() htons() ntohs()) are available to do network
322  *      order byte swapping.
323  */
324 /* HAS_NTOHS:
325  *      This symbol, if defined, indicates that the ntohs() routine (and
326  *      friends htonl() htons() ntohl()) are available to do network
327  *      order byte swapping.
328  */
329 #$d_htonl HAS_HTONL             /**/
330 #$d_htonl HAS_HTONS             /**/
331 #$d_htonl HAS_NTOHL             /**/
332 #$d_htonl HAS_NTOHS             /**/
333
334 /* HAS_INET_ATON:
335  *      This symbol, if defined, indicates to the C program that the
336  *      inet_aton() function is available to parse IP address "dotted-quad"
337  *      strings.
338  */
339 #$d_inetaton HAS_INET_ATON              /**/
340
341 /* HAS_KILLPG:
342  *      This symbol, if defined, indicates that the killpg routine is available
343  *      to kill process groups.  If unavailable, you probably should use kill
344  *      with a negative process number.
345  */
346 #$d_killpg HAS_KILLPG   /**/
347
348 /* HAS_LINK:
349  *      This symbol, if defined, indicates that the link routine is
350  *      available to create hard links.
351  */
352 #$d_link HAS_LINK       /**/
353
354 /* HAS_LOCALECONV:
355  *      This symbol, if defined, indicates that the localeconv routine is
356  *      available for numeric and monetary formatting conventions.
357  */
358 #$d_locconv HAS_LOCALECONV      /**/
359
360 /* HAS_LOCKF:
361  *      This symbol, if defined, indicates that the lockf routine is
362  *      available to do file locking.
363  */
364 #$d_lockf HAS_LOCKF             /**/
365
366 /* HAS_LSTAT:
367  *      This symbol, if defined, indicates that the lstat routine is
368  *      available to do file stats on symbolic links.
369  */
370 #$d_lstat HAS_LSTAT             /**/
371
372 /* HAS_MBLEN:
373  *      This symbol, if defined, indicates that the mblen routine is available
374  *      to find the number of bytes in a multibye character.
375  */
376 #$d_mblen HAS_MBLEN             /**/
377
378 /* HAS_MBSTOWCS:
379  *      This symbol, if defined, indicates that the mbstowcs routine is
380  *      available to covert a multibyte string into a wide character string.
381  */
382 #$d_mbstowcs    HAS_MBSTOWCS            /**/
383
384 /* HAS_MBTOWC:
385  *      This symbol, if defined, indicates that the mbtowc routine is available
386  *      to covert a multibyte to a wide character.
387  */
388 #$d_mbtowc HAS_MBTOWC           /**/
389
390 /* HAS_MEMCMP:
391  *      This symbol, if defined, indicates that the memcmp routine is available
392  *      to compare blocks of memory.
393  */
394 #$d_memcmp HAS_MEMCMP   /**/
395
396 /* HAS_MEMCPY:
397  *      This symbol, if defined, indicates that the memcpy routine is available
398  *      to copy blocks of memory.
399  */
400 #$d_memcpy HAS_MEMCPY   /**/
401
402 /* HAS_MEMMOVE:
403  *      This symbol, if defined, indicates that the memmove routine is available
404  *      to copy potentially overlapping blocks of memory. This should be used
405  *      only when HAS_SAFE_BCOPY is not defined. If neither is there, roll your
406  *      own version.
407  */
408 #$d_memmove HAS_MEMMOVE /**/
409
410 /* HAS_MEMSET:
411  *      This symbol, if defined, indicates that the memset routine is available
412  *      to set blocks of memory.
413  */
414 #$d_memset HAS_MEMSET   /**/
415
416 /* HAS_MKDIR:
417  *      This symbol, if defined, indicates that the mkdir routine is available
418  *      to create directories.  Otherwise you should fork off a new process to
419  *      exec /bin/mkdir.
420  */
421 #$d_mkdir HAS_MKDIR             /**/
422
423 /* HAS_MKFIFO:
424  *      This symbol, if defined, indicates that the mkfifo routine is
425  *      available to create FIFOs. Otherwise, mknod should be able to
426  *      do it for you. However, if mkfifo is there, mknod might require
427  *      super-user privileges which mkfifo will not.
428  */
429 #$d_mkfifo HAS_MKFIFO           /**/
430
431 /* HAS_MKTIME:
432  *      This symbol, if defined, indicates that the mktime routine is
433  *      available.
434  */
435 #$d_mktime HAS_MKTIME           /**/
436
437 /* HAS_MSG:
438  *      This symbol, if defined, indicates that the entire msg*(2) library is
439  *      supported (IPC mechanism based on message queues).
440  */
441 #$d_msg HAS_MSG         /**/
442
443 /* HAS_NICE:
444  *      This symbol, if defined, indicates that the nice routine is
445  *      available.
446  */
447 #$d_nice HAS_NICE               /**/
448
449 /* HAS_PATHCONF:
450  *      This symbol, if defined, indicates that pathconf() is available
451  *      to determine file-system related limits and options associated
452  *      with a given filename.
453  */
454 /* HAS_FPATHCONF:
455  *      This symbol, if defined, indicates that pathconf() is available
456  *      to determine file-system related limits and options associated
457  *      with a given open file descriptor.
458  */
459 #$d_pathconf HAS_PATHCONF               /**/
460 #$d_fpathconf HAS_FPATHCONF             /**/
461
462 /* HAS_PAUSE:
463  *      This symbol, if defined, indicates that the pause routine is
464  *      available to suspend a process until a signal is received.
465  */
466 #$d_pause HAS_PAUSE             /**/
467
468 /* HAS_PIPE:
469  *      This symbol, if defined, indicates that the pipe routine is
470  *      available to create an inter-process channel.
471  */
472 #$d_pipe HAS_PIPE               /**/
473
474 /* HAS_POLL:
475  *      This symbol, if defined, indicates that the poll routine is
476  *      available to poll active file descriptors. You may safely
477  *      include <poll.h> when this symbol is defined.
478  */
479 #$d_poll HAS_POLL               /**/
480
481 /* HAS_READDIR:
482  *      This symbol, if defined, indicates that the readdir routine is
483  *      available to read directory entries. You may have to include
484  *      <dirent.h>. See I_DIRENT.
485  */
486 #$d_readdir HAS_READDIR         /**/
487
488 /* HAS_SEEKDIR:
489  *      This symbol, if defined, indicates that the seekdir routine is
490  *      available. You may have to include <dirent.h>. See I_DIRENT.
491  */
492 #$d_seekdir HAS_SEEKDIR         /**/
493
494 /* HAS_TELLDIR:
495  *      This symbol, if defined, indicates that the telldir routine is
496  *      available. You may have to include <dirent.h>. See I_DIRENT.
497  */
498 #$d_telldir HAS_TELLDIR         /**/
499
500 /* HAS_REWINDDIR:
501  *      This symbol, if defined, indicates that the rewinddir routine is
502  *      available. You may have to include <dirent.h>. See I_DIRENT.
503  */
504 #$d_rewinddir HAS_REWINDDIR             /**/
505
506 /* HAS_READLINK:
507  *      This symbol, if defined, indicates that the readlink routine is
508  *      available to read the value of a symbolic link.
509  */
510 #$d_readlink HAS_READLINK               /**/
511
512 /* HAS_RENAME:
513  *      This symbol, if defined, indicates that the rename routine is available
514  *      to rename files.  Otherwise you should do the unlink(), link(), unlink()
515  *      trick.
516  */
517 #$d_rename HAS_RENAME   /**/
518
519 /* HAS_RMDIR:
520  *      This symbol, if defined, indicates that the rmdir routine is
521  *      available to remove directories. Otherwise you should fork off a
522  *      new process to exec /bin/rmdir.
523  */
524 #$d_rmdir HAS_RMDIR             /**/
525
526 /* HAS_SELECT:
527  *      This symbol, if defined, indicates that the select routine is
528  *      available to select active file descriptors. If the timeout field
529  *      is used, <sys/time.h> may need to be included.
530  */
531 #$d_select HAS_SELECT   /**/
532
533 /* HAS_SEM:
534  *      This symbol, if defined, indicates that the entire sem*(2) library is
535  *      supported.
536  */
537 #$d_sem HAS_SEM         /**/
538
539 /* HAS_SETEGID:
540  *      This symbol, if defined, indicates that the setegid routine is available
541  *      to change the effective gid of the current program.
542  */
543 #$d_setegid HAS_SETEGID         /**/
544
545 /* HAS_SETEUID:
546  *      This symbol, if defined, indicates that the seteuid routine is available
547  *      to change the effective uid of the current program.
548  */
549 #$d_seteuid HAS_SETEUID         /**/
550
551 /* HAS_SETLINEBUF:
552  *      This symbol, if defined, indicates that the setlinebuf routine is
553  *      available to change stderr or stdout from block-buffered or unbuffered
554  *      to a line-buffered mode.
555  */
556 #$d_setlinebuf HAS_SETLINEBUF           /**/
557
558 /* HAS_SETLOCALE:
559  *      This symbol, if defined, indicates that the setlocale routine is
560  *      available to handle locale-specific ctype implementations.
561  */
562 #$d_setlocale HAS_SETLOCALE     /**/
563
564 /* HAS_SETPGID:
565  *      This symbol, if defined, indicates that the setpgid(pid, gpid)
566  *      routine is available to set process group ID.
567  */
568 #$d_setpgid HAS_SETPGID /**/
569
570 /* HAS_SETPGRP:
571  *      This symbol, if defined, indicates that the setpgrp routine is
572  *      available to set the current process group.
573  */
574 /* USE_BSD_SETPGRP:
575  *      This symbol, if defined, indicates that setpgrp needs two
576  *      arguments whereas USG one needs none.  See also HAS_SETPGID
577  *      for a POSIX interface.
578  */
579 #$d_setpgrp HAS_SETPGRP         /**/
580 #$d_bsdsetpgrp USE_BSD_SETPGRP  /**/
581
582 /* HAS_SETPGRP2:
583  *      This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
584  *      routine is available to set the current process group.
585  */
586 #$d_setpgrp2 HAS_SETPGRP2               /**/
587
588 /* HAS_SETPRIORITY:
589  *      This symbol, if defined, indicates that the setpriority routine is
590  *      available to set a process's priority.
591  */
592 #$d_setprior HAS_SETPRIORITY            /**/
593
594 /* HAS_SETREGID:
595  *      This symbol, if defined, indicates that the setregid routine is
596  *      available to change the real and effective gid of the current
597  *      process.
598  */
599 /* HAS_SETRESGID:
600  *      This symbol, if defined, indicates that the setresgid routine is
601  *      available to change the real, effective and saved gid of the current
602  *      process.
603  */
604 #$d_setregid HAS_SETREGID               /**/
605 #$d_setresgid HAS_SETRESGID             /**/
606
607 /* HAS_SETREUID:
608  *      This symbol, if defined, indicates that the setreuid routine is
609  *      available to change the real and effective uid of the current
610  *      process.
611  */
612 /* HAS_SETRESUID:
613  *      This symbol, if defined, indicates that the setresuid routine is
614  *      available to change the real, effective and saved uid of the current
615  *      process.
616  */
617 #$d_setreuid HAS_SETREUID               /**/
618 #$d_setresuid HAS_SETRESUID             /**/
619
620 /* HAS_SETRGID:
621  *      This symbol, if defined, indicates that the setrgid routine is available
622  *      to change the real gid of the current program.
623  */
624 #$d_setrgid HAS_SETRGID         /**/
625
626 /* HAS_SETRUID:
627  *      This symbol, if defined, indicates that the setruid routine is available
628  *      to change the real uid of the current program.
629  */
630 #$d_setruid HAS_SETRUID         /**/
631
632 /* HAS_SETSID:
633  *      This symbol, if defined, indicates that the setsid routine is
634  *      available to set the process group ID.
635  */
636 #$d_setsid HAS_SETSID   /**/
637
638 /* HAS_SHM:
639  *      This symbol, if defined, indicates that the entire shm*(2) library is
640  *      supported.
641  */
642 #$d_shm HAS_SHM         /**/
643
644 /* Shmat_t:
645  *      This symbol holds the return type of the shmat() system call.
646  *      Usually set to 'void *' or 'char *'.
647  */
648 /* HAS_SHMAT_PROTOTYPE:
649  *      This symbol, if defined, indicates that the sys/shm.h includes
650  *      a prototype for shmat().  Otherwise, it is up to the program to
651  *      guess one.  Shmat_t shmat _((int, Shmat_t, int)) is a good guess,
652  *      but not always right so it should be emitted by the program only
653  *      when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
654  */
655 #define Shmat_t $shmattype      /**/
656 #$d_shmatprototype HAS_SHMAT_PROTOTYPE  /**/
657
658 /* USE_STAT_BLOCKS:
659  *      This symbol is defined if this system has a stat structure declaring
660  *      st_blksize and st_blocks.
661  */
662 #$d_statblks USE_STAT_BLOCKS    /**/
663
664 /* HAS_STRCHR:
665  *      This symbol is defined to indicate that the strchr()/strrchr()
666  *      functions are available for string searching. If not, try the
667  *      index()/rindex() pair.
668  */
669 /* HAS_INDEX:
670  *      This symbol is defined to indicate that the index()/rindex()
671  *      functions are available for string searching.
672  */
673 #$d_strchr HAS_STRCHR   /**/
674 #$d_index HAS_INDEX     /**/
675
676 /* HAS_STRCOLL:
677  *      This symbol, if defined, indicates that the strcoll routine is
678  *      available to compare strings using collating information.
679  */
680 #$d_strcoll HAS_STRCOLL /**/
681
682 /* USE_STRUCT_COPY:
683  *      This symbol, if defined, indicates that this C compiler knows how
684  *      to copy structures.  If undefined, you'll need to use a block copy
685  *      routine of some sort instead.
686  */
687 #$d_strctcpy    USE_STRUCT_COPY /**/
688
689 /* HAS_STRERROR:
690  *      This symbol, if defined, indicates that the strerror routine is
691  *      available to translate error numbers to strings. See the writeup
692  *      of Strerror() in this file before you try to define your own.
693  */
694 /* HAS_SYS_ERRLIST:
695  *      This symbol, if defined, indicates that the sys_errlist array is
696  *      available to translate error numbers to strings. The extern int
697  *      sys_nerr gives the size of that table.
698  */
699 /* Strerror:
700  *      This preprocessor symbol is defined as a macro if strerror() is
701  *      not available to translate error numbers to strings but sys_errlist[]
702  *      array is there.
703  */
704 #$d_strerror HAS_STRERROR               /**/
705 #$d_syserrlst HAS_SYS_ERRLIST   /**/
706 #define Strerror(e) $d_strerrm
707
708 /* HAS_STRTOD:
709  *      This symbol, if defined, indicates that the strtod routine is
710  *      available to provide better numeric string conversion than atof().
711  */
712 #$d_strtod HAS_STRTOD   /**/
713
714 /* HAS_STRTOL:
715  *      This symbol, if defined, indicates that the strtol routine is available
716  *      to provide better numeric string conversion than atoi() and friends.
717  */
718 #$d_strtol HAS_STRTOL   /**/
719
720 /* HAS_STRTOUL:
721  *      This symbol, if defined, indicates that the strtoul routine is
722  *      available to provide conversion of strings to unsigned long.
723  */
724 #$d_strtoul HAS_STRTOUL /**/
725
726 /* HAS_STRXFRM:
727  *      This symbol, if defined, indicates that the strxfrm() routine is
728  *      available to transform strings.
729  */
730 #$d_strxfrm HAS_STRXFRM /**/
731
732 /* HAS_SYMLINK:
733  *      This symbol, if defined, indicates that the symlink routine is available
734  *      to create symbolic links.
735  */
736 #$d_symlink HAS_SYMLINK /**/
737
738 /* HAS_SYSCALL:
739  *      This symbol, if defined, indicates that the syscall routine is
740  *      available to call arbitrary system calls. If undefined, that's tough.
741  */
742 #$d_syscall HAS_SYSCALL /**/
743
744 /* HAS_SYSCONF:
745  *      This symbol, if defined, indicates that sysconf() is available
746  *      to determine system related limits and options.
747  */
748 #$d_sysconf HAS_SYSCONF /**/
749
750 /* HAS_SYSTEM:
751  *      This symbol, if defined, indicates that the system routine is
752  *      available to issue a shell command.
753  */
754 #$d_system HAS_SYSTEM   /**/
755
756 /* HAS_TCGETPGRP:
757  *      This symbol, if defined, indicates that the tcgetpgrp routine is
758  *      available to get foreground process group ID.
759  */
760 #$d_tcgetpgrp HAS_TCGETPGRP             /**/
761
762 /* HAS_TCSETPGRP:
763  *      This symbol, if defined, indicates that the tcsetpgrp routine is
764  *      available to set foreground process group ID.
765  */
766 #$d_tcsetpgrp HAS_TCSETPGRP             /**/
767
768 /* HAS_TRUNCATE:
769  *      This symbol, if defined, indicates that the truncate routine is
770  *      available to truncate files.
771  */
772 #$d_truncate HAS_TRUNCATE       /**/
773
774 /* HAS_TZNAME:
775  *      This symbol, if defined, indicates that the tzname[] array is
776  *      available to access timezone names.
777  */
778 #$d_tzname HAS_TZNAME           /**/
779
780 /* HAS_UMASK:
781  *      This symbol, if defined, indicates that the umask routine is
782  *      available to set and get the value of the file creation mask.
783  */
784 #$d_umask HAS_UMASK             /**/
785
786 /* HAS_VFORK:
787  *      This symbol, if defined, indicates that vfork() exists.
788  */
789 #$d_vfork HAS_VFORK     /**/
790
791 /* HASVOLATILE:
792  *      This symbol, if defined, indicates that this C compiler knows about
793  *      the volatile declaration.
794  */
795 #$d_volatile    HASVOLATILE     /**/
796 #ifndef HASVOLATILE
797 #define volatile
798 #endif
799
800 /* HAS_WAIT4:
801  *      This symbol, if defined, indicates that wait4() exists.
802  */
803 #$d_wait4 HAS_WAIT4     /**/
804
805 /* HAS_WAITPID:
806  *      This symbol, if defined, indicates that the waitpid routine is
807  *      available to wait for child process.
808  */
809 #$d_waitpid HAS_WAITPID /**/
810
811 /* HAS_WCSTOMBS:
812  *      This symbol, if defined, indicates that the wcstombs routine is
813  *      available to convert wide character strings to multibyte strings.
814  */
815 #$d_wcstombs HAS_WCSTOMBS       /**/
816
817 /* HAS_WCTOMB:
818  *      This symbol, if defined, indicates that the wctomb routine is available
819  *      to covert a wide character to a multibyte.
820  */
821 #$d_wctomb HAS_WCTOMB           /**/
822
823 /* I_DBM:
824  *      This symbol, if defined, indicates that <dbm.h> exists and should
825  *      be included.
826  */
827 /* I_RPCSVC_DBM:
828  *      This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
829  *      should be included.
830  */
831 #$i_dbm I_DBM   /**/
832 #$i_rpcsvcdbm I_RPCSVC_DBM      /**/
833
834 /* I_DIRENT:
835  *      This symbol, if defined, indicates to the C program that it should
836  *      include <dirent.h>. Using this symbol also triggers the definition
837  *      of the Direntry_t define which ends up being 'struct dirent' or
838  *      'struct direct' depending on the availability of <dirent.h>.
839  */
840 /* DIRNAMLEN:
841  *      This symbol, if defined, indicates to the C program that the length
842  *      of directory entry names is provided by a d_namlen field.  Otherwise
843  *      you need to do strlen() on the d_name field.
844  */
845 /* Direntry_t:
846  *      This symbol is set to 'struct direct' or 'struct dirent' depending on
847  *      whether dirent is available or not. You should use this pseudo type to
848  *      portably declare your directory entries.
849  */
850 #$i_dirent I_DIRENT             /**/
851 #$d_dirnamlen DIRNAMLEN /**/
852 #define Direntry_t $direntrytype
853
854 /* I_DLFCN:
855  *      This symbol, if defined, indicates that <dlfcn.h> exists and should
856  *      be included.
857  */
858 #$i_dlfcn I_DLFCN               /**/
859
860 /* I_FCNTL:
861  *      This manifest constant tells the C program to include <fcntl.h>.
862  */
863 #$i_fcntl I_FCNTL       /**/
864
865 /* I_FLOAT:
866  *      This symbol, if defined, indicates to the C program that it should
867  *      include <float.h> to get definition of symbols like DBL_MAX or
868  *      DBL_MIN, i.e. machine dependent floating point values.
869  */
870 #$i_float I_FLOAT               /**/
871
872 /* I_GRP:
873  *      This symbol, if defined, indicates to the C program that it should
874  *      include <grp.h>.
875  */
876 #$i_grp I_GRP           /**/
877
878 /* I_LIMITS:
879  *      This symbol, if defined, indicates to the C program that it should
880  *      include <limits.h> to get definition of symbols like WORD_BIT or
881  *      LONG_MAX, i.e. machine dependant limitations.
882  */
883 #$i_limits I_LIMITS             /**/
884
885 /* I_LOCALE:
886  *      This symbol, if defined, indicates to the C program that it should
887  *      include <locale.h>.
888  */
889 #$i_locale      I_LOCALE                /**/
890
891 /* I_MATH:
892  *      This symbol, if defined, indicates to the C program that it should
893  *      include <math.h>.
894  */
895 #$i_math I_MATH         /**/
896
897 /* I_MEMORY:
898  *      This symbol, if defined, indicates to the C program that it should
899  *      include <memory.h>.
900  */
901 #$i_memory I_MEMORY             /**/
902
903 /* I_NDBM:
904  *      This symbol, if defined, indicates that <ndbm.h> exists and should
905  *      be included.
906  */
907 #$i_ndbm I_NDBM /**/
908
909 /* I_NET_ERRNO:
910  *      This symbol, if defined, indicates that <net/errno.h> exists and 
911  *      should be included.
912  */
913 #$i_neterrno I_NET_ERRNO                /**/
914
915 /* I_NETINET_IN:
916  *      This symbol, if defined, indicates to the C program that it should
917  *      include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
918  */
919 #$i_niin I_NETINET_IN   /**/
920
921 /* I_PWD:
922  *      This symbol, if defined, indicates to the C program that it should
923  *      include <pwd.h>.
924  */
925 /* PWQUOTA:
926  *      This symbol, if defined, indicates to the C program that struct passwd
927  *      contains pw_quota.
928  */
929 /* PWAGE:
930  *      This symbol, if defined, indicates to the C program that struct passwd
931  *      contains pw_age.
932  */
933 /* PWCHANGE:
934  *      This symbol, if defined, indicates to the C program that struct passwd
935  *      contains pw_change.
936  */
937 /* PWCLASS:
938  *      This symbol, if defined, indicates to the C program that struct passwd
939  *      contains pw_class.
940  */
941 /* PWEXPIRE:
942  *      This symbol, if defined, indicates to the C program that struct passwd
943  *      contains pw_expire.
944  */
945 /* PWCOMMENT:
946  *      This symbol, if defined, indicates to the C program that struct passwd
947  *      contains pw_comment.
948  */
949 #$i_pwd I_PWD           /**/
950 #$d_pwquota PWQUOTA     /**/
951 #$d_pwage PWAGE /**/
952 #$d_pwchange PWCHANGE   /**/
953 #$d_pwclass PWCLASS     /**/
954 #$d_pwexpire PWEXPIRE   /**/
955 #$d_pwcomment PWCOMMENT /**/
956
957 /* I_SFIO:
958  *      This symbol, if defined, indicates to the C program that it should
959  *      include <sfio.h>.
960  */
961 #$i_sfio        I_SFIO          /**/
962
963 /* I_STDDEF:
964  *      This symbol, if defined, indicates that <stddef.h> exists and should
965  *      be included.
966  */
967 #$i_stddef I_STDDEF     /**/
968
969 /* I_STDLIB:
970  *      This symbol, if defined, indicates that <stdlib.h> exists and should
971  *      be included.
972  */
973 #$i_stdlib I_STDLIB             /**/
974
975 /* I_STRING:
976  *      This symbol, if defined, indicates to the C program that it should
977  *      include <string.h> (USG systems) instead of <strings.h> (BSD systems).
978  */
979 #$i_string I_STRING             /**/
980
981 /* I_SYS_DIR:
982  *      This symbol, if defined, indicates to the C program that it should
983  *      include <sys/dir.h>.
984  */
985 #$i_sysdir I_SYS_DIR            /**/
986
987 /* I_SYS_FILE:
988  *      This symbol, if defined, indicates to the C program that it should
989  *      include <sys/file.h> to get definition of R_OK and friends.
990  */
991 #$i_sysfile I_SYS_FILE          /**/
992
993 /* I_SYS_IOCTL:
994  *      This symbol, if defined, indicates that <sys/ioctl.h> exists and should
995  *      be included. Otherwise, include <sgtty.h> or <termio.h>.
996  */
997 #$i_sysioctl    I_SYS_IOCTL             /**/
998
999 /* I_SYS_NDIR:
1000  *      This symbol, if defined, indicates to the C program that it should
1001  *      include <sys/ndir.h>.
1002  */
1003 #$i_sysndir I_SYS_NDIR  /**/
1004
1005 /* I_SYS_PARAM:
1006  *      This symbol, if defined, indicates to the C program that it should
1007  *      include <sys/param.h>.
1008  */
1009 #$i_sysparam I_SYS_PARAM                /**/
1010
1011 /* I_SYS_RESOURCE:
1012  *      This symbol, if defined, indicates to the C program that it should
1013  *      include <sys/resource.h>.
1014  */
1015 #$i_sysresrc I_SYS_RESOURCE             /**/
1016
1017 /* I_SYS_SELECT:
1018  *      This symbol, if defined, indicates to the C program that it should
1019  *      include <sys/select.h> in order to get definition of struct timeval.
1020  */
1021 #$i_sysselct I_SYS_SELECT       /**/
1022
1023 /* I_SYS_STAT:
1024  *      This symbol, if defined, indicates to the C program that it should
1025  *      include <sys/stat.h>.
1026  */
1027 #$i_sysstat     I_SYS_STAT              /**/
1028
1029 /* I_SYS_TIMES:
1030  *      This symbol, if defined, indicates to the C program that it should
1031  *      include <sys/times.h>.
1032  */
1033 #$i_systimes    I_SYS_TIMES             /**/
1034
1035 /* I_SYS_UN:
1036  *      This symbol, if defined, indicates to the C program that it should
1037  *      include <sys/un.h> to get UNIX domain socket definitions.
1038  */
1039 #$i_sysun I_SYS_UN              /**/
1040
1041 /* I_SYS_WAIT:
1042  *      This symbol, if defined, indicates to the C program that it should
1043  *      include <sys/wait.h>.
1044  */
1045 #$i_syswait I_SYS_WAIT  /**/
1046
1047 /* I_TERMIO:
1048  *      This symbol, if defined, indicates that the program should include
1049  *      <termio.h> rather than <sgtty.h>.  There are also differences in
1050  *      the ioctl() calls that depend on the value of this symbol.
1051  */
1052 /* I_TERMIOS:
1053  *      This symbol, if defined, indicates that the program should include
1054  *      the POSIX termios.h rather than sgtty.h or termio.h.
1055  *      There are also differences in the ioctl() calls that depend on the
1056  *      value of this symbol.
1057  */
1058 /* I_SGTTY:
1059  *      This symbol, if defined, indicates that the program should include
1060  *      <sgtty.h> rather than <termio.h>.  There are also differences in
1061  *      the ioctl() calls that depend on the value of this symbol.
1062  */
1063 #$i_termio I_TERMIO             /**/
1064 #$i_termios I_TERMIOS           /**/
1065 #$i_sgtty I_SGTTY               /**/
1066
1067 /* I_UNISTD:
1068  *      This symbol, if defined, indicates to the C program that it should
1069  *      include <unistd.h>.
1070  */
1071 #$i_unistd I_UNISTD             /**/
1072
1073 /* I_UTIME:
1074  *      This symbol, if defined, indicates to the C program that it should
1075  *      include <utime.h>.
1076  */
1077 #$i_utime I_UTIME               /**/
1078
1079 /* I_VALUES:
1080  *      This symbol, if defined, indicates to the C program that it should
1081  *      include <values.h> to get definition of symbols like MINFLOAT or
1082  *      MAXLONG, i.e. machine dependant limitations.  Probably, you
1083  *      should use <limits.h> instead, if it is available.
1084  */
1085 #$i_values I_VALUES             /**/
1086
1087 /* I_STDARG:
1088  *      This symbol, if defined, indicates that <stdarg.h> exists and should
1089  *      be included.
1090  */
1091 /* I_VARARGS:
1092  *      This symbol, if defined, indicates to the C program that it should
1093  *      include <varargs.h>.
1094  */
1095 #$i_stdarg I_STDARG             /**/
1096 #$i_varargs I_VARARGS   /**/
1097
1098 /* I_VFORK:
1099  *      This symbol, if defined, indicates to the C program that it should
1100  *      include vfork.h.
1101  */
1102 #$i_vfork I_VFORK       /**/
1103
1104 /* Free_t:
1105  *      This variable contains the return type of free().  It is usually
1106  * void, but occasionally int.
1107  */
1108 /* Malloc_t:
1109  *      This symbol is the type of pointer returned by malloc and realloc.
1110  */
1111 #define Malloc_t $malloctype                    /**/
1112 #define Free_t $freetype                        /**/
1113
1114 /* MYMALLOC:
1115  *      This symbol, if defined, indicates that we're using our own malloc.
1116  */
1117 #$d_mymalloc MYMALLOC                   /**/
1118
1119 /* CAN_PROTOTYPE:
1120  *      If defined, this macro indicates that the C compiler can handle
1121  *      function prototypes.
1122  */
1123 /* _:
1124  *      This macro is used to declare function parameters for folks who want
1125  *      to make declarations with prototypes using a different style than
1126  *      the above macros.  Use double parentheses.  For example:
1127  *
1128  *              int main _((int argc, char *argv[]));
1129  */
1130 #$prototype     CAN_PROTOTYPE   /**/
1131 #ifdef CAN_PROTOTYPE
1132 #define _(args) args
1133 #else
1134 #define _(args) ()
1135 #endif
1136
1137 /* SH_PATH:
1138  *      This symbol contains the full pathname to the shell used on this
1139  *      on this system to execute Bourne shell scripts.  Usually, this will be
1140  *      /bin/sh, though it's possible that some systems will have /bin/ksh,
1141  *      /bin/pdksh, /bin/ash, /bin/bash, or even something such as
1142  *      D:/bin/sh.exe.
1143  */
1144 #define SH_PATH "$sh"  /**/
1145
1146 /* STDCHAR:
1147  *      This symbol is defined to be the type of char used in stdio.h.
1148  *      It has the values "unsigned char" or "char".
1149  */
1150 #define STDCHAR $stdchar        /**/
1151
1152 /* VOIDFLAGS:
1153  *      This symbol indicates how much support of the void type is given by this
1154  *      compiler.  What various bits mean:
1155  *
1156  *          1 = supports declaration of void
1157  *          2 = supports arrays of pointers to functions returning void
1158  *          4 = supports comparisons between pointers to void functions and
1159  *                  addresses of void functions
1160  *          8 = suports declaration of generic void pointers
1161  *
1162  *      The package designer should define VOIDUSED to indicate the requirements
1163  *      of the package.  This can be done either by #defining VOIDUSED before
1164  *      including config.h, or by defining defvoidused in Myinit.U.  If the
1165  *      latter approach is taken, only those flags will be tested.  If the
1166  *      level of void support necessary is not present, defines void to int.
1167  */
1168 #ifndef VOIDUSED
1169 #define VOIDUSED $defvoidused
1170 #endif
1171 #define VOIDFLAGS $voidflags
1172 #if (VOIDFLAGS & VOIDUSED) != VOIDUSED
1173 #define void int                /* is void to be avoided? */
1174 #define M_VOID                  /* Xenix strikes again */
1175 #endif
1176
1177 /* MEM_ALIGNBYTES:
1178  *       This symbol contains the number of bytes required to align a
1179  *       double. Usual values are 2, 4 and 8.
1180  *       On NeXT starting with 3.2, you can build "Fat" Multiple Architecture
1181  *       Binaries (MAB) for targets with varying alignment.  This only matters
1182  *       for perl, where the config.h can be generated and installed on one
1183  *       system, and used by a different architecture to build an extension.
1184  *       The default is eight, for safety.
1185  */
1186 #define MEM_ALIGNBYTES $alignbytes      /**/
1187
1188 /* BYTEORDER:
1189  *      This symbol holds the hexadecimal constant defined in byteorder,
1190  *      i.e. 0x1234 or 0x4321, etc...
1191  *      On NeXT 3.2 (and greater), you can build "Fat" Multiple Architecture
1192  *      Binaries (MAB) on either big endian or little endian machines.
1193  *      The endian-ness is available at compile-time.  This only matters
1194  *      for perl, where the config.h can be generated and installed on 
1195  *      one system, and used by a different architecture to build an
1196  *      extension.  Older versions of NeXT that might not have
1197  *      defined either *_ENDIAN__ were all on Motorola 680x0 series,
1198  *      so the default case (for NeXT) is big endian to catch them. 
1199  *      This might matter for NeXT 3.0.
1200  */
1201 #ifndef NeXT
1202 #define BYTEORDER 0x$byteorder  /* large digits for MSB */
1203 #else  /* NeXT */
1204 #ifdef __LITTLE_ENDIAN__
1205 #define BYTEORDER 0x1234
1206 #else /* __BIG_ENDIAN__ */
1207 #define BYTEORDER 0x4321
1208 #endif /* ENDIAN CHECK */
1209 #endif /* NeXT */
1210
1211 /* CASTI32:
1212  *      This symbol is defined if the C compiler can cast negative
1213  *      or large floating point numbers to 32-bit ints.
1214  */
1215 #$d_casti32     CASTI32         /**/
1216
1217 /* CASTNEGFLOAT:
1218  *      This symbol is defined if the C compiler can cast negative
1219  *      numbers to unsigned longs, ints and shorts.
1220  */
1221 /* CASTFLAGS:
1222  *      This symbol contains flags that say what difficulties the compiler
1223  *      has casting odd floating values to unsigned long:
1224  *              0 = ok
1225  *              1 = couldn't cast < 0
1226  *              2 = couldn't cast >= 0x80000000
1227  *              4 = couldn't cast in argument expression list
1228  */
1229 #$d_castneg     CASTNEGFLOAT            /**/
1230 #define CASTFLAGS $castflags            /**/
1231
1232 /* VOID_CLOSEDIR:
1233  *      This symbol, if defined, indicates that the closedir() routine
1234  *      does not return a value.
1235  */
1236 #$d_void_closedir VOID_CLOSEDIR         /**/
1237
1238 /* Gconvert:
1239  *      This preprocessor macro is defined to convert a floating point
1240  *      number to a string without a trailing decimal point.  This
1241  *      emulates the behavior of sprintf("%g"), but is sometimes much more
1242  *      efficient.  If gconvert() is not available, but gcvt() drops the
1243  *      trailing decimal point, then gcvt() is used.  If all else fails,
1244  *      a macro using sprintf("%g") is used. Arguments for the Gconvert
1245  *      macro are: value, number of digits, whether trailing zeros should
1246  *      be retained, and the output buffer.
1247  *      Possible values are:
1248  *              d_Gconvert='gconvert((x),(n),(t),(b))'
1249  *              d_Gconvert='gcvt((x),(n),(b))'
1250  *              d_Gconvert='sprintf((b),"%.*g",(n),(x))'
1251  *      The last two assume trailing zeros should not be kept.
1252  */
1253 #define Gconvert(x,n,t,b) $d_Gconvert
1254
1255 /* HAS_GNULIBC:
1256  *      This symbol, if defined, indicates to the C program that 
1257  *      the GNU C library is being used.
1258  */
1259 #$d_gnulibc HAS_GNULIBC         /**/
1260 /* HAS_ISASCII:
1261  *      This manifest constant lets the C program know that isascii 
1262  *      is available.
1263  */
1264 #$d_isascii HAS_ISASCII         /**/
1265
1266 /* HAS_OPEN3:
1267  *      This manifest constant lets the C program know that the three
1268  *      argument form of open(2) is available.
1269  */
1270 #$d_open3 HAS_OPEN3             /**/
1271
1272 /* HAS_SAFE_BCOPY:
1273  *      This symbol, if defined, indicates that the bcopy routine is available
1274  *      to copy potentially overlapping memory blocks. Otherwise you should
1275  *      probably use memmove() or memcpy(). If neither is defined, roll your
1276  *      own version.
1277  */
1278 #$d_safebcpy HAS_SAFE_BCOPY     /**/
1279
1280 /* HAS_SAFE_MEMCPY:
1281  *      This symbol, if defined, indicates that the memcpy routine is available
1282  *      to copy potentially overlapping memory blocks. Otherwise you should
1283  *      probably use memmove() or memcpy(). If neither is defined, roll your
1284  *      own version.
1285  */
1286 #$d_safemcpy HAS_SAFE_MEMCPY    /**/
1287
1288 /* HAS_SANE_MEMCMP:
1289  *      This symbol, if defined, indicates that the memcmp routine is available
1290  *      and can be used to compare relative magnitudes of chars with their high
1291  *      bits set.  If it is not defined, roll your own version.
1292  */
1293 #$d_sanemcmp HAS_SANE_MEMCMP    /**/
1294
1295 /* HAS_SIGACTION:
1296  *      This symbol, if defined, indicates that Vr4's sigaction() routine
1297  *      is available.
1298  */
1299 #$d_sigaction HAS_SIGACTION     /**/
1300
1301 /* Sigjmp_buf:
1302  *      This is the buffer type to be used with Sigsetjmp and Siglongjmp.
1303  */
1304 /* Sigsetjmp:
1305  *      This macro is used in the same way as sigsetjmp(), but will invoke
1306  *      traditional setjmp() if sigsetjmp isn't available.
1307  *      See HAS_SIGSETJMP.
1308  */
1309 /* Siglongjmp:
1310  *      This macro is used in the same way as siglongjmp(), but will invoke
1311  *      traditional longjmp() if siglongjmp isn't available.
1312  *      See HAS_SIGSETJMP.
1313  */
1314 #$d_sigsetjmp HAS_SIGSETJMP     /**/
1315 #ifdef HAS_SIGSETJMP
1316 #define Sigjmp_buf sigjmp_buf
1317 #define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
1318 #define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
1319 #else
1320 #define Sigjmp_buf jmp_buf
1321 #define Sigsetjmp(buf,save_mask) setjmp((buf))
1322 #define Siglongjmp(buf,retval) longjmp((buf),(retval))
1323 #endif
1324
1325 /* USE_STDIO_PTR:
1326  *      This symbol is defined if the _ptr and _cnt fields (or similar)
1327  *      of the stdio FILE structure can be used to access the stdio buffer
1328  *      for a file handle.  If this is defined, then the FILE_ptr(fp)
1329  *      and FILE_cnt(fp) macros will also be defined and should be used
1330  *      to access these fields.
1331  */
1332 /* FILE_ptr:
1333  *      This macro is used to access the _ptr field (or equivalent) of the
1334  *      FILE structure pointed to by its argument. This macro will always be
1335  *      defined if USE_STDIO_PTR is defined.
1336  */
1337 /* STDIO_PTR_LVALUE:
1338  *      This symbol is defined if the FILE_ptr macro can be used as an
1339  *      lvalue.
1340  */
1341 /* FILE_cnt:
1342  *      This macro is used to access the _cnt field (or equivalent) of the
1343  *      FILE structure pointed to by its argument. This macro will always be
1344  *      defined if USE_STDIO_PTR is defined.
1345  */
1346 /* STDIO_CNT_LVALUE:
1347  *      This symbol is defined if the FILE_cnt macro can be used as an
1348  *      lvalue.
1349  */
1350 #$d_stdstdio USE_STDIO_PTR      /**/
1351 #ifdef USE_STDIO_PTR
1352 #define FILE_ptr(fp)    $stdio_ptr
1353 #$d_stdio_ptr_lval STDIO_PTR_LVALUE             /**/
1354 #define FILE_cnt(fp)    $stdio_cnt
1355 #$d_stdio_cnt_lval STDIO_CNT_LVALUE             /**/
1356 #endif
1357
1358 /* USE_STDIO_BASE:
1359  *      This symbol is defined if the _base field (or similar) of the
1360  *      stdio FILE structure can be used to access the stdio buffer for
1361  *      a file handle.  If this is defined, then the FILE_base(fp) macro
1362  *      will also be defined and should be used to access this field.
1363  *      Also, the FILE_bufsiz(fp) macro will be defined and should be used
1364  *      to determine the number of bytes in the buffer.  USE_STDIO_BASE
1365  *      will never be defined unless USE_STDIO_PTR is.
1366  */
1367 /* FILE_base:
1368  *      This macro is used to access the _base field (or equivalent) of the
1369  *      FILE structure pointed to by its argument. This macro will always be
1370  *      defined if USE_STDIO_BASE is defined.
1371  */
1372 /* FILE_bufsiz:
1373  *      This macro is used to determine the number of bytes in the I/O
1374  *      buffer pointed to by _base field (or equivalent) of the FILE
1375  *      structure pointed to its argument. This macro will always be defined
1376  *      if USE_STDIO_BASE is defined.
1377  */
1378 #$d_stdiobase USE_STDIO_BASE    /**/
1379 #ifdef USE_STDIO_BASE
1380 #define FILE_base(fp)   $stdio_base
1381 #define FILE_bufsiz(fp) $stdio_bufsiz
1382 #endif
1383
1384 /* HAS_VPRINTF:
1385  *      This symbol, if defined, indicates that the vprintf routine is available
1386  *      to printf with a pointer to an argument list.  If unavailable, you
1387  *      may need to write your own, probably in terms of _doprnt().
1388  */
1389 /* USE_CHAR_VSPRINTF:
1390  *      This symbol is defined if this system has vsprintf() returning type
1391  *      (char*).  The trend seems to be to declare it as "int vsprintf()".  It
1392  *      is up to the package author to declare vsprintf correctly based on the
1393  *      symbol.
1394  */
1395 #$d_vprintf HAS_VPRINTF /**/
1396 #$d_charvspr USE_CHAR_VSPRINTF  /**/
1397
1398 /* DOUBLESIZE:
1399  *      This symbol contains the size of a double, so that the C preprocessor
1400  *      can make decisions based on it.
1401  */
1402 #define DOUBLESIZE $doublesize          /**/
1403
1404 /* I_TIME:
1405  *      This symbol, if defined, indicates to the C program that it should
1406  *      include <time.h>.
1407  */
1408 /* I_SYS_TIME:
1409  *      This symbol, if defined, indicates to the C program that it should
1410  *      include <sys/time.h>.
1411  */
1412 /* I_SYS_TIME_KERNEL:
1413  *      This symbol, if defined, indicates to the C program that it should
1414  *      include <sys/time.h> with KERNEL defined.
1415  */
1416 #$i_time I_TIME         /**/
1417 #$i_systime I_SYS_TIME          /**/
1418 #$i_systimek I_SYS_TIME_KERNEL          /**/
1419
1420 /* INTSIZE:
1421  *      This symbol contains the value of sizeof(int) so that the C
1422  *      preprocessor can make decisions based on it.
1423  */
1424 /* LONGSIZE:
1425  *      This symbol contains the value of sizeof(long) so that the C
1426  *      preprocessor can make decisions based on it.
1427  */
1428 /* SHORTSIZE:
1429  *      This symbol contains the value of sizeof(short) so that the C
1430  *      preprocessor can make decisions based on it.
1431  */
1432 #define INTSIZE $intsize                /**/
1433 #define LONGSIZE $longsize              /**/
1434 #define SHORTSIZE $shortsize            /**/
1435
1436 /* VAL_O_NONBLOCK:
1437  *      This symbol is to be used during open() or fcntl(F_SETFL) to turn on
1438  *      non-blocking I/O for the file descriptor. Note that there is no way
1439  *      back, i.e. you cannot turn it blocking again this way. If you wish to
1440  *      alternatively switch between blocking and non-blocking, use the
1441  *      ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
1442  */
1443 /* VAL_EAGAIN:
1444  *      This symbol holds the errno error code set by read() when no data was
1445  *      present on the non-blocking file descriptor.
1446  */
1447 /* RD_NODATA:
1448  *      This symbol holds the return code from read() when no data is present
1449  *      on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
1450  *      not defined, then you can't distinguish between no data and EOF by
1451  *      issuing a read(). You'll have to find another way to tell for sure!
1452  */
1453 /* EOF_NONBLOCK:
1454  *      This symbol, if defined, indicates to the C program that a read() on
1455  *      a non-blocking file descriptor will return 0 on EOF, and not the value
1456  *      held in RD_NODATA (-1 usually, in that case!).
1457  */
1458 #define VAL_O_NONBLOCK $o_nonblock
1459 #define VAL_EAGAIN $eagain
1460 #define RD_NODATA $rd_nodata
1461 #$d_eofnblk EOF_NONBLOCK
1462
1463 /* PTRSIZE:
1464  *      This symbol contains the size of a pointer, so that the C preprocessor
1465  *      can make decisions based on it.  It will be sizeof(void *) if
1466  *      the compiler supports (void *); otherwise it will be
1467  *      sizeof(char *).
1468  */
1469 #define PTRSIZE $ptrsize                /**/
1470
1471 /* RANDBITS:
1472  *      This symbol contains the number of bits of random number the rand()
1473  *      function produces.  Usual values are 15, 16, and 31.
1474  */
1475 #define RANDBITS $randbits              /**/
1476
1477 /* SSize_t:
1478  *      This symbol holds the type used by functions that return
1479  *      a count of bytes or an error condition.  It must be a signed type.
1480  *      It is usually ssize_t, but may be long or int, etc.
1481  *      It may be necessary to include <sys/types.h> or <unistd.h>
1482  *      to get any typedef'ed information.
1483  *      We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
1484  */
1485 #define SSize_t $ssizetype       /* signed count of bytes */
1486
1487 /* OSNAME:
1488  *      This symbol contains the name of the operating system, as determined
1489  *      by Configure.  You shouldn't rely on it too much; the specific
1490  *      feature tests from Configure are generally more reliable.
1491  */
1492 #define OSNAME "$osname"                /**/
1493
1494 /* ARCHLIB:
1495  *      This variable, if defined, holds the name of the directory in
1496  *      which the user wants to put architecture-dependent public
1497  *      library files for $package.  It is most often a local directory
1498  *      such as /usr/local/lib.  Programs using this variable must be
1499  *      prepared to deal with filename expansion.  If ARCHLIB is the
1500  *      same as PRIVLIB, it is not defined, since presumably the
1501  *      program already searches PRIVLIB.
1502  */
1503 /* ARCHLIB_EXP:
1504  *      This symbol contains the ~name expanded version of ARCHLIB, to be used
1505  *      in programs that are not prepared to deal with ~ expansion at run-time.
1506  */
1507 #$d_archlib ARCHLIB "$archlib"          /**/
1508 #$d_archlib ARCHLIB_EXP "$archlibexp"           /**/
1509
1510 /* CAT2:
1511  *      This macro catenates 2 tokens together.
1512  */
1513 /* STRINGIFY:
1514  *      This macro surrounds its token with double quotes.
1515  */
1516 #if $cpp_stuff == 1
1517 #define CAT2(a,b)a/**/b
1518 #define STRINGIFY(a)"a"
1519                 /* If you can get stringification with catify, tell me how! */
1520 #endif
1521 #if $cpp_stuff == 42
1522 #define CAT2(a,b)a ## b
1523 #define StGiFy(a)# a
1524 #define STRINGIFY(a)StGiFy(a)
1525 #endif
1526 #if $cpp_stuff != 1 && $cpp_stuff != 42
1527 #include "Bletch: How does this C preprocessor catenate tokens?"
1528 #endif
1529
1530 /* CSH:
1531  *      This symbol, if defined, contains the full pathname of csh.
1532  */
1533 #$d_csh HAS_CSH         /**/
1534 #ifdef HAS_CSH
1535 #define CSH "$full_csh" /**/
1536 #endif
1537
1538 /* HAS_ENDHOSTENT:
1539  *      This symbol, if defined, indicates that the endhostent() routine is
1540  *      available to close whatever was being used for host queries.
1541  */
1542 #$d_endhent HAS_ENDHOSTENT              /**/
1543
1544 /* HAS_ENDNETENT:
1545  *      This symbol, if defined, indicates that the endnetent() routine is
1546  *      available to close whatever was being used for network queries.
1547  */
1548 #$d_endnent HAS_ENDNETENT               /**/
1549
1550 /* HAS_ENDPROTOENT:
1551  *      This symbol, if defined, indicates that the endprotoent() routine is
1552  *      available to close whatever was being used for protocol queries.
1553  */
1554 #$d_endpent HAS_ENDPROTOENT             /**/
1555
1556 /* HAS_ENDSERVENT:
1557  *      This symbol, if defined, indicates that the endservent() routine is
1558  *      available to close whatever was being used for service queries.
1559  */
1560 #$d_endsent HAS_ENDSERVENT              /**/
1561
1562 /* HAS_GETHOSTBYADDR:
1563  *      This symbol, if defined, indicates that the gethostbyaddr() routine is
1564  *      available to look up hosts by their IP addresses.
1565  */
1566 #$d_gethbyaddr HAS_GETHOSTBYADDR                /**/
1567
1568 /* HAS_GETHOSTBYNAME:
1569  *      This symbol, if defined, indicates that the gethostbyname() routine is
1570  *      available to look up host names in some data base or other.
1571  */
1572 #$d_gethbyname HAS_GETHOSTBYNAME                /**/
1573
1574 /* HAS_GETHOSTENT:
1575  *      This symbol, if defined, indicates that the gethostent() routine is
1576  *      available to look up host names in some data base or another.
1577  */
1578 #$d_gethent HAS_GETHOSTENT              /**/
1579
1580 /* HAS_GETNETBYADDR:
1581  *      This symbol, if defined, indicates that the getnetbyaddr() routine is
1582  *      available to look up networks by their IP addresses.
1583  */
1584 #$d_getnbyaddr HAS_GETNETBYADDR         /**/
1585
1586 /* HAS_GETNETBYNAME:
1587  *      This symbol, if defined, indicates that the getnetbyname() routine is
1588  *      available to look up networks by their names.
1589  */
1590 #$d_getnbyname HAS_GETNETBYNAME         /**/
1591
1592 /* HAS_GETNETENT:
1593  *      This symbol, if defined, indicates that the getnetent() routine is
1594  *      available to look up network names in some data base or another.
1595  */
1596 #$d_getnent HAS_GETNETENT               /**/
1597
1598 /* HAS_GETPROTOENT:
1599  *      This symbol, if defined, indicates that the getprotoent() routine is
1600  *      available to look up protocols in some data base or another.
1601  */
1602 #$d_getpent HAS_GETPROTOENT             /**/
1603
1604 /* HAS_GETPROTOBYNAME:
1605  *      This symbol, if defined, indicates that the getprotobyname()
1606  *      routine is available to look up protocols by their name.
1607  */
1608 /* HAS_GETPROTOBYNUMBER:
1609  *      This symbol, if defined, indicates that the getprotobynumber()
1610  *      routine is available to look up protocols by their number.
1611  */
1612 #$d_getpbyname HAS_GETPROTOBYNAME               /**/
1613 #$d_getpbynumber HAS_GETPROTOBYNUMBER           /**/
1614
1615 /* HAS_GETSERVENT:
1616  *      This symbol, if defined, indicates that the getservent() routine is
1617  *      available to look up network services in some data base or another.
1618  */
1619 #$d_getsent HAS_GETSERVENT              /**/
1620
1621 /* HAS_GETSERVBYNAME:
1622  *      This symbol, if defined, indicates that the getservbyname()
1623  *      routine is available to look up services by their name.
1624  */
1625 /* HAS_GETSERVBYPORT:
1626  *      This symbol, if defined, indicates that the getservbyport()
1627  *      routine is available to look up services by their port.
1628  */
1629 #$d_getsbyname HAS_GETSERVBYNAME                /**/
1630 #$d_getsbyport HAS_GETSERVBYPORT                /**/
1631
1632 /* HAS_LONG_DOUBLE:
1633  *      This symbol will be defined if the C compiler supports long
1634  *      doubles.
1635  */
1636 /* LONG_DOUBLESIZE:
1637  *      This symbol contains the size of a long double, so that the 
1638  *      C preprocessor can make decisions based on it.  It is only
1639  *      defined if the system supports long doubles.
1640  */
1641 #$d_longdbl HAS_LONG_DOUBLE             /**/
1642 #ifdef HAS_LONG_DOUBLE
1643 #define LONG_DOUBLESIZE $longdblsize            /**/
1644 #endif
1645
1646 /* HAS_LONG_LONG:
1647  *      This symbol will be defined if the C compiler supports
1648  *      long long.
1649  */
1650 /* LONGLONGSIZE:
1651  *      This symbol contains the size of a long long, so that the 
1652  *      C preprocessor can make decisions based on it.  It is only
1653  *      defined if the system supports long long.
1654  */
1655 #$d_longlong HAS_LONG_LONG              /**/
1656 #ifdef HAS_LONG_LONG
1657 #define LONGLONGSIZE $longlongsize              /**/
1658 #endif
1659
1660 /* HAS_MKSTEMP:
1661  *      This symbol, if defined, indicates that the mkstemp routine is
1662  *      available to create and open a unique temporary file.
1663  */
1664 #$d_mkstemp HAS_MKSTEMP         /**/
1665
1666 /* HAS_SETGROUPS:
1667  *      This symbol, if defined, indicates that the setgroups() routine is
1668  *      available to set the list of process groups.  If unavailable, multiple
1669  *      groups are probably not supported.
1670  */
1671 #$d_setgrps HAS_SETGROUPS               /**/
1672
1673 /* HAS_SETHOSTENT:
1674  *      This symbol, if defined, indicates that the sethostent() routine is
1675  *      available.
1676  */
1677 #$d_sethent HAS_SETHOSTENT              /**/
1678
1679 /* HAS_SETNETENT:
1680  *      This symbol, if defined, indicates that the setnetent() routine is
1681  *      available.
1682  */
1683 #$d_setnent HAS_SETNETENT               /**/
1684
1685 /* HAS_SETPROTOENT:
1686  *      This symbol, if defined, indicates that the setprotoent() routine is
1687  *      available.
1688  */
1689 #$d_setpent HAS_SETPROTOENT             /**/
1690
1691 /* HAS_SETSERVENT:
1692  *      This symbol, if defined, indicates that the setservent() routine is
1693  *      available.
1694  */
1695 #$d_setsent HAS_SETSERVENT              /**/
1696
1697 /* HAS_SETVBUF:
1698  *      This symbol, if defined, indicates that the setvbuf routine is
1699  *      available to change buffering on an open stdio stream.
1700  *      to a line-buffered mode.
1701  */
1702 #$d_setvbuf HAS_SETVBUF         /**/
1703
1704 /* HAS_SOCKET:
1705  *      This symbol, if defined, indicates that the BSD socket interface is
1706  *      supported.
1707  */
1708 /* HAS_SOCKETPAIR:
1709  *      This symbol, if defined, indicates that the BSD socketpair() call is
1710  *      supported.
1711  */
1712 #$d_socket HAS_SOCKET           /**/
1713 #$d_sockpair HAS_SOCKETPAIR     /**/
1714
1715 /* Signal_t:
1716  *      This symbol's value is either "void" or "int", corresponding to the
1717  *      appropriate return type of a signal handler.  Thus, you can declare
1718  *      a signal handler using "Signal_t (*handler)()", and define the
1719  *      handler using "Signal_t handler(sig)".
1720  */
1721 #define Signal_t $signal_t      /* Signal handler's return type */
1722
1723 /* Groups_t:
1724  *      This symbol holds the type used for the second argument to
1725  *      getgroups() and setgropus().  Usually, this is the same as
1726  *      gidtype (gid_t) , but sometimes it isn't.
1727  *      It can be int, ushort, uid_t, etc... 
1728  *      It may be necessary to include <sys/types.h> to get any 
1729  *      typedef'ed information.  This is only required if you have
1730  *      getgroups() or setgropus()..
1731  */
1732 #if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
1733 #define Groups_t $groupstype    /* Type for 2nd arg to [sg]etgroups() */
1734 #endif
1735
1736 /* I_NETDB:
1737  *      This symbol, if defined, indicates that <netdb.h> exists and
1738  *      should be included.
1739  */
1740 #$i_netdb I_NETDB               /**/
1741
1742 /* I_SYS_TYPES:
1743  *      This symbol, if defined, indicates to the C program that it should
1744  *      include <sys/types.h>.
1745  */
1746 #$i_systypes    I_SYS_TYPES             /**/
1747
1748 /* PRIVLIB:
1749  *      This symbol contains the name of the private library for this package.
1750  *      The library is private in the sense that it needn't be in anyone's
1751  *      execution path, but it should be accessible by the world.  The program
1752  *      should be prepared to do ~ expansion.
1753  */
1754 /* PRIVLIB_EXP:
1755  *      This symbol contains the ~name expanded version of PRIVLIB, to be used
1756  *      in programs that are not prepared to deal with ~ expansion at run-time.
1757  */
1758 #define PRIVLIB "$privlib"              /**/
1759 #define PRIVLIB_EXP "$privlibexp"               /**/
1760
1761 /* SITEARCH:
1762  *      This symbol contains the name of the private library for this package.
1763  *      The library is private in the sense that it needn't be in anyone's
1764  *      execution path, but it should be accessible by the world.  The program
1765  *      should be prepared to do ~ expansion.
1766  *      The standard distribution will put nothing in this directory.
1767  *      Individual sites may place their own extensions and modules in
1768  *      this directory.
1769  */
1770 /* SITEARCH_EXP:
1771  *      This symbol contains the ~name expanded version of SITEARCH, to be used
1772  *      in programs that are not prepared to deal with ~ expansion at run-time.
1773  */
1774 #define SITEARCH "$sitearch"            /**/
1775 #define SITEARCH_EXP "$sitearchexp"             /**/
1776
1777 /* SITELIB:
1778  *      This symbol contains the name of the private library for this package.
1779  *      The library is private in the sense that it needn't be in anyone's
1780  *      execution path, but it should be accessible by the world.  The program
1781  *      should be prepared to do ~ expansion.
1782  *      The standard distribution will put nothing in this directory.
1783  *      Individual sites may place their own extensions and modules in
1784  *      this directory.
1785  */
1786 /* SITELIB_EXP:
1787  *      This symbol contains the ~name expanded version of SITELIB, to be used
1788  *      in programs that are not prepared to deal with ~ expansion at run-time.
1789  */
1790 #define SITELIB "$sitelib"              /**/
1791 #define SITELIB_EXP "$sitelibexp"               /**/
1792
1793 /* DLSYM_NEEDS_UNDERSCORE:
1794  *      This symbol, if defined, indicates that we need to prepend an
1795  *      underscore to the symbol name before calling dlsym().  This only
1796  *      makes sense if you *have* dlsym, which we will presume is the
1797  *      case if you're using dl_dlopen.xs.
1798  */
1799 #$d_dlsymun     DLSYM_NEEDS_UNDERSCORE  /**/
1800
1801 /* USE_SFIO:
1802  *      This symbol, if defined, indicates that sfio should
1803  *      be used.
1804  */
1805 #$d_sfio        USE_SFIO                /**/
1806
1807 /* USE_DYNAMIC_LOADING:
1808  *      This symbol, if defined, indicates that dynamic loading of
1809  *      some sort is available.
1810  */
1811 #$usedl USE_DYNAMIC_LOADING             /**/
1812
1813 /* DB_Prefix_t:
1814  *      This symbol contains the type of the prefix structure element
1815  *      in the <db.h> header file.  In older versions of DB, it was
1816  *      int, while in newer ones it is u_int32_t.
1817  */
1818 /* DB_Hash_t:
1819  *      This symbol contains the type of the prefix structure element
1820  *      in the <db.h> header file.  In older versions of DB, it was
1821  *      int, while in newer ones it is size_t.
1822  */
1823 #define DB_Hash_t       $db_hashtype            /**/
1824 #define DB_Prefix_t     $db_prefixtype          /**/
1825
1826 /* STARTPERL:
1827  *      This variable contains the string to put in front of a perl
1828  *      script to make sure (one hopes) that it runs with perl and not
1829  *      some shell.
1830  */
1831 #define STARTPERL "$startperl"          /**/
1832
1833 /* USE_PERLIO:
1834  *      This symbol, if defined, indicates that the PerlIO abstraction should
1835  *      be used throughout.  If not defined, stdio should be
1836  *      used in a fully backward compatible manner.
1837  */
1838 #$useperlio     USE_PERLIO              /**/
1839
1840 /* HAS_GETHOST_PROTOS:
1841  *      This symbol, if defined, indicates that <netdb.h> includes
1842  *      prototypes for gethostent(), gethostbyname(), and
1843  *      gethostbyaddr().  Otherwise, it is up to the program to guess
1844  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
1845  */
1846 #$d_gethostprotos       HAS_GETHOST_PROTOS      /**/
1847
1848 /* HAS_GETNET_PROTOS:
1849  *      This symbol, if defined, indicates that <netdb.h> includes
1850  *      prototypes for getnetent(), getnetbyname(), and
1851  *      getnetbyaddr().  Otherwise, it is up to the program to guess
1852  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
1853  */
1854 #$d_getnetprotos        HAS_GETNET_PROTOS       /**/
1855
1856 /* HAS_GETPROTO_PROTOS:
1857  *      This symbol, if defined, indicates that <netdb.h> includes
1858  *      prototypes for getprotoent(), getprotobyname(), and
1859  *      getprotobyaddr().  Otherwise, it is up to the program to guess
1860  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
1861  */
1862 #$d_getprotoprotos      HAS_GETPROTO_PROTOS     /**/
1863
1864 /* HAS_GETSERV_PROTOS:
1865  *      This symbol, if defined, indicates that <netdb.h> includes
1866  *      prototypes for getservent(), getservbyname(), and
1867  *      getservbyaddr().  Otherwise, it is up to the program to guess
1868  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
1869  */
1870 #$d_getservprotos       HAS_GETSERV_PROTOS      /**/
1871
1872 /* Netdb_host_t:
1873  *      This symbol holds the type used for the 1st argument
1874  *      to gethostbyaddr().
1875  */
1876 /* Netdb_hlen_t:
1877  *      This symbol holds the type used for the 2nd argument
1878  *      to gethostbyaddr().
1879  */
1880 /* Netdb_name_t:
1881  *      This symbol holds the type used for the argument to
1882  *      gethostbyname().
1883  */
1884 /* Netdb_net_t:
1885  *      This symbol holds the type used for the 1st argument to
1886  *      getnetbyaddr().
1887  */
1888 #define Netdb_host_t            $netdb_host_type /**/
1889 #define Netdb_hlen_t            $netdb_hlen_type /**/
1890 #define Netdb_name_t            $netdb_name_type /**/
1891 #define Netdb_net_t             $netdb_net_type /**/
1892
1893 /* Select_fd_set_t:
1894  *      This symbol holds the type used for the 2nd, 3rd, and 4th
1895  *      arguments to select.  Usually, this is 'fd_set *', if HAS_FD_SET
1896  *      is defined, and 'int *' otherwise.  This is only useful if you 
1897  *      have select(), of course.
1898  */
1899 #define Select_fd_set_t         $selecttype     /**/
1900
1901 /* SIG_NAME:
1902  *      This symbol contains a list of signal names in order of
1903  *      signal number. This is intended
1904  *      to be used as a static array initialization, like this:
1905  *              char *sig_name[] = { SIG_NAME };
1906  *      The signals in the list are separated with commas, and each signal
1907  *      is surrounded by double quotes. There is no leading SIG in the signal
1908  *      name, i.e. SIGQUIT is known as "QUIT".
1909  *      Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
1910  *      etc., where nn is the actual signal number (e.g. NUM37).
1911  *      The signal number for sig_name[i] is stored in sig_num[i].
1912  *      The last element is 0 to terminate the list with a NULL.  This
1913  *      corresponds to the 0 at the end of the sig_num list.
1914  */
1915 /* SIG_NUM:
1916  *      This symbol contains a list of signal numbers, in the same order as the
1917  *      SIG_NAME list. It is suitable for static array initialization, as in:
1918  *              int sig_num[] = { SIG_NUM };
1919  *      The signals in the list are separated with commas, and the indices
1920  *      within that list and the SIG_NAME list match, so it's easy to compute
1921  *      the signal name from a number or vice versa at the price of a small
1922  *      dynamic linear lookup. 
1923  *      Duplicates are allowed, but are moved to the end of the list.
1924  *      The signal number corresponding to sig_name[i] is sig_number[i].
1925  *      if (i < NSIG) then sig_number[i] == i.  
1926  *      The last element is 0, corresponding to the 0 at the end of
1927  *      the sig_name list.
1928  */
1929 #define SIG_NAME $sig_name_init         /**/
1930 #define SIG_NUM  $sig_num                       /**/
1931
1932 /* ARCHNAME:
1933  *      This symbol holds a string representing the architecture name.
1934  *      It may be used to construct an architecture-dependant pathname
1935  *      where library files may be held under a private library, for
1936  *      instance.
1937  */
1938 #define ARCHNAME "$archname"            /**/
1939
1940 /* HAS_PTHREAD_YIELD:
1941  *      This symbol, if defined, indicates that the pthread_yield 
1942  *      routine is available to yield the execution of the current
1943  *      thread.
1944  */
1945 #$d_pthread_yield HAS_PTHREAD_YIELD     /**/
1946
1947 /* PTHREADS_CREATED_JOINABLE:
1948  *      This symbol, if defined, indicates that pthreads are created
1949  *      in the joinable (aka undetached) state.
1950  */
1951 #$d_pthreads_created_joinable PTHREADS_CREATED_JOINABLE /**/
1952
1953 /* USE_THREADS:
1954  *      This symbol, if defined, indicates that Perl should
1955  *      be built to use threads.
1956  */
1957 /* OLD_PTHREADS_API:
1958  *      This symbol, if defined, indicates that Perl should
1959  *      be built to use the old draft POSIX threads API.
1960  */
1961 #$usethreads    USE_THREADS             /**/
1962 #$d_oldpthreads OLD_PTHREADS_API                /**/
1963
1964 /* Time_t:
1965  *      This symbol holds the type returned by time(). It can be long,
1966  *      or time_t on BSD sites (in which case <sys/types.h> should be
1967  *      included).
1968  */
1969 #define Time_t $timetype                /* Time type */
1970
1971 /* HAS_TIMES:
1972  *      This symbol, if defined, indicates that the times() routine exists.
1973  *      Note that this became obsolete on some systems (SUNOS), which now
1974  * use getrusage(). It may be necessary to include <sys/times.h>.
1975  */
1976 #$d_times HAS_TIMES             /**/
1977
1978 /* Fpos_t:
1979  *      This symbol holds the type used to declare file positions in libc.
1980  *      It can be fpos_t, long, uint, etc... It may be necessary to include
1981  *      <sys/types.h> to get any typedef'ed information.
1982  */
1983 #define Fpos_t $fpostype                /* File position type */
1984
1985 /* Gid_t:
1986  *      This symbol holds the return type of getgid() and the type of
1987  *      argument to setrgid() and related functions.  Typically,
1988  *      it is the type of group ids in the kernel. It can be int, ushort,
1989  *      uid_t, etc... It may be necessary to include <sys/types.h> to get
1990  *      any typedef'ed information.
1991  */
1992 #define Gid_t $gidtype          /* Type for getgid(), etc... */
1993
1994 /* Off_t:
1995  *      This symbol holds the type used to declare offsets in the kernel.
1996  *      It can be int, long, off_t, etc... It may be necessary to include
1997  *      <sys/types.h> to get any typedef'ed information.
1998  */
1999 #define Off_t $lseektype                /* <offset> type */
2000
2001 /* Mode_t:
2002  *      This symbol holds the type used to declare file modes 
2003  *      for systems calls.  It is usually mode_t, but may be
2004  *      int or unsigned short.  It may be necessary to include <sys/types.h>
2005  *      to get any typedef'ed information.
2006  */
2007 #define Mode_t $modetype         /* file mode parameter for system calls */
2008
2009 /* Pid_t:
2010  *      This symbol holds the type used to declare process ids in the kernel.
2011  *      It can be int, uint, pid_t, etc... It may be necessary to include
2012  *      <sys/types.h> to get any typedef'ed information.
2013  */
2014 #define Pid_t $pidtype          /* PID type */
2015
2016 /* Size_t:
2017  *      This symbol holds the type used to declare length parameters
2018  *      for string functions.  It is usually size_t, but may be
2019  *      unsigned long, int, etc.  It may be necessary to include
2020  *      <sys/types.h> to get any typedef'ed information.
2021  */
2022 #define Size_t $sizetype         /* length paramater for string functions */
2023
2024 /* Uid_t:
2025  *      This symbol holds the type used to declare user ids in the kernel.
2026  *      It can be int, ushort, uid_t, etc... It may be necessary to include
2027  *      <sys/types.h> to get any typedef'ed information.
2028  */
2029 #define Uid_t $uidtype          /* UID type */
2030
2031 #endif
2032 !GROK!THIS!