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