Integrate with Sarathy.
[p5sagit/p5-mst-13.2.git] / Porting / config_H
CommitLineData
921b2963 1/* This file (config_H) is a sample config.h file. If you are unable
2 to successfully run Configure, copy this file to config.h and
3 edit it to suit your system.
4*/
85e6fe83 5/*
6 * This file was produced by running the config_h.SH script, which
8d063cd8 7 * gets its values from config.sh, which is generally produced by
8 * running Configure.
9 *
10 * Feel free to modify any of this as the need arises. Note, however,
1aef975c 11 * that running config_h.SH again will wipe out any changes you've made.
12 * For a more permanent change edit config.sh and rerun config_h.SH.
85e6fe83 13 *
dfe9444c 14 * $Id: Config_h.U,v 3.0.1.5 1997/02/28 14:57:43 ram Exp $
8d063cd8 15 */
a687059c 16
dfe9444c 17/*
18 * Package name : perl5
11dc3f68 19 * Source directory : .
7cedd6f8 20 * Configuration time: Fri Apr 28 23:34:47 EET DST 2000
ff935051 21 * Configured by : jhi
22 * Target system : osf1 alpha.hut.fi v4.0 878 alpha
68decaef 23 */
68decaef 24
85e6fe83 25#ifndef _config_h_
26#define _config_h_
fe14fcc3 27
dfe9444c 28/* LOC_SED:
29 * This symbol holds the complete pathname to the sed program.
774d564b 30 */
ff935051 31#define LOC_SED "/usr/bin/sed" /**/
774d564b 32
a0d0e21e 33/* HAS_ALARM:
34 * This symbol, if defined, indicates that the alarm routine is
35 * available.
36 */
37#define HAS_ALARM /**/
a687059c 38
ecfc5424 39/* HASATTRIBUTE:
40 * This symbol indicates the C compiler can check for function attributes,
41 * such as printf formats. This is normally only supported by GNU cc.
42 */
ff935051 43/*#define HASATTRIBUTE / **/
ecfc5424 44#ifndef HASATTRIBUTE
45#define __attribute__(_arg_)
46#endif
47
85e6fe83 48/* HAS_BCMP:
49 * This symbol is defined if the bcmp() routine is available to
50 * compare blocks of memory.
a687059c 51 */
9003a523 52#define HAS_BCMP /**/
a687059c 53
85e6fe83 54/* HAS_BCOPY:
55 * This symbol is defined if the bcopy() routine is available to
56 * copy blocks of memory.
a687059c 57 */
9003a523 58#define HAS_BCOPY /**/
fe14fcc3 59
85e6fe83 60/* HAS_BZERO:
61 * This symbol is defined if the bzero() routine is available to
62 * set a memory block to 0.
fe14fcc3 63 */
9003a523 64#define HAS_BZERO /**/
8d063cd8 65
a0d0e21e 66/* HAS_CHOWN:
67 * This symbol, if defined, indicates that the chown routine is
68 * available.
69 */
70#define HAS_CHOWN /**/
71
72/* HAS_CHROOT:
73 * This symbol, if defined, indicates that the chroot routine is
74 * available.
75 */
76#define HAS_CHROOT /**/
8d063cd8 77
85e6fe83 78/* HAS_CHSIZE:
fe14fcc3 79 * This symbol, if defined, indicates that the chsize routine is available
80 * to truncate files. You might need a -lx to get this routine.
81 */
20e68413 82/*#define HAS_CHSIZE / **/
ecfc5424 83
85e6fe83 84/* HASCONST:
85 * This symbol, if defined, indicates that this C compiler knows about
86 * the const type. There is no need to actually test for that symbol
87 * within your programs. The mere use of the "const" keyword will
88 * trigger the necessary tests.
89 */
4633a7c4 90#define HASCONST /**/
85e6fe83 91#ifndef HASCONST
92#define const
93#endif
fe14fcc3 94
85e6fe83 95/* HAS_CRYPT:
a687059c 96 * This symbol, if defined, indicates that the crypt routine is available
97 * to encrypt passwords and the like.
98 */
85e6fe83 99#define HAS_CRYPT /**/
fe14fcc3 100
a0d0e21e 101/* HAS_CUSERID:
102 * This symbol, if defined, indicates that the cuserid routine is
103 * available to get character login names.
a687059c 104 */
a0d0e21e 105#define HAS_CUSERID /**/
106
107/* HAS_DBL_DIG:
108 * This symbol, if defined, indicates that this system's <float.h>
109 * or <limits.h> defines the symbol DBL_DIG, which is the number
110 * of significant digits in a double precision number. If this
111 * symbol is not defined, a guess of 15 is usually pretty good.
112 */
113#define HAS_DBL_DIG /* */
114
115/* HAS_DIFFTIME:
116 * This symbol, if defined, indicates that the difftime routine is
117 * available.
118 */
119#define HAS_DIFFTIME /**/
a687059c 120
ecfc5424 121/* HAS_DLERROR:
122 * This symbol, if defined, indicates that the dlerror routine is
123 * available to return a string describing the last error that
124 * occurred from a call to dlopen(), dlclose() or dlsym().
125 */
4633a7c4 126#define HAS_DLERROR /**/
ecfc5424 127
dfe9444c 128/* SETUID_SCRIPTS_ARE_SECURE_NOW:
129 * This symbol, if defined, indicates that the bug that prevents
130 * setuid scripts from being secure is not present in this kernel.
131 */
132/* DOSUID:
133 * This symbol, if defined, indicates that the C program should
134 * check the script that it is executing for setuid/setgid bits, and
135 * attempt to emulate setuid/setgid on systems that have disabled
136 * setuid #! scripts because the kernel can't do it securely.
137 * It is up to the package designer to make sure that this emulation
138 * is done securely. Among other things, it should do an fstat on
139 * the script it just opened to make sure it really is a setuid/setgid
140 * script, it should make sure the arguments passed correspond exactly
141 * to the argument on the #! line, and it should not trust any
142 * subprocesses to which it must pass the filename rather than the
143 * file descriptor of the script to be executed.
144 */
921b2963 145/*#define SETUID_SCRIPTS_ARE_SECURE_NOW / **/
dfe9444c 146/*#define DOSUID / **/
147
85e6fe83 148/* HAS_DUP2:
149 * This symbol, if defined, indicates that the dup2 routine is
150 * available to duplicate file descriptors.
a687059c 151 */
85e6fe83 152#define HAS_DUP2 /**/
a687059c 153
85e6fe83 154/* HAS_FCHMOD:
a687059c 155 * This symbol, if defined, indicates that the fchmod routine is available
156 * to change mode of opened files. If unavailable, use chmod().
157 */
4633a7c4 158#define HAS_FCHMOD /**/
a687059c 159
85e6fe83 160/* HAS_FCHOWN:
a687059c 161 * This symbol, if defined, indicates that the fchown routine is available
162 * to change ownership of opened files. If unavailable, use chown().
163 */
4633a7c4 164#define HAS_FCHOWN /**/
a687059c 165
85e6fe83 166/* HAS_FCNTL:
fe14fcc3 167 * This symbol, if defined, indicates to the C program that
168 * the fcntl() function exists.
a687059c 169 */
85e6fe83 170#define HAS_FCNTL /**/
a687059c 171
a0d0e21e 172/* HAS_FGETPOS:
173 * This symbol, if defined, indicates that the fgetpos routine is
174 * available to get the file position indicator, similar to ftell().
175 */
4633a7c4 176#define HAS_FGETPOS /**/
a0d0e21e 177
85e6fe83 178/* HAS_FLOCK:
179 * This symbol, if defined, indicates that the flock routine is
a687059c 180 * available to do file locking.
181 */
921b2963 182#define HAS_FLOCK /**/
a0d0e21e 183
184/* HAS_FORK:
185 * This symbol, if defined, indicates that the fork routine is
186 * available.
187 */
188#define HAS_FORK /**/
189
190/* HAS_FSETPOS:
191 * This symbol, if defined, indicates that the fsetpos routine is
192 * available to set the file position indicator, similar to fseek().
193 */
4633a7c4 194#define HAS_FSETPOS /**/
ecfc5424 195
5f05dabc 196/* HAS_GETTIMEOFDAY:
197 * This symbol, if defined, indicates that the gettimeofday() system
198 * call is available for a sub-second accuracy clock. Usually, the file
199 * <sys/resource.h> needs to be included (see I_SYS_RESOURCE).
200 * The type "Timeval" should be used to refer to "struct timeval".
201 */
dfe9444c 202#define HAS_GETTIMEOFDAY /**/
5f05dabc 203#ifdef HAS_GETTIMEOFDAY
204#define Timeval struct timeval /* Structure used by gettimeofday() */
205#endif
206
85e6fe83 207/* HAS_GETGROUPS:
a687059c 208 * This symbol, if defined, indicates that the getgroups() routine is
209 * available to get the list of process groups. If unavailable, multiple
210 * groups are probably not supported.
211 */
85e6fe83 212#define HAS_GETGROUPS /**/
a687059c 213
a0d0e21e 214/* HAS_GETLOGIN:
215 * This symbol, if defined, indicates that the getlogin routine is
216 * available to get the login name.
217 */
218#define HAS_GETLOGIN /**/
219
dfe9444c 220/* HAS_GETPGID:
221 * This symbol, if defined, indicates to the C program that
222 * the getpgid(pid) function is available to get the
223 * process group id.
224 */
225#define HAS_GETPGID /**/
226
227/* HAS_GETPGRP:
228 * This symbol, if defined, indicates that the getpgrp routine is
229 * available to get the current process group.
230 */
231/* USE_BSD_GETPGRP:
232 * This symbol, if defined, indicates that getpgrp needs one
233 * arguments whereas USG one needs none.
234 */
235#define HAS_GETPGRP /**/
236/*#define USE_BSD_GETPGRP / **/
237
85e6fe83 238/* HAS_GETPGRP2:
fe14fcc3 239 * This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
240 * routine is available to get the current process group.
241 */
20e68413 242/*#define HAS_GETPGRP2 / **/
a687059c 243
a0d0e21e 244/* HAS_GETPPID:
245 * This symbol, if defined, indicates that the getppid routine is
246 * available to get the parent process ID.
247 */
248#define HAS_GETPPID /**/
249
85e6fe83 250/* HAS_GETPRIORITY:
251 * This symbol, if defined, indicates that the getpriority routine is
a687059c 252 * available to get a process's priority.
253 */
9003a523 254#define HAS_GETPRIORITY /**/
a0d0e21e 255
dfe9444c 256/* HAS_INET_ATON:
257 * This symbol, if defined, indicates to the C program that the
258 * inet_aton() function is available to parse IP address "dotted-quad"
259 * strings.
ecfc5424 260 */
921b2963 261#define HAS_INET_ATON /**/
ecfc5424 262
85e6fe83 263/* HAS_KILLPG:
a687059c 264 * This symbol, if defined, indicates that the killpg routine is available
265 * to kill process groups. If unavailable, you probably should use kill
266 * with a negative process number.
267 */
9003a523 268#define HAS_KILLPG /**/
a687059c 269
85e6fe83 270/* HAS_LINK:
271 * This symbol, if defined, indicates that the link routine is
272 * available to create hard links.
fe14fcc3 273 */
85e6fe83 274#define HAS_LINK /**/
fe14fcc3 275
ecfc5424 276/* HAS_LOCALECONV:
277 * This symbol, if defined, indicates that the localeconv routine is
278 * available for numeric and monetary formatting conventions.
279 */
280#define HAS_LOCALECONV /**/
281
a0d0e21e 282/* HAS_LOCKF:
283 * This symbol, if defined, indicates that the lockf routine is
284 * available to do file locking.
285 */
286#define HAS_LOCKF /**/
287
85e6fe83 288/* HAS_LSTAT:
289 * This symbol, if defined, indicates that the lstat routine is
290 * available to do file stats on symbolic links.
a687059c 291 */
85e6fe83 292#define HAS_LSTAT /**/
a687059c 293
a0d0e21e 294/* HAS_MBLEN:
295 * This symbol, if defined, indicates that the mblen routine is available
296 * to find the number of bytes in a multibye character.
297 */
4633a7c4 298#define HAS_MBLEN /**/
a0d0e21e 299
300/* HAS_MBSTOWCS:
301 * This symbol, if defined, indicates that the mbstowcs routine is
302 * available to covert a multibyte string into a wide character string.
303 */
4633a7c4 304#define HAS_MBSTOWCS /**/
a0d0e21e 305
306/* HAS_MBTOWC:
307 * This symbol, if defined, indicates that the mbtowc routine is available
308 * to covert a multibyte to a wide character.
309 */
4633a7c4 310#define HAS_MBTOWC /**/
a0d0e21e 311
85e6fe83 312/* HAS_MEMCMP:
313 * This symbol, if defined, indicates that the memcmp routine is available
314 * to compare blocks of memory.
a687059c 315 */
85e6fe83 316#define HAS_MEMCMP /**/
317
318/* HAS_MEMCPY:
68decaef 319 * This symbol, if defined, indicates that the memcpy routine is available
85e6fe83 320 * to copy blocks of memory.
68decaef 321 */
85e6fe83 322#define HAS_MEMCPY /**/
68decaef 323
85e6fe83 324/* HAS_MEMMOVE:
68decaef 325 * This symbol, if defined, indicates that the memmove routine is available
85e6fe83 326 * to copy potentially overlapping blocks of memory. This should be used
327 * only when HAS_SAFE_BCOPY is not defined. If neither is there, roll your
328 * own version.
68decaef 329 */
4633a7c4 330#define HAS_MEMMOVE /**/
68decaef 331
85e6fe83 332/* HAS_MEMSET:
68decaef 333 * This symbol, if defined, indicates that the memset routine is available
85e6fe83 334 * to set blocks of memory.
68decaef 335 */
85e6fe83 336#define HAS_MEMSET /**/
a687059c 337
85e6fe83 338/* HAS_MKDIR:
a687059c 339 * This symbol, if defined, indicates that the mkdir routine is available
340 * to create directories. Otherwise you should fork off a new process to
341 * exec /bin/mkdir.
342 */
85e6fe83 343#define HAS_MKDIR /**/
fe14fcc3 344
ecfc5424 345/* HAS_MKFIFO:
346 * This symbol, if defined, indicates that the mkfifo routine is
347 * available to create FIFOs. Otherwise, mknod should be able to
348 * do it for you. However, if mkfifo is there, mknod might require
349 * super-user privileges which mkfifo will not.
350 */
351#define HAS_MKFIFO /**/
352
a0d0e21e 353/* HAS_MKTIME:
354 * This symbol, if defined, indicates that the mktime routine is
355 * available.
356 */
357#define HAS_MKTIME /**/
358
fe749a9f 359/* HAS_MSYNC:
360 * This symbol, if defined, indicates that the msync system call is
361 * available to synchronize a mapped file.
362 */
363#define HAS_MSYNC /**/
364
365/* HAS_MUNMAP:
366 * This symbol, if defined, indicates that the munmap system call is
367 * available to unmap a region, usually mapped by mmap().
368 */
369#define HAS_MUNMAP /**/
370
a0d0e21e 371/* HAS_NICE:
372 * This symbol, if defined, indicates that the nice routine is
373 * available.
fe14fcc3 374 */
a0d0e21e 375#define HAS_NICE /**/
fe14fcc3 376
ecfc5424 377/* HAS_PATHCONF:
378 * This symbol, if defined, indicates that pathconf() is available
379 * to determine file-system related limits and options associated
380 * with a given filename.
381 */
382/* HAS_FPATHCONF:
383 * This symbol, if defined, indicates that pathconf() is available
384 * to determine file-system related limits and options associated
385 * with a given open file descriptor.
386 */
387#define HAS_PATHCONF /**/
388#define HAS_FPATHCONF /**/
389
a0d0e21e 390/* HAS_PAUSE:
391 * This symbol, if defined, indicates that the pause routine is
392 * available to suspend a process until a signal is received.
a687059c 393 */
a0d0e21e 394#define HAS_PAUSE /**/
fe14fcc3 395
a0d0e21e 396/* HAS_PIPE:
397 * This symbol, if defined, indicates that the pipe routine is
398 * available to create an inter-process channel.
fe14fcc3 399 */
a0d0e21e 400#define HAS_PIPE /**/
401
4633a7c4 402/* HAS_POLL:
403 * This symbol, if defined, indicates that the poll routine is
dfe9444c 404 * available to poll active file descriptors. You may safely
405 * include <poll.h> when this symbol is defined.
4633a7c4 406 */
407#define HAS_POLL /**/
408
a0d0e21e 409/* HAS_READDIR:
410 * This symbol, if defined, indicates that the readdir routine is
411 * available to read directory entries. You may have to include
412 * <dirent.h>. See I_DIRENT.
413 */
414#define HAS_READDIR /**/
415
416/* HAS_SEEKDIR:
417 * This symbol, if defined, indicates that the seekdir routine is
418 * available. You may have to include <dirent.h>. See I_DIRENT.
419 */
420#define HAS_SEEKDIR /**/
421
422/* HAS_TELLDIR:
423 * This symbol, if defined, indicates that the telldir routine is
424 * available. You may have to include <dirent.h>. See I_DIRENT.
425 */
426#define HAS_TELLDIR /**/
427
428/* HAS_REWINDDIR:
429 * This symbol, if defined, indicates that the rewinddir routine is
430 * available. You may have to include <dirent.h>. See I_DIRENT.
431 */
432#define HAS_REWINDDIR /**/
433
434/* HAS_READLINK:
435 * This symbol, if defined, indicates that the readlink routine is
436 * available to read the value of a symbolic link.
437 */
438#define HAS_READLINK /**/
a687059c 439
85e6fe83 440/* HAS_RENAME:
a687059c 441 * This symbol, if defined, indicates that the rename routine is available
442 * to rename files. Otherwise you should do the unlink(), link(), unlink()
443 * trick.
444 */
85e6fe83 445#define HAS_RENAME /**/
a687059c 446
85e6fe83 447/* HAS_RMDIR:
448 * This symbol, if defined, indicates that the rmdir routine is
449 * available to remove directories. Otherwise you should fork off a
450 * new process to exec /bin/rmdir.
68decaef 451 */
85e6fe83 452#define HAS_RMDIR /**/
68decaef 453
85e6fe83 454/* HAS_SELECT:
455 * This symbol, if defined, indicates that the select routine is
456 * available to select active file descriptors. If the timeout field
457 * is used, <sys/time.h> may need to be included.
68decaef 458 */
85e6fe83 459#define HAS_SELECT /**/
68decaef 460
85e6fe83 461/* HAS_SETEGID:
a687059c 462 * This symbol, if defined, indicates that the setegid routine is available
463 * to change the effective gid of the current program.
464 */
85e6fe83 465#define HAS_SETEGID /**/
a687059c 466
85e6fe83 467/* HAS_SETEUID:
a687059c 468 * This symbol, if defined, indicates that the seteuid routine is available
469 * to change the effective uid of the current program.
470 */
85e6fe83 471#define HAS_SETEUID /**/
472
a0d0e21e 473/* HAS_SETLINEBUF:
474 * This symbol, if defined, indicates that the setlinebuf routine is
475 * available to change stderr or stdout from block-buffered or unbuffered
476 * to a line-buffered mode.
477 */
9003a523 478#define HAS_SETLINEBUF /**/
a0d0e21e 479
480/* HAS_SETLOCALE:
481 * This symbol, if defined, indicates that the setlocale routine is
482 * available to handle locale-specific ctype implementations.
483 */
484#define HAS_SETLOCALE /**/
485
dfe9444c 486/* HAS_SETPGID:
487 * This symbol, if defined, indicates that the setpgid(pid, gpid)
488 * routine is available to set process group ID.
489 */
490#define HAS_SETPGID /**/
491
492/* HAS_SETPGRP:
493 * This symbol, if defined, indicates that the setpgrp routine is
494 * available to set the current process group.
495 */
496/* USE_BSD_SETPGRP:
497 * This symbol, if defined, indicates that setpgrp needs two
498 * arguments whereas USG one needs none. See also HAS_SETPGID
499 * for a POSIX interface.
500 */
501#define HAS_SETPGRP /**/
ff935051 502#define USE_BSD_SETPGRP /**/
dfe9444c 503
85e6fe83 504/* HAS_SETPGRP2:
fe14fcc3 505 * This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
506 * routine is available to set the current process group.
507 */
20e68413 508/*#define HAS_SETPGRP2 / **/
fe14fcc3 509
85e6fe83 510/* HAS_SETPRIORITY:
511 * This symbol, if defined, indicates that the setpriority routine is
a687059c 512 * available to set a process's priority.
513 */
9003a523 514#define HAS_SETPRIORITY /**/
a687059c 515
85e6fe83 516/* HAS_SETREGID:
fe14fcc3 517 * This symbol, if defined, indicates that the setregid routine is
85e6fe83 518 * available to change the real and effective gid of the current
519 * process.
a687059c 520 */
85e6fe83 521/* HAS_SETRESGID:
fe14fcc3 522 * This symbol, if defined, indicates that the setresgid routine is
523 * available to change the real, effective and saved gid of the current
85e6fe83 524 * process.
fe14fcc3 525 */
9003a523 526#define HAS_SETREGID /**/
ff935051 527/*#define HAS_SETRESGID / **/
a687059c 528
85e6fe83 529/* HAS_SETREUID:
fe14fcc3 530 * This symbol, if defined, indicates that the setreuid routine is
85e6fe83 531 * available to change the real and effective uid of the current
532 * process.
fe14fcc3 533 */
85e6fe83 534/* HAS_SETRESUID:
fe14fcc3 535 * This symbol, if defined, indicates that the setresuid routine is
536 * available to change the real, effective and saved uid of the current
85e6fe83 537 * process.
a687059c 538 */
9003a523 539#define HAS_SETREUID /**/
ff935051 540/*#define HAS_SETRESUID / **/
a687059c 541
85e6fe83 542/* HAS_SETRGID:
a687059c 543 * This symbol, if defined, indicates that the setrgid routine is available
544 * to change the real gid of the current program.
545 */
ff935051 546#define HAS_SETRGID /**/
a687059c 547
85e6fe83 548/* HAS_SETRUID:
a687059c 549 * This symbol, if defined, indicates that the setruid routine is available
550 * to change the real uid of the current program.
551 */
ff935051 552#define HAS_SETRUID /**/
fe14fcc3 553
85e6fe83 554/* HAS_SETSID:
555 * This symbol, if defined, indicates that the setsid routine is
556 * available to set the process group ID.
fe14fcc3 557 */
85e6fe83 558#define HAS_SETSID /**/
fe14fcc3 559
a0d0e21e 560/* Shmat_t:
561 * This symbol holds the return type of the shmat() system call.
562 * Usually set to 'void *' or 'char *'.
fe14fcc3 563 */
a0d0e21e 564/* HAS_SHMAT_PROTOTYPE:
565 * This symbol, if defined, indicates that the sys/shm.h includes
566 * a prototype for shmat(). Otherwise, it is up to the program to
86959918 567 * guess one. Shmat_t shmat _((int, Shmat_t, int)) is a good guess,
a0d0e21e 568 * but not always right so it should be emitted by the program only
569 * when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
fe14fcc3 570 */
4633a7c4 571#define Shmat_t void * /**/
572#define HAS_SHMAT_PROTOTYPE /**/
a687059c 573
a0d0e21e 574/* HAS_STRCHR:
575 * This symbol is defined to indicate that the strchr()/strrchr()
576 * functions are available for string searching. If not, try the
577 * index()/rindex() pair.
578 */
579/* HAS_INDEX:
580 * This symbol is defined to indicate that the index()/rindex()
581 * functions are available for string searching.
582 */
583#define HAS_STRCHR /**/
20e68413 584/*#define HAS_INDEX / **/
a0d0e21e 585
586/* HAS_STRCOLL:
587 * This symbol, if defined, indicates that the strcoll routine is
588 * available to compare strings using collating information.
589 */
590#define HAS_STRCOLL /**/
591
85e6fe83 592/* USE_STRUCT_COPY:
8d063cd8 593 * This symbol, if defined, indicates that this C compiler knows how
594 * to copy structures. If undefined, you'll need to use a block copy
595 * routine of some sort instead.
596 */
85e6fe83 597#define USE_STRUCT_COPY /**/
fe14fcc3 598
55497cff 599/* HAS_STRTOD:
600 * This symbol, if defined, indicates that the strtod routine is
774d564b 601 * available to provide better numeric string conversion than atof().
55497cff 602 */
603#define HAS_STRTOD /**/
604
605/* HAS_STRTOL:
774d564b 606 * This symbol, if defined, indicates that the strtol routine is available
607 * to provide better numeric string conversion than atoi() and friends.
55497cff 608 */
609#define HAS_STRTOL /**/
610
611/* HAS_STRTOUL:
612 * This symbol, if defined, indicates that the strtoul routine is
774d564b 613 * available to provide conversion of strings to unsigned long.
55497cff 614 */
615#define HAS_STRTOUL /**/
616
a0d0e21e 617/* HAS_STRXFRM:
618 * This symbol, if defined, indicates that the strxfrm() routine is
619 * available to transform strings.
620 */
621#define HAS_STRXFRM /**/
622
85e6fe83 623/* HAS_SYMLINK:
a687059c 624 * This symbol, if defined, indicates that the symlink routine is available
625 * to create symbolic links.
626 */
85e6fe83 627#define HAS_SYMLINK /**/
a687059c 628
85e6fe83 629/* HAS_SYSCALL:
630 * This symbol, if defined, indicates that the syscall routine is
631 * available to call arbitrary system calls. If undefined, that's tough.
a687059c 632 */
85e6fe83 633#define HAS_SYSCALL /**/
a687059c 634
ecfc5424 635/* HAS_SYSCONF:
636 * This symbol, if defined, indicates that sysconf() is available
637 * to determine system related limits and options.
638 */
639#define HAS_SYSCONF /**/
640
85e6fe83 641/* HAS_SYSTEM:
642 * This symbol, if defined, indicates that the system routine is
643 * available to issue a shell command.
68decaef 644 */
85e6fe83 645#define HAS_SYSTEM /**/
68decaef 646
a0d0e21e 647/* HAS_TCGETPGRP:
648 * This symbol, if defined, indicates that the tcgetpgrp routine is
649 * available to get foreground process group ID.
650 */
651#define HAS_TCGETPGRP /**/
652
653/* HAS_TCSETPGRP:
654 * This symbol, if defined, indicates that the tcsetpgrp routine is
655 * available to set foreground process group ID.
85e6fe83 656 */
a0d0e21e 657#define HAS_TCSETPGRP /**/
85e6fe83 658
85e6fe83 659/* HAS_TRUNCATE:
fe14fcc3 660 * This symbol, if defined, indicates that the truncate routine is
661 * available to truncate files.
a687059c 662 */
4633a7c4 663#define HAS_TRUNCATE /**/
a0d0e21e 664
665/* HAS_TZNAME:
666 * This symbol, if defined, indicates that the tzname[] array is
667 * available to access timezone names.
668 */
669#define HAS_TZNAME /**/
670
671/* HAS_UMASK:
672 * This symbol, if defined, indicates that the umask routine is
673 * available to set and get the value of the file creation mask.
674 */
675#define HAS_UMASK /**/
a687059c 676
85e6fe83 677/* HASVOLATILE:
fe14fcc3 678 * This symbol, if defined, indicates that this C compiler knows about
679 * the volatile declaration.
680 */
4633a7c4 681#define HASVOLATILE /**/
85e6fe83 682#ifndef HASVOLATILE
683#define volatile
684#endif
fe14fcc3 685
85e6fe83 686/* HAS_WAIT4:
fe14fcc3 687 * This symbol, if defined, indicates that wait4() exists.
688 */
9003a523 689#define HAS_WAIT4 /**/
fe14fcc3 690
85e6fe83 691/* HAS_WAITPID:
692 * This symbol, if defined, indicates that the waitpid routine is
693 * available to wait for child process.
fe14fcc3 694 */
85e6fe83 695#define HAS_WAITPID /**/
fe14fcc3 696
a0d0e21e 697/* HAS_WCSTOMBS:
698 * This symbol, if defined, indicates that the wcstombs routine is
699 * available to convert wide character strings to multibyte strings.
700 */
4633a7c4 701#define HAS_WCSTOMBS /**/
a0d0e21e 702
703/* HAS_WCTOMB:
704 * This symbol, if defined, indicates that the wctomb routine is available
705 * to covert a wide character to a multibyte.
706 */
4633a7c4 707#define HAS_WCTOMB /**/
a0d0e21e 708
93341792 709/* I_ARPA_INET:
327c3667 710 * This symbol, if defined, indicates to the C program that it should
711 * include <arpa/inet.h> to get inet_addr and friends declarations.
93341792 712 */
11dc3f68 713#define I_ARPA_INET /**/
93341792 714
dfe9444c 715/* I_DBM:
716 * This symbol, if defined, indicates that <dbm.h> exists and should
717 * be included.
232e078e 718 */
dfe9444c 719/* I_RPCSVC_DBM:
720 * This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
721 * should be included.
232e078e 722 */
921b2963 723#define I_DBM /**/
724/*#define I_RPCSVC_DBM / **/
232e078e 725
85e6fe83 726/* I_DIRENT:
727 * This symbol, if defined, indicates to the C program that it should
728 * include <dirent.h>. Using this symbol also triggers the definition
729 * of the Direntry_t define which ends up being 'struct dirent' or
730 * 'struct direct' depending on the availability of <dirent.h>.
731 */
732/* DIRNAMLEN:
733 * This symbol, if defined, indicates to the C program that the length
734 * of directory entry names is provided by a d_namlen field. Otherwise
735 * you need to do strlen() on the d_name field.
2b317908 736 */
a0d0e21e 737/* Direntry_t:
738 * This symbol is set to 'struct direct' or 'struct dirent' depending on
739 * whether dirent is available or not. You should use this pseudo type to
740 * portably declare your directory entries.
741 */
85e6fe83 742#define I_DIRENT /**/
ff935051 743#define DIRNAMLEN /**/
85e6fe83 744#define Direntry_t struct dirent
a0d0e21e 745
746/* I_DLFCN:
747 * This symbol, if defined, indicates that <dlfcn.h> exists and should
748 * be included.
749 */
4633a7c4 750#define I_DLFCN /**/
a687059c 751
85e6fe83 752/* I_FCNTL:
fe14fcc3 753 * This manifest constant tells the C program to include <fcntl.h>.
a687059c 754 */
921b2963 755/*#define I_FCNTL / **/
a687059c 756
a0d0e21e 757/* I_FLOAT:
758 * This symbol, if defined, indicates to the C program that it should
759 * include <float.h> to get definition of symbols like DBL_MAX or
760 * DBL_MIN, i.e. machine dependent floating point values.
a687059c 761 */
a0d0e21e 762#define I_FLOAT /**/
a687059c 763
a0d0e21e 764/* I_LIMITS:
765 * This symbol, if defined, indicates to the C program that it should
766 * include <limits.h> to get definition of symbols like WORD_BIT or
767 * LONG_MAX, i.e. machine dependant limitations.
768 */
769#define I_LIMITS /**/
770
dfe9444c 771/* I_LOCALE:
772 * This symbol, if defined, indicates to the C program that it should
773 * include <locale.h>.
774 */
775#define I_LOCALE /**/
776
a0d0e21e 777/* I_MATH:
778 * This symbol, if defined, indicates to the C program that it should
779 * include <math.h>.
780 */
781#define I_MATH /**/
782
783/* I_MEMORY:
784 * This symbol, if defined, indicates to the C program that it should
785 * include <memory.h>.
786 */
20e68413 787/*#define I_MEMORY / **/
a0d0e21e 788
232e078e 789/* I_NDBM:
16d20bd9 790 * This symbol, if defined, indicates that <ndbm.h> exists and should
232e078e 791 * be included.
792 */
ff935051 793#define I_NDBM /**/
232e078e 794
ecfc5424 795/* I_NET_ERRNO:
796 * This symbol, if defined, indicates that <net/errno.h> exists and
797 * should be included.
fe14fcc3 798 */
20e68413 799/*#define I_NET_ERRNO / **/
fe14fcc3 800
85e6fe83 801/* I_NETINET_IN:
a687059c 802 * This symbol, if defined, indicates to the C program that it should
85e6fe83 803 * include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
a687059c 804 */
85e6fe83 805#define I_NETINET_IN /**/
85e6fe83 806
dfe9444c 807/* I_SFIO:
808 * This symbol, if defined, indicates to the C program that it should
809 * include <sfio.h>.
810 */
811/*#define I_SFIO / **/
85e6fe83 812
813/* I_STDDEF:
814 * This symbol, if defined, indicates that <stddef.h> exists and should
815 * be included.
fe14fcc3 816 */
85e6fe83 817#define I_STDDEF /**/
818
a0d0e21e 819/* I_STDLIB:
820 * This symbol, if defined, indicates that <stdlib.h> exists and should
821 * be included.
822 */
823#define I_STDLIB /**/
824
85e6fe83 825/* I_STRING:
826 * This symbol, if defined, indicates to the C program that it should
827 * include <string.h> (USG systems) instead of <strings.h> (BSD systems).
fe14fcc3 828 */
85e6fe83 829#define I_STRING /**/
830
831/* I_SYS_DIR:
832 * This symbol, if defined, indicates to the C program that it should
833 * include <sys/dir.h>.
fe14fcc3 834 */
921b2963 835#define I_SYS_DIR /**/
a687059c 836
85e6fe83 837/* I_SYS_FILE:
838 * This symbol, if defined, indicates to the C program that it should
839 * include <sys/file.h> to get definition of R_OK and friends.
a687059c 840 */
921b2963 841#define I_SYS_FILE /**/
a687059c 842
85e6fe83 843/* I_SYS_IOCTL:
844 * This symbol, if defined, indicates that <sys/ioctl.h> exists and should
845 * be included. Otherwise, include <sgtty.h> or <termio.h>.
a687059c 846 */
85e6fe83 847#define I_SYS_IOCTL /**/
a687059c 848
85e6fe83 849/* I_SYS_NDIR:
850 * This symbol, if defined, indicates to the C program that it should
851 * include <sys/ndir.h>.
fe14fcc3 852 */
20e68413 853/*#define I_SYS_NDIR / **/
85e6fe83 854
a0d0e21e 855/* I_SYS_PARAM:
856 * This symbol, if defined, indicates to the C program that it should
857 * include <sys/param.h>.
858 */
859#define I_SYS_PARAM /**/
860
9003a523 861/* I_SYS_RESOURCE:
862 * This symbol, if defined, indicates to the C program that it should
863 * include <sys/resource.h>.
864 */
865#define I_SYS_RESOURCE /**/
866
85e6fe83 867/* I_SYS_SELECT:
868 * This symbol, if defined, indicates to the C program that it should
869 * include <sys/select.h> in order to get definition of struct timeval.
fe14fcc3 870 */
4633a7c4 871#define I_SYS_SELECT /**/
85e6fe83 872
dfe9444c 873/* I_SYS_STAT:
874 * This symbol, if defined, indicates to the C program that it should
875 * include <sys/stat.h>.
876 */
877#define I_SYS_STAT /**/
878
a0d0e21e 879/* I_SYS_TIMES:
85e6fe83 880 * This symbol, if defined, indicates to the C program that it should
a0d0e21e 881 * include <sys/times.h>.
fe14fcc3 882 */
a0d0e21e 883#define I_SYS_TIMES /**/
884
bd89102f 885/* I_SYS_TYPES:
886 * This symbol, if defined, indicates to the C program that it should
887 * include <sys/types.h>.
888 */
889#define I_SYS_TYPES /**/
890
fbfd4aab 891/* I_SYS_UN:
892 * This symbol, if defined, indicates to the C program that it should
893 * include <sys/un.h> to get UNIX domain socket definitions.
894 */
895#define I_SYS_UN /**/
896
9003a523 897/* I_SYS_WAIT:
898 * This symbol, if defined, indicates to the C program that it should
899 * include <sys/wait.h>.
900 */
901#define I_SYS_WAIT /**/
902
a0d0e21e 903/* I_TERMIO:
904 * This symbol, if defined, indicates that the program should include
905 * <termio.h> rather than <sgtty.h>. There are also differences in
906 * the ioctl() calls that depend on the value of this symbol.
907 */
908/* I_TERMIOS:
909 * This symbol, if defined, indicates that the program should include
910 * the POSIX termios.h rather than sgtty.h or termio.h.
911 * There are also differences in the ioctl() calls that depend on the
912 * value of this symbol.
913 */
914/* I_SGTTY:
915 * This symbol, if defined, indicates that the program should include
916 * <sgtty.h> rather than <termio.h>. There are also differences in
917 * the ioctl() calls that depend on the value of this symbol.
918 */
20e68413 919/*#define I_TERMIO / **/
a0d0e21e 920#define I_TERMIOS /**/
20e68413 921/*#define I_SGTTY / **/
a0d0e21e 922
a0d0e21e 923/* I_UNISTD:
924 * This symbol, if defined, indicates to the C program that it should
925 * include <unistd.h>.
926 */
927#define I_UNISTD /**/
928
85e6fe83 929/* I_UTIME:
a687059c 930 * This symbol, if defined, indicates to the C program that it should
85e6fe83 931 * include <utime.h>.
a687059c 932 */
85e6fe83 933#define I_UTIME /**/
a687059c 934
dfe9444c 935/* I_VALUES:
936 * This symbol, if defined, indicates to the C program that it should
937 * include <values.h> to get definition of symbols like MINFLOAT or
938 * MAXLONG, i.e. machine dependant limitations. Probably, you
939 * should use <limits.h> instead, if it is available.
940 */
941#define I_VALUES /**/
942
9003a523 943/* I_STDARG:
944 * This symbol, if defined, indicates that <stdarg.h> exists and should
945 * be included.
946 */
947/* I_VARARGS:
948 * This symbol, if defined, indicates to the C program that it should
949 * include <varargs.h>.
950 */
951#define I_STDARG /**/
20e68413 952/*#define I_VARARGS / **/
9003a523 953
a0d0e21e 954/* I_VFORK:
955 * This symbol, if defined, indicates to the C program that it should
956 * include vfork.h.
957 */
20e68413 958/*#define I_VFORK / **/
fe14fcc3 959
a0d0e21e 960/* CAN_PROTOTYPE:
961 * If defined, this macro indicates that the C compiler can handle
962 * function prototypes.
963 */
964/* _:
965 * This macro is used to declare function parameters for folks who want
966 * to make declarations with prototypes using a different style than
967 * the above macros. Use double parentheses. For example:
968 *
969 * int main _((int argc, char *argv[]));
970 */
4633a7c4 971#define CAN_PROTOTYPE /**/
a0d0e21e 972#ifdef CAN_PROTOTYPE
973#define _(args) args
974#else
975#define _(args) ()
976#endif
85e6fe83 977
dfe9444c 978/* SH_PATH:
979 * This symbol contains the full pathname to the shell used on this
980 * on this system to execute Bourne shell scripts. Usually, this will be
981 * /bin/sh, though it's possible that some systems will have /bin/ksh,
982 * /bin/pdksh, /bin/ash, /bin/bash, or even something such as
983 * D:/bin/sh.exe.
a0d0e21e 984 */
dfe9444c 985#define SH_PATH "/bin/sh" /**/
a0d0e21e 986
85e6fe83 987/* STDCHAR:
988 * This symbol is defined to be the type of char used in stdio.h.
989 * It has the values "unsigned char" or "char".
fe14fcc3 990 */
ff935051 991#define STDCHAR unsigned char /**/
327c3667 992
aaacdc8b 993/* CROSSCOMPILE:
994 * This symbol, if defined, signifies that we our
995 * build process is a cross-compilation.
996 */
997/*#define CROSSCOMPILE / **/
998
999/* INTSIZE:
1000 * This symbol contains the value of sizeof(int) so that the C
1001 * preprocessor can make decisions based on it.
1002 */
1003/* LONGSIZE:
1004 * This symbol contains the value of sizeof(long) so that the C
1005 * preprocessor can make decisions based on it.
1006 */
1007/* SHORTSIZE:
1008 * This symbol contains the value of sizeof(short) so that the C
1009 * preprocessor can make decisions based on it.
de1c2614 1010 */
aaacdc8b 1011#define INTSIZE 4 /**/
ff935051 1012#define LONGSIZE 8 /**/
aaacdc8b 1013#define SHORTSIZE 2 /**/
1014
1015/* MULTIARCH:
1016 * This symbol, if defined, signifies that the build
1017 * process will produce some binary files that are going to be
1018 * used in a cross-platform environment. This is the case for
1019 * example with the NeXT "fat" binaries that contain executables
1020 * for several CPUs.
a22e52b9 1021 */
aaacdc8b 1022/*#define MULTIARCH / **/
1023
1024/* HAS_QUAD:
1025 * This symbol, if defined, tells that there's a 64-bit integer type,
1026 * Quad_t, and its unsigned counterpar, Uquad_t. QUADKIND will be one
1027 * of QUAD_IS_INT, QUAD_IS_LONG, QUAD_IS_LONG_LONG, or QUAD_IS_INT64_T.
a22e52b9 1028 */
de1c2614 1029#define HAS_QUAD /**/
e0a10278 1030#ifdef HAS_QUAD
ff935051 1031# define Quad_t long /**/
1032# define Uquad_t unsigned long /**/
1033# define QUADKIND 2 /**/
e0a10278 1034# define QUAD_IS_INT 1
1035# define QUAD_IS_LONG 2
1036# define QUAD_IS_LONG_LONG 3
1037# define QUAD_IS_INT64_T 4
1038#endif
a22e52b9 1039
327c3667 1040/* HAS_ACCESSX:
1041 * This symbol, if defined, indicates that the accessx routine is
1042 * available to do extended access checks.
1043 */
11dc3f68 1044/*#define HAS_ACCESSX / **/
327c3667 1045
1046/* HAS_EACCESS:
1047 * This symbol, if defined, indicates that the eaccess routine is
1048 * available to do extended access checks.
1049 */
11dc3f68 1050/*#define HAS_EACCESS / **/
327c3667 1051
1052/* I_SYS_ACCESS:
1053 * This symbol, if defined, indicates to the C program that it should
921b2963 1054 * include <sys/access.h>.
327c3667 1055 */
ff935051 1056#define I_SYS_ACCESS /**/
327c3667 1057
1058/* I_SYS_SECURITY:
1059 * This symbol, if defined, indicates to the C program that it should
1060 * include <sys/security.h>.
1061 */
ff935051 1062#define I_SYS_SECURITY /**/
1063
1064/* OSNAME:
1065 * This symbol contains the name of the operating system, as determined
1066 * by Configure. You shouldn't rely on it too much; the specific
1067 * feature tests from Configure are generally more reliable.
1068 */
1069#define OSNAME "dec_osf" /**/
af4c28eb 1070
dfe9444c 1071/* MEM_ALIGNBYTES:
af4c28eb 1072 * This symbol contains the number of bytes required to align a
87b71857 1073 * double, or a long double when applicable. Usual values are 2,
1074 * 4 and 8. The default is eight, for safety.
5f05dabc 1075 */
af4c28eb 1076#if defined(CROSSCOMPILE) || defined(MULTIARCH)
1077# define MEM_ALIGNBYTES 8
1078#else
ff935051 1079#define MEM_ALIGNBYTES 8
af4c28eb 1080#endif
5f05dabc 1081
ff935051 1082/* ARCHLIB:
1083 * This variable, if defined, holds the name of the directory in
1084 * which the user wants to put architecture-dependent public
1085 * library files for perl5. It is most often a local directory
1086 * such as /usr/local/lib. Programs using this variable must be
1087 * prepared to deal with filename expansion. If ARCHLIB is the
1088 * same as PRIVLIB, it is not defined, since presumably the
1089 * program already searches PRIVLIB.
1090 */
1091/* ARCHLIB_EXP:
1092 * This symbol contains the ~name expanded version of ARCHLIB, to be used
1093 * in programs that are not prepared to deal with ~ expansion at run-time.
1094 */
526fdc24 1095#define ARCHLIB "/opt/perl/lib/5.6.0/alpha-dec_osf-thread-multi" /**/
1096#define ARCHLIB_EXP "/opt/perl/lib/5.6.0/alpha-dec_osf-thread-multi" /**/
ff935051 1097
1098/* ARCHNAME:
1099 * This symbol holds a string representing the architecture name.
1100 * It may be used to construct an architecture-dependant pathname
1101 * where library files may be held under a private library, for
1102 * instance.
1103 */
1104#define ARCHNAME "alpha-dec_osf-thread-multi" /**/
1105
1106/* HAS_ATOLF:
1107 * This symbol, if defined, indicates that the atolf routine is
1108 * available to convert strings into long doubles.
1109 */
1110/*#define HAS_ATOLF / **/
1111
1112/* HAS_ATOLL:
1113 * This symbol, if defined, indicates that the atoll routine is
1114 * available to convert strings into long longs.
1115 */
1116/*#define HAS_ATOLL / **/
1117
1118/* BIN:
1119 * This symbol holds the path of the bin directory where the package will
1120 * be installed. Program must be prepared to deal with ~name substitution.
1121 */
1122/* BIN_EXP:
1123 * This symbol is the filename expanded version of the BIN symbol, for
1124 * programs that do not want to deal with that at run-time.
1125 */
1126#define BIN "/opt/perl/bin" /**/
1127#define BIN_EXP "/opt/perl/bin" /**/
1128
1129/* PERL_BINCOMPAT_5005:
f78bfc9c 1130 * This symbol, if defined, indicates that this version of Perl should be
ff935051 1131 * binary-compatible with Perl 5.005. This is impossible for builds
1132 * that use features like threads and multiplicity it is always
1133 * for those versions.
1134 */
1135/*#define PERL_BINCOMPAT_5005 / **/
1136
4633a7c4 1137/* BYTEORDER:
9003a523 1138 * This symbol holds the hexadecimal constant defined in byteorder,
4633a7c4 1139 * i.e. 0x1234 or 0x4321, etc...
af4c28eb 1140 * If the compiler supports cross-compiling or multiple-architecture
1141 * binaries (eg. on NeXT systems), use compiler-defined macros to
1142 * determine the byte order.
dfe9444c 1143 * On NeXT 3.2 (and greater), you can build "Fat" Multiple Architecture
9003a523 1144 * Binaries (MAB) on either big endian or little endian machines.
1145 * The endian-ness is available at compile-time. This only matters
1146 * for perl, where the config.h can be generated and installed on
1147 * one system, and used by a different architecture to build an
1148 * extension. Older versions of NeXT that might not have
1149 * defined either *_ENDIAN__ were all on Motorola 680x0 series,
1150 * so the default case (for NeXT) is big endian to catch them.
1151 * This might matter for NeXT 3.0.
1152 */
af4c28eb 1153#if defined(CROSSCOMPILE) || defined(MULTIARCH)
1154# ifdef __LITTLE_ENDIAN__
1155# if LONGSIZE == 4
1156# define BYTEORDER 0x1234
1157# else
1158# if LONGSIZE == 8
1159# define BYTEORDER 0x12345678
1160# endif
1161# endif
1162# else
1163# ifdef __BIG_ENDIAN__
1164# if LONGSIZE == 4
1165# define BYTEORDER 0x4321
1166# else
1167# if LONGSIZE == 8
1168# define BYTEORDER 0x87654321
1169# endif
1170# endif
1171# endif
1172# endif
1173# if !defined(BYTEORDER) && (defined(NeXT) || defined(__NeXT__))
1174# define BYTEORDER 0x4321
1175# endif
1176#else
ff935051 1177#define BYTEORDER 0x12345678 /* large digits for MSB */
9003a523 1178#endif /* NeXT */
4633a7c4 1179
ff935051 1180/* CAT2:
1181 * This macro catenates 2 tokens together.
1182 */
1183/* STRINGIFY:
1184 * This macro surrounds its token with double quotes.
1185 */
1186#if 42 == 1
526fdc24 1187# define CAT2(a,b) a/**/b
1188# define STRINGIFY(a) "a"
ff935051 1189 /* If you can get stringification with catify, tell me how! */
1190#endif
1191#if 42 == 42
526fdc24 1192# define PeRl_CaTiFy(a, b) a ## b
1193# define PeRl_StGiFy(a) #a
1194/* the additional level of indirection enables these macros to be
1195 * used as arguments to other macros. See K&R 2nd ed., page 231. */
1196# define CAT2(a,b) PeRl_CaTiFy(a,b)
1197# define StGiFy(a) PeRl_StGiFy(a)
1198# define STRINGIFY(a) PeRl_StGiFy(a)
ff935051 1199#endif
1200#if 42 != 1 && 42 != 42
b6592ff0 1201# include "Bletch: How does this C preprocessor catenate tokens?"
ff935051 1202#endif
1203
1204/* CPPSTDIN:
1205 * This symbol contains the first part of the string which will invoke
1206 * the C preprocessor on the standard input and produce to standard
1207 * output. Typical value of "cc -E" or "/lib/cpp", but it can also
1208 * call a wrapper. See CPPRUN.
1209 */
1210/* CPPMINUS:
1211 * This symbol contains the second part of the string which will invoke
1212 * the C preprocessor on the standard input and produce to standard
1213 * output. This symbol will have the value "-" if CPPSTDIN needs a minus
1214 * to specify standard input, otherwise the value is "".
1215 */
1216/* CPPRUN:
1217 * This symbol contains the string which will invoke a C preprocessor on
1218 * the standard input and produce to standard output. It needs to end
1219 * with CPPLAST, after all other preprocessor flags have been specified.
1220 * The main difference with CPPSTDIN is that this program will never be a
1221 * pointer to a shell wrapper, i.e. it will be empty if no preprocessor is
1222 * available directly to the user. Note that it may well be different from
1223 * the preprocessor used to compile the C program.
1224 */
78691af5 1225/* CPPLAST:
1226 * This symbol is intended to be used along with CPPRUN in the same manner
1227 * symbol CPPMINUS is used with CPPSTDIN. It contains either "-" or "".
1228 */
ff935051 1229#define CPPSTDIN "cppstdin"
1230#define CPPMINUS ""
1231#define CPPRUN "/usr/bin/cpp"
78691af5 1232#define CPPLAST ""
ff935051 1233
1234/* HAS_ACCESS:
1235 * This manifest constant lets the C program know that the access()
1236 * system call is available to check for accessibility using real UID/GID.
1237 * (always present on UNIX.)
1238 */
1239#define HAS_ACCESS /**/
1240
dfe9444c 1241/* CASTI32:
1242 * This symbol is defined if the C compiler can cast negative
1243 * or large floating point numbers to 32-bit ints.
1aef975c 1244 */
11dc3f68 1245/*#define CASTI32 / **/
1aef975c 1246
dfe9444c 1247/* CASTNEGFLOAT:
1248 * This symbol is defined if the C compiler can cast negative
1249 * numbers to unsigned longs, ints and shorts.
85e6fe83 1250 */
dfe9444c 1251/* CASTFLAGS:
1252 * This symbol contains flags that say what difficulties the compiler
1253 * has casting odd floating values to unsigned long:
1254 * 0 = ok
1255 * 1 = couldn't cast < 0
1256 * 2 = couldn't cast >= 0x80000000
1257 * 4 = couldn't cast in argument expression list
fbfd4aab 1258 */
e5c9fcd0 1259#define CASTNEGFLOAT /**/
1260#define CASTFLAGS 0 /**/
dfe9444c 1261
1262/* VOID_CLOSEDIR:
1263 * This symbol, if defined, indicates that the closedir() routine
1264 * does not return a value.
fbfd4aab 1265 */
dfe9444c 1266/*#define VOID_CLOSEDIR / **/
fbfd4aab 1267
ff935051 1268/* HAS_CSH:
1269 * This symbol, if defined, indicates that the C-shell exists.
1270 */
1271/* CSH:
1272 * This symbol, if defined, contains the full pathname of csh.
1273 */
1274#define HAS_CSH /**/
1275#ifdef HAS_CSH
1276#define CSH "/usr/bin/csh" /**/
1277#endif
1278
1279/* DLSYM_NEEDS_UNDERSCORE:
1280 * This symbol, if defined, indicates that we need to prepend an
1281 * underscore to the symbol name before calling dlsym(). This only
1282 * makes sense if you *have* dlsym, which we will presume is the
1283 * case if you're using dl_dlopen.xs.
1284 */
1285/*#define DLSYM_NEEDS_UNDERSCORE / **/
1286
1287/* HAS_DRAND48_PROTO:
1288 * This symbol, if defined, indicates that the system provides
1289 * a prototype for the drand48() function. Otherwise, it is up
1290 * to the program to supply one. A good guess is
1291 * extern double drand48 _((void));
1292 */
1293#define HAS_DRAND48_PROTO /**/
1294
1295/* HAS_ENDGRENT:
1296 * This symbol, if defined, indicates that the getgrent routine is
1297 * available for finalizing sequential access of the group database.
1298 */
1299#define HAS_ENDGRENT /**/
1300
1301/* HAS_ENDHOSTENT:
1302 * This symbol, if defined, indicates that the endhostent() routine is
1303 * available to close whatever was being used for host queries.
1304 */
1305#define HAS_ENDHOSTENT /**/
1306
1307/* HAS_ENDNETENT:
1308 * This symbol, if defined, indicates that the endnetent() routine is
1309 * available to close whatever was being used for network queries.
1310 */
1311#define HAS_ENDNETENT /**/
1312
1313/* HAS_ENDPROTOENT:
1314 * This symbol, if defined, indicates that the endprotoent() routine is
1315 * available to close whatever was being used for protocol queries.
1316 */
1317#define HAS_ENDPROTOENT /**/
1318
1319/* HAS_ENDPWENT:
1320 * This symbol, if defined, indicates that the getgrent routine is
1321 * available for finalizing sequential access of the passwd database.
1322 */
1323#define HAS_ENDPWENT /**/
1324
1325/* HAS_ENDSERVENT:
1326 * This symbol, if defined, indicates that the endservent() routine is
1327 * available to close whatever was being used for service queries.
1328 */
1329#define HAS_ENDSERVENT /**/
1330
1331/* HAS_ENDSPENT:
1332 * This symbol, if defined, indicates that the endspent system call is
1333 * available to finalize the scan of SysV shadow password entries.
1334 */
1335/*#define HAS_ENDSPENT / **/
1336
921b2963 1337/* HAS_FD_SET:
1338 * This symbol, when defined, indicates presence of the fd_set typedef
1339 * in <sys/types.h>
1340 */
1341#define HAS_FD_SET /**/
1342
b6592ff0 1343/* FLEXFILENAMES:
1344 * This symbol, if defined, indicates that the system supports filenames
1345 * longer than 14 characters.
1346 */
1347#define FLEXFILENAMES /**/
1348
c890dc6c 1349/* HAS_FPOS64_T:
1350 * This symbol will be defined if the C compiler supports fpos64_t.
1351 */
1352/*#define HAS_FPOS64_T / **/
1353
a3540c92 1354/* HAS_FREXPL:
1355 * This symbol, if defined, indicates that the frexpl routine is
1356 * available to break a long double floating-point number into
1357 * a normalized fraction and an integral power of 2.
1358 */
1359#define HAS_FREXPL /**/
1360
ff935051 1361/* HAS_STRUCT_FS_DATA:
1362 * This symbol, if defined, indicates that the struct fs_data
1363 * to do statfs() is supported.
1364 */
1365/*#define HAS_STRUCT_FS_DATA / **/
1366
1367/* HAS_FSEEKO:
1368 * This symbol, if defined, indicates that the fseeko routine is
1369 * available to fseek beyond 32 bits (useful for ILP32 hosts).
1370 */
1371/*#define HAS_FSEEKO / **/
1372
1373/* HAS_FSTATFS:
1374 * This symbol, if defined, indicates that the fstatfs routine is
1375 * available to stat filesystems by file descriptors.
1376 */
1377#define HAS_FSTATFS /**/
c890dc6c 1378
ff935051 1379/* HAS_FTELLO:
1380 * This symbol, if defined, indicates that the ftello routine is
1381 * available to ftell beyond 32 bits (useful for ILP32 hosts).
1382 */
1383/*#define HAS_FTELLO / **/
1384
4633a7c4 1385/* Gconvert:
1386 * This preprocessor macro is defined to convert a floating point
1387 * number to a string without a trailing decimal point. This
1388 * emulates the behavior of sprintf("%g"), but is sometimes much more
1389 * efficient. If gconvert() is not available, but gcvt() drops the
1390 * trailing decimal point, then gcvt() is used. If all else fails,
1391 * a macro using sprintf("%g") is used. Arguments for the Gconvert
1392 * macro are: value, number of digits, whether trailing zeros should
1393 * be retained, and the output buffer.
1394 * Possible values are:
1395 * d_Gconvert='gconvert((x),(n),(t),(b))'
1396 * d_Gconvert='gcvt((x),(n),(b))'
1397 * d_Gconvert='sprintf((b),"%.*g",(n),(x))'
1398 * The last two assume trailing zeros should not be kept.
1399 */
921b2963 1400#define Gconvert(x,n,t,b) gcvt((x),(n),(b))
4633a7c4 1401
49dabb45 1402/* HAS_GETCWD:
1403 * This symbol, if defined, indicates that the getcwd routine is
1404 * available to get the current working directory.
1405 */
1406#define HAS_GETCWD /**/
1407
52c7d5b6 1408/* HAS_GETFSSTAT:
1409 * This symbol, if defined, indicates that the getfsstat routine is
1410 * available to stat filesystems in bulk.
1411 */
1412#define HAS_GETFSSTAT /**/
1413
ff935051 1414/* HAS_GETGRENT:
1415 * This symbol, if defined, indicates that the getgrent routine is
1416 * available for sequential access of the group database.
d103522a 1417 */
ff935051 1418#define HAS_GETGRENT /**/
d103522a 1419
ff935051 1420/* HAS_GETHOSTBYADDR:
1421 * This symbol, if defined, indicates that the gethostbyaddr() routine is
1422 * available to look up hosts by their IP addresses.
dd64f1c3 1423 */
ff935051 1424#define HAS_GETHOSTBYADDR /**/
dd64f1c3 1425
ff935051 1426/* HAS_GETHOSTBYNAME:
1427 * This symbol, if defined, indicates that the gethostbyname() routine is
1428 * available to look up host names in some data base or other.
774d564b 1429 */
ff935051 1430#define HAS_GETHOSTBYNAME /**/
774d564b 1431
ff935051 1432/* HAS_GETHOSTENT:
1433 * This symbol, if defined, indicates that the gethostent() routine is
1434 * available to look up host names in some data base or another.
d103522a 1435 */
ff935051 1436#define HAS_GETHOSTENT /**/
d103522a 1437
ff935051 1438/* HAS_GETHOSTNAME:
1439 * This symbol, if defined, indicates that the C program may use the
1440 * gethostname() routine to derive the host name. See also HAS_UNAME
1441 * and PHOSTNAME.
d103522a 1442 */
ff935051 1443/* HAS_UNAME:
1444 * This symbol, if defined, indicates that the C program may use the
1445 * uname() routine to derive the host name. See also HAS_GETHOSTNAME
1446 * and PHOSTNAME.
af4c28eb 1447 */
1448/* PHOSTNAME:
1449 * This symbol, if defined, indicates the command to feed to the
1450 * popen() routine to derive the host name. See also HAS_GETHOSTNAME
1451 * and HAS_UNAME. Note that the command uses a fully qualified path,
1452 * so that it is safe even if used by a process with super-user
1453 * privileges.
1454 */
78691af5 1455/* HAS_PHOSTNAME:
1456 * This symbol, if defined, indicates that the C program may use the
1457 * contents of PHOSTNAME as a command to feed to the popen() routine
1458 * to derive the host name.
1459 */
11dc3f68 1460#define HAS_GETHOSTNAME /**/
af4c28eb 1461#define HAS_UNAME /**/
fe749a9f 1462/*#define HAS_PHOSTNAME / **/
af4c28eb 1463#ifdef HAS_PHOSTNAME
0617aed7 1464#define PHOSTNAME "" /* How to get the host name */
af4c28eb 1465#endif
1466
ff935051 1467/* HAS_GETHOST_PROTOS:
1468 * This symbol, if defined, indicates that <netdb.h> includes
1469 * prototypes for gethostent(), gethostbyname(), and
1470 * gethostbyaddr(). Otherwise, it is up to the program to guess
1471 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
1472 */
1473#define HAS_GETHOST_PROTOS /**/
1474
1475/* HAS_GETMNT:
1476 * This symbol, if defined, indicates that the getmnt routine is
1477 * available to get filesystem mount info by filename.
1478 */
1479/*#define HAS_GETMNT / **/
1480
1481/* HAS_GETMNTENT:
1482 * This symbol, if defined, indicates that the getmntent routine is
1483 * available to iterate through mounted file systems to get their info.
1484 */
1485/*#define HAS_GETMNTENT / **/
1486
693762b4 1487/* HAS_GETNETBYADDR:
1488 * This symbol, if defined, indicates that the getnetbyaddr() routine is
1489 * available to look up networks by their IP addresses.
1490 */
11dc3f68 1491#define HAS_GETNETBYADDR /**/
693762b4 1492
1493/* HAS_GETNETBYNAME:
1494 * This symbol, if defined, indicates that the getnetbyname() routine is
1495 * available to look up networks by their names.
1496 */
11dc3f68 1497#define HAS_GETNETBYNAME /**/
693762b4 1498
e5c9fcd0 1499/* HAS_GETNETENT:
1500 * This symbol, if defined, indicates that the getnetent() routine is
1501 * available to look up network names in some data base or another.
1502 */
11dc3f68 1503#define HAS_GETNETENT /**/
e5c9fcd0 1504
ff935051 1505/* HAS_GETNET_PROTOS:
1506 * This symbol, if defined, indicates that <netdb.h> includes
1507 * prototypes for getnetent(), getnetbyname(), and
1508 * getnetbyaddr(). Otherwise, it is up to the program to guess
1509 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
1510 */
1511#define HAS_GETNET_PROTOS /**/
1512
e5c9fcd0 1513/* HAS_GETPROTOENT:
1514 * This symbol, if defined, indicates that the getprotoent() routine is
1515 * available to look up protocols in some data base or another.
1516 */
11dc3f68 1517#define HAS_GETPROTOENT /**/
e5c9fcd0 1518
693762b4 1519/* HAS_GETPROTOBYNAME:
1520 * This symbol, if defined, indicates that the getprotobyname()
1521 * routine is available to look up protocols by their name.
1522 */
1523/* HAS_GETPROTOBYNUMBER:
1524 * This symbol, if defined, indicates that the getprotobynumber()
1525 * routine is available to look up protocols by their number.
1526 */
11dc3f68 1527#define HAS_GETPROTOBYNAME /**/
1528#define HAS_GETPROTOBYNUMBER /**/
693762b4 1529
ff935051 1530/* HAS_GETPROTO_PROTOS:
1531 * This symbol, if defined, indicates that <netdb.h> includes
1532 * prototypes for getprotoent(), getprotobyname(), and
1533 * getprotobyaddr(). Otherwise, it is up to the program to guess
1534 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
1535 */
1536#define HAS_GETPROTO_PROTOS /**/
1537
327c3667 1538/* HAS_GETPWENT:
1539 * This symbol, if defined, indicates that the getpwent routine is
1540 * available for sequential access of the passwd database.
1541 * If this is not available, the older getpw() function may be available.
1542 */
11dc3f68 1543#define HAS_GETPWENT /**/
327c3667 1544
e5c9fcd0 1545/* HAS_GETSERVENT:
1546 * This symbol, if defined, indicates that the getservent() routine is
1547 * available to look up network services in some data base or another.
1548 */
11dc3f68 1549#define HAS_GETSERVENT /**/
e5c9fcd0 1550
ff935051 1551/* HAS_GETSERV_PROTOS:
1552 * This symbol, if defined, indicates that <netdb.h> includes
1553 * prototypes for getservent(), getservbyname(), and
1554 * getservbyaddr(). Otherwise, it is up to the program to guess
1555 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
1556 */
1557#define HAS_GETSERV_PROTOS /**/
1558
1559/* HAS_GETSPENT:
1560 * This symbol, if defined, indicates that the getspent system call is
1561 * available to retrieve SysV shadow password entries sequentially.
1562 */
1563/*#define HAS_GETSPENT / **/
1564
1565/* HAS_GETSPNAM:
1566 * This symbol, if defined, indicates that the getspnam system call is
1567 * available to retrieve SysV shadow password entries by name.
1568 */
1569/*#define HAS_GETSPNAM / **/
1570
693762b4 1571/* HAS_GETSERVBYNAME:
1572 * This symbol, if defined, indicates that the getservbyname()
1573 * routine is available to look up services by their name.
1574 */
1575/* HAS_GETSERVBYPORT:
1576 * This symbol, if defined, indicates that the getservbyport()
1577 * routine is available to look up services by their port.
1578 */
11dc3f68 1579#define HAS_GETSERVBYNAME /**/
1580#define HAS_GETSERVBYPORT /**/
693762b4 1581
ff935051 1582/* HAS_GNULIBC:
1583 * This symbol, if defined, indicates to the C program that
1584 * the GNU C library is being used.
1585 */
1586/*#define HAS_GNULIBC / **/
cce08f5b 1587#if defined(HAS_GNULIBC) && !defined(_GNU_SOURCE)
1588# define _GNU_SOURCE
1589#endif
ff935051 1590/* HAS_HASMNTOPT:
1591 * This symbol, if defined, indicates that the hasmntopt routine is
1592 * available to query the mount options of file systems.
1593 */
1594/*#define HAS_HASMNTOPT / **/
1595
327c3667 1596/* HAS_HTONL:
1597 * This symbol, if defined, indicates that the htonl() routine (and
1598 * friends htons() ntohl() ntohs()) are available to do network
1599 * order byte swapping.
1600 */
1601/* HAS_HTONS:
1602 * This symbol, if defined, indicates that the htons() routine (and
1603 * friends htonl() ntohl() ntohs()) are available to do network
1604 * order byte swapping.
1605 */
1606/* HAS_NTOHL:
1607 * This symbol, if defined, indicates that the ntohl() routine (and
1608 * friends htonl() htons() ntohs()) are available to do network
1609 * order byte swapping.
1610 */
1611/* HAS_NTOHS:
1612 * This symbol, if defined, indicates that the ntohs() routine (and
1613 * friends htonl() htons() ntohl()) are available to do network
1614 * order byte swapping.
1615 */
1616#define HAS_HTONL /**/
1617#define HAS_HTONS /**/
1618#define HAS_NTOHL /**/
1619#define HAS_NTOHS /**/
1620
fe749a9f 1621/* HAS_ICONV:
1622 * This symbol, if defined, indicates that the iconv routine is
1623 * available to do character set conversions.
1624 */
792d8dab 1625#define HAS_ICONV /**/
fe749a9f 1626
1627/* HAS_INT64_T:
1628 * This symbol will defined if the C compiler supports int64_t.
1629 * Usually the <inttypes.h> needs to be included, but sometimes
1630 * <sys/types.h> is enough.
1631 */
1632/*#define HAS_INT64_T / **/
1633
ff935051 1634/* HAS_ISASCII:
1635 * This manifest constant lets the C program know that isascii
1636 * is available.
1637 */
1638#define HAS_ISASCII /**/
1639
a3540c92 1640/* HAS_ISNAN:
1641 * This symbol, if defined, indicates that the isnan routine is
1642 * available to check whether a double is a NaN.
1643 */
1644#define HAS_ISNAN /**/
1645
1646/* HAS_ISNANL:
1647 * This symbol, if defined, indicates that the isnanl routine is
1648 * available to check whether a long double is a NaN.
1649 */
1650#define HAS_ISNANL /**/
1651
b6592ff0 1652/* HAS_LCHOWN:
1653 * This symbol, if defined, indicates that the lchown routine is
1654 * available to operate on a symbolic link (instead of following the
1655 * link).
1656 */
1657#define HAS_LCHOWN /**/
1658
ff935051 1659/* HAS_LDBL_DIG:
1660 * This symbol, if defined, indicates that this system's <float.h>
1661 * or <limits.h> defines the symbol LDBL_DIG, which is the number
1662 * of significant digits in a long double precision number. Unlike
1663 * for DBL_DIG, there's no good guess for LDBL_DIG if it is undefined.
1664 */
1665#define HAS_LDBL_DIG /* */
1666
e5c9fcd0 1667/* HAS_LONG_DOUBLE:
1668 * This symbol will be defined if the C compiler supports long
1669 * doubles.
1670 */
ff935051 1671/* LONG_DOUBLESIZE:
1672 * This symbol contains the size of a long double, so that the
1673 * C preprocessor can make decisions based on it. It is only
1674 * defined if the system supports long doubles.
1675 */
1676#define HAS_LONG_DOUBLE /**/
1677#ifdef HAS_LONG_DOUBLE
1678#define LONG_DOUBLESIZE 8 /**/
1679#endif
1680
1681/* HAS_LONG_LONG:
1682 * This symbol will be defined if the C compiler supports long long.
1683 */
1684/* LONGLONGSIZE:
1685 * This symbol contains the size of a long long, so that the
1686 * C preprocessor can make decisions based on it. It is only
1687 * defined if the system supports long long.
1688 */
1689#define HAS_LONG_LONG /**/
1690#ifdef HAS_LONG_LONG
1691#define LONGLONGSIZE 8 /**/
1692#endif
1693
52c7d5b6 1694/* HAS_LSEEK_PROTO:
1695 * This symbol, if defined, indicates that the system provides
1696 * a prototype for the lseek() function. Otherwise, it is up
1697 * to the program to supply one. A good guess is
1698 * extern off_t lseek(int, off_t, int);
1699 */
1700#define HAS_LSEEK_PROTO /**/
1701
792d8dab 1702/* HAS_MADVISE:
1703 * This symbol, if defined, indicates that the madvise system call is
1704 * available to map a file into memory.
1705 */
1706#define HAS_MADVISE /**/
1707
ff935051 1708/* HAS_MEMCHR:
1709 * This symbol, if defined, indicates that the memchr routine is available
1710 * to locate characters within a C string.
1711 */
1712#define HAS_MEMCHR /**/
1713
fe749a9f 1714/* HAS_MKDTEMP:
1715 * This symbol, if defined, indicates that the mkdtemp routine is
1716 * available to exclusively create a uniquely named temporary directory.
1717 */
1718/*#define HAS_MKDTEMP / **/
1719
1720/* HAS_MKSTEMP:
1721 * This symbol, if defined, indicates that the mkstemp routine is
1722 * available to exclusively create and open a uniquely named
1723 * temporary file.
1724 */
1725#define HAS_MKSTEMP /**/
1726
1727/* HAS_MKSTEMPS:
1728 * This symbol, if defined, indicates that the mkstemps routine is
1729 * available to excluslvely create and open a uniquely named
1730 * (with a suffix) temporary file.
1731 */
1732/*#define HAS_MKSTEMPS / **/
1733
87b71857 1734/* HAS_MMAP:
1735 * This symbol, if defined, indicates that the mmap system call is
1736 * available to map a file into memory.
1737 */
fe749a9f 1738/* Mmap_t:
1739 * This symbol holds the return type of the mmap() system call
1740 * (and simultaneously the type of the first argument).
1741 * Usually set to 'void *' or 'cadd_t'.
1742 */
87b71857 1743#define HAS_MMAP /**/
fe749a9f 1744#define Mmap_t void * /**/
1745
1746/* HAS_MPROTECT:
1747 * This symbol, if defined, indicates that the mprotect system call is
1748 * available to modify the access protection of a memory mapped file.
1749 */
1750#define HAS_MPROTECT /**/
1751
ff935051 1752/* HAS_MSG:
1753 * This symbol, if defined, indicates that the entire msg*(2) library is
1754 * supported (IPC mechanism based on message queues).
1755 */
1756#define HAS_MSG /**/
1757
c890dc6c 1758/* HAS_OFF64_T:
1759 * This symbol will be defined if the C compiler supports off64_t.
1760 */
1761/*#define HAS_OFF64_T / **/
1762
ff935051 1763/* HAS_OPEN3:
1764 * This manifest constant lets the C program know that the three
1765 * argument form of open(2) is available.
1766 */
1767#define HAS_OPEN3 /**/
1768
1769/* OLD_PTHREAD_CREATE_JOINABLE:
1770 * This symbol, if defined, indicates how to create pthread
1771 * in joinable (aka undetached) state. NOTE: not defined
1772 * if pthread.h already has defined PTHREAD_CREATE_JOINABLE
1773 * (the new version of the constant).
1774 * If defined, known values are PTHREAD_CREATE_UNDETACHED
1775 * and __UNDETACHED.
1776 */
1777/*#define OLD_PTHREAD_CREATE_JOINABLE / **/
1778
1779/* HAS_PTHREAD_YIELD:
1780 * This symbol, if defined, indicates that the pthread_yield
1781 * routine is available to yield the execution of the current
1782 * thread. sched_yield is preferable to pthread_yield.
1783 */
1784/* SCHED_YIELD:
1785 * This symbol defines the way to yield the execution of
1786 * the current thread. Known ways are sched_yield,
1787 * pthread_yield, and pthread_yield with NULL.
1788 */
1789/* HAS_SCHED_YIELD:
1790 * This symbol, if defined, indicates that the sched_yield
1791 * routine is available to yield the execution of the current
1792 * thread. sched_yield is preferable to pthread_yield.
e5c9fcd0 1793 */
ff935051 1794/*#define HAS_PTHREAD_YIELD / **/
1795#define SCHED_YIELD sched_yield() /**/
1796#define HAS_SCHED_YIELD /**/
e5c9fcd0 1797
ff935051 1798/* HAS_SAFE_BCOPY:
1799 * This symbol, if defined, indicates that the bcopy routine is available
1800 * to copy potentially overlapping memory blocks. Otherwise you should
1801 * probably use memmove() or memcpy(). If neither is defined, roll your
1802 * own version.
dc45a647 1803 */
ff935051 1804#define HAS_SAFE_BCOPY /**/
dc45a647 1805
ff935051 1806/* HAS_SAFE_MEMCPY:
1807 * This symbol, if defined, indicates that the memcpy routine is available
1808 * to copy potentially overlapping memory blocks. Otherwise you should
1809 * probably use memmove() or memcpy(). If neither is defined, roll your
1810 * own version.
a71cd7cd 1811 */
ff935051 1812/*#define HAS_SAFE_MEMCPY / **/
a71cd7cd 1813
ff935051 1814/* HAS_SANE_MEMCMP:
1815 * This symbol, if defined, indicates that the memcmp routine is available
1816 * and can be used to compare relative magnitudes of chars with their high
1817 * bits set. If it is not defined, roll your own version.
327c3667 1818 */
ff935051 1819#define HAS_SANE_MEMCMP /**/
327c3667 1820
1821/* HAS_SEM:
1822 * This symbol, if defined, indicates that the entire sem*(2) library is
1823 * supported.
1824 */
1825#define HAS_SEM /**/
1826
1827/* HAS_SETGRENT:
1828 * This symbol, if defined, indicates that the setgrent routine is
1829 * available for initializing sequential access of the group database.
1830 */
11dc3f68 1831#define HAS_SETGRENT /**/
327c3667 1832
dfe9444c 1833/* HAS_SETGROUPS:
1834 * This symbol, if defined, indicates that the setgroups() routine is
1835 * available to set the list of process groups. If unavailable, multiple
1836 * groups are probably not supported.
4633a7c4 1837 */
dfe9444c 1838#define HAS_SETGROUPS /**/
1839
693762b4 1840/* HAS_SETHOSTENT:
1841 * This symbol, if defined, indicates that the sethostent() routine is
1842 * available.
1843 */
11dc3f68 1844#define HAS_SETHOSTENT /**/
693762b4 1845
e5c9fcd0 1846/* HAS_SETNETENT:
1847 * This symbol, if defined, indicates that the setnetent() routine is
1848 * available.
1849 */
11dc3f68 1850#define HAS_SETNETENT /**/
e5c9fcd0 1851
1852/* HAS_SETPROTOENT:
1853 * This symbol, if defined, indicates that the setprotoent() routine is
1854 * available.
1855 */
11dc3f68 1856#define HAS_SETPROTOENT /**/
e5c9fcd0 1857
327c3667 1858/* HAS_SETPWENT:
1859 * This symbol, if defined, indicates that the setpwent routine is
1860 * available for initializing sequential access of the passwd database.
1861 */
11dc3f68 1862#define HAS_SETPWENT /**/
327c3667 1863
e5c9fcd0 1864/* HAS_SETSERVENT:
1865 * This symbol, if defined, indicates that the setservent() routine is
ff935051 1866 * available.
de4597cb 1867 */
ff935051 1868#define HAS_SETSERVENT /**/
de4597cb 1869
ff935051 1870/* HAS_SETSPENT:
1871 * This symbol, if defined, indicates that the setspent system call is
1872 * available to initialize the scan of SysV shadow password entries.
9003a523 1873 */
ff935051 1874/*#define HAS_SETSPENT / **/
1875
1876/* HAS_SETVBUF:
1877 * This symbol, if defined, indicates that the setvbuf routine is
1878 * available to change buffering on an open stdio stream.
1879 * to a line-buffered mode.
16d20bd9 1880 */
ff935051 1881#define HAS_SETVBUF /**/
bfb7748a 1882
ff935051 1883/* USE_SFIO:
1884 * This symbol, if defined, indicates that sfio should
1885 * be used.
bfb7748a 1886 */
ff935051 1887/*#define USE_SFIO / **/
9003a523 1888
ff935051 1889/* HAS_SHM:
1890 * This symbol, if defined, indicates that the entire shm*(2) library is
1891 * supported.
c4f23d77 1892 */
ff935051 1893#define HAS_SHM /**/
1894
1895/* HAS_SIGACTION:
1896 * This symbol, if defined, indicates that Vr4's sigaction() routine
1897 * is available.
c4f23d77 1898 */
ff935051 1899#define HAS_SIGACTION /**/
c4f23d77 1900
ff935051 1901/* HAS_SIGSETJMP:
1902 * This variable indicates to the C program that the sigsetjmp()
1903 * routine is available to save the calling process's registers
1904 * and stack environment for later use by siglongjmp(), and
1905 * to optionally save the process's signal mask. See
1906 * Sigjmp_buf, Sigsetjmp, and Siglongjmp.
4633a7c4 1907 */
ff935051 1908/* Sigjmp_buf:
1909 * This is the buffer type to be used with Sigsetjmp and Siglongjmp.
1910 */
1911/* Sigsetjmp:
1912 * This macro is used in the same way as sigsetjmp(), but will invoke
1913 * traditional setjmp() if sigsetjmp isn't available.
1914 * See HAS_SIGSETJMP.
1915 */
1916/* Siglongjmp:
1917 * This macro is used in the same way as siglongjmp(), but will invoke
1918 * traditional longjmp() if siglongjmp isn't available.
1919 * See HAS_SIGSETJMP.
1920 */
1921#define HAS_SIGSETJMP /**/
1922#ifdef HAS_SIGSETJMP
1923#define Sigjmp_buf sigjmp_buf
1924#define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
1925#define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
1926#else
1927#define Sigjmp_buf jmp_buf
1928#define Sigsetjmp(buf,save_mask) setjmp((buf))
1929#define Siglongjmp(buf,retval) longjmp((buf),(retval))
bfb7748a 1930#endif
fbfd4aab 1931
ff935051 1932/* HAS_SOCKET:
1933 * This symbol, if defined, indicates that the BSD socket interface is
1934 * supported.
8c09e4ca 1935 */
ff935051 1936/* HAS_SOCKETPAIR:
1937 * This symbol, if defined, indicates that the BSD socketpair() call is
1938 * supported.
8c09e4ca 1939 */
ff935051 1940/* HAS_MSG_CTRUNC:
1941 * This symbol, if defined, indicates that the MSG_CTRUNC is supported.
1942 * Checking just with #ifdef might not be enough because this symbol
1943 * has been known to be an enum.
d71b2b6b 1944 */
ff935051 1945/* HAS_MSG_DONTROUTE:
1946 * This symbol, if defined, indicates that the MSG_DONTROUTE is supported.
1947 * Checking just with #ifdef might not be enough because this symbol
1948 * has been known to be an enum.
1949 */
1950/* HAS_MSG_OOB:
1951 * This symbol, if defined, indicates that the MSG_OOB is supported.
1952 * Checking just with #ifdef might not be enough because this symbol
1953 * has been known to be an enum.
1954 */
1955/* HAS_MSG_PEEK:
1956 * This symbol, if defined, indicates that the MSG_PEEK is supported.
1957 * Checking just with #ifdef might not be enough because this symbol
1958 * has been known to be an enum.
1959 */
1960/* HAS_MSG_PROXY:
1961 * This symbol, if defined, indicates that the MSG_PROXY is supported.
1962 * Checking just with #ifdef might not be enough because this symbol
1963 * has been known to be an enum.
1964 */
1965/* HAS_SCM_RIGHTS:
1966 * This symbol, if defined, indicates that the SCM_RIGHTS is supported.
1967 * Checking just with #ifdef might not be enough because this symbol
1968 * has been known to be an enum.
1969 */
1970#define HAS_SOCKET /**/
1971#define HAS_SOCKETPAIR /**/
1972#define HAS_MSG_CTRUNC /**/
1973#define HAS_MSG_DONTROUTE /**/
1974#define HAS_MSG_OOB /**/
1975#define HAS_MSG_PEEK /**/
1976/*#define HAS_MSG_PROXY / **/
1977#define HAS_SCM_RIGHTS /**/
d71b2b6b 1978
ff935051 1979/* HAS_SQRTL:
1980 * This symbol, if defined, indicates that the sqrtl routine is
1981 * available to do long double square roots.
dfe9444c 1982 */
ff935051 1983#define HAS_SQRTL /**/
dfe9444c 1984
ff935051 1985/* USE_STAT_BLOCKS:
1986 * This symbol is defined if this system has a stat structure declaring
1987 * st_blksize and st_blocks.
86959918 1988 */
ff935051 1989#ifndef USE_STAT_BLOCKS
1990#define USE_STAT_BLOCKS /**/
1991#endif
86959918 1992
ff935051 1993/* HAS_STRUCT_STATFS_F_FLAGS:
1994 * This symbol, if defined, indicates that the struct statfs
1995 * does have the f_flags member containing the mount flags of
1996 * the filesystem containing the file.
1997 * This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3),
1998 * not from <sys/statfs.h> (SYSV). Older BSDs (like Ultrix) do not
1999 * have statfs() and struct statfs, they have ustat() and getmnt()
2000 * with struct ustat and struct fs_data.
ad27e871 2001 */
ff935051 2002#define HAS_STRUCT_STATFS_F_FLAGS /**/
ad27e871 2003
ff935051 2004/* HAS_STRUCT_STATFS:
2005 * This symbol, if defined, indicates that the struct statfs
2006 * to do statfs() is supported.
327c3667 2007 */
ff935051 2008#define HAS_STRUCT_STATFS /**/
327c3667 2009
ff935051 2010/* HAS_FSTATVFS:
2011 * This symbol, if defined, indicates that the fstatvfs routine is
0545a864 2012 * available to stat filesystems by file descriptors.
2013 */
ff935051 2014#define HAS_FSTATVFS /**/
327c3667 2015
ff935051 2016/* USE_STDIO_PTR:
2017 * This symbol is defined if the _ptr and _cnt fields (or similar)
2018 * of the stdio FILE structure can be used to access the stdio buffer
2019 * for a file handle. If this is defined, then the FILE_ptr(fp)
2020 * and FILE_cnt(fp) macros will also be defined and should be used
2021 * to access these fields.
ad27e871 2022 */
ff935051 2023/* FILE_ptr:
2024 * This macro is used to access the _ptr field (or equivalent) of the
2025 * FILE structure pointed to by its argument. This macro will always be
2026 * defined if USE_STDIO_PTR is defined.
ccc7f9b3 2027 */
ff935051 2028/* STDIO_PTR_LVALUE:
2029 * This symbol is defined if the FILE_ptr macro can be used as an
2030 * lvalue.
86959918 2031 */
ff935051 2032/* FILE_cnt:
2033 * This macro is used to access the _cnt field (or equivalent) of the
2034 * FILE structure pointed to by its argument. This macro will always be
2035 * defined if USE_STDIO_PTR is defined.
86959918 2036 */
ff935051 2037/* STDIO_CNT_LVALUE:
2038 * This symbol is defined if the FILE_cnt macro can be used as an
2039 * lvalue.
ccc7f9b3 2040 */
ff935051 2041#define USE_STDIO_PTR /**/
2042#ifdef USE_STDIO_PTR
2043#define FILE_ptr(fp) ((fp)->_ptr)
2044#define STDIO_PTR_LVALUE /**/
2045#define FILE_cnt(fp) ((fp)->_cnt)
2046#define STDIO_CNT_LVALUE /**/
2047#endif
ccc7f9b3 2048
ff935051 2049/* USE_STDIO_BASE:
2050 * This symbol is defined if the _base field (or similar) of the
2051 * stdio FILE structure can be used to access the stdio buffer for
2052 * a file handle. If this is defined, then the FILE_base(fp) macro
2053 * will also be defined and should be used to access this field.
2054 * Also, the FILE_bufsiz(fp) macro will be defined and should be used
2055 * to determine the number of bytes in the buffer. USE_STDIO_BASE
2056 * will never be defined unless USE_STDIO_PTR is.
e0a10278 2057 */
ff935051 2058/* FILE_base:
2059 * This macro is used to access the _base field (or equivalent) of the
2060 * FILE structure pointed to by its argument. This macro will always be
2061 * defined if USE_STDIO_BASE is defined.
ca24dfc6 2062 */
ff935051 2063/* FILE_bufsiz:
2064 * This macro is used to determine the number of bytes in the I/O
2065 * buffer pointed to by _base field (or equivalent) of the FILE
2066 * structure pointed to its argument. This macro will always be defined
2067 * if USE_STDIO_BASE is defined.
86959918 2068 */
ff935051 2069#define USE_STDIO_BASE /**/
2070#ifdef USE_STDIO_BASE
2071#define FILE_base(fp) ((fp)->_base)
2072#define FILE_bufsiz(fp) ((fp)->_cnt + (fp)->_ptr - (fp)->_base)
2073#endif
86959918 2074
ff935051 2075/* HAS_STRERROR:
2076 * This symbol, if defined, indicates that the strerror routine is
2077 * available to translate error numbers to strings. See the writeup
2078 * of Strerror() in this file before you try to define your own.
dfe9444c 2079 */
ff935051 2080/* HAS_SYS_ERRLIST:
2081 * This symbol, if defined, indicates that the sys_errlist array is
2082 * available to translate error numbers to strings. The extern int
2083 * sys_nerr gives the size of that table.
68d4903c 2084 */
ff935051 2085/* Strerror:
2086 * This preprocessor symbol is defined as a macro if strerror() is
2087 * not available to translate error numbers to strings but sys_errlist[]
2088 * array is there.
2089 */
2090#define HAS_STRERROR /**/
2091#define HAS_SYS_ERRLIST /**/
2092#define Strerror(e) strerror(e)
68d4903c 2093
ff935051 2094/* HAS_STRTOLD:
2095 * This symbol, if defined, indicates that the strtold routine is
2096 * available to convert strings to long doubles.
ff49bff8 2097 */
ff935051 2098/*#define HAS_STRTOLD / **/
ff49bff8 2099
76d49b1c 2100/* HAS_STRTOLL:
2101 * This symbol, if defined, indicates that the strtoll routine is
2102 * available to convert strings to long longs.
2103 */
2104/*#define HAS_STRTOLL / **/
2105
ff935051 2106/* HAS_STRTOULL:
2107 * This symbol, if defined, indicates that the strtoull routine is
2108 * available to convert strings to unsigned long longs.
ad27e871 2109 */
ff935051 2110/*#define HAS_STRTOULL / **/
ad27e871 2111
ff935051 2112/* HAS_STRTOUQ:
2113 * This symbol, if defined, indicates that the strtouq routine is
2114 * available to convert strings to unsigned long longs (quads).
ff49bff8 2115 */
ff935051 2116/*#define HAS_STRTOUQ / **/
ff49bff8 2117
2118/* HAS_TELLDIR_PROTO:
2119 * This symbol, if defined, indicates that the system provides
2120 * a prototype for the telldir() function. Otherwise, it is up
2121 * to the program to supply one. A good guess is
86959918 2122 * extern long telldir _((DIR*));
ff49bff8 2123 */
11dc3f68 2124#define HAS_TELLDIR_PROTO /**/
ff49bff8 2125
ff935051 2126/* Time_t:
2127 * This symbol holds the type returned by time(). It can be long,
2128 * or time_t on BSD sites (in which case <sys/types.h> should be
2129 * included).
2130 */
2131#define Time_t time_t /* Time type */
2132
2133/* HAS_TIMES:
2134 * This symbol, if defined, indicates that the times() routine exists.
2135 * Note that this became obsolete on some systems (SUNOS), which now
2136 * use getrusage(). It may be necessary to include <sys/times.h>.
2137 */
2138#define HAS_TIMES /**/
2139
2140/* HAS_UNION_SEMUN:
2141 * This symbol, if defined, indicates that the union semun is
2142 * defined by including <sys/sem.h>. If not, the user code
2143 * probably needs to define it as:
2144 * union semun {
2145 * int val;
2146 * struct semid_ds *buf;
2147 * unsigned short *array;
2148 * }
2149 */
2150/* USE_SEMCTL_SEMUN:
2151 * This symbol, if defined, indicates that union semun is
2152 * used for semctl IPC_STAT.
2153 */
2154/* USE_SEMCTL_SEMID_DS:
2155 * This symbol, if defined, indicates that struct semid_ds * is
2156 * used for semctl IPC_STAT.
2157 */
2158/*#define HAS_UNION_SEMUN / **/
2159#define USE_SEMCTL_SEMUN /**/
2160#define USE_SEMCTL_SEMID_DS /**/
2161
0545a864 2162/* HAS_USTAT:
2163 * This symbol, if defined, indicates that the ustat system call is
2164 * available to query file system statistics by dev_t.
2165 */
2166#define HAS_USTAT /**/
2167
ff935051 2168/* HAS_VFORK:
2169 * This symbol, if defined, indicates that vfork() exists.
2170 */
2171/*#define HAS_VFORK / **/
2172
2173/* Signal_t:
2174 * This symbol's value is either "void" or "int", corresponding to the
2175 * appropriate return type of a signal handler. Thus, you can declare
2176 * a signal handler using "Signal_t (*handler)()", and define the
2177 * handler using "Signal_t handler(sig)".
2178 */
2179#define Signal_t void /* Signal handler's return type */
2180
2181/* HAS_VPRINTF:
2182 * This symbol, if defined, indicates that the vprintf routine is available
2183 * to printf with a pointer to an argument list. If unavailable, you
2184 * may need to write your own, probably in terms of _doprnt().
2185 */
2186/* USE_CHAR_VSPRINTF:
2187 * This symbol is defined if this system has vsprintf() returning type
2188 * (char*). The trend seems to be to declare it as "int vsprintf()". It
2189 * is up to the package author to declare vsprintf correctly based on the
2190 * symbol.
2191 */
2192#define HAS_VPRINTF /**/
2193/*#define USE_CHAR_VSPRINTF / **/
2194
dfe9444c 2195/* USE_DYNAMIC_LOADING:
2196 * This symbol, if defined, indicates that dynamic loading of
2197 * some sort is available.
2198 */
2199#define USE_DYNAMIC_LOADING /**/
2200
ff935051 2201/* DOUBLESIZE:
2202 * This symbol contains the size of a double, so that the C preprocessor
2203 * can make decisions based on it.
2204 */
2205#define DOUBLESIZE 8 /**/
2206
2207/* EBCDIC:
2208 * This symbol, if defined, indicates that this system uses
2209 * EBCDIC encoding.
2210 */
2211/*#define EBCDIC / **/
2212
a71cd7cd 2213/* FFLUSH_NULL:
2214 * This symbol, if defined, tells that fflush(NULL) does flush
2215 * all pending stdio output.
2216 */
2217/* FFLUSH_ALL:
2218 * This symbol, if defined, tells that to flush
2219 * all pending stdio output one must loop through all
2220 * the stdio file handles stored in an array and fflush them.
a32a45b6 2221 * Note that if fflushNULL is defined, fflushall will not
2222 * even be probed for and will be left undefined.
a71cd7cd 2223 */
11dc3f68 2224#define FFLUSH_NULL /**/
2225/*#define FFLUSH_ALL / **/
a71cd7cd 2226
ff935051 2227/* Fpos_t:
2228 * This symbol holds the type used to declare file positions in libc.
2229 * It can be fpos_t, long, uint, etc... It may be necessary to include
2230 * <sys/types.h> to get any typedef'ed information.
2231 */
2232#define Fpos_t fpos_t /* File position type */
2233
2234/* Gid_t_f:
2235 * This symbol defines the format string used for printing a Gid_t.
2236 */
2237#define Gid_t_f "u" /**/
2238
23dcd6c8 2239/* Gid_t_sign:
2240 * This symbol holds the signedess of a Gid_t.
2241 * 1 for unsigned, -1 for signed.
2242 */
2243#define Gid_t_sign 1 /* GID sign */
2244
ff935051 2245/* Gid_t_size:
2246 * This symbol holds the size of a Gid_t in bytes.
2247 */
2248#define Gid_t_size 4 /* GID size */
2249
2250/* Gid_t:
2251 * This symbol holds the return type of getgid() and the type of
2252 * argument to setrgid() and related functions. Typically,
2253 * it is the type of group ids in the kernel. It can be int, ushort,
23dcd6c8 2254 * gid_t, etc... It may be necessary to include <sys/types.h> to get
ff935051 2255 * any typedef'ed information.
2256 */
2257#define Gid_t gid_t /* Type for getgid(), etc... */
2258
2259/* Groups_t:
2260 * This symbol holds the type used for the second argument to
23dcd6c8 2261 * getgroups() and setgroups(). Usually, this is the same as
ff935051 2262 * gidtype (gid_t) , but sometimes it isn't.
23dcd6c8 2263 * It can be int, ushort, gid_t, etc...
ff935051 2264 * It may be necessary to include <sys/types.h> to get any
2265 * typedef'ed information. This is only required if you have
6e78e524 2266 * getgroups() or setgroups()..
ff935051 2267 */
2268#if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
2269#define Groups_t gid_t /* Type for 2nd arg to [sg]etgroups() */
2270#endif
2271
dfe9444c 2272/* DB_Prefix_t:
2273 * This symbol contains the type of the prefix structure element
2274 * in the <db.h> header file. In older versions of DB, it was
2275 * int, while in newer ones it is u_int32_t.
2276 */
2277/* DB_Hash_t:
2278 * This symbol contains the type of the prefix structure element
2279 * in the <db.h> header file. In older versions of DB, it was
2280 * int, while in newer ones it is size_t.
2281 */
0617aed7 2282#define DB_Hash_t u_int32_t /**/
2283#define DB_Prefix_t size_t /**/
dfe9444c 2284
ff935051 2285/* I_GRP:
2286 * This symbol, if defined, indicates to the C program that it should
2287 * include <grp.h>.
2288 */
2289/* GRPASSWD:
2290 * This symbol, if defined, indicates to the C program that struct group
2291 * in <grp.h> contains gr_passwd.
2292 */
2293#define I_GRP /**/
2294#define GRPASSWD /**/
2295
fe749a9f 2296/* I_ICONV:
2297 * This symbol, if defined, indicates that <iconv.h> exists and
2298 * should be included.
2299 */
2300#define I_ICONV /**/
2301
52c7d5b6 2302/* I_IEEEFP:
2303 * This symbol, if defined, indicates that <ieeefp.h> exists and
2304 * should be included.
2305 */
2306/*#define I_IEEEFP / **/
2307
327c3667 2308/* I_INTTYPES:
2309 * This symbol, if defined, indicates to the C program that it should
2310 * include <inttypes.h>.
2311 */
ff935051 2312/*#define I_INTTYPES / **/
2313
2314/* I_MACH_CTHREADS:
2315 * This symbol, if defined, indicates to the C program that it should
2316 * include <mach/cthreads.h>.
2317 */
2318/*#define I_MACH_CTHREADS / **/
327c3667 2319
ff49bff8 2320/* I_MNTENT:
2321 * This symbol, if defined, indicates that <mntent.h> exists and
2322 * should be included.
2323 */
ff935051 2324/*#define I_MNTENT / **/
2325
2326/* I_NETDB:
2327 * This symbol, if defined, indicates that <netdb.h> exists and
2328 * should be included.
2329 */
2330#define I_NETDB /**/
ff49bff8 2331
a71cd7cd 2332/* I_NETINET_TCP:
2333 * This symbol, if defined, indicates to the C program that it should
2334 * include <netinet/tcp.h>.
2335 */
ff935051 2336#define I_NETINET_TCP /**/
2337
2338/* I_POLL:
2339 * This symbol, if defined, indicates that <poll.h> exists and
2340 * should be included.
2341 */
2342#define I_POLL /**/
2343
2344/* I_PTHREAD:
2345 * This symbol, if defined, indicates to the C program that it should
2346 * include <pthread.h>.
2347 */
2348#define I_PTHREAD /**/
2349
2350/* I_PWD:
2351 * This symbol, if defined, indicates to the C program that it should
2352 * include <pwd.h>.
2353 */
2354/* PWQUOTA:
2355 * This symbol, if defined, indicates to the C program that struct passwd
2356 * contains pw_quota.
2357 */
2358/* PWAGE:
2359 * This symbol, if defined, indicates to the C program that struct passwd
2360 * contains pw_age.
2361 */
2362/* PWCHANGE:
2363 * This symbol, if defined, indicates to the C program that struct passwd
2364 * contains pw_change.
2365 */
2366/* PWCLASS:
2367 * This symbol, if defined, indicates to the C program that struct passwd
2368 * contains pw_class.
2369 */
2370/* PWEXPIRE:
2371 * This symbol, if defined, indicates to the C program that struct passwd
2372 * contains pw_expire.
2373 */
2374/* PWCOMMENT:
2375 * This symbol, if defined, indicates to the C program that struct passwd
2376 * contains pw_comment.
2377 */
2378/* PWGECOS:
2379 * This symbol, if defined, indicates to the C program that struct passwd
2380 * contains pw_gecos.
5b34fd99 2381 */
ff935051 2382/* PWPASSWD:
2383 * This symbol, if defined, indicates to the C program that struct passwd
2384 * contains pw_passwd.
2385 */
2386#define I_PWD /**/
2387#define PWQUOTA /**/
2388/*#define PWAGE / **/
2389/*#define PWCHANGE / **/
2390/*#define PWCLASS / **/
2391/*#define PWEXPIRE / **/
2392#define PWCOMMENT /**/
2393#define PWGECOS /**/
2394#define PWPASSWD /**/
5b34fd99 2395
86959918 2396/* I_SHADOW:
2397 * This symbol, if defined, indicates that <shadow.h> exists and
2398 * should be included.
2399 */
ff935051 2400/*#define I_SHADOW / **/
86959918 2401
2402/* I_SOCKS:
2403 * This symbol, if defined, indicates that <socks.h> exists and
2404 * should be included.
2405 */
11dc3f68 2406/*#define I_SOCKS / **/
86959918 2407
792d8dab 2408/* I_SUNMATH:
2409 * This symbol, if defined, indicates that <sunmath.h> exists and
2410 * should be included.
2411 */
2412/*#define I_SUNMATH / **/
2413
ca52efda 2414/* I_SYSLOG:
2415 * This symbol, if defined, indicates that <syslog.h> exists and
2416 * should be included.
2417 */
2418#define I_SYSLOG /**/
2419
13b3f787 2420/* I_SYSMODE:
2421 * This symbol, if defined, indicates that <sys/mode.h> exists and
2422 * should be included.
2423 */
2424#define I_SYSMODE /**/
2425
ff49bff8 2426/* I_SYS_MOUNT:
2427 * This symbol, if defined, indicates that <sys/mount.h> exists and
2428 * should be included.
2429 */
11dc3f68 2430#define I_SYS_MOUNT /**/
ff49bff8 2431
0545a864 2432/* I_SYS_STATFS:
2433 * This symbol, if defined, indicates that <sys/statfs.h> exists.
2434 */
ff935051 2435/*#define I_SYS_STATFS / **/
0545a864 2436
ff49bff8 2437/* I_SYS_STATVFS:
2438 * This symbol, if defined, indicates that <sys/statvfs.h> exists and
2439 * should be included.
2440 */
11dc3f68 2441#define I_SYS_STATVFS /**/
0545a864 2442
ff935051 2443/* I_SYSUIO:
2444 * This symbol, if defined, indicates that <sys/uio.h> exists and
2445 * should be included.
2446 */
2447#define I_SYSUIO /**/
2448
13b3f787 2449/* I_SYSUTSNAME:
2450 * This symbol, if defined, indicates that <sys/utsname.h> exists and
2451 * should be included.
2452 */
2453#define I_SYSUTSNAME /**/
2454
0545a864 2455/* I_SYS_VFS:
2456 * This symbol, if defined, indicates that <sys/vfs.h> exists and
2457 * should be included.
2458 */
ff935051 2459/*#define I_SYS_VFS / **/
2460
2461/* I_TIME:
2462 * This symbol, if defined, indicates to the C program that it should
2463 * include <time.h>.
2464 */
2465/* I_SYS_TIME:
2466 * This symbol, if defined, indicates to the C program that it should
2467 * include <sys/time.h>.
2468 */
2469/* I_SYS_TIME_KERNEL:
2470 * This symbol, if defined, indicates to the C program that it should
2471 * include <sys/time.h> with KERNEL defined.
2472 */
2473/*#define I_TIME / **/
2474#define I_SYS_TIME /**/
2475/*#define I_SYS_TIME_KERNEL / **/
0545a864 2476
2477/* I_USTAT:
2478 * This symbol, if defined, indicates that <ustat.h> exists and
2479 * should be included.
2480 */
2481#define I_USTAT /**/
ff49bff8 2482
ff935051 2483/* PERL_INC_VERSION_LIST:
2484 * This variable specifies the list of subdirectories in over
2485 * which perl.c:incpush() and lib/lib.pm will automatically
2486 * search when adding directories to @INC, in a format suitable
2487 * for a C initialization string. See the inc_version_list entry
2488 * in Porting/Glossary for more details.
2489 */
49dabb45 2490#define PERL_INC_VERSION_LIST 0 /**/
ff935051 2491
fe749a9f 2492/* INSTALL_USR_BIN_PERL:
2493 * This symbol, if defined, indicates that Perl is to be installed
2494 * also as /usr/bin/perl.
2495 */
2496#define INSTALL_USR_BIN_PERL /**/
2497
8c09e4ca 2498/* PERL_PRIfldbl:
2499 * This symbol, if defined, contains the string used by stdio to
2500 * format long doubles (format 'f') for output.
2501 */
2502/* PERL_PRIgldbl:
2503 * This symbol, if defined, contains the string used by stdio to
2504 * format long doubles (format 'g') for output.
2505 */
ff935051 2506#define PERL_PRIfldbl "f" /**/
2507#define PERL_PRIgldbl "g" /**/
2508
2509/* Off_t:
2510 * This symbol holds the type used to declare offsets in the kernel.
2511 * It can be int, long, off_t, etc... It may be necessary to include
2512 * <sys/types.h> to get any typedef'ed information.
2513 */
2514/* LSEEKSIZE:
2515 * This symbol holds the number of bytes used by the Off_t.
2516 */
2517/* Off_t_size:
2518 * This symbol holds the number of bytes used by the Off_t.
2519 */
2520#define Off_t off_t /* <offset> type */
2521#define LSEEKSIZE 8 /* <offset> size */
2522#define Off_t_size 8 /* <offset> size */
2523
2524/* Free_t:
2525 * This variable contains the return type of free(). It is usually
2526 * void, but occasionally int.
2527 */
2528/* Malloc_t:
2529 * This symbol is the type of pointer returned by malloc and realloc.
2530 */
2531#define Malloc_t void * /**/
2532#define Free_t void /**/
2533
2534/* MYMALLOC:
2535 * This symbol, if defined, indicates that we're using our own malloc.
2536 */
2537/*#define MYMALLOC / **/
2538
2539/* Mode_t:
2540 * This symbol holds the type used to declare file modes
2541 * for systems calls. It is usually mode_t, but may be
2542 * int or unsigned short. It may be necessary to include <sys/types.h>
2543 * to get any typedef'ed information.
2544 */
2545#define Mode_t mode_t /* file mode parameter for system calls */
2546
2547/* VAL_O_NONBLOCK:
2548 * This symbol is to be used during open() or fcntl(F_SETFL) to turn on
2549 * non-blocking I/O for the file descriptor. Note that there is no way
2550 * back, i.e. you cannot turn it blocking again this way. If you wish to
2551 * alternatively switch between blocking and non-blocking, use the
2552 * ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
2553 */
2554/* VAL_EAGAIN:
2555 * This symbol holds the errno error code set by read() when no data was
2556 * present on the non-blocking file descriptor.
2557 */
2558/* RD_NODATA:
2559 * This symbol holds the return code from read() when no data is present
2560 * on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
2561 * not defined, then you can't distinguish between no data and EOF by
2562 * issuing a read(). You'll have to find another way to tell for sure!
2563 */
2564/* EOF_NONBLOCK:
2565 * This symbol, if defined, indicates to the C program that a read() on
2566 * a non-blocking file descriptor will return 0 on EOF, and not the value
2567 * held in RD_NODATA (-1 usually, in that case!).
2568 */
2569#define VAL_O_NONBLOCK O_NONBLOCK
2570#define VAL_EAGAIN EAGAIN
2571#define RD_NODATA -1
2572#define EOF_NONBLOCK
2573
2574/* Netdb_host_t:
2575 * This symbol holds the type used for the 1st argument
2576 * to gethostbyaddr().
2577 */
2578/* Netdb_hlen_t:
2579 * This symbol holds the type used for the 2nd argument
2580 * to gethostbyaddr().
2581 */
2582/* Netdb_name_t:
2583 * This symbol holds the type used for the argument to
2584 * gethostbyname().
2585 */
2586/* Netdb_net_t:
2587 * This symbol holds the type used for the 1st argument to
2588 * getnetbyaddr().
2589 */
2590#define Netdb_host_t const char * /**/
2591#define Netdb_hlen_t int /**/
2592#define Netdb_name_t const char * /**/
2593#define Netdb_net_t int /**/
8c09e4ca 2594
7cedd6f8 2595/* PERL_OTHERLIBDIRS:
2596 * This variable contains a colon-separated set of paths for the perl
2597 * binary to search for additional library files or modules.
2598 * These directories will be tacked to the end of @INC.
2599 * Perl will automatically search below each path for version-
2600 * and architecture-specific directories. See PERL_INC_VERSION_LIST
2601 * for more details.
2602 */
2603/*#define PERL_OTHERLIBDIRS " " / **/
2604
a22e52b9 2605/* IVTYPE:
2606 * This symbol defines the C type used for Perl's IV.
8c09e4ca 2607 */
a22e52b9 2608/* UVTYPE:
2609 * This symbol defines the C type used for Perl's UV.
8c09e4ca 2610 */
a22e52b9 2611/* I8TYPE:
2612 * This symbol defines the C type used for Perl's I8.
ca24dfc6 2613 */
a22e52b9 2614/* U8TYPE:
2615 * This symbol defines the C type used for Perl's U8.
2616 */
2617/* I16TYPE:
2618 * This symbol defines the C type used for Perl's I16.
2619 */
2620/* U16TYPE:
2621 * This symbol defines the C type used for Perl's U16.
2622 */
2623/* I32TYPE:
2624 * This symbol defines the C type used for Perl's I32.
2625 */
2626/* U32TYPE:
2627 * This symbol defines the C type used for Perl's U32.
2628 */
2629/* I64TYPE:
2630 * This symbol defines the C type used for Perl's I64.
2631 */
2632/* U64TYPE:
2633 * This symbol defines the C type used for Perl's U64.
2634 */
2635/* NVTYPE:
2636 * This symbol defines the C type used for Perl's NV.
2637 */
2638/* IVSIZE:
2639 * This symbol contains the sizeof(IV).
2640 */
2641/* UVSIZE:
2642 * This symbol contains the sizeof(UV).
2643 */
2644/* I8SIZE:
2645 * This symbol contains the sizeof(I8).
2646 */
2647/* U8SIZE:
2648 * This symbol contains the sizeof(U8).
2649 */
2650/* I16SIZE:
2651 * This symbol contains the sizeof(I16).
2652 */
2653/* U16SIZE:
2654 * This symbol contains the sizeof(U16).
8c09e4ca 2655 */
a22e52b9 2656/* I32SIZE:
2657 * This symbol contains the sizeof(I32).
2658 */
2659/* U32SIZE:
2660 * This symbol contains the sizeof(U32).
2661 */
2662/* I64SIZE:
2663 * This symbol contains the sizeof(I64).
2664 */
2665/* U64SIZE:
2666 * This symbol contains the sizeof(U64).
2667 */
b6592ff0 2668/* NVSIZE:
2669 * This symbol contains the sizeof(NV).
2670 */
cce08f5b 2671/* NV_PRESERVES_UV:
2672 * This symbol, if defined, indicates that a variable of type NVTYPE
2673 * can preserve all the bit of a variable of type UVSIZE.
2674 */
ff935051 2675#define IVTYPE long /**/
2676#define UVTYPE unsigned long /**/
a22e52b9 2677#define I8TYPE char /**/
2678#define U8TYPE unsigned char /**/
2679#define I16TYPE short /**/
2680#define U16TYPE unsigned short /**/
ff935051 2681#define I32TYPE int /**/
2682#define U32TYPE unsigned int /**/
de1c2614 2683#ifdef HAS_QUAD
ff935051 2684#define I64TYPE long /**/
2685#define U64TYPE unsigned long /**/
a22e52b9 2686#endif
2687#define NVTYPE double /**/
2688#define IVSIZE 8 /**/
2689#define UVSIZE 8 /**/
2690#define I8SIZE 1 /**/
2691#define U8SIZE 1 /**/
2692#define I16SIZE 2 /**/
2693#define U16SIZE 2 /**/
2694#define I32SIZE 4 /**/
2695#define U32SIZE 4 /**/
de1c2614 2696#ifdef HAS_QUAD
a22e52b9 2697#define I64SIZE 8 /**/
2698#define U64SIZE 8 /**/
2699#endif
b6592ff0 2700#define NVSIZE 8 /**/
cce08f5b 2701#undef NV_PRESERVES_UV
a22e52b9 2702
2703/* IVdf:
2704 * This symbol defines the format string used for printing a Perl IV
2705 * as a signed decimal integer.
2706 */
2707/* UVuf:
2708 * This symbol defines the format string used for printing a Perl UV
2709 * as an unsigned decimal integer.
2710 */
2711/* UVof:
2712 * This symbol defines the format string used for printing a Perl UV
2713 * as an unsigned octal integer.
2714 */
2715/* UVxf:
2716 * This symbol defines the format string used for printing a Perl UV
2717 * as an unsigned hexadecimal integer.
2718 */
ff935051 2719#define IVdf "ld" /**/
2720#define UVuf "lu" /**/
2721#define UVof "lo" /**/
2722#define UVxf "lx" /**/
2723
2724/* Pid_t:
2725 * This symbol holds the type used to declare process ids in the kernel.
2726 * It can be int, uint, pid_t, etc... It may be necessary to include
2727 * <sys/types.h> to get any typedef'ed information.
2728 */
2729#define Pid_t pid_t /* PID type */
2730
2731/* PRIVLIB:
2732 * This symbol contains the name of the private library for this package.
2733 * The library is private in the sense that it needn't be in anyone's
2734 * execution path, but it should be accessible by the world. The program
2735 * should be prepared to do ~ expansion.
2736 */
2737/* PRIVLIB_EXP:
2738 * This symbol contains the ~name expanded version of PRIVLIB, to be used
2739 * in programs that are not prepared to deal with ~ expansion at run-time.
2740 */
526fdc24 2741#define PRIVLIB "/opt/perl/lib/5.6.0" /**/
2742#define PRIVLIB_EXP "/opt/perl/lib/5.6.0" /**/
ff935051 2743
2744/* PTRSIZE:
2745 * This symbol contains the size of a pointer, so that the C preprocessor
2746 * can make decisions based on it. It will be sizeof(void *) if
2747 * the compiler supports (void *); otherwise it will be
2748 * sizeof(char *).
2749 */
2750#define PTRSIZE 8 /**/
2751
2752/* Drand01:
2753 * This macro is to be used to generate uniformly distributed
2754 * random numbers over the range [0., 1.[. You may have to supply
2755 * an 'extern double drand48();' in your program since SunOS 4.1.3
2756 * doesn't provide you with anything relevant in it's headers.
2757 * See HAS_DRAND48_PROTO.
2758 */
2759/* Rand_seed_t:
2760 * This symbol defines the type of the argument of the
2761 * random seed function.
2762 */
2763/* seedDrand01:
2764 * This symbol defines the macro to be used in seeding the
2765 * random number generator (see Drand01).
2766 */
2767/* RANDBITS:
2768 * This symbol indicates how many bits are produced by the
2769 * function used to generate normalized random numbers.
2770 * Values include 15, 16, 31, and 48.
2771 */
2772#define Drand01() drand48() /**/
2773#define Rand_seed_t long /**/
2774#define seedDrand01(x) srand48((Rand_seed_t)x) /**/
2775#define RANDBITS 48 /**/
327c3667 2776
327c3667 2777/* SELECT_MIN_BITS:
2778 * This symbol holds the minimum number of bits operated by select.
2779 * That is, if you do select(n, ...), how many bits at least will be
2780 * cleared in the masks if some activity is detected. Usually this
2781 * is either n or 32*ceil(n/32), especially many little-endians do
2782 * the latter. This is only useful if you have select(), naturally.
2783 */
ff935051 2784#define SELECT_MIN_BITS 32 /**/
2785
2786/* Select_fd_set_t:
2787 * This symbol holds the type used for the 2nd, 3rd, and 4th
2788 * arguments to select. Usually, this is 'fd_set *', if HAS_FD_SET
2789 * is defined, and 'int *' otherwise. This is only useful if you
2790 * have select(), of course.
2791 */
2792#define Select_fd_set_t fd_set * /**/
2793
2794/* SIG_NAME:
2795 * This symbol contains a list of signal names in order of
2796 * signal number. This is intended
2797 * to be used as a static array initialization, like this:
2798 * char *sig_name[] = { SIG_NAME };
2799 * The signals in the list are separated with commas, and each signal
2800 * is surrounded by double quotes. There is no leading SIG in the signal
2801 * name, i.e. SIGQUIT is known as "QUIT".
2802 * Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
2803 * etc., where nn is the actual signal number (e.g. NUM37).
2804 * The signal number for sig_name[i] is stored in sig_num[i].
2805 * The last element is 0 to terminate the list with a NULL. This
2806 * corresponds to the 0 at the end of the sig_num list.
2807 */
2808/* SIG_NUM:
2809 * This symbol contains a list of signal numbers, in the same order as the
2810 * SIG_NAME list. It is suitable for static array initialization, as in:
2811 * int sig_num[] = { SIG_NUM };
2812 * The signals in the list are separated with commas, and the indices
2813 * within that list and the SIG_NAME list match, so it's easy to compute
2814 * the signal name from a number or vice versa at the price of a small
2815 * dynamic linear lookup.
2816 * Duplicates are allowed, but are moved to the end of the list.
2817 * The signal number corresponding to sig_name[i] is sig_number[i].
2818 * if (i < NSIG) then sig_number[i] == i.
2819 * The last element is 0, corresponding to the 0 at the end of
2820 * the sig_name list.
2821 */
2822#define SIG_NAME "ZERO", "HUP", "INT", "QUIT", "ILL", "TRAP", "ABRT", "EMT", "FPE", "KILL", "BUS", "SEGV", "SYS", "PIPE", "ALRM", "TERM", "IOINT", "STOP", "TSTP", "CONT", "CHLD", "TTIN", "TTOU", "AIO", "XCPU", "XFSZ", "VTALRM", "PROF", "WINCH", "INFO", "USR1", "USR2", "RESV", "RTMIN", "NUM34", "NUM35", "NUM36", "NUM37", "NUM38", "NUM39", "NUM40", "NUM41", "NUM42", "NUM43", "NUM44", "NUM45", "NUM46", "NUM47", "MAX", "IOT", "LOST", "URG", "CLD", "IO", "POLL", "PTY", "PWR", "RTMAX", 0 /**/
2823#define SIG_NUM 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 6, 6, 16, 20, 23, 23, 23, 29, 48, 0 /**/
2824
2825/* SITEARCH:
2826 * This symbol contains the name of the private library for this package.
2827 * The library is private in the sense that it needn't be in anyone's
2828 * execution path, but it should be accessible by the world. The program
2829 * should be prepared to do ~ expansion.
2830 * The standard distribution will put nothing in this directory.
2831 * After perl has been installed, users may install their own local
2832 * architecture-dependent modules in this directory with
2833 * MakeMaker Makefile.PL
2834 * or equivalent. See INSTALL for details.
2835 */
2836/* SITEARCH_EXP:
2837 * This symbol contains the ~name expanded version of SITEARCH, to be used
2838 * in programs that are not prepared to deal with ~ expansion at run-time.
2839 */
526fdc24 2840#define SITEARCH "/opt/perl/lib/site_perl/5.6.0/alpha-dec_osf-thread-multi" /**/
2841#define SITEARCH_EXP "/opt/perl/lib/site_perl/5.6.0/alpha-dec_osf-thread-multi" /**/
ff935051 2842
2843/* SITELIB:
2844 * This symbol contains the name of the private library for this package.
2845 * The library is private in the sense that it needn't be in anyone's
2846 * execution path, but it should be accessible by the world. The program
2847 * should be prepared to do ~ expansion.
2848 * The standard distribution will put nothing in this directory.
2849 * After perl has been installed, users may install their own local
2850 * architecture-independent modules in this directory with
2851 * MakeMaker Makefile.PL
2852 * or equivalent. See INSTALL for details.
2853 */
2854/* SITELIB_EXP:
2855 * This symbol contains the ~name expanded version of SITELIB, to be used
2856 * in programs that are not prepared to deal with ~ expansion at run-time.
2857 */
526fdc24 2858/* SITELIB_STEM:
2859 * This define is SITELIB_EXP with any trailing version-specific component
2860 * removed. The elements in inc_version_list (inc_version_list.U) can
2861 * be tacked onto this variable to generate a list of directories to search.
2862 */
2863#define SITELIB "/opt/perl/lib/site_perl/5.6.0" /**/
2864#define SITELIB_EXP "/opt/perl/lib/site_perl/5.6.0" /**/
2865#define SITELIB_STEM "/opt/perl/lib/site_perl" /**/
ff935051 2866
a13ea748 2867/* Size_t_size:
2868 * This symbol holds the size of a Size_t in bytes.
2869 */
2870#define Size_t_size 8 /* */
2871
ff935051 2872/* Size_t:
2873 * This symbol holds the type used to declare length parameters
2874 * for string functions. It is usually size_t, but may be
2875 * unsigned long, int, etc. It may be necessary to include
2876 * <sys/types.h> to get any typedef'ed information.
2877 */
2878#define Size_t size_t /* length paramater for string functions */
2879
52c7d5b6 2880/* Sock_size_t:
2881 * This symbol holds the type used for the size argument of
2882 * various socket calls (just the base type, not the pointer-to).
2883 */
2884#define Sock_size_t int /**/
2885
ff935051 2886/* SSize_t:
2887 * This symbol holds the type used by functions that return
2888 * a count of bytes or an error condition. It must be a signed type.
2889 * It is usually ssize_t, but may be long or int, etc.
2890 * It may be necessary to include <sys/types.h> or <unistd.h>
2891 * to get any typedef'ed information.
2892 * We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
2893 */
2894#define SSize_t ssize_t /* signed count of bytes */
bfb7748a 2895
fbfd4aab 2896/* STARTPERL:
2897 * This variable contains the string to put in front of a perl
2898 * script to make sure (one hopes) that it runs with perl and not
2899 * some shell.
2900 */
0617aed7 2901#define STARTPERL "#!/opt/perl/bin/perl" /**/
327c3667 2902
a71cd7cd 2903/* HAS_STDIO_STREAM_ARRAY:
2904 * This symbol, if defined, tells that there is an array
2905 * holding the stdio streams.
2906 */
2907/* STDIO_STREAM_ARRAY:
2908 * This symbol tells the name of the array holding the stdio streams.
2909 * Usual values include _iob, __iob, and __sF.
2910 */
ff935051 2911#define HAS_STDIO_STREAM_ARRAY /**/
2912#define STDIO_STREAM_ARRAY _iob
8c09e4ca 2913
ff935051 2914/* Uid_t_f:
2915 * This symbol defines the format string used for printing a Uid_t.
2916 */
2917#define Uid_t_f "u" /**/
2918
23dcd6c8 2919/* Uid_t_sign:
2920 * This symbol holds the signedess of a Uid_t.
2921 * 1 for unsigned, -1 for signed.
2922 */
2923#define Uid_t_sign 1 /* UID sign */
2924
ff935051 2925/* Uid_t_size:
2926 * This symbol holds the size of a Uid_t in bytes.
2927 */
2928#define Uid_t_size 4 /* UID size */
2929
2930/* Uid_t:
2931 * This symbol holds the type used to declare user ids in the kernel.
2932 * It can be int, ushort, uid_t, etc... It may be necessary to include
2933 * <sys/types.h> to get any typedef'ed information.
8c09e4ca 2934 */
ff935051 2935#define Uid_t uid_t /* UID type */
a71cd7cd 2936
10cc9d2a 2937/* USE_64_BIT_INT:
aaacdc8b 2938 * This symbol, if defined, indicates that 64-bit integers should
2939 * be used when available. If not defined, the native integers
c890dc6c 2940 * will be employed (be they 32 or 64 bits). The minimal possible
2941 * 64-bitness is used, just enough to get 64-bit integers into Perl.
2942 * This may mean using for example "long longs", while your memory
2943 * may still be limited to 2 gigabytes.
327c3667 2944 */
10cc9d2a 2945/* USE_64_BIT_ALL:
2946 * This symbol, if defined, indicates that 64-bit integers should
2947 * be used when available. If not defined, the native integers
2948 * will be used (be they 32 or 64 bits). The maximal possible
2949 * 64-bitness is employed: LP64 or ILP64, meaning that you will
2950 * be able to use more than 2 gigabytes of memory. This mode is
2951 * even more binary incompatible than USE_64_BIT_INT. You may not
2952 * be able to run the resulting executable in a 32-bit CPU at all or
2953 * you may need at least to reboot your OS to 64-bit mode.
2954 */
2955#ifndef USE_64_BIT_INT
2956#define USE_64_BIT_INT /**/
0befd8de 2957#endif
4633a7c4 2958
10cc9d2a 2959#ifndef USE_64_BIT_ALL
2960#define USE_64_BIT_ALL /**/
c890dc6c 2961#endif
2962
1baac590 2963/* USE_LARGE_FILES:
2964 * This symbol, if defined, indicates that large file support
c890dc6c 2965 * should be used when available.
1baac590 2966 */
0befd8de 2967#ifndef USE_LARGE_FILES
aaacdc8b 2968#define USE_LARGE_FILES /**/
0befd8de 2969#endif
1baac590 2970
ca24dfc6 2971/* USE_LONG_DOUBLE:
2972 * This symbol, if defined, indicates that long doubles should
2973 * be used when available.
2974 */
0befd8de 2975#ifndef USE_LONG_DOUBLE
ca24dfc6 2976/*#define USE_LONG_DOUBLE / **/
0befd8de 2977#endif
2978
78691af5 2979/* USE_MORE_BITS:
2980 * This symbol, if defined, indicates that 64-bit interfaces and
2981 * long doubles should be used when available.
2982 */
0befd8de 2983#ifndef USE_MORE_BITS
2984/*#define USE_MORE_BITS / **/
2985#endif
ca24dfc6 2986
ff49bff8 2987/* MULTIPLICITY:
2988 * This symbol, if defined, indicates that Perl should
2989 * be built to use multiplicity.
2990 */
fe749a9f 2991#ifndef MULTIPLICITY
ff935051 2992#define MULTIPLICITY /**/
0befd8de 2993#endif
ff49bff8 2994
9003a523 2995/* USE_PERLIO:
2996 * This symbol, if defined, indicates that the PerlIO abstraction should
2997 * be used throughout. If not defined, stdio should be
2998 * used in a fully backward compatible manner.
ce4a058e 2999 */
0befd8de 3000#ifndef USE_PERLIO
20e68413 3001/*#define USE_PERLIO / **/
0befd8de 3002#endif
ce4a058e 3003
29209bc5 3004/* USE_SOCKS:
3005 * This symbol, if defined, indicates that Perl should
3006 * be built to use socks.
3007 */
0befd8de 3008#ifndef USE_SOCKS
11dc3f68 3009/*#define USE_SOCKS / **/
0befd8de 3010#endif
29209bc5 3011
aaacdc8b 3012/* USE_ITHREADS:
3013 * This symbol, if defined, indicates that Perl should be built to
3014 * use the interpreter-based threading implementation.
3015 */
3016/* USE_5005THREADS:
3017 * This symbol, if defined, indicates that Perl should be built to
3018 * use the 5.005-based threading implementation.
dfe9444c 3019 */
693762b4 3020/* OLD_PTHREADS_API:
3021 * This symbol, if defined, indicates that Perl should
3022 * be built to use the old draft POSIX threads API.
3023 */
aaacdc8b 3024/*#define USE_5005THREADS / **/
3025#define USE_ITHREADS /**/
3026#if defined(USE_5005THREADS) && !defined(USE_ITHREADS)
3027#define USE_THREADS /* until src is revised*/
0befd8de 3028#endif
11dc3f68 3029/*#define OLD_PTHREADS_API / **/
16d20bd9 3030
52c7d5b6 3031/* PERL_VENDORARCH:
3032 * If defined, this symbol contains the name of a private library.
3033 * The library is private in the sense that it needn't be in anyone's
3034 * execution path, but it should be accessible by the world.
3035 * It may have a ~ on the front.
3036 * The standard distribution will put nothing in this directory.
3037 * Vendors who distribute perl may wish to place their own
3038 * architecture-dependent modules and extensions in this directory with
3039 * MakeMaker Makefile.PL INSTALLDIRS=vendor
3040 * or equivalent. See INSTALL for details.
3041 */
526fdc24 3042/* PERL_VENDORARCH_EXP:
3043 * This symbol contains the ~name expanded version of PERL_VENDORARCH, to be used
3044 * in programs that are not prepared to deal with ~ expansion at run-time.
3045 */
52c7d5b6 3046/*#define PERL_VENDORARCH "" / **/
526fdc24 3047/*#define PERL_VENDORARCH_EXP "" / **/
3048
ff935051 3049/* PERL_VENDORLIB_EXP:
3050 * This symbol contains the ~name expanded version of VENDORLIB, to be used
3051 * in programs that are not prepared to deal with ~ expansion at run-time.
887d2938 3052 */
526fdc24 3053/* PERL_VENDORLIB_STEM:
3054 * This define is PERL_VENDORLIB_EXP with any trailing version-specific component
3055 * removed. The elements in inc_version_list (inc_version_list.U) can
3056 * be tacked onto this variable to generate a list of directories to search.
3057 */
ff935051 3058/*#define PERL_VENDORLIB_EXP "" / **/
526fdc24 3059/*#define PERL_VENDORLIB_STEM "" / **/
887d2938 3060
ff935051 3061/* VOIDFLAGS:
3062 * This symbol indicates how much support of the void type is given by this
3063 * compiler. What various bits mean:
3064 *
3065 * 1 = supports declaration of void
3066 * 2 = supports arrays of pointers to functions returning void
3067 * 4 = supports comparisons between pointers to void functions and
3068 * addresses of void functions
3069 * 8 = suports declaration of generic void pointers
3070 *
3071 * The package designer should define VOIDUSED to indicate the requirements
3072 * of the package. This can be done either by #defining VOIDUSED before
3073 * including config.h, or by defining defvoidused in Myinit.U. If the
3074 * latter approach is taken, only those flags will be tested. If the
3075 * level of void support necessary is not present, defines void to int.
dc45a647 3076 */
ff935051 3077#ifndef VOIDUSED
3078#define VOIDUSED 15
3079#endif
3080#define VOIDFLAGS 15
3081#if (VOIDFLAGS & VOIDUSED) != VOIDUSED
3082#define void int /* is void to be avoided? */
3083#define M_VOID /* Xenix strikes again */
3084#endif
dc45a647 3085
fe749a9f 3086/* PERL_XS_APIVERSION:
3087 * This variable contains the version of the oldest perl binary
3088 * compatible with the present perl. perl.c:incpush() and
526fdc24 3089 * lib/lib.pm will automatically search in /opt/perl/lib/site_perl/5.6.0/alpha-dec_osf-thread-multi for older
fe749a9f 3090 * directories across major versions back to xs_apiversion.
3091 * This is only useful if you have a perl library directory tree
3092 * structured like the default one.
3093 * See INSTALL for how this works.
3094 * The versioned site_perl directory was introduced in 5.005,
3095 * so that is the lowest possible value.
3096 * Since this can depend on compile time options (such as
3097 * bincompat) it is set by Configure. Other non-default sources
3098 * of potential incompatibility, such as multiplicity, threads,
3099 * debugging, 64bits, sfio, etc., are not checked for currently,
3100 * though in principle we could go snooping around in old
3101 * Config.pm files.
3102 */
3103/* PERL_PM_APIVERSION:
3104 * This variable contains the version of the oldest perl
3105 * compatible with the present perl. (That is, pure perl modules
3106 * written for pm_apiversion will still work for the current
3107 * version). perl.c:incpush() and lib/lib.pm will automatically
526fdc24 3108 * search in /opt/perl/lib/site_perl/5.6.0 for older directories across major versions
fe749a9f 3109 * back to pm_apiversion. This is only useful if you have a perl
3110 * library directory tree structured like the default one. The
3111 * versioned site_perl library was introduced in 5.005, so that's
3112 * the default setting for this variable. It's hard to imagine
3113 * it changing before Perl6. It is included here for symmetry
3114 * with xs_apiveprsion -- the searching algorithms will
3115 * (presumably) be similar.
3116 * See the INSTALL file for how this works.
3117 */
526fdc24 3118#define PERL_XS_APIVERSION "5.6.0"
fe749a9f 3119#define PERL_PM_APIVERSION "5.005"
3120
a3540c92 3121/* HAS_MODFL:
3122 * This symbol, if defined, indicates that the modfl routine is
3123 * available to split a long double x into a fractional part f and
3124 * an integer part i such that |f| < 1.0 and (f + i) = x.
3125 */
3126#define HAS_MODFL /**/
3127
fe14fcc3 3128#endif