[PATCH 5.004_65] Config_65-02-03.diff: SunOS and Solaris hints
[p5sagit/p5-mst-13.2.git] / config_h.SH
CommitLineData
8d063cd8 1case $CONFIG in
2'')
2304df62 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 ;;
13esac
14case "$0" in
15*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
8d063cd8 16esac
17echo "Extracting config.h (with variable substitutions)"
a26b0745 18sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un-def!#undef!'
2304df62 19/*
20 * This file was produced by running the config_h.SH script, which
8d063cd8 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,
1aef975c 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.
2304df62 27 *
dfe9444c 28 * \$Id: Config_h.U,v 3.0.1.5 1997/02/28 14:57:43 ram Exp $
8d063cd8 29 */
30
dfe9444c 31/*
32 * Package name : $package
33 * Source directory : $src
34 * Configuration time: $cf_time
35 * Configured by : $cf_by
36 * Target system : $myuname
2304df62 37 */
8d063cd8 38
2304df62 39#ifndef _config_h_
40#define _config_h_
41
dfe9444c 42/* LOC_SED:
43 * This symbol holds the complete pathname to the sed program.
774d564b 44 */
dfe9444c 45#define LOC_SED "$full_sed" /**/
774d564b 46
2304df62 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.
a687059c 50 */
2ae324a7 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 */
2304df62 55#define BIN "$bin" /**/
2ae324a7 56#define BIN_EXP "$binexp" /**/
a687059c 57
2304df62 58/* CPPSTDIN:
36ce8bec 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
2304df62 61 * output. Typical value of "cc -E" or "/lib/cpp", but it can also
62 * call a wrapper. See CPPRUN.
36ce8bec 63 */
2304df62 64/* CPPMINUS:
36ce8bec 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
378cc40b 67 * output. This symbol will have the value "-" if CPPSTDIN needs a minus
36ce8bec 68 * to specify standard input, otherwise the value is "".
69 */
378cc40b 70#define CPPSTDIN "$cppstdin"
36ce8bec 71#define CPPMINUS "$cppminus"
72
a0d0e21e 73/* HAS_ALARM:
74 * This symbol, if defined, indicates that the alarm routine is
75 * available.
76 */
77#$d_alarm HAS_ALARM /**/
78
ecfc5424 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
2304df62 88/* HAS_BCMP:
89 * This symbol is defined if the bcmp() routine is available to
90 * compare blocks of memory.
a687059c 91 */
2304df62 92#$d_bcmp HAS_BCMP /**/
a687059c 93
2304df62 94/* HAS_BCOPY:
95 * This symbol is defined if the bcopy() routine is available to
96 * copy blocks of memory.
c51b80d1 97 */
2304df62 98#$d_bcopy HAS_BCOPY /**/
c51b80d1 99
2304df62 100/* HAS_BZERO:
101 * This symbol is defined if the bzero() routine is available to
102 * set a memory block to 0.
0d3e774c 103 */
2304df62 104#$d_bzero HAS_BZERO /**/
0d3e774c 105
a0d0e21e 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
2304df62 118/* HAS_CHSIZE:
87250799 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 */
fe14fcc3 122#$d_chsize HAS_CHSIZE /**/
87250799 123
2304df62 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:
2e1b3b7e 136 * This symbol, if defined, indicates that the crypt routine is available
137 * to encrypt passwords and the like.
138 */
2304df62 139#$d_crypt HAS_CRYPT /**/
2e1b3b7e 140
a0d0e21e 141/* HAS_CUSERID:
142 * This symbol, if defined, indicates that the cuserid routine is
143 * available to get character login names.
13281fa4 144 */
a0d0e21e 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 /**/
13281fa4 160
ecfc5424 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
dfe9444c 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
2304df62 188/* HAS_DUP2:
189 * This symbol, if defined, indicates that the dup2 routine is
190 * available to duplicate file descriptors.
a687059c 191 */
2304df62 192#$d_dup2 HAS_DUP2 /**/
a687059c 193
2304df62 194/* HAS_FCHMOD:
378cc40b 195 * This symbol, if defined, indicates that the fchmod routine is available
196 * to change mode of opened files. If unavailable, use chmod().
197 */
2304df62 198#$d_fchmod HAS_FCHMOD /**/
378cc40b 199
2304df62 200/* HAS_FCHOWN:
378cc40b 201 * This symbol, if defined, indicates that the fchown routine is available
202 * to change ownership of opened files. If unavailable, use chown().
203 */
2304df62 204#$d_fchown HAS_FCHOWN /**/
378cc40b 205
2304df62 206/* HAS_FCNTL:
fe14fcc3 207 * This symbol, if defined, indicates to the C program that
208 * the fcntl() function exists.
a687059c 209 */
2304df62 210#$d_fcntl HAS_FCNTL /**/
a687059c 211
a0d0e21e 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
2304df62 218/* FLEXFILENAMES:
7e1cf235 219 * This symbol, if defined, indicates that the system supports filenames
220 * longer than 14 characters.
221 */
222#$d_flexfnam FLEXFILENAMES /**/
223
2304df62 224/* HAS_FLOCK:
225 * This symbol, if defined, indicates that the flock routine is
a687059c 226 * available to do file locking.
227 */
2304df62 228#$d_flock HAS_FLOCK /**/
a687059c 229
a0d0e21e 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
5f05dabc 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
2304df62 253/* HAS_GETGROUPS:
378cc40b 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 */
2304df62 258#$d_getgrps HAS_GETGROUPS /**/
378cc40b 259
2304df62 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 /**/
a687059c 266
a0d0e21e 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
dfe9444c 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
2304df62 291/* HAS_GETPGRP2:
d8f2e4cc 292 * This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
293 * routine is available to get the current process group.
294 */
2304df62 295#$d_getpgrp2 HAS_GETPGRP2 /**/
d8f2e4cc 296
a0d0e21e 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
2304df62 303/* HAS_GETPRIORITY:
304 * This symbol, if defined, indicates that the getpriority routine is
a687059c 305 * available to get a process's priority.
306 */
2304df62 307#$d_getprior HAS_GETPRIORITY /**/
a687059c 308
a0d0e21e 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
dfe9444c 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.
ecfc5424 338 */
dfe9444c 339#$d_inetaton HAS_INET_ATON /**/
ecfc5424 340
2304df62 341/* HAS_KILLPG:
378cc40b 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 */
2304df62 346#$d_killpg HAS_KILLPG /**/
378cc40b 347
2304df62 348/* HAS_LINK:
349 * This symbol, if defined, indicates that the link routine is
350 * available to create hard links.
0d3e774c 351 */
2304df62 352#$d_link HAS_LINK /**/
0d3e774c 353
ecfc5424 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
a0d0e21e 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
2304df62 366/* HAS_LSTAT:
367 * This symbol, if defined, indicates that the lstat routine is
368 * available to do file stats on symbolic links.
a687059c 369 */
2304df62 370#$d_lstat HAS_LSTAT /**/
a687059c 371
a0d0e21e 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
2304df62 390/* HAS_MEMCMP:
391 * This symbol, if defined, indicates that the memcmp routine is available
392 * to compare blocks of memory.
378cc40b 393 */
2304df62 394#$d_memcmp HAS_MEMCMP /**/
395
396/* HAS_MEMCPY:
9f971974 397 * This symbol, if defined, indicates that the memcpy routine is available
2304df62 398 * to copy blocks of memory.
9f971974 399 */
2304df62 400#$d_memcpy HAS_MEMCPY /**/
9f971974 401
2304df62 402/* HAS_MEMMOVE:
9f971974 403 * This symbol, if defined, indicates that the memmove routine is available
2304df62 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.
9f971974 407 */
2304df62 408#$d_memmove HAS_MEMMOVE /**/
9f971974 409
2304df62 410/* HAS_MEMSET:
9f971974 411 * This symbol, if defined, indicates that the memset routine is available
2304df62 412 * to set blocks of memory.
9f971974 413 */
2304df62 414#$d_memset HAS_MEMSET /**/
378cc40b 415
2304df62 416/* HAS_MKDIR:
a687059c 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 */
2304df62 421#$d_mkdir HAS_MKDIR /**/
fe14fcc3 422
ecfc5424 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
a0d0e21e 431/* HAS_MKTIME:
432 * This symbol, if defined, indicates that the mktime routine is
433 * available.
434 */
435#$d_mktime HAS_MKTIME /**/
436
2304df62 437/* HAS_MSG:
fe14fcc3 438 * This symbol, if defined, indicates that the entire msg*(2) library is
2304df62 439 * supported (IPC mechanism based on message queues).
fe14fcc3 440 */
2304df62 441#$d_msg HAS_MSG /**/
fe14fcc3 442
a0d0e21e 443/* HAS_NICE:
444 * This symbol, if defined, indicates that the nice routine is
445 * available.
fe14fcc3 446 */
a0d0e21e 447#$d_nice HAS_NICE /**/
a687059c 448
ecfc5424 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
a0d0e21e 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.
a687059c 465 */
a0d0e21e 466#$d_pause HAS_PAUSE /**/
a687059c 467
a0d0e21e 468/* HAS_PIPE:
469 * This symbol, if defined, indicates that the pipe routine is
470 * available to create an inter-process channel.
fe14fcc3 471 */
a0d0e21e 472#$d_pipe HAS_PIPE /**/
473
8e07c86e 474/* HAS_POLL:
475 * This symbol, if defined, indicates that the poll routine is
dfe9444c 476 * available to poll active file descriptors. You may safely
477 * include <poll.h> when this symbol is defined.
8e07c86e 478 */
479#$d_poll HAS_POLL /**/
480
a0d0e21e 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 /**/
fe14fcc3 511
2304df62 512/* HAS_RENAME:
378cc40b 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 */
2304df62 517#$d_rename HAS_RENAME /**/
378cc40b 518
2304df62 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.
9f971974 523 */
2304df62 524#$d_rmdir HAS_RMDIR /**/
9f971974 525
2304df62 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.
fe14fcc3 530 */
2304df62 531#$d_select HAS_SELECT /**/
a687059c 532
2304df62 533/* HAS_SEM:
fe14fcc3 534 * This symbol, if defined, indicates that the entire sem*(2) library is
535 * supported.
536 */
2304df62 537#$d_sem HAS_SEM /**/
fe14fcc3 538
2304df62 539/* HAS_SETEGID:
378cc40b 540 * This symbol, if defined, indicates that the setegid routine is available
541 * to change the effective gid of the current program.
542 */
2304df62 543#$d_setegid HAS_SETEGID /**/
378cc40b 544
2304df62 545/* HAS_SETEUID:
378cc40b 546 * This symbol, if defined, indicates that the seteuid routine is available
547 * to change the effective uid of the current program.
548 */
2304df62 549#$d_seteuid HAS_SETEUID /**/
550
a0d0e21e 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
dfe9444c 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
2304df62 582/* HAS_SETPGRP2:
d8f2e4cc 583 * This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
584 * routine is available to set the current process group.
585 */
2304df62 586#$d_setpgrp2 HAS_SETPGRP2 /**/
d8f2e4cc 587
2304df62 588/* HAS_SETPRIORITY:
589 * This symbol, if defined, indicates that the setpriority routine is
a687059c 590 * available to set a process's priority.
591 */
2304df62 592#$d_setprior HAS_SETPRIORITY /**/
a687059c 593
2304df62 594/* HAS_SETREGID:
a687059c 595 * This symbol, if defined, indicates that the setregid routine is
2304df62 596 * available to change the real and effective gid of the current
597 * process.
a687059c 598 */
2304df62 599/* HAS_SETRESGID:
a687059c 600 * This symbol, if defined, indicates that the setresgid routine is
601 * available to change the real, effective and saved gid of the current
2304df62 602 * process.
a687059c 603 */
2304df62 604#$d_setregid HAS_SETREGID /**/
605#$d_setresgid HAS_SETRESGID /**/
a687059c 606
2304df62 607/* HAS_SETREUID:
a687059c 608 * This symbol, if defined, indicates that the setreuid routine is
2304df62 609 * available to change the real and effective uid of the current
610 * process.
a687059c 611 */
2304df62 612/* HAS_SETRESUID:
a687059c 613 * This symbol, if defined, indicates that the setresuid routine is
614 * available to change the real, effective and saved uid of the current
2304df62 615 * process.
a687059c 616 */
2304df62 617#$d_setreuid HAS_SETREUID /**/
618#$d_setresuid HAS_SETRESUID /**/
a687059c 619
2304df62 620/* HAS_SETRGID:
378cc40b 621 * This symbol, if defined, indicates that the setrgid routine is available
622 * to change the real gid of the current program.
623 */
2304df62 624#$d_setrgid HAS_SETRGID /**/
378cc40b 625
2304df62 626/* HAS_SETRUID:
378cc40b 627 * This symbol, if defined, indicates that the setruid routine is available
628 * to change the real uid of the current program.
629 */
2304df62 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 /**/
fe14fcc3 637
2304df62 638/* HAS_SHM:
fe14fcc3 639 * This symbol, if defined, indicates that the entire shm*(2) library is
640 * supported.
641 */
2304df62 642#$d_shm HAS_SHM /**/
fe14fcc3 643
a0d0e21e 644/* Shmat_t:
645 * This symbol holds the return type of the shmat() system call.
646 * Usually set to 'void *' or 'char *'.
fe14fcc3 647 */
a0d0e21e 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.
fe14fcc3 654 */
a0d0e21e 655#define Shmat_t $shmattype /**/
656#$d_shmatprototype HAS_SHMAT_PROTOTYPE /**/
fe14fcc3 657
2304df62 658/* USE_STAT_BLOCKS:
c51b80d1 659 * This symbol is defined if this system has a stat structure declaring
660 * st_blksize and st_blocks.
661 */
2304df62 662#$d_statblks USE_STAT_BLOCKS /**/
c51b80d1 663
dfe9444c 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.
16d20bd9 668 */
dfe9444c 669/* HAS_INDEX:
670 * This symbol is defined to indicate that the index()/rindex()
671 * functions are available for string searching.
c2960299 672 */
dfe9444c 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.
16d20bd9 679 */
dfe9444c 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.
c2960299 686 */
dfe9444c 687#$d_strctcpy USE_STRUCT_COPY /**/
8d063cd8 688
a0d0e21e 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
a89d8a78 708/* HAS_STRTOD:
709 * This symbol, if defined, indicates that the strtod routine is
5f05dabc 710 * available to provide better numeric string conversion than atof().
a89d8a78 711 */
712#$d_strtod HAS_STRTOD /**/
713
714/* HAS_STRTOL:
5f05dabc 715 * This symbol, if defined, indicates that the strtol routine is available
716 * to provide better numeric string conversion than atoi() and friends.
a89d8a78 717 */
718#$d_strtol HAS_STRTOL /**/
719
720/* HAS_STRTOUL:
721 * This symbol, if defined, indicates that the strtoul routine is
5f05dabc 722 * available to provide conversion of strings to unsigned long.
a89d8a78 723 */
724#$d_strtoul HAS_STRTOUL /**/
725
a0d0e21e 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
2304df62 732/* HAS_SYMLINK:
2e1b3b7e 733 * This symbol, if defined, indicates that the symlink routine is available
734 * to create symbolic links.
735 */
2304df62 736#$d_symlink HAS_SYMLINK /**/
2e1b3b7e 737
2304df62 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.
a687059c 741 */
2304df62 742#$d_syscall HAS_SYSCALL /**/
e5d73d77 743
ecfc5424 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
2304df62 750/* HAS_SYSTEM:
751 * This symbol, if defined, indicates that the system routine is
752 * available to issue a shell command.
9f971974 753 */
2304df62 754#$d_system HAS_SYSTEM /**/
9f971974 755
a0d0e21e 756/* HAS_TCGETPGRP:
757 * This symbol, if defined, indicates that the tcgetpgrp routine is
758 * available to get foreground process group ID.
85e6fe83 759 */
a0d0e21e 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 /**/
85e6fe83 767
2304df62 768/* HAS_TRUNCATE:
87250799 769 * This symbol, if defined, indicates that the truncate routine is
770 * available to truncate files.
771 */
2304df62 772#$d_truncate HAS_TRUNCATE /**/
87250799 773
a0d0e21e 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.
2304df62 788 */
a0d0e21e 789#$d_vfork HAS_VFORK /**/
2304df62 790
2304df62 791/* HASVOLATILE:
afd9f252 792 * This symbol, if defined, indicates that this C compiler knows about
793 * the volatile declaration.
794 */
795#$d_volatile HASVOLATILE /**/
2304df62 796#ifndef HASVOLATILE
797#define volatile
798#endif
afd9f252 799
2304df62 800/* HAS_WAIT4:
bf38876a 801 * This symbol, if defined, indicates that wait4() exists.
802 */
2304df62 803#$d_wait4 HAS_WAIT4 /**/
bf38876a 804
2304df62 805/* HAS_WAITPID:
806 * This symbol, if defined, indicates that the waitpid routine is
807 * available to wait for child process.
39c3038c 808 */
2304df62 809#$d_waitpid HAS_WAITPID /**/
39c3038c 810
a0d0e21e 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
dfe9444c 823/* I_DBM:
824 * This symbol, if defined, indicates that <dbm.h> exists and should
825 * be included.
232e078e 826 */
dfe9444c 827/* I_RPCSVC_DBM:
828 * This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
829 * should be included.
232e078e 830 */
dfe9444c 831#$i_dbm I_DBM /**/
832#$i_rpcsvcdbm I_RPCSVC_DBM /**/
232e078e 833
2304df62 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>.
1c3d792e 839 */
2304df62 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 */
a0d0e21e 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 */
2304df62 850#$i_dirent I_DIRENT /**/
851#$d_dirnamlen DIRNAMLEN /**/
a0d0e21e 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 /**/
1c3d792e 859
2304df62 860/* I_FCNTL:
fe14fcc3 861 * This manifest constant tells the C program to include <fcntl.h>.
a687059c 862 */
2304df62 863#$i_fcntl I_FCNTL /**/
a687059c 864
a0d0e21e 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.
a687059c 869 */
a0d0e21e 870#$i_float I_FLOAT /**/
a687059c 871
2304df62 872/* I_GRP:
a687059c 873 * This symbol, if defined, indicates to the C program that it should
2304df62 874 * include <grp.h>.
a687059c 875 */
2304df62 876#$i_grp I_GRP /**/
a687059c 877
a0d0e21e 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
dfe9444c 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
a0d0e21e 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
232e078e 903/* I_NDBM:
16d20bd9 904 * This symbol, if defined, indicates that <ndbm.h> exists and should
232e078e 905 * be included.
906 */
907#$i_ndbm I_NDBM /**/
908
ecfc5424 909/* I_NET_ERRNO:
910 * This symbol, if defined, indicates that <net/errno.h> exists and
911 * should be included.
2304df62 912 */
ecfc5424 913#$i_neterrno I_NET_ERRNO /**/
2304df62 914
915/* I_NETINET_IN:
03a14243 916 * This symbol, if defined, indicates to the C program that it should
2304df62 917 * include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
03a14243 918 */
2304df62 919#$i_niin I_NETINET_IN /**/
03a14243 920
dfe9444c 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
2304df62 927/* I_STDDEF:
928 * This symbol, if defined, indicates that <stddef.h> exists and should
a687059c 929 * be included.
930 */
2304df62 931#$i_stddef I_STDDEF /**/
a687059c 932
a0d0e21e 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:
85e6fe83 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
2304df62 945/* I_SYS_DIR:
946 * This symbol, if defined, indicates to the C program that it should
947 * include <sys/dir.h>.
d8f2e4cc 948 */
2304df62 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.
d8f2e4cc 954 */
2304df62 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>.
d8f2e4cc 960 */
2304df62 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
a0d0e21e 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
e876cf0b 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
2304df62 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
dfe9444c 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
a0d0e21e 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
bd89102f 999/* I_SYS_TYPES:
1000 * This symbol, if defined, indicates to the C program that it should
1001 * include <sys/types.h>.
1002 */
1003#$i_systypes I_SYS_TYPES /**/
1004
25f94b33 1005/* I_SYS_UN:
1006 * This symbol, if defined, indicates to the C program that it should
1007 * include <sys/un.h> to get UNIX domain socket definitions.
1008 */
1009#$i_sysun I_SYS_UN /**/
1010
e876cf0b 1011/* I_SYS_WAIT:
1012 * This symbol, if defined, indicates to the C program that it should
1013 * include <sys/wait.h>.
1014 */
1015#$i_syswait I_SYS_WAIT /**/
1016
a0d0e21e 1017/* I_TERMIO:
1018 * This symbol, if defined, indicates that the program should include
1019 * <termio.h> rather than <sgtty.h>. There are also differences in
1020 * the ioctl() calls that depend on the value of this symbol.
1021 */
1022/* I_TERMIOS:
1023 * This symbol, if defined, indicates that the program should include
1024 * the POSIX termios.h rather than sgtty.h or termio.h.
1025 * There are also differences in the ioctl() calls that depend on the
1026 * value of this symbol.
1027 */
1028/* I_SGTTY:
1029 * This symbol, if defined, indicates that the program should include
1030 * <sgtty.h> rather than <termio.h>. There are also differences in
1031 * the ioctl() calls that depend on the value of this symbol.
1032 */
1033#$i_termio I_TERMIO /**/
1034#$i_termios I_TERMIOS /**/
1035#$i_sgtty I_SGTTY /**/
1036
85e6fe83 1037/* I_UNISTD:
1038 * This symbol, if defined, indicates to the C program that it should
1039 * include <unistd.h>.
1040 */
1041#$i_unistd I_UNISTD /**/
d8f2e4cc 1042
2304df62 1043/* I_UTIME:
d8f2e4cc 1044 * This symbol, if defined, indicates to the C program that it should
2304df62 1045 * include <utime.h>.
d8f2e4cc 1046 */
2304df62 1047#$i_utime I_UTIME /**/
d8f2e4cc 1048
dfe9444c 1049/* I_VALUES:
1050 * This symbol, if defined, indicates to the C program that it should
1051 * include <values.h> to get definition of symbols like MINFLOAT or
1052 * MAXLONG, i.e. machine dependant limitations. Probably, you
1053 * should use <limits.h> instead, if it is available.
1054 */
1055#$i_values I_VALUES /**/
1056
e876cf0b 1057/* I_STDARG:
1058 * This symbol, if defined, indicates that <stdarg.h> exists and should
1059 * be included.
1060 */
1061/* I_VARARGS:
1062 * This symbol, if defined, indicates to the C program that it should
1063 * include <varargs.h>.
1064 */
1065#$i_stdarg I_STDARG /**/
1066#$i_varargs I_VARARGS /**/
1067
a0d0e21e 1068/* I_VFORK:
1069 * This symbol, if defined, indicates to the C program that it should
1070 * include vfork.h.
1071 */
1072#$i_vfork I_VFORK /**/
a687059c 1073
dfe9444c 1074/* Free_t:
1075 * This variable contains the return type of free(). It is usually
1076 * void, but occasionally int.
1077 */
1078/* Malloc_t:
1079 * This symbol is the type of pointer returned by malloc and realloc.
1080 */
1081#define Malloc_t $malloctype /**/
1082#define Free_t $freetype /**/
1083
1084/* MYMALLOC:
1085 * This symbol, if defined, indicates that we're using our own malloc.
1086 */
1087#$d_mymalloc MYMALLOC /**/
1088
a0d0e21e 1089/* CAN_PROTOTYPE:
1090 * If defined, this macro indicates that the C compiler can handle
1091 * function prototypes.
85e6fe83 1092 */
a0d0e21e 1093/* _:
1094 * This macro is used to declare function parameters for folks who want
1095 * to make declarations with prototypes using a different style than
1096 * the above macros. Use double parentheses. For example:
1097 *
1098 * int main _((int argc, char *argv[]));
1099 */
1100#$prototype CAN_PROTOTYPE /**/
1101#ifdef CAN_PROTOTYPE
1102#define _(args) args
1103#else
1104#define _(args) ()
1105#endif
85e6fe83 1106
dfe9444c 1107/* SH_PATH:
1108 * This symbol contains the full pathname to the shell used on this
1109 * on this system to execute Bourne shell scripts. Usually, this will be
1110 * /bin/sh, though it's possible that some systems will have /bin/ksh,
1111 * /bin/pdksh, /bin/ash, /bin/bash, or even something such as
1112 * D:/bin/sh.exe.
a0d0e21e 1113 */
dfe9444c 1114#define SH_PATH "$sh" /**/
a0d0e21e 1115
2304df62 1116/* STDCHAR:
1117 * This symbol is defined to be the type of char used in stdio.h.
1118 * It has the values "unsigned char" or "char".
fe14fcc3 1119 */
2304df62 1120#define STDCHAR $stdchar /**/
1121
dfe9444c 1122/* VOIDFLAGS:
1123 * This symbol indicates how much support of the void type is given by this
1124 * compiler. What various bits mean:
1125 *
1126 * 1 = supports declaration of void
1127 * 2 = supports arrays of pointers to functions returning void
1128 * 4 = supports comparisons between pointers to void functions and
1129 * addresses of void functions
1130 * 8 = suports declaration of generic void pointers
1131 *
1132 * The package designer should define VOIDUSED to indicate the requirements
1133 * of the package. This can be done either by #defining VOIDUSED before
1134 * including config.h, or by defining defvoidused in Myinit.U. If the
1135 * latter approach is taken, only those flags will be tested. If the
1136 * level of void support necessary is not present, defines void to int.
85e6fe83 1137 */
dfe9444c 1138#ifndef VOIDUSED
1139#define VOIDUSED $defvoidused
1140#endif
1141#define VOIDFLAGS $voidflags
1142#if (VOIDFLAGS & VOIDUSED) != VOIDUSED
1143#define void int /* is void to be avoided? */
1144#define M_VOID /* Xenix strikes again */
1145#endif
1aef975c 1146
dfe9444c 1147/* MEM_ALIGNBYTES:
1148 * This symbol contains the number of bytes required to align a
1149 * double. Usual values are 2, 4 and 8.
1150 * On NeXT starting with 3.2, you can build "Fat" Multiple Architecture
1151 * Binaries (MAB) for targets with varying alignment. This only matters
1152 * for perl, where the config.h can be generated and installed on one
1153 * system, and used by a different architecture to build an extension.
1154 * The default is eight, for safety.
5f05dabc 1155 */
dfe9444c 1156#define MEM_ALIGNBYTES $alignbytes /**/
5f05dabc 1157
8e07c86e 1158/* BYTEORDER:
e876cf0b 1159 * This symbol holds the hexadecimal constant defined in byteorder,
8e07c86e 1160 * i.e. 0x1234 or 0x4321, etc...
7bac28a0 1161 * On NeXT 3.2 (and greater), you can build "Fat" Multiple Architecture
e876cf0b 1162 * Binaries (MAB) on either big endian or little endian machines.
1163 * The endian-ness is available at compile-time. This only matters
1164 * for perl, where the config.h can be generated and installed on
1165 * one system, and used by a different architecture to build an
1166 * extension. Older versions of NeXT that might not have
1167 * defined either *_ENDIAN__ were all on Motorola 680x0 series,
1168 * so the default case (for NeXT) is big endian to catch them.
1169 * This might matter for NeXT 3.0.
8e07c86e 1170 */
40750cc0 1171#ifndef NeXT
8e07c86e 1172#define BYTEORDER 0x$byteorder /* large digits for MSB */
760ac839 1173#else /* NeXT */
1174#ifdef __LITTLE_ENDIAN__
40750cc0 1175#define BYTEORDER 0x1234
760ac839 1176#else /* __BIG_ENDIAN__ */
1177#define BYTEORDER 0x4321
40750cc0 1178#endif /* ENDIAN CHECK */
760ac839 1179#endif /* NeXT */
8e07c86e 1180
dfe9444c 1181/* CASTI32:
1182 * This symbol is defined if the C compiler can cast negative
1183 * or large floating point numbers to 32-bit ints.
1aef975c 1184 */
dfe9444c 1185#$d_casti32 CASTI32 /**/
85e6fe83 1186
dfe9444c 1187/* CASTNEGFLOAT:
1188 * This symbol is defined if the C compiler can cast negative
1189 * numbers to unsigned longs, ints and shorts.
85e6fe83 1190 */
dfe9444c 1191/* CASTFLAGS:
1192 * This symbol contains flags that say what difficulties the compiler
1193 * has casting odd floating values to unsigned long:
1194 * 0 = ok
1195 * 1 = couldn't cast < 0
1196 * 2 = couldn't cast >= 0x80000000
1197 * 4 = couldn't cast in argument expression list
bccf77a5 1198 */
dfe9444c 1199#$d_castneg CASTNEGFLOAT /**/
1200#define CASTFLAGS $castflags /**/
1201
1202/* VOID_CLOSEDIR:
1203 * This symbol, if defined, indicates that the closedir() routine
1204 * does not return a value.
bccf77a5 1205 */
dfe9444c 1206#$d_void_closedir VOID_CLOSEDIR /**/
bccf77a5 1207
8e07c86e 1208/* Gconvert:
1209 * This preprocessor macro is defined to convert a floating point
1210 * number to a string without a trailing decimal point. This
1211 * emulates the behavior of sprintf("%g"), but is sometimes much more
1212 * efficient. If gconvert() is not available, but gcvt() drops the
1213 * trailing decimal point, then gcvt() is used. If all else fails,
1214 * a macro using sprintf("%g") is used. Arguments for the Gconvert
1215 * macro are: value, number of digits, whether trailing zeros should
1216 * be retained, and the output buffer.
1217 * Possible values are:
1218 * d_Gconvert='gconvert((x),(n),(t),(b))'
1219 * d_Gconvert='gcvt((x),(n),(b))'
1220 * d_Gconvert='sprintf((b),"%.*g",(n),(x))'
1221 * The last two assume trailing zeros should not be kept.
1222 */
1223#define Gconvert(x,n,t,b) $d_Gconvert
1224
dfe9444c 1225/* HAS_GNULIBC:
c1b76f5d 1226 * This symbol, if defined, indicates to the C program that
dfe9444c 1227 * the GNU C library is being used.
c1b76f5d 1228 */
dfe9444c 1229#$d_gnulibc HAS_GNULIBC /**/
1230/* HAS_ISASCII:
1231 * This manifest constant lets the C program know that isascii
1232 * is available.
c1b76f5d 1233 */
dfe9444c 1234#$d_isascii HAS_ISASCII /**/
c1b76f5d 1235
dd64f1c3 1236/* HAS_LCHOWN:
1237 * This symbol, if defined, indicates that the lchown routine is
1238 * available to operate on a symbolic link (instead of following the
1239 * link).
1240 */
1241#$d_lchown HAS_LCHOWN /**/
1242
dfe9444c 1243/* HAS_OPEN3:
1244 * This manifest constant lets the C program know that the three
1245 * argument form of open(2) is available.
774d564b 1246 */
dfe9444c 1247#$d_open3 HAS_OPEN3 /**/
774d564b 1248
dfe9444c 1249/* HAS_SAFE_BCOPY:
1250 * This symbol, if defined, indicates that the bcopy routine is available
1251 * to copy potentially overlapping memory blocks. Otherwise you should
1252 * probably use memmove() or memcpy(). If neither is defined, roll your
1253 * own version.
c1b76f5d 1254 */
dfe9444c 1255#$d_safebcpy HAS_SAFE_BCOPY /**/
c1b76f5d 1256
dfe9444c 1257/* HAS_SAFE_MEMCPY:
1258 * This symbol, if defined, indicates that the memcpy routine is available
1259 * to copy potentially overlapping memory blocks. Otherwise you should
1260 * probably use memmove() or memcpy(). If neither is defined, roll your
1261 * own version.
c1b76f5d 1262 */
dfe9444c 1263#$d_safemcpy HAS_SAFE_MEMCPY /**/
c1b76f5d 1264
dfe9444c 1265/* HAS_SANE_MEMCMP:
1266 * This symbol, if defined, indicates that the memcmp routine is available
1267 * and can be used to compare relative magnitudes of chars with their high
1268 * bits set. If it is not defined, roll your own version.
760ac839 1269 */
dfe9444c 1270#$d_sanemcmp HAS_SANE_MEMCMP /**/
760ac839 1271
dfe9444c 1272/* HAS_SIGACTION:
1273 * This symbol, if defined, indicates that Vr4's sigaction() routine
1274 * is available.
52e1cb5e 1275 */
dfe9444c 1276#$d_sigaction HAS_SIGACTION /**/
52e1cb5e 1277
a5f75d66 1278/* Sigjmp_buf:
760ac839 1279 * This is the buffer type to be used with Sigsetjmp and Siglongjmp.
a5f75d66 1280 */
1281/* Sigsetjmp:
760ac839 1282 * This macro is used in the same way as sigsetjmp(), but will invoke
1283 * traditional setjmp() if sigsetjmp isn't available.
1284 * See HAS_SIGSETJMP.
a5f75d66 1285 */
1286/* Siglongjmp:
760ac839 1287 * This macro is used in the same way as siglongjmp(), but will invoke
1288 * traditional longjmp() if siglongjmp isn't available.
1289 * See HAS_SIGSETJMP.
a5f75d66 1290 */
1291#$d_sigsetjmp HAS_SIGSETJMP /**/
1292#ifdef HAS_SIGSETJMP
1293#define Sigjmp_buf sigjmp_buf
760ac839 1294#define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
1295#define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
a5f75d66 1296#else
1297#define Sigjmp_buf jmp_buf
760ac839 1298#define Sigsetjmp(buf,save_mask) setjmp((buf))
1299#define Siglongjmp(buf,retval) longjmp((buf),(retval))
a5f75d66 1300#endif
1301
dfe9444c 1302/* USE_STDIO_PTR:
1303 * This symbol is defined if the _ptr and _cnt fields (or similar)
1304 * of the stdio FILE structure can be used to access the stdio buffer
1305 * for a file handle. If this is defined, then the FILE_ptr(fp)
1306 * and FILE_cnt(fp) macros will also be defined and should be used
1307 * to access these fields.
a687059c 1308 */
dfe9444c 1309/* FILE_ptr:
1310 * This macro is used to access the _ptr field (or equivalent) of the
1311 * FILE structure pointed to by its argument. This macro will always be
1312 * defined if USE_STDIO_PTR is defined.
1313 */
1314/* STDIO_PTR_LVALUE:
1315 * This symbol is defined if the FILE_ptr macro can be used as an
1316 * lvalue.
1317 */
1318/* FILE_cnt:
1319 * This macro is used to access the _cnt field (or equivalent) of the
1320 * FILE structure pointed to by its argument. This macro will always be
1321 * defined if USE_STDIO_PTR is defined.
1322 */
1323/* STDIO_CNT_LVALUE:
1324 * This symbol is defined if the FILE_cnt macro can be used as an
1325 * lvalue.
1326 */
1327#$d_stdstdio USE_STDIO_PTR /**/
1328#ifdef USE_STDIO_PTR
1329#define FILE_ptr(fp) $stdio_ptr
1330#$d_stdio_ptr_lval STDIO_PTR_LVALUE /**/
1331#define FILE_cnt(fp) $stdio_cnt
1332#$d_stdio_cnt_lval STDIO_CNT_LVALUE /**/
1333#endif
a687059c 1334
dfe9444c 1335/* USE_STDIO_BASE:
1336 * This symbol is defined if the _base field (or similar) of the
1337 * stdio FILE structure can be used to access the stdio buffer for
1338 * a file handle. If this is defined, then the FILE_base(fp) macro
1339 * will also be defined and should be used to access this field.
1340 * Also, the FILE_bufsiz(fp) macro will be defined and should be used
1341 * to determine the number of bytes in the buffer. USE_STDIO_BASE
1342 * will never be defined unless USE_STDIO_PTR is.
8e07c86e 1343 */
dfe9444c 1344/* FILE_base:
1345 * This macro is used to access the _base field (or equivalent) of the
1346 * FILE structure pointed to by its argument. This macro will always be
1347 * defined if USE_STDIO_BASE is defined.
8e07c86e 1348 */
dfe9444c 1349/* FILE_bufsiz:
1350 * This macro is used to determine the number of bytes in the I/O
1351 * buffer pointed to by _base field (or equivalent) of the FILE
1352 * structure pointed to its argument. This macro will always be defined
1353 * if USE_STDIO_BASE is defined.
1354 */
1355#$d_stdiobase USE_STDIO_BASE /**/
1356#ifdef USE_STDIO_BASE
1357#define FILE_base(fp) $stdio_base
1358#define FILE_bufsiz(fp) $stdio_bufsiz
1359#endif
8e07c86e 1360
dfe9444c 1361/* HAS_VPRINTF:
1362 * This symbol, if defined, indicates that the vprintf routine is available
1363 * to printf with a pointer to an argument list. If unavailable, you
1364 * may need to write your own, probably in terms of _doprnt().
4633a7c4 1365 */
dfe9444c 1366/* USE_CHAR_VSPRINTF:
1367 * This symbol is defined if this system has vsprintf() returning type
1368 * (char*). The trend seems to be to declare it as "int vsprintf()". It
1369 * is up to the package author to declare vsprintf correctly based on the
1370 * symbol.
1371 */
1372#$d_vprintf HAS_VPRINTF /**/
1373#$d_charvspr USE_CHAR_VSPRINTF /**/
4633a7c4 1374
693762b4 1375/* DOUBLESIZE:
1376 * This symbol contains the size of a double, so that the C preprocessor
1377 * can make decisions based on it.
1378 */
1379#define DOUBLESIZE $doublesize /**/
1380
dfe9444c 1381/* I_TIME:
760ac839 1382 * This symbol, if defined, indicates to the C program that it should
dfe9444c 1383 * include <time.h>.
760ac839 1384 */
dfe9444c 1385/* I_SYS_TIME:
1aef975c 1386 * This symbol, if defined, indicates to the C program that it should
dfe9444c 1387 * include <sys/time.h>.
1aef975c 1388 */
dfe9444c 1389/* I_SYS_TIME_KERNEL:
bccf77a5 1390 * This symbol, if defined, indicates to the C program that it should
dfe9444c 1391 * include <sys/time.h> with KERNEL defined.
bccf77a5 1392 */
dfe9444c 1393#$i_time I_TIME /**/
1394#$i_systime I_SYS_TIME /**/
1395#$i_systimek I_SYS_TIME_KERNEL /**/
8e07c86e 1396
dfe9444c 1397/* INTSIZE:
1398 * This symbol contains the value of sizeof(int) so that the C
1399 * preprocessor can make decisions based on it.
94b6baf5 1400 */
dfe9444c 1401/* LONGSIZE:
1402 * This symbol contains the value of sizeof(long) so that the C
1403 * preprocessor can make decisions based on it.
36ce8bec 1404 */
dfe9444c 1405/* SHORTSIZE:
1406 * This symbol contains the value of sizeof(short) so that the C
1407 * preprocessor can make decisions based on it.
1408 */
1409#define INTSIZE $intsize /**/
1410#define LONGSIZE $longsize /**/
1411#define SHORTSIZE $shortsize /**/
36ce8bec 1412
dfe9444c 1413/* VAL_O_NONBLOCK:
1414 * This symbol is to be used during open() or fcntl(F_SETFL) to turn on
1415 * non-blocking I/O for the file descriptor. Note that there is no way
1416 * back, i.e. you cannot turn it blocking again this way. If you wish to
1417 * alternatively switch between blocking and non-blocking, use the
1418 * ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
85e6fe83 1419 */
dfe9444c 1420/* VAL_EAGAIN:
1421 * This symbol holds the errno error code set by read() when no data was
1422 * present on the non-blocking file descriptor.
1423 */
1424/* RD_NODATA:
1425 * This symbol holds the return code from read() when no data is present
1426 * on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
1427 * not defined, then you can't distinguish between no data and EOF by
1428 * issuing a read(). You'll have to find another way to tell for sure!
1429 */
1430/* EOF_NONBLOCK:
1431 * This symbol, if defined, indicates to the C program that a read() on
1432 * a non-blocking file descriptor will return 0 on EOF, and not the value
1433 * held in RD_NODATA (-1 usually, in that case!).
1434 */
1435#define VAL_O_NONBLOCK $o_nonblock
1436#define VAL_EAGAIN $eagain
1437#define RD_NODATA $rd_nodata
1438#$d_eofnblk EOF_NONBLOCK
85e6fe83 1439
693762b4 1440/* PTRSIZE:
1441 * This symbol contains the size of a pointer, so that the C preprocessor
1442 * can make decisions based on it. It will be sizeof(void *) if
1443 * the compiler supports (void *); otherwise it will be
1444 * sizeof(char *).
1445 */
1446#define PTRSIZE $ptrsize /**/
1447
dfe9444c 1448/* RANDBITS:
1449 * This symbol contains the number of bits of random number the rand()
1450 * function produces. Usual values are 15, 16, and 31.
1451 */
1452#define RANDBITS $randbits /**/
1453
1454/* SSize_t:
1455 * This symbol holds the type used by functions that return
1456 * a count of bytes or an error condition. It must be a signed type.
1457 * It is usually ssize_t, but may be long or int, etc.
1458 * It may be necessary to include <sys/types.h> or <unistd.h>
1459 * to get any typedef'ed information.
1460 * We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
1461 */
1462#define SSize_t $ssizetype /* signed count of bytes */
1463
1464/* OSNAME:
1465 * This symbol contains the name of the operating system, as determined
1466 * by Configure. You shouldn't rely on it too much; the specific
1467 * feature tests from Configure are generally more reliable.
1468 */
1469#define OSNAME "$osname" /**/
1470
1471/* ARCHLIB:
e876cf0b 1472 * This variable, if defined, holds the name of the directory in
dfe9444c 1473 * which the user wants to put architecture-dependent public
1474 * library files for $package. It is most often a local directory
1475 * such as /usr/local/lib. Programs using this variable must be
1476 * prepared to deal with filename expansion. If ARCHLIB is the
1477 * same as PRIVLIB, it is not defined, since presumably the
1478 * program already searches PRIVLIB.
1479 */
1480/* ARCHLIB_EXP:
1481 * This symbol contains the ~name expanded version of ARCHLIB, to be used
1482 * in programs that are not prepared to deal with ~ expansion at run-time.
1483 */
1484#$d_archlib ARCHLIB "$archlib" /**/
1485#$d_archlib ARCHLIB_EXP "$archlibexp" /**/
1486
1487/* CAT2:
1488 * This macro catenates 2 tokens together.
1489 */
1490/* STRINGIFY:
1491 * This macro surrounds its token with double quotes.
1492 */
1493#if $cpp_stuff == 1
1494#define CAT2(a,b)a/**/b
1495#define STRINGIFY(a)"a"
1496 /* If you can get stringification with catify, tell me how! */
1497#endif
1498#if $cpp_stuff == 42
1499#define CAT2(a,b)a ## b
1500#define StGiFy(a)# a
1501#define STRINGIFY(a)StGiFy(a)
1502#endif
1503#if $cpp_stuff != 1 && $cpp_stuff != 42
1504#include "Bletch: How does this C preprocessor catenate tokens?"
1505#endif
1506
1507/* CSH:
e5c9fcd0 1508 * This symbol, if defined, contains the full pathname of csh.
dfe9444c 1509 */
e5c9fcd0 1510#$d_csh HAS_CSH /**/
1511#ifdef HAS_CSH
1512#define CSH "$full_csh" /**/
1513#endif
1514
1515/* HAS_ENDHOSTENT:
1516 * This symbol, if defined, indicates that the endhostent() routine is
1517 * available to close whatever was being used for host queries.
1518 */
1519#$d_endhent HAS_ENDHOSTENT /**/
1520
1521/* HAS_ENDNETENT:
1522 * This symbol, if defined, indicates that the endnetent() routine is
1523 * available to close whatever was being used for network queries.
1524 */
1525#$d_endnent HAS_ENDNETENT /**/
1526
1527/* HAS_ENDPROTOENT:
1528 * This symbol, if defined, indicates that the endprotoent() routine is
1529 * available to close whatever was being used for protocol queries.
1530 */
1531#$d_endpent HAS_ENDPROTOENT /**/
1532
1533/* HAS_ENDSERVENT:
1534 * This symbol, if defined, indicates that the endservent() routine is
1535 * available to close whatever was being used for service queries.
1536 */
1537#$d_endsent HAS_ENDSERVENT /**/
dfe9444c 1538
693762b4 1539/* HAS_GETHOSTBYADDR:
1540 * This symbol, if defined, indicates that the gethostbyaddr() routine is
1541 * available to look up hosts by their IP addresses.
1542 */
1543#$d_gethbyaddr HAS_GETHOSTBYADDR /**/
1544
1545/* HAS_GETHOSTBYNAME:
1546 * This symbol, if defined, indicates that the gethostbyname() routine is
1547 * available to look up host names in some data base or other.
1548 */
1549#$d_gethbyname HAS_GETHOSTBYNAME /**/
1550
1551/* HAS_GETHOSTENT:
1552 * This symbol, if defined, indicates that the gethostent() routine is
1553 * available to look up host names in some data base or another.
1554 */
1555#$d_gethent HAS_GETHOSTENT /**/
1556
1557/* HAS_GETNETBYADDR:
1558 * This symbol, if defined, indicates that the getnetbyaddr() routine is
1559 * available to look up networks by their IP addresses.
1560 */
1561#$d_getnbyaddr HAS_GETNETBYADDR /**/
1562
1563/* HAS_GETNETBYNAME:
1564 * This symbol, if defined, indicates that the getnetbyname() routine is
1565 * available to look up networks by their names.
1566 */
1567#$d_getnbyname HAS_GETNETBYNAME /**/
1568
e5c9fcd0 1569/* HAS_GETNETENT:
1570 * This symbol, if defined, indicates that the getnetent() routine is
1571 * available to look up network names in some data base or another.
1572 */
1573#$d_getnent HAS_GETNETENT /**/
1574
1575/* HAS_GETPROTOENT:
1576 * This symbol, if defined, indicates that the getprotoent() routine is
1577 * available to look up protocols in some data base or another.
1578 */
1579#$d_getpent HAS_GETPROTOENT /**/
1580
693762b4 1581/* HAS_GETPROTOBYNAME:
1582 * This symbol, if defined, indicates that the getprotobyname()
1583 * routine is available to look up protocols by their name.
1584 */
1585/* HAS_GETPROTOBYNUMBER:
1586 * This symbol, if defined, indicates that the getprotobynumber()
1587 * routine is available to look up protocols by their number.
1588 */
1589#$d_getpbyname HAS_GETPROTOBYNAME /**/
1590#$d_getpbynumber HAS_GETPROTOBYNUMBER /**/
1591
e5c9fcd0 1592/* HAS_GETSERVENT:
1593 * This symbol, if defined, indicates that the getservent() routine is
1594 * available to look up network services in some data base or another.
1595 */
1596#$d_getsent HAS_GETSERVENT /**/
1597
693762b4 1598/* HAS_GETSERVBYNAME:
1599 * This symbol, if defined, indicates that the getservbyname()
1600 * routine is available to look up services by their name.
1601 */
1602/* HAS_GETSERVBYPORT:
1603 * This symbol, if defined, indicates that the getservbyport()
1604 * routine is available to look up services by their port.
1605 */
1606#$d_getsbyname HAS_GETSERVBYNAME /**/
1607#$d_getsbyport HAS_GETSERVBYPORT /**/
1608
e5c9fcd0 1609/* HAS_LONG_DOUBLE:
1610 * This symbol will be defined if the C compiler supports long
1611 * doubles.
1612 */
1613/* LONG_DOUBLESIZE:
1614 * This symbol contains the size of a long double, so that the
1615 * C preprocessor can make decisions based on it. It is only
1616 * defined if the system supports long doubles.
1617 */
1618#$d_longdbl HAS_LONG_DOUBLE /**/
1619#ifdef HAS_LONG_DOUBLE
1620#define LONG_DOUBLESIZE $longdblsize /**/
1621#endif
1622
dc45a647 1623/* HAS_LONG_LONG:
1624 * This symbol will be defined if the C compiler supports
1625 * long long.
1626 */
1627/* LONGLONGSIZE:
1628 * This symbol contains the size of a long long, so that the
1629 * C preprocessor can make decisions based on it. It is only
1630 * defined if the system supports long long.
1631 */
1632#$d_longlong HAS_LONG_LONG /**/
1633#ifdef HAS_LONG_LONG
1634#define LONGLONGSIZE $longlongsize /**/
1635#endif
1636
e5c9fcd0 1637/* HAS_MKSTEMP:
1638 * This symbol, if defined, indicates that the mkstemp routine is
1639 * available to create and open a unique temporary file.
1640 */
1641#$d_mkstemp HAS_MKSTEMP /**/
1642
dfe9444c 1643/* HAS_SETGROUPS:
1644 * This symbol, if defined, indicates that the setgroups() routine is
1645 * available to set the list of process groups. If unavailable, multiple
1646 * groups are probably not supported.
1647 */
1648#$d_setgrps HAS_SETGROUPS /**/
1649
693762b4 1650/* HAS_SETHOSTENT:
1651 * This symbol, if defined, indicates that the sethostent() routine is
1652 * available.
1653 */
1654#$d_sethent HAS_SETHOSTENT /**/
1655
e5c9fcd0 1656/* HAS_SETNETENT:
1657 * This symbol, if defined, indicates that the setnetent() routine is
1658 * available.
1659 */
1660#$d_setnent HAS_SETNETENT /**/
1661
1662/* HAS_SETPROTOENT:
1663 * This symbol, if defined, indicates that the setprotoent() routine is
1664 * available.
1665 */
1666#$d_setpent HAS_SETPROTOENT /**/
1667
1668/* HAS_SETSERVENT:
1669 * This symbol, if defined, indicates that the setservent() routine is
1670 * available.
1671 */
1672#$d_setsent HAS_SETSERVENT /**/
1673
1674/* HAS_SETVBUF:
1675 * This symbol, if defined, indicates that the setvbuf routine is
1676 * available to change buffering on an open stdio stream.
1677 * to a line-buffered mode.
1678 */
1679#$d_setvbuf HAS_SETVBUF /**/
1680
dc45a647 1681/* HAS_SOCKET:
1682 * This symbol, if defined, indicates that the BSD socket interface is
1683 * supported.
1684 */
1685/* HAS_SOCKETPAIR:
1686 * This symbol, if defined, indicates that the BSD socketpair() call is
1687 * supported.
1688 */
1689#$d_socket HAS_SOCKET /**/
1690#$d_sockpair HAS_SOCKETPAIR /**/
1691
bd89102f 1692/* HAS_UNION_SEMUN:
1693 * This symbol, if defined, indicates that the union semun is
1694 * defined by including <sys/sem.h>. If not, the user code
1695 * probably needs to define it as:
1696 * union semun {
1697 * int val;
1698 * struct semid_ds *buf;
1699 * unsigned short *array;
1700 * }
1701 */
1702/* USE_SEMCTL_SEMUN:
1703 * This symbol, if defined, indicates that union semun is
1704 * used for semctl IPC_STAT.
1705 */
1706/* USE_SEMCTL_SEMID_DS:
1707 * This symbol, if defined, indicates that struct semid_ds * is
1708 * used for semctl IPC_STAT.
1709 */
1710#$d_union_semun HAS_UNION_SEMUN /**/
1711#$d_semctl_semun USE_SEMCTL_SEMUN /**/
1712#$d_semctl_semid_ds USE_SEMCTL_SEMID_DS /**/
1713
dfe9444c 1714/* Signal_t:
1715 * This symbol's value is either "void" or "int", corresponding to the
1716 * appropriate return type of a signal handler. Thus, you can declare
1717 * a signal handler using "Signal_t (*handler)()", and define the
1718 * handler using "Signal_t handler(sig)".
e876cf0b 1719 */
dfe9444c 1720#define Signal_t $signal_t /* Signal handler's return type */
1721
1722/* Groups_t:
1723 * This symbol holds the type used for the second argument to
1724 * getgroups() and setgropus(). Usually, this is the same as
1725 * gidtype (gid_t) , but sometimes it isn't.
1726 * It can be int, ushort, uid_t, etc...
1727 * It may be necessary to include <sys/types.h> to get any
1728 * typedef'ed information. This is only required if you have
1729 * getgroups() or setgropus()..
4633a7c4 1730 */
dfe9444c 1731#if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
1732#define Groups_t $groupstype /* Type for 2nd arg to [sg]etgroups() */
1733#endif
1734
1735/* I_NETDB:
1736 * This symbol, if defined, indicates that <netdb.h> exists and
1737 * should be included.
1738 */
1739#$i_netdb I_NETDB /**/
4633a7c4 1740
c4f23d77 1741/* I_PWD:
1742 * This symbol, if defined, indicates to the C program that it should
1743 * include <pwd.h>.
1744 */
1745/* PWQUOTA:
1746 * This symbol, if defined, indicates to the C program that struct passwd
1747 * contains pw_quota.
1748 */
1749/* PWAGE:
1750 * This symbol, if defined, indicates to the C program that struct passwd
1751 * contains pw_age.
1752 */
1753/* PWCHANGE:
1754 * This symbol, if defined, indicates to the C program that struct passwd
1755 * contains pw_change.
1756 */
1757/* PWCLASS:
1758 * This symbol, if defined, indicates to the C program that struct passwd
1759 * contains pw_class.
1760 */
1761/* PWEXPIRE:
1762 * This symbol, if defined, indicates to the C program that struct passwd
1763 * contains pw_expire.
1764 */
1765/* PWCOMMENT:
1766 * This symbol, if defined, indicates to the C program that struct passwd
1767 * contains pw_comment.
1768 */
1769/* PWGECOS:
1770 * This symbol, if defined, indicates to the C program that struct passwd
1771 * contains pw_gecos.
1772 */
1773#$i_pwd I_PWD /**/
1774#$d_pwquota PWQUOTA /**/
1775#$d_pwage PWAGE /**/
1776#$d_pwchange PWCHANGE /**/
1777#$d_pwclass PWCLASS /**/
1778#$d_pwexpire PWEXPIRE /**/
1779#$d_pwcomment PWCOMMENT /**/
1780#$d_pwgecos PWGECOS /**/
1781
e876cf0b 1782/* PRIVLIB:
1783 * This symbol contains the name of the private library for this package.
1784 * The library is private in the sense that it needn't be in anyone's
1785 * execution path, but it should be accessible by the world. The program
1786 * should be prepared to do ~ expansion.
1787 */
4633a7c4 1788/* PRIVLIB_EXP:
1789 * This symbol contains the ~name expanded version of PRIVLIB, to be used
1790 * in programs that are not prepared to deal with ~ expansion at run-time.
1791 */
e876cf0b 1792#define PRIVLIB "$privlib" /**/
4633a7c4 1793#define PRIVLIB_EXP "$privlibexp" /**/
1794
c4f23d77 1795/* SIG_NAME:
1796 * This symbol contains a list of signal names in order of
1797 * signal number. This is intended
1798 * to be used as a static array initialization, like this:
1799 * char *sig_name[] = { SIG_NAME };
1800 * The signals in the list are separated with commas, and each signal
1801 * is surrounded by double quotes. There is no leading SIG in the signal
1802 * name, i.e. SIGQUIT is known as "QUIT".
1803 * Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
1804 * etc., where nn is the actual signal number (e.g. NUM37).
1805 * The signal number for sig_name[i] is stored in sig_num[i].
1806 * The last element is 0 to terminate the list with a NULL. This
1807 * corresponds to the 0 at the end of the sig_num list.
1808 */
1809/* SIG_NUM:
1810 * This symbol contains a list of signal numbers, in the same order as the
1811 * SIG_NAME list. It is suitable for static array initialization, as in:
1812 * int sig_num[] = { SIG_NUM };
1813 * The signals in the list are separated with commas, and the indices
1814 * within that list and the SIG_NAME list match, so it's easy to compute
1815 * the signal name from a number or vice versa at the price of a small
1816 * dynamic linear lookup.
1817 * Duplicates are allowed, but are moved to the end of the list.
1818 * The signal number corresponding to sig_name[i] is sig_number[i].
1819 * if (i < NSIG) then sig_number[i] == i.
1820 * The last element is 0, corresponding to the 0 at the end of
1821 * the sig_name list.
1822 */
1823#define SIG_NAME $sig_name_init /**/
1824#define SIG_NUM $sig_num /**/
1825
e876cf0b 1826/* SITEARCH:
1827 * This symbol contains the name of the private library for this package.
1828 * The library is private in the sense that it needn't be in anyone's
1829 * execution path, but it should be accessible by the world. The program
1830 * should be prepared to do ~ expansion.
1831 * The standard distribution will put nothing in this directory.
1832 * Individual sites may place their own extensions and modules in
1833 * this directory.
1834 */
4633a7c4 1835/* SITEARCH_EXP:
1836 * This symbol contains the ~name expanded version of SITEARCH, to be used
16d20bd9 1837 * in programs that are not prepared to deal with ~ expansion at run-time.
1838 */
e876cf0b 1839#define SITEARCH "$sitearch" /**/
4633a7c4 1840#define SITEARCH_EXP "$sitearchexp" /**/
16d20bd9 1841
e876cf0b 1842/* SITELIB:
1843 * This symbol contains the name of the private library for this package.
1844 * The library is private in the sense that it needn't be in anyone's
1845 * execution path, but it should be accessible by the world. The program
1846 * should be prepared to do ~ expansion.
1847 * The standard distribution will put nothing in this directory.
1848 * Individual sites may place their own extensions and modules in
1849 * this directory.
1850 */
25f94b33 1851/* SITELIB_EXP:
1852 * This symbol contains the ~name expanded version of SITELIB, to be used
1853 * in programs that are not prepared to deal with ~ expansion at run-time.
1854 */
e876cf0b 1855#define SITELIB "$sitelib" /**/
25f94b33 1856#define SITELIB_EXP "$sitelibexp" /**/
1857
dfe9444c 1858/* DLSYM_NEEDS_UNDERSCORE:
1859 * This symbol, if defined, indicates that we need to prepend an
1860 * underscore to the symbol name before calling dlsym(). This only
1861 * makes sense if you *have* dlsym, which we will presume is the
1862 * case if you're using dl_dlopen.xs.
1863 */
1864#$d_dlsymun DLSYM_NEEDS_UNDERSCORE /**/
1865
1866/* USE_SFIO:
1867 * This symbol, if defined, indicates that sfio should
1868 * be used.
1869 */
1870#$d_sfio USE_SFIO /**/
1871
1872/* USE_DYNAMIC_LOADING:
1873 * This symbol, if defined, indicates that dynamic loading of
1874 * some sort is available.
1875 */
1876#$usedl USE_DYNAMIC_LOADING /**/
1877
1878/* DB_Prefix_t:
1879 * This symbol contains the type of the prefix structure element
1880 * in the <db.h> header file. In older versions of DB, it was
1881 * int, while in newer ones it is u_int32_t.
1882 */
1883/* DB_Hash_t:
1884 * This symbol contains the type of the prefix structure element
1885 * in the <db.h> header file. In older versions of DB, it was
1886 * int, while in newer ones it is size_t.
1887 */
1888#define DB_Hash_t $db_hashtype /**/
1889#define DB_Prefix_t $db_prefixtype /**/
1890
568ef1f6 1891/* STARTPERL:
1892 * This variable contains the string to put in front of a perl
1893 * script to make sure (one hopes) that it runs with perl and not
1894 * some shell.
1895 */
1896#define STARTPERL "$startperl" /**/
1897
e876cf0b 1898/* USE_PERLIO:
1899 * This symbol, if defined, indicates that the PerlIO abstraction should
1900 * be used throughout. If not defined, stdio should be
1901 * used in a fully backward compatible manner.
1902 */
1903#$useperlio USE_PERLIO /**/
1904
dc45a647 1905/* HAS_GETHOST_PROTOS:
1906 * This symbol, if defined, indicates that <netdb.h> includes
1907 * prototypes for gethostent(), gethostbyname(), and
1908 * gethostbyaddr(). Otherwise, it is up to the program to guess
1909 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
1910 */
1911#$d_gethostprotos HAS_GETHOST_PROTOS /**/
1912
1913/* HAS_GETNET_PROTOS:
1914 * This symbol, if defined, indicates that <netdb.h> includes
1915 * prototypes for getnetent(), getnetbyname(), and
1916 * getnetbyaddr(). Otherwise, it is up to the program to guess
1917 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
1918 */
1919#$d_getnetprotos HAS_GETNET_PROTOS /**/
1920
1921/* HAS_GETPROTO_PROTOS:
1922 * This symbol, if defined, indicates that <netdb.h> includes
1923 * prototypes for getprotoent(), getprotobyname(), and
1924 * getprotobyaddr(). Otherwise, it is up to the program to guess
1925 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
1926 */
1927#$d_getprotoprotos HAS_GETPROTO_PROTOS /**/
1928
1929/* HAS_GETSERV_PROTOS:
1930 * This symbol, if defined, indicates that <netdb.h> includes
1931 * prototypes for getservent(), getservbyname(), and
1932 * getservbyaddr(). Otherwise, it is up to the program to guess
1933 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
1934 */
1935#$d_getservprotos HAS_GETSERV_PROTOS /**/
1936
dfe9444c 1937/* Netdb_host_t:
1938 * This symbol holds the type used for the 1st argument
1939 * to gethostbyaddr().
8e07c86e 1940 */
dfe9444c 1941/* Netdb_hlen_t:
1942 * This symbol holds the type used for the 2nd argument
1943 * to gethostbyaddr().
1944 */
1945/* Netdb_name_t:
1946 * This symbol holds the type used for the argument to
1947 * gethostbyname().
1948 */
1949/* Netdb_net_t:
1950 * This symbol holds the type used for the 1st argument to
1951 * getnetbyaddr().
1952 */
1953#define Netdb_host_t $netdb_host_type /**/
1954#define Netdb_hlen_t $netdb_hlen_type /**/
1955#define Netdb_name_t $netdb_name_type /**/
1956#define Netdb_net_t $netdb_net_type /**/
1957
1958/* Select_fd_set_t:
1959 * This symbol holds the type used for the 2nd, 3rd, and 4th
1960 * arguments to select. Usually, this is 'fd_set *', if HAS_FD_SET
1961 * is defined, and 'int *' otherwise. This is only useful if you
1962 * have select(), of course.
1963 */
1964#define Select_fd_set_t $selecttype /**/
1965
1966/* ARCHNAME:
1967 * This symbol holds a string representing the architecture name.
1968 * It may be used to construct an architecture-dependant pathname
1969 * where library files may be held under a private library, for
1970 * instance.
1971 */
1972#define ARCHNAME "$archname" /**/
1973
1974/* HAS_PTHREAD_YIELD:
1975 * This symbol, if defined, indicates that the pthread_yield
1976 * routine is available to yield the execution of the current
1977 * thread.
1978 */
c4f23d77 1979/* HAS_SCHED_YIELD:
1980 * This symbol, if defined, indicates that the sched_yield
1981 * routine is available to yield the execution of the current
1982 * thread.
1983 */
dfe9444c 1984#$d_pthread_yield HAS_PTHREAD_YIELD /**/
c4f23d77 1985#$d_sched_yield HAS_SCHED_YIELD /**/
dfe9444c 1986
1987/* PTHREADS_CREATED_JOINABLE:
1988 * This symbol, if defined, indicates that pthreads are created
1989 * in the joinable (aka undetached) state.
1990 */
1991#$d_pthreads_created_joinable PTHREADS_CREATED_JOINABLE /**/
1992
1993/* USE_THREADS:
1994 * This symbol, if defined, indicates that Perl should
1995 * be built to use threads.
1996 */
693762b4 1997/* OLD_PTHREADS_API:
1998 * This symbol, if defined, indicates that Perl should
1999 * be built to use the old draft POSIX threads API.
2000 */
dfe9444c 2001#$usethreads USE_THREADS /**/
693762b4 2002#$d_oldpthreads OLD_PTHREADS_API /**/
8e07c86e 2003
dc45a647 2004/* Time_t:
2005 * This symbol holds the type returned by time(). It can be long,
2006 * or time_t on BSD sites (in which case <sys/types.h> should be
2007 * included).
2008 */
2009#define Time_t $timetype /* Time type */
2010
2011/* HAS_TIMES:
2012 * This symbol, if defined, indicates that the times() routine exists.
2013 * Note that this became obsolete on some systems (SUNOS), which now
2014 * use getrusage(). It may be necessary to include <sys/times.h>.
2015 */
2016#$d_times HAS_TIMES /**/
2017
2018/* Fpos_t:
2019 * This symbol holds the type used to declare file positions in libc.
2020 * It can be fpos_t, long, uint, etc... It may be necessary to include
2021 * <sys/types.h> to get any typedef'ed information.
2022 */
2023#define Fpos_t $fpostype /* File position type */
2024
2025/* Gid_t:
2026 * This symbol holds the return type of getgid() and the type of
2027 * argument to setrgid() and related functions. Typically,
2028 * it is the type of group ids in the kernel. It can be int, ushort,
2029 * uid_t, etc... It may be necessary to include <sys/types.h> to get
2030 * any typedef'ed information.
2031 */
2032#define Gid_t $gidtype /* Type for getgid(), etc... */
2033
2034/* Off_t:
2035 * This symbol holds the type used to declare offsets in the kernel.
2036 * It can be int, long, off_t, etc... It may be necessary to include
2037 * <sys/types.h> to get any typedef'ed information.
2038 */
2039#define Off_t $lseektype /* <offset> type */
2040
2041/* Mode_t:
2042 * This symbol holds the type used to declare file modes
2043 * for systems calls. It is usually mode_t, but may be
2044 * int or unsigned short. It may be necessary to include <sys/types.h>
2045 * to get any typedef'ed information.
2046 */
2047#define Mode_t $modetype /* file mode parameter for system calls */
2048
2049/* Pid_t:
2050 * This symbol holds the type used to declare process ids in the kernel.
2051 * It can be int, uint, pid_t, etc... It may be necessary to include
2052 * <sys/types.h> to get any typedef'ed information.
2053 */
2054#define Pid_t $pidtype /* PID type */
2055
2056/* Size_t:
2057 * This symbol holds the type used to declare length parameters
2058 * for string functions. It is usually size_t, but may be
2059 * unsigned long, int, etc. It may be necessary to include
2060 * <sys/types.h> to get any typedef'ed information.
2061 */
2062#define Size_t $sizetype /* length paramater for string functions */
2063
2064/* Uid_t:
2065 * This symbol holds the type used to declare user ids in the kernel.
2066 * It can be int, ushort, uid_t, etc... It may be necessary to include
2067 * <sys/types.h> to get any typedef'ed information.
2068 */
2069#define Uid_t $uidtype /* UID type */
2070
fe14fcc3 2071#endif
8d063cd8 2072!GROK!THIS!