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