[win32] remove C<#define index strchr> from win32.h (unused, and the
[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_SFIO:
922  *      This symbol, if defined, indicates to the C program that it should
923  *      include <sfio.h>.
924  */
925 #$i_sfio        I_SFIO          /**/
926
927 /* I_STDDEF:
928  *      This symbol, if defined, indicates that <stddef.h> exists and should
929  *      be included.
930  */
931 #$i_stddef I_STDDEF     /**/
932
933 /* I_STDLIB:
934  *      This symbol, if defined, indicates that <stdlib.h> exists and should
935  *      be included.
936  */
937 #$i_stdlib I_STDLIB             /**/
938
939 /* I_STRING:
940  *      This symbol, if defined, indicates to the C program that it should
941  *      include <string.h> (USG systems) instead of <strings.h> (BSD systems).
942  */
943 #$i_string I_STRING             /**/
944
945 /* I_SYS_DIR:
946  *      This symbol, if defined, indicates to the C program that it should
947  *      include <sys/dir.h>.
948  */
949 #$i_sysdir I_SYS_DIR            /**/
950
951 /* I_SYS_FILE:
952  *      This symbol, if defined, indicates to the C program that it should
953  *      include <sys/file.h> to get definition of R_OK and friends.
954  */
955 #$i_sysfile I_SYS_FILE          /**/
956
957 /* I_SYS_IOCTL:
958  *      This symbol, if defined, indicates that <sys/ioctl.h> exists and should
959  *      be included. Otherwise, include <sgtty.h> or <termio.h>.
960  */
961 #$i_sysioctl    I_SYS_IOCTL             /**/
962
963 /* I_SYS_NDIR:
964  *      This symbol, if defined, indicates to the C program that it should
965  *      include <sys/ndir.h>.
966  */
967 #$i_sysndir I_SYS_NDIR  /**/
968
969 /* I_SYS_PARAM:
970  *      This symbol, if defined, indicates to the C program that it should
971  *      include <sys/param.h>.
972  */
973 #$i_sysparam I_SYS_PARAM                /**/
974
975 /* I_SYS_RESOURCE:
976  *      This symbol, if defined, indicates to the C program that it should
977  *      include <sys/resource.h>.
978  */
979 #$i_sysresrc I_SYS_RESOURCE             /**/
980
981 /* I_SYS_SELECT:
982  *      This symbol, if defined, indicates to the C program that it should
983  *      include <sys/select.h> in order to get definition of struct timeval.
984  */
985 #$i_sysselct I_SYS_SELECT       /**/
986
987 /* I_SYS_STAT:
988  *      This symbol, if defined, indicates to the C program that it should
989  *      include <sys/stat.h>.
990  */
991 #$i_sysstat     I_SYS_STAT              /**/
992
993 /* I_SYS_TIMES:
994  *      This symbol, if defined, indicates to the C program that it should
995  *      include <sys/times.h>.
996  */
997 #$i_systimes    I_SYS_TIMES             /**/
998
999 /* I_SYS_UN:
1000  *      This symbol, if defined, indicates to the C program that it should
1001  *      include <sys/un.h> to get UNIX domain socket definitions.
1002  */
1003 #$i_sysun I_SYS_UN              /**/
1004
1005 /* I_SYS_WAIT:
1006  *      This symbol, if defined, indicates to the C program that it should
1007  *      include <sys/wait.h>.
1008  */
1009 #$i_syswait I_SYS_WAIT  /**/
1010
1011 /* I_TERMIO:
1012  *      This symbol, if defined, indicates that the program should include
1013  *      <termio.h> rather than <sgtty.h>.  There are also differences in
1014  *      the ioctl() calls that depend on the value of this symbol.
1015  */
1016 /* I_TERMIOS:
1017  *      This symbol, if defined, indicates that the program should include
1018  *      the POSIX termios.h rather than sgtty.h or termio.h.
1019  *      There are also differences in the ioctl() calls that depend on the
1020  *      value of this symbol.
1021  */
1022 /* I_SGTTY:
1023  *      This symbol, if defined, indicates that the program should include
1024  *      <sgtty.h> rather than <termio.h>.  There are also differences in
1025  *      the ioctl() calls that depend on the value of this symbol.
1026  */
1027 #$i_termio I_TERMIO             /**/
1028 #$i_termios I_TERMIOS           /**/
1029 #$i_sgtty I_SGTTY               /**/
1030
1031 /* I_UNISTD:
1032  *      This symbol, if defined, indicates to the C program that it should
1033  *      include <unistd.h>.
1034  */
1035 #$i_unistd I_UNISTD             /**/
1036
1037 /* I_UTIME:
1038  *      This symbol, if defined, indicates to the C program that it should
1039  *      include <utime.h>.
1040  */
1041 #$i_utime I_UTIME               /**/
1042
1043 /* I_VALUES:
1044  *      This symbol, if defined, indicates to the C program that it should
1045  *      include <values.h> to get definition of symbols like MINFLOAT or
1046  *      MAXLONG, i.e. machine dependant limitations.  Probably, you
1047  *      should use <limits.h> instead, if it is available.
1048  */
1049 #$i_values I_VALUES             /**/
1050
1051 /* I_STDARG:
1052  *      This symbol, if defined, indicates that <stdarg.h> exists and should
1053  *      be included.
1054  */
1055 /* I_VARARGS:
1056  *      This symbol, if defined, indicates to the C program that it should
1057  *      include <varargs.h>.
1058  */
1059 #$i_stdarg I_STDARG             /**/
1060 #$i_varargs I_VARARGS   /**/
1061
1062 /* I_VFORK:
1063  *      This symbol, if defined, indicates to the C program that it should
1064  *      include vfork.h.
1065  */
1066 #$i_vfork I_VFORK       /**/
1067
1068 /* Free_t:
1069  *      This variable contains the return type of free().  It is usually
1070  * void, but occasionally int.
1071  */
1072 /* Malloc_t:
1073  *      This symbol is the type of pointer returned by malloc and realloc.
1074  */
1075 #define Malloc_t $malloctype                    /**/
1076 #define Free_t $freetype                        /**/
1077
1078 /* MYMALLOC:
1079  *      This symbol, if defined, indicates that we're using our own malloc.
1080  */
1081 #$d_mymalloc MYMALLOC                   /**/
1082
1083 /* CAN_PROTOTYPE:
1084  *      If defined, this macro indicates that the C compiler can handle
1085  *      function prototypes.
1086  */
1087 /* _:
1088  *      This macro is used to declare function parameters for folks who want
1089  *      to make declarations with prototypes using a different style than
1090  *      the above macros.  Use double parentheses.  For example:
1091  *
1092  *              int main _((int argc, char *argv[]));
1093  */
1094 #$prototype     CAN_PROTOTYPE   /**/
1095 #ifdef CAN_PROTOTYPE
1096 #define _(args) args
1097 #else
1098 #define _(args) ()
1099 #endif
1100
1101 /* SH_PATH:
1102  *      This symbol contains the full pathname to the shell used on this
1103  *      on this system to execute Bourne shell scripts.  Usually, this will be
1104  *      /bin/sh, though it's possible that some systems will have /bin/ksh,
1105  *      /bin/pdksh, /bin/ash, /bin/bash, or even something such as
1106  *      D:/bin/sh.exe.
1107  */
1108 #define SH_PATH "$sh"  /**/
1109
1110 /* STDCHAR:
1111  *      This symbol is defined to be the type of char used in stdio.h.
1112  *      It has the values "unsigned char" or "char".
1113  */
1114 #define STDCHAR $stdchar        /**/
1115
1116 /* VOIDFLAGS:
1117  *      This symbol indicates how much support of the void type is given by this
1118  *      compiler.  What various bits mean:
1119  *
1120  *          1 = supports declaration of void
1121  *          2 = supports arrays of pointers to functions returning void
1122  *          4 = supports comparisons between pointers to void functions and
1123  *                  addresses of void functions
1124  *          8 = suports declaration of generic void pointers
1125  *
1126  *      The package designer should define VOIDUSED to indicate the requirements
1127  *      of the package.  This can be done either by #defining VOIDUSED before
1128  *      including config.h, or by defining defvoidused in Myinit.U.  If the
1129  *      latter approach is taken, only those flags will be tested.  If the
1130  *      level of void support necessary is not present, defines void to int.
1131  */
1132 #ifndef VOIDUSED
1133 #define VOIDUSED $defvoidused
1134 #endif
1135 #define VOIDFLAGS $voidflags
1136 #if (VOIDFLAGS & VOIDUSED) != VOIDUSED
1137 #define void int                /* is void to be avoided? */
1138 #define M_VOID                  /* Xenix strikes again */
1139 #endif
1140
1141 /* MEM_ALIGNBYTES:
1142  *       This symbol contains the number of bytes required to align a
1143  *       double. Usual values are 2, 4 and 8.
1144  *       On NeXT starting with 3.2, you can build "Fat" Multiple Architecture
1145  *       Binaries (MAB) for targets with varying alignment.  This only matters
1146  *       for perl, where the config.h can be generated and installed on one
1147  *       system, and used by a different architecture to build an extension.
1148  *       The default is eight, for safety.
1149  */
1150 #define MEM_ALIGNBYTES $alignbytes      /**/
1151
1152 /* BYTEORDER:
1153  *      This symbol holds the hexadecimal constant defined in byteorder,
1154  *      i.e. 0x1234 or 0x4321, etc...
1155  *      On NeXT 3.2 (and greater), you can build "Fat" Multiple Architecture
1156  *      Binaries (MAB) on either big endian or little endian machines.
1157  *      The endian-ness is available at compile-time.  This only matters
1158  *      for perl, where the config.h can be generated and installed on 
1159  *      one system, and used by a different architecture to build an
1160  *      extension.  Older versions of NeXT that might not have
1161  *      defined either *_ENDIAN__ were all on Motorola 680x0 series,
1162  *      so the default case (for NeXT) is big endian to catch them. 
1163  *      This might matter for NeXT 3.0.
1164  */
1165 #ifndef NeXT
1166 #define BYTEORDER 0x$byteorder  /* large digits for MSB */
1167 #else  /* NeXT */
1168 #ifdef __LITTLE_ENDIAN__
1169 #define BYTEORDER 0x1234
1170 #else /* __BIG_ENDIAN__ */
1171 #define BYTEORDER 0x4321
1172 #endif /* ENDIAN CHECK */
1173 #endif /* NeXT */
1174
1175 /* CASTI32:
1176  *      This symbol is defined if the C compiler can cast negative
1177  *      or large floating point numbers to 32-bit ints.
1178  */
1179 #$d_casti32     CASTI32         /**/
1180
1181 /* CASTNEGFLOAT:
1182  *      This symbol is defined if the C compiler can cast negative
1183  *      numbers to unsigned longs, ints and shorts.
1184  */
1185 /* CASTFLAGS:
1186  *      This symbol contains flags that say what difficulties the compiler
1187  *      has casting odd floating values to unsigned long:
1188  *              0 = ok
1189  *              1 = couldn't cast < 0
1190  *              2 = couldn't cast >= 0x80000000
1191  *              4 = couldn't cast in argument expression list
1192  */
1193 #$d_castneg     CASTNEGFLOAT            /**/
1194 #define CASTFLAGS $castflags            /**/
1195
1196 /* VOID_CLOSEDIR:
1197  *      This symbol, if defined, indicates that the closedir() routine
1198  *      does not return a value.
1199  */
1200 #$d_void_closedir VOID_CLOSEDIR         /**/
1201
1202 /* Gconvert:
1203  *      This preprocessor macro is defined to convert a floating point
1204  *      number to a string without a trailing decimal point.  This
1205  *      emulates the behavior of sprintf("%g"), but is sometimes much more
1206  *      efficient.  If gconvert() is not available, but gcvt() drops the
1207  *      trailing decimal point, then gcvt() is used.  If all else fails,
1208  *      a macro using sprintf("%g") is used. Arguments for the Gconvert
1209  *      macro are: value, number of digits, whether trailing zeros should
1210  *      be retained, and the output buffer.
1211  *      Possible values are:
1212  *              d_Gconvert='gconvert((x),(n),(t),(b))'
1213  *              d_Gconvert='gcvt((x),(n),(b))'
1214  *              d_Gconvert='sprintf((b),"%.*g",(n),(x))'
1215  *      The last two assume trailing zeros should not be kept.
1216  */
1217 #define Gconvert(x,n,t,b) $d_Gconvert
1218
1219 /* HAS_GNULIBC:
1220  *      This symbol, if defined, indicates to the C program that 
1221  *      the GNU C library is being used.
1222  */
1223 #$d_gnulibc HAS_GNULIBC         /**/
1224 /* HAS_ISASCII:
1225  *      This manifest constant lets the C program know that isascii 
1226  *      is available.
1227  */
1228 #$d_isascii HAS_ISASCII         /**/
1229
1230 /* HAS_OPEN3:
1231  *      This manifest constant lets the C program know that the three
1232  *      argument form of open(2) is available.
1233  */
1234 #$d_open3 HAS_OPEN3             /**/
1235
1236 /* HAS_SAFE_BCOPY:
1237  *      This symbol, if defined, indicates that the bcopy routine is available
1238  *      to copy potentially overlapping memory blocks. Otherwise you should
1239  *      probably use memmove() or memcpy(). If neither is defined, roll your
1240  *      own version.
1241  */
1242 #$d_safebcpy HAS_SAFE_BCOPY     /**/
1243
1244 /* HAS_SAFE_MEMCPY:
1245  *      This symbol, if defined, indicates that the memcpy routine is available
1246  *      to copy potentially overlapping memory blocks. Otherwise you should
1247  *      probably use memmove() or memcpy(). If neither is defined, roll your
1248  *      own version.
1249  */
1250 #$d_safemcpy HAS_SAFE_MEMCPY    /**/
1251
1252 /* HAS_SANE_MEMCMP:
1253  *      This symbol, if defined, indicates that the memcmp routine is available
1254  *      and can be used to compare relative magnitudes of chars with their high
1255  *      bits set.  If it is not defined, roll your own version.
1256  */
1257 #$d_sanemcmp HAS_SANE_MEMCMP    /**/
1258
1259 /* HAS_SIGACTION:
1260  *      This symbol, if defined, indicates that Vr4's sigaction() routine
1261  *      is available.
1262  */
1263 #$d_sigaction HAS_SIGACTION     /**/
1264
1265 /* Sigjmp_buf:
1266  *      This is the buffer type to be used with Sigsetjmp and Siglongjmp.
1267  */
1268 /* Sigsetjmp:
1269  *      This macro is used in the same way as sigsetjmp(), but will invoke
1270  *      traditional setjmp() if sigsetjmp isn't available.
1271  *      See HAS_SIGSETJMP.
1272  */
1273 /* Siglongjmp:
1274  *      This macro is used in the same way as siglongjmp(), but will invoke
1275  *      traditional longjmp() if siglongjmp isn't available.
1276  *      See HAS_SIGSETJMP.
1277  */
1278 #$d_sigsetjmp HAS_SIGSETJMP     /**/
1279 #ifdef HAS_SIGSETJMP
1280 #define Sigjmp_buf sigjmp_buf
1281 #define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
1282 #define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
1283 #else
1284 #define Sigjmp_buf jmp_buf
1285 #define Sigsetjmp(buf,save_mask) setjmp((buf))
1286 #define Siglongjmp(buf,retval) longjmp((buf),(retval))
1287 #endif
1288
1289 /* USE_STDIO_PTR:
1290  *      This symbol is defined if the _ptr and _cnt fields (or similar)
1291  *      of the stdio FILE structure can be used to access the stdio buffer
1292  *      for a file handle.  If this is defined, then the FILE_ptr(fp)
1293  *      and FILE_cnt(fp) macros will also be defined and should be used
1294  *      to access these fields.
1295  */
1296 /* FILE_ptr:
1297  *      This macro is used to access the _ptr field (or equivalent) of the
1298  *      FILE structure pointed to by its argument. This macro will always be
1299  *      defined if USE_STDIO_PTR is defined.
1300  */
1301 /* STDIO_PTR_LVALUE:
1302  *      This symbol is defined if the FILE_ptr macro can be used as an
1303  *      lvalue.
1304  */
1305 /* FILE_cnt:
1306  *      This macro is used to access the _cnt field (or equivalent) of the
1307  *      FILE structure pointed to by its argument. This macro will always be
1308  *      defined if USE_STDIO_PTR is defined.
1309  */
1310 /* STDIO_CNT_LVALUE:
1311  *      This symbol is defined if the FILE_cnt macro can be used as an
1312  *      lvalue.
1313  */
1314 #$d_stdstdio USE_STDIO_PTR      /**/
1315 #ifdef USE_STDIO_PTR
1316 #define FILE_ptr(fp)    $stdio_ptr
1317 #$d_stdio_ptr_lval STDIO_PTR_LVALUE             /**/
1318 #define FILE_cnt(fp)    $stdio_cnt
1319 #$d_stdio_cnt_lval STDIO_CNT_LVALUE             /**/
1320 #endif
1321
1322 /* USE_STDIO_BASE:
1323  *      This symbol is defined if the _base field (or similar) of the
1324  *      stdio FILE structure can be used to access the stdio buffer for
1325  *      a file handle.  If this is defined, then the FILE_base(fp) macro
1326  *      will also be defined and should be used to access this field.
1327  *      Also, the FILE_bufsiz(fp) macro will be defined and should be used
1328  *      to determine the number of bytes in the buffer.  USE_STDIO_BASE
1329  *      will never be defined unless USE_STDIO_PTR is.
1330  */
1331 /* FILE_base:
1332  *      This macro is used to access the _base field (or equivalent) of the
1333  *      FILE structure pointed to by its argument. This macro will always be
1334  *      defined if USE_STDIO_BASE is defined.
1335  */
1336 /* FILE_bufsiz:
1337  *      This macro is used to determine the number of bytes in the I/O
1338  *      buffer pointed to by _base field (or equivalent) of the FILE
1339  *      structure pointed to its argument. This macro will always be defined
1340  *      if USE_STDIO_BASE is defined.
1341  */
1342 #$d_stdiobase USE_STDIO_BASE    /**/
1343 #ifdef USE_STDIO_BASE
1344 #define FILE_base(fp)   $stdio_base
1345 #define FILE_bufsiz(fp) $stdio_bufsiz
1346 #endif
1347
1348 /* HAS_VPRINTF:
1349  *      This symbol, if defined, indicates that the vprintf routine is available
1350  *      to printf with a pointer to an argument list.  If unavailable, you
1351  *      may need to write your own, probably in terms of _doprnt().
1352  */
1353 /* USE_CHAR_VSPRINTF:
1354  *      This symbol is defined if this system has vsprintf() returning type
1355  *      (char*).  The trend seems to be to declare it as "int vsprintf()".  It
1356  *      is up to the package author to declare vsprintf correctly based on the
1357  *      symbol.
1358  */
1359 #$d_vprintf HAS_VPRINTF /**/
1360 #$d_charvspr USE_CHAR_VSPRINTF  /**/
1361
1362 /* DOUBLESIZE:
1363  *      This symbol contains the size of a double, so that the C preprocessor
1364  *      can make decisions based on it.
1365  */
1366 #define DOUBLESIZE $doublesize          /**/
1367
1368 /* I_TIME:
1369  *      This symbol, if defined, indicates to the C program that it should
1370  *      include <time.h>.
1371  */
1372 /* I_SYS_TIME:
1373  *      This symbol, if defined, indicates to the C program that it should
1374  *      include <sys/time.h>.
1375  */
1376 /* I_SYS_TIME_KERNEL:
1377  *      This symbol, if defined, indicates to the C program that it should
1378  *      include <sys/time.h> with KERNEL defined.
1379  */
1380 #$i_time I_TIME         /**/
1381 #$i_systime I_SYS_TIME          /**/
1382 #$i_systimek I_SYS_TIME_KERNEL          /**/
1383
1384 /* INTSIZE:
1385  *      This symbol contains the value of sizeof(int) so that the C
1386  *      preprocessor can make decisions based on it.
1387  */
1388 /* LONGSIZE:
1389  *      This symbol contains the value of sizeof(long) so that the C
1390  *      preprocessor can make decisions based on it.
1391  */
1392 /* SHORTSIZE:
1393  *      This symbol contains the value of sizeof(short) so that the C
1394  *      preprocessor can make decisions based on it.
1395  */
1396 #define INTSIZE $intsize                /**/
1397 #define LONGSIZE $longsize              /**/
1398 #define SHORTSIZE $shortsize            /**/
1399
1400 /* VAL_O_NONBLOCK:
1401  *      This symbol is to be used during open() or fcntl(F_SETFL) to turn on
1402  *      non-blocking I/O for the file descriptor. Note that there is no way
1403  *      back, i.e. you cannot turn it blocking again this way. If you wish to
1404  *      alternatively switch between blocking and non-blocking, use the
1405  *      ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
1406  */
1407 /* VAL_EAGAIN:
1408  *      This symbol holds the errno error code set by read() when no data was
1409  *      present on the non-blocking file descriptor.
1410  */
1411 /* RD_NODATA:
1412  *      This symbol holds the return code from read() when no data is present
1413  *      on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
1414  *      not defined, then you can't distinguish between no data and EOF by
1415  *      issuing a read(). You'll have to find another way to tell for sure!
1416  */
1417 /* EOF_NONBLOCK:
1418  *      This symbol, if defined, indicates to the C program that a read() on
1419  *      a non-blocking file descriptor will return 0 on EOF, and not the value
1420  *      held in RD_NODATA (-1 usually, in that case!).
1421  */
1422 #define VAL_O_NONBLOCK $o_nonblock
1423 #define VAL_EAGAIN $eagain
1424 #define RD_NODATA $rd_nodata
1425 #$d_eofnblk EOF_NONBLOCK
1426
1427 /* PTRSIZE:
1428  *      This symbol contains the size of a pointer, so that the C preprocessor
1429  *      can make decisions based on it.  It will be sizeof(void *) if
1430  *      the compiler supports (void *); otherwise it will be
1431  *      sizeof(char *).
1432  */
1433 #define PTRSIZE $ptrsize                /**/
1434
1435 /* RANDBITS:
1436  *      This symbol contains the number of bits of random number the rand()
1437  *      function produces.  Usual values are 15, 16, and 31.
1438  */
1439 #define RANDBITS $randbits              /**/
1440
1441 /* SSize_t:
1442  *      This symbol holds the type used by functions that return
1443  *      a count of bytes or an error condition.  It must be a signed type.
1444  *      It is usually ssize_t, but may be long or int, etc.
1445  *      It may be necessary to include <sys/types.h> or <unistd.h>
1446  *      to get any typedef'ed information.
1447  *      We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
1448  */
1449 #define SSize_t $ssizetype       /* signed count of bytes */
1450
1451 /* OSNAME:
1452  *      This symbol contains the name of the operating system, as determined
1453  *      by Configure.  You shouldn't rely on it too much; the specific
1454  *      feature tests from Configure are generally more reliable.
1455  */
1456 #define OSNAME "$osname"                /**/
1457
1458 /* ARCHLIB:
1459  *      This variable, if defined, holds the name of the directory in
1460  *      which the user wants to put architecture-dependent public
1461  *      library files for $package.  It is most often a local directory
1462  *      such as /usr/local/lib.  Programs using this variable must be
1463  *      prepared to deal with filename expansion.  If ARCHLIB is the
1464  *      same as PRIVLIB, it is not defined, since presumably the
1465  *      program already searches PRIVLIB.
1466  */
1467 /* ARCHLIB_EXP:
1468  *      This symbol contains the ~name expanded version of ARCHLIB, to be used
1469  *      in programs that are not prepared to deal with ~ expansion at run-time.
1470  */
1471 #$d_archlib ARCHLIB "$archlib"          /**/
1472 #$d_archlib ARCHLIB_EXP "$archlibexp"           /**/
1473
1474 /* CAT2:
1475  *      This macro catenates 2 tokens together.
1476  */
1477 /* STRINGIFY:
1478  *      This macro surrounds its token with double quotes.
1479  */
1480 #if $cpp_stuff == 1
1481 #define CAT2(a,b)a/**/b
1482 #define STRINGIFY(a)"a"
1483                 /* If you can get stringification with catify, tell me how! */
1484 #endif
1485 #if $cpp_stuff == 42
1486 #define CAT2(a,b)a ## b
1487 #define StGiFy(a)# a
1488 #define STRINGIFY(a)StGiFy(a)
1489 #endif
1490 #if $cpp_stuff != 1 && $cpp_stuff != 42
1491 #include "Bletch: How does this C preprocessor catenate tokens?"
1492 #endif
1493
1494 /* CSH:
1495  *      This symbol, if defined, contains the full pathname of csh.
1496  */
1497 #$d_csh HAS_CSH         /**/
1498 #ifdef HAS_CSH
1499 #define CSH "$full_csh" /**/
1500 #endif
1501
1502 /* HAS_ENDHOSTENT:
1503  *      This symbol, if defined, indicates that the endhostent() routine is
1504  *      available to close whatever was being used for host queries.
1505  */
1506 #$d_endhent HAS_ENDHOSTENT              /**/
1507
1508 /* HAS_ENDNETENT:
1509  *      This symbol, if defined, indicates that the endnetent() routine is
1510  *      available to close whatever was being used for network queries.
1511  */
1512 #$d_endnent HAS_ENDNETENT               /**/
1513
1514 /* HAS_ENDPROTOENT:
1515  *      This symbol, if defined, indicates that the endprotoent() routine is
1516  *      available to close whatever was being used for protocol queries.
1517  */
1518 #$d_endpent HAS_ENDPROTOENT             /**/
1519
1520 /* HAS_ENDSERVENT:
1521  *      This symbol, if defined, indicates that the endservent() routine is
1522  *      available to close whatever was being used for service queries.
1523  */
1524 #$d_endsent HAS_ENDSERVENT              /**/
1525
1526 /* HAS_GETHOSTBYADDR:
1527  *      This symbol, if defined, indicates that the gethostbyaddr() routine is
1528  *      available to look up hosts by their IP addresses.
1529  */
1530 #$d_gethbyaddr HAS_GETHOSTBYADDR                /**/
1531
1532 /* HAS_GETHOSTBYNAME:
1533  *      This symbol, if defined, indicates that the gethostbyname() routine is
1534  *      available to look up host names in some data base or other.
1535  */
1536 #$d_gethbyname HAS_GETHOSTBYNAME                /**/
1537
1538 /* HAS_GETHOSTENT:
1539  *      This symbol, if defined, indicates that the gethostent() routine is
1540  *      available to look up host names in some data base or another.
1541  */
1542 #$d_gethent HAS_GETHOSTENT              /**/
1543
1544 /* HAS_GETNETBYADDR:
1545  *      This symbol, if defined, indicates that the getnetbyaddr() routine is
1546  *      available to look up networks by their IP addresses.
1547  */
1548 #$d_getnbyaddr HAS_GETNETBYADDR         /**/
1549
1550 /* HAS_GETNETBYNAME:
1551  *      This symbol, if defined, indicates that the getnetbyname() routine is
1552  *      available to look up networks by their names.
1553  */
1554 #$d_getnbyname HAS_GETNETBYNAME         /**/
1555
1556 /* HAS_GETNETENT:
1557  *      This symbol, if defined, indicates that the getnetent() routine is
1558  *      available to look up network names in some data base or another.
1559  */
1560 #$d_getnent HAS_GETNETENT               /**/
1561
1562 /* HAS_GETPROTOENT:
1563  *      This symbol, if defined, indicates that the getprotoent() routine is
1564  *      available to look up protocols in some data base or another.
1565  */
1566 #$d_getpent HAS_GETPROTOENT             /**/
1567
1568 /* HAS_GETPROTOBYNAME:
1569  *      This symbol, if defined, indicates that the getprotobyname()
1570  *      routine is available to look up protocols by their name.
1571  */
1572 /* HAS_GETPROTOBYNUMBER:
1573  *      This symbol, if defined, indicates that the getprotobynumber()
1574  *      routine is available to look up protocols by their number.
1575  */
1576 #$d_getpbyname HAS_GETPROTOBYNAME               /**/
1577 #$d_getpbynumber HAS_GETPROTOBYNUMBER           /**/
1578
1579 /* HAS_GETSERVENT:
1580  *      This symbol, if defined, indicates that the getservent() routine is
1581  *      available to look up network services in some data base or another.
1582  */
1583 #$d_getsent HAS_GETSERVENT              /**/
1584
1585 /* HAS_GETSERVBYNAME:
1586  *      This symbol, if defined, indicates that the getservbyname()
1587  *      routine is available to look up services by their name.
1588  */
1589 /* HAS_GETSERVBYPORT:
1590  *      This symbol, if defined, indicates that the getservbyport()
1591  *      routine is available to look up services by their port.
1592  */
1593 #$d_getsbyname HAS_GETSERVBYNAME                /**/
1594 #$d_getsbyport HAS_GETSERVBYPORT                /**/
1595
1596 /* HAS_LONG_DOUBLE:
1597  *      This symbol will be defined if the C compiler supports long
1598  *      doubles.
1599  */
1600 /* LONG_DOUBLESIZE:
1601  *      This symbol contains the size of a long double, so that the 
1602  *      C preprocessor can make decisions based on it.  It is only
1603  *      defined if the system supports long doubles.
1604  */
1605 #$d_longdbl HAS_LONG_DOUBLE             /**/
1606 #ifdef HAS_LONG_DOUBLE
1607 #define LONG_DOUBLESIZE $longdblsize            /**/
1608 #endif
1609
1610 /* HAS_LONG_LONG:
1611  *      This symbol will be defined if the C compiler supports
1612  *      long long.
1613  */
1614 /* LONGLONGSIZE:
1615  *      This symbol contains the size of a long long, so that the 
1616  *      C preprocessor can make decisions based on it.  It is only
1617  *      defined if the system supports long long.
1618  */
1619 #$d_longlong HAS_LONG_LONG              /**/
1620 #ifdef HAS_LONG_LONG
1621 #define LONGLONGSIZE $longlongsize              /**/
1622 #endif
1623
1624 /* HAS_MKSTEMP:
1625  *      This symbol, if defined, indicates that the mkstemp routine is
1626  *      available to create and open a unique temporary file.
1627  */
1628 #$d_mkstemp HAS_MKSTEMP         /**/
1629
1630 /* HAS_SETGROUPS:
1631  *      This symbol, if defined, indicates that the setgroups() routine is
1632  *      available to set the list of process groups.  If unavailable, multiple
1633  *      groups are probably not supported.
1634  */
1635 #$d_setgrps HAS_SETGROUPS               /**/
1636
1637 /* HAS_SETHOSTENT:
1638  *      This symbol, if defined, indicates that the sethostent() routine is
1639  *      available.
1640  */
1641 #$d_sethent HAS_SETHOSTENT              /**/
1642
1643 /* HAS_SETNETENT:
1644  *      This symbol, if defined, indicates that the setnetent() routine is
1645  *      available.
1646  */
1647 #$d_setnent HAS_SETNETENT               /**/
1648
1649 /* HAS_SETPROTOENT:
1650  *      This symbol, if defined, indicates that the setprotoent() routine is
1651  *      available.
1652  */
1653 #$d_setpent HAS_SETPROTOENT             /**/
1654
1655 /* HAS_SETSERVENT:
1656  *      This symbol, if defined, indicates that the setservent() routine is
1657  *      available.
1658  */
1659 #$d_setsent HAS_SETSERVENT              /**/
1660
1661 /* HAS_SETVBUF:
1662  *      This symbol, if defined, indicates that the setvbuf routine is
1663  *      available to change buffering on an open stdio stream.
1664  *      to a line-buffered mode.
1665  */
1666 #$d_setvbuf HAS_SETVBUF         /**/
1667
1668 /* HAS_SOCKET:
1669  *      This symbol, if defined, indicates that the BSD socket interface is
1670  *      supported.
1671  */
1672 /* HAS_SOCKETPAIR:
1673  *      This symbol, if defined, indicates that the BSD socketpair() call is
1674  *      supported.
1675  */
1676 #$d_socket HAS_SOCKET           /**/
1677 #$d_sockpair HAS_SOCKETPAIR     /**/
1678
1679 /* Signal_t:
1680  *      This symbol's value is either "void" or "int", corresponding to the
1681  *      appropriate return type of a signal handler.  Thus, you can declare
1682  *      a signal handler using "Signal_t (*handler)()", and define the
1683  *      handler using "Signal_t handler(sig)".
1684  */
1685 #define Signal_t $signal_t      /* Signal handler's return type */
1686
1687 /* Groups_t:
1688  *      This symbol holds the type used for the second argument to
1689  *      getgroups() and setgropus().  Usually, this is the same as
1690  *      gidtype (gid_t) , but sometimes it isn't.
1691  *      It can be int, ushort, uid_t, etc... 
1692  *      It may be necessary to include <sys/types.h> to get any 
1693  *      typedef'ed information.  This is only required if you have
1694  *      getgroups() or setgropus()..
1695  */
1696 #if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
1697 #define Groups_t $groupstype    /* Type for 2nd arg to [sg]etgroups() */
1698 #endif
1699
1700 /* I_NETDB:
1701  *      This symbol, if defined, indicates that <netdb.h> exists and
1702  *      should be included.
1703  */
1704 #$i_netdb I_NETDB               /**/
1705
1706 /* I_PWD:
1707  *      This symbol, if defined, indicates to the C program that it should
1708  *      include <pwd.h>.
1709  */
1710 /* PWQUOTA:
1711  *      This symbol, if defined, indicates to the C program that struct passwd
1712  *      contains pw_quota.
1713  */
1714 /* PWAGE:
1715  *      This symbol, if defined, indicates to the C program that struct passwd
1716  *      contains pw_age.
1717  */
1718 /* PWCHANGE:
1719  *      This symbol, if defined, indicates to the C program that struct passwd
1720  *      contains pw_change.
1721  */
1722 /* PWCLASS:
1723  *      This symbol, if defined, indicates to the C program that struct passwd
1724  *      contains pw_class.
1725  */
1726 /* PWEXPIRE:
1727  *      This symbol, if defined, indicates to the C program that struct passwd
1728  *      contains pw_expire.
1729  */
1730 /* PWCOMMENT:
1731  *      This symbol, if defined, indicates to the C program that struct passwd
1732  *      contains pw_comment.
1733  */
1734 /* PWGECOS:
1735  *      This symbol, if defined, indicates to the C program that struct passwd
1736  *      contains pw_gecos.
1737  */
1738 #$i_pwd I_PWD           /**/
1739 #$d_pwquota PWQUOTA     /**/
1740 #$d_pwage PWAGE /**/
1741 #$d_pwchange PWCHANGE   /**/
1742 #$d_pwclass PWCLASS     /**/
1743 #$d_pwexpire PWEXPIRE   /**/
1744 #$d_pwcomment PWCOMMENT /**/
1745 #$d_pwgecos PWGECOS     /**/
1746
1747 /* I_SYS_TYPES:
1748  *      This symbol, if defined, indicates to the C program that it should
1749  *      include <sys/types.h>.
1750  */
1751 #$i_systypes    I_SYS_TYPES             /**/
1752
1753 /* PRIVLIB:
1754  *      This symbol contains the name of the private library for this package.
1755  *      The library is private in the sense that it needn't be in anyone's
1756  *      execution path, but it should be accessible by the world.  The program
1757  *      should be prepared to do ~ expansion.
1758  */
1759 /* PRIVLIB_EXP:
1760  *      This symbol contains the ~name expanded version of PRIVLIB, to be used
1761  *      in programs that are not prepared to deal with ~ expansion at run-time.
1762  */
1763 #define PRIVLIB "$privlib"              /**/
1764 #define PRIVLIB_EXP "$privlibexp"               /**/
1765
1766 /* SIG_NAME:
1767  *      This symbol contains a list of signal names in order of
1768  *      signal number. This is intended
1769  *      to be used as a static array initialization, like this:
1770  *              char *sig_name[] = { SIG_NAME };
1771  *      The signals in the list are separated with commas, and each signal
1772  *      is surrounded by double quotes. There is no leading SIG in the signal
1773  *      name, i.e. SIGQUIT is known as "QUIT".
1774  *      Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
1775  *      etc., where nn is the actual signal number (e.g. NUM37).
1776  *      The signal number for sig_name[i] is stored in sig_num[i].
1777  *      The last element is 0 to terminate the list with a NULL.  This
1778  *      corresponds to the 0 at the end of the sig_num list.
1779  */
1780 /* SIG_NUM:
1781  *      This symbol contains a list of signal numbers, in the same order as the
1782  *      SIG_NAME list. It is suitable for static array initialization, as in:
1783  *              int sig_num[] = { SIG_NUM };
1784  *      The signals in the list are separated with commas, and the indices
1785  *      within that list and the SIG_NAME list match, so it's easy to compute
1786  *      the signal name from a number or vice versa at the price of a small
1787  *      dynamic linear lookup. 
1788  *      Duplicates are allowed, but are moved to the end of the list.
1789  *      The signal number corresponding to sig_name[i] is sig_number[i].
1790  *      if (i < NSIG) then sig_number[i] == i.  
1791  *      The last element is 0, corresponding to the 0 at the end of
1792  *      the sig_name list.
1793  */
1794 #define SIG_NAME $sig_name_init         /**/
1795 #define SIG_NUM  $sig_num                       /**/
1796
1797 /* SITEARCH:
1798  *      This symbol contains the name of the private library for this package.
1799  *      The library is private in the sense that it needn't be in anyone's
1800  *      execution path, but it should be accessible by the world.  The program
1801  *      should be prepared to do ~ expansion.
1802  *      The standard distribution will put nothing in this directory.
1803  *      Individual sites may place their own extensions and modules in
1804  *      this directory.
1805  */
1806 /* SITEARCH_EXP:
1807  *      This symbol contains the ~name expanded version of SITEARCH, to be used
1808  *      in programs that are not prepared to deal with ~ expansion at run-time.
1809  */
1810 #define SITEARCH "$sitearch"            /**/
1811 #define SITEARCH_EXP "$sitearchexp"             /**/
1812
1813 /* SITELIB:
1814  *      This symbol contains the name of the private library for this package.
1815  *      The library is private in the sense that it needn't be in anyone's
1816  *      execution path, but it should be accessible by the world.  The program
1817  *      should be prepared to do ~ expansion.
1818  *      The standard distribution will put nothing in this directory.
1819  *      Individual sites may place their own extensions and modules in
1820  *      this directory.
1821  */
1822 /* SITELIB_EXP:
1823  *      This symbol contains the ~name expanded version of SITELIB, to be used
1824  *      in programs that are not prepared to deal with ~ expansion at run-time.
1825  */
1826 #define SITELIB "$sitelib"              /**/
1827 #define SITELIB_EXP "$sitelibexp"               /**/
1828
1829 /* DLSYM_NEEDS_UNDERSCORE:
1830  *      This symbol, if defined, indicates that we need to prepend an
1831  *      underscore to the symbol name before calling dlsym().  This only
1832  *      makes sense if you *have* dlsym, which we will presume is the
1833  *      case if you're using dl_dlopen.xs.
1834  */
1835 #$d_dlsymun     DLSYM_NEEDS_UNDERSCORE  /**/
1836
1837 /* USE_SFIO:
1838  *      This symbol, if defined, indicates that sfio should
1839  *      be used.
1840  */
1841 #$d_sfio        USE_SFIO                /**/
1842
1843 /* USE_DYNAMIC_LOADING:
1844  *      This symbol, if defined, indicates that dynamic loading of
1845  *      some sort is available.
1846  */
1847 #$usedl USE_DYNAMIC_LOADING             /**/
1848
1849 /* DB_Prefix_t:
1850  *      This symbol contains the type of the prefix structure element
1851  *      in the <db.h> header file.  In older versions of DB, it was
1852  *      int, while in newer ones it is u_int32_t.
1853  */
1854 /* DB_Hash_t:
1855  *      This symbol contains the type of the prefix structure element
1856  *      in the <db.h> header file.  In older versions of DB, it was
1857  *      int, while in newer ones it is size_t.
1858  */
1859 #define DB_Hash_t       $db_hashtype            /**/
1860 #define DB_Prefix_t     $db_prefixtype          /**/
1861
1862 /* STARTPERL:
1863  *      This variable contains the string to put in front of a perl
1864  *      script to make sure (one hopes) that it runs with perl and not
1865  *      some shell.
1866  */
1867 #define STARTPERL "$startperl"          /**/
1868
1869 /* USE_PERLIO:
1870  *      This symbol, if defined, indicates that the PerlIO abstraction should
1871  *      be used throughout.  If not defined, stdio should be
1872  *      used in a fully backward compatible manner.
1873  */
1874 #$useperlio     USE_PERLIO              /**/
1875
1876 /* HAS_GETHOST_PROTOS:
1877  *      This symbol, if defined, indicates that <netdb.h> includes
1878  *      prototypes for gethostent(), gethostbyname(), and
1879  *      gethostbyaddr().  Otherwise, it is up to the program to guess
1880  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
1881  */
1882 #$d_gethostprotos       HAS_GETHOST_PROTOS      /**/
1883
1884 /* HAS_GETNET_PROTOS:
1885  *      This symbol, if defined, indicates that <netdb.h> includes
1886  *      prototypes for getnetent(), getnetbyname(), and
1887  *      getnetbyaddr().  Otherwise, it is up to the program to guess
1888  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
1889  */
1890 #$d_getnetprotos        HAS_GETNET_PROTOS       /**/
1891
1892 /* HAS_GETPROTO_PROTOS:
1893  *      This symbol, if defined, indicates that <netdb.h> includes
1894  *      prototypes for getprotoent(), getprotobyname(), and
1895  *      getprotobyaddr().  Otherwise, it is up to the program to guess
1896  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
1897  */
1898 #$d_getprotoprotos      HAS_GETPROTO_PROTOS     /**/
1899
1900 /* HAS_GETSERV_PROTOS:
1901  *      This symbol, if defined, indicates that <netdb.h> includes
1902  *      prototypes for getservent(), getservbyname(), and
1903  *      getservbyaddr().  Otherwise, it is up to the program to guess
1904  *      them.  See netdbtype.U for probing for various Netdb_xxx_t types.
1905  */
1906 #$d_getservprotos       HAS_GETSERV_PROTOS      /**/
1907
1908 /* Netdb_host_t:
1909  *      This symbol holds the type used for the 1st argument
1910  *      to gethostbyaddr().
1911  */
1912 /* Netdb_hlen_t:
1913  *      This symbol holds the type used for the 2nd argument
1914  *      to gethostbyaddr().
1915  */
1916 /* Netdb_name_t:
1917  *      This symbol holds the type used for the argument to
1918  *      gethostbyname().
1919  */
1920 /* Netdb_net_t:
1921  *      This symbol holds the type used for the 1st argument to
1922  *      getnetbyaddr().
1923  */
1924 #define Netdb_host_t            $netdb_host_type /**/
1925 #define Netdb_hlen_t            $netdb_hlen_type /**/
1926 #define Netdb_name_t            $netdb_name_type /**/
1927 #define Netdb_net_t             $netdb_net_type /**/
1928
1929 /* Select_fd_set_t:
1930  *      This symbol holds the type used for the 2nd, 3rd, and 4th
1931  *      arguments to select.  Usually, this is 'fd_set *', if HAS_FD_SET
1932  *      is defined, and 'int *' otherwise.  This is only useful if you 
1933  *      have select(), of course.
1934  */
1935 #define Select_fd_set_t         $selecttype     /**/
1936
1937 /* ARCHNAME:
1938  *      This symbol holds a string representing the architecture name.
1939  *      It may be used to construct an architecture-dependant pathname
1940  *      where library files may be held under a private library, for
1941  *      instance.
1942  */
1943 #define ARCHNAME "$archname"            /**/
1944
1945 /* HAS_PTHREAD_YIELD:
1946  *      This symbol, if defined, indicates that the pthread_yield 
1947  *      routine is available to yield the execution of the current
1948  *      thread.
1949  */
1950 /* HAS_SCHED_YIELD:
1951  *      This symbol, if defined, indicates that the sched_yield
1952  *      routine is available to yield the execution of the current
1953  *      thread.
1954  */
1955 #$d_pthread_yield HAS_PTHREAD_YIELD     /**/
1956 #$d_sched_yield HAS_SCHED_YIELD /**/
1957
1958 /* PTHREADS_CREATED_JOINABLE:
1959  *      This symbol, if defined, indicates that pthreads are created
1960  *      in the joinable (aka undetached) state.
1961  */
1962 #$d_pthreads_created_joinable PTHREADS_CREATED_JOINABLE /**/
1963
1964 /* USE_THREADS:
1965  *      This symbol, if defined, indicates that Perl should
1966  *      be built to use threads.
1967  */
1968 /* OLD_PTHREADS_API:
1969  *      This symbol, if defined, indicates that Perl should
1970  *      be built to use the old draft POSIX threads API.
1971  */
1972 #$usethreads    USE_THREADS             /**/
1973 #$d_oldpthreads OLD_PTHREADS_API                /**/
1974
1975 /* Time_t:
1976  *      This symbol holds the type returned by time(). It can be long,
1977  *      or time_t on BSD sites (in which case <sys/types.h> should be
1978  *      included).
1979  */
1980 #define Time_t $timetype                /* Time type */
1981
1982 /* HAS_TIMES:
1983  *      This symbol, if defined, indicates that the times() routine exists.
1984  *      Note that this became obsolete on some systems (SUNOS), which now
1985  * use getrusage(). It may be necessary to include <sys/times.h>.
1986  */
1987 #$d_times HAS_TIMES             /**/
1988
1989 /* Fpos_t:
1990  *      This symbol holds the type used to declare file positions in libc.
1991  *      It can be fpos_t, long, uint, etc... It may be necessary to include
1992  *      <sys/types.h> to get any typedef'ed information.
1993  */
1994 #define Fpos_t $fpostype                /* File position type */
1995
1996 /* Gid_t:
1997  *      This symbol holds the return type of getgid() and the type of
1998  *      argument to setrgid() and related functions.  Typically,
1999  *      it is the type of group ids in the kernel. It can be int, ushort,
2000  *      uid_t, etc... It may be necessary to include <sys/types.h> to get
2001  *      any typedef'ed information.
2002  */
2003 #define Gid_t $gidtype          /* Type for getgid(), etc... */
2004
2005 /* Off_t:
2006  *      This symbol holds the type used to declare offsets in the kernel.
2007  *      It can be int, long, off_t, etc... It may be necessary to include
2008  *      <sys/types.h> to get any typedef'ed information.
2009  */
2010 #define Off_t $lseektype                /* <offset> type */
2011
2012 /* Mode_t:
2013  *      This symbol holds the type used to declare file modes 
2014  *      for systems calls.  It is usually mode_t, but may be
2015  *      int or unsigned short.  It may be necessary to include <sys/types.h>
2016  *      to get any typedef'ed information.
2017  */
2018 #define Mode_t $modetype         /* file mode parameter for system calls */
2019
2020 /* Pid_t:
2021  *      This symbol holds the type used to declare process ids in the kernel.
2022  *      It can be int, uint, pid_t, etc... It may be necessary to include
2023  *      <sys/types.h> to get any typedef'ed information.
2024  */
2025 #define Pid_t $pidtype          /* PID type */
2026
2027 /* Size_t:
2028  *      This symbol holds the type used to declare length parameters
2029  *      for string functions.  It is usually size_t, but may be
2030  *      unsigned long, int, etc.  It may be necessary to include
2031  *      <sys/types.h> to get any typedef'ed information.
2032  */
2033 #define Size_t $sizetype         /* length paramater for string functions */
2034
2035 /* Uid_t:
2036  *      This symbol holds the type used to declare user ids in the kernel.
2037  *      It can be int, ushort, uid_t, etc... It may be necessary to include
2038  *      <sys/types.h> to get any typedef'ed information.
2039  */
2040 #define Uid_t $uidtype          /* UID type */
2041
2042 #endif
2043 !GROK!THIS!