This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Actually, Log::Message::Simple comes from Jos, not Tels.
[perl5.git] / Porting / config_H
CommitLineData
3a021565
MB
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 : .
3a021565 20 * Configuration time: Mon Apr 10 18:30:53 CEST 2006
fd550ca5 21 * Configured by : yourname
3a021565 22 * Target system : linux pc09 2.6.13-15.8-default #1 tue feb 7 11:07:24 utc 2006 i686 i686 i386 gnulinux
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 */
3a021565 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
85e6fe83
LW
39/* HAS_BCMP:
40 * This symbol is defined if the bcmp() routine is available to
41 * compare blocks of memory.
a687059c 42 */
9003a523 43#define HAS_BCMP /**/
a687059c 44
85e6fe83
LW
45/* HAS_BCOPY:
46 * This symbol is defined if the bcopy() routine is available to
47 * copy blocks of memory.
a687059c 48 */
9003a523 49#define HAS_BCOPY /**/
fe14fcc3 50
85e6fe83
LW
51/* HAS_BZERO:
52 * This symbol is defined if the bzero() routine is available to
53 * set a memory block to 0.
fe14fcc3 54 */
9003a523 55#define HAS_BZERO /**/
8d063cd8 56
a0d0e21e
LW
57/* HAS_CHOWN:
58 * This symbol, if defined, indicates that the chown routine is
59 * available.
60 */
61#define HAS_CHOWN /**/
62
63/* HAS_CHROOT:
64 * This symbol, if defined, indicates that the chroot routine is
65 * available.
66 */
67#define HAS_CHROOT /**/
8d063cd8 68
85e6fe83 69/* HAS_CHSIZE:
fe14fcc3
LW
70 * This symbol, if defined, indicates that the chsize routine is available
71 * to truncate files. You might need a -lx to get this routine.
72 */
20e68413 73/*#define HAS_CHSIZE / **/
ecfc5424 74
85e6fe83
LW
75/* HASCONST:
76 * This symbol, if defined, indicates that this C compiler knows about
77 * the const type. There is no need to actually test for that symbol
78 * within your programs. The mere use of the "const" keyword will
79 * trigger the necessary tests.
80 */
4633a7c4 81#define HASCONST /**/
85e6fe83
LW
82#ifndef HASCONST
83#define const
84#endif
fe14fcc3 85
a0d0e21e
LW
86/* HAS_CUSERID:
87 * This symbol, if defined, indicates that the cuserid routine is
88 * available to get character login names.
a687059c 89 */
a0d0e21e
LW
90#define HAS_CUSERID /**/
91
92/* HAS_DBL_DIG:
93 * This symbol, if defined, indicates that this system's <float.h>
94 * or <limits.h> defines the symbol DBL_DIG, which is the number
95 * of significant digits in a double precision number. If this
96 * symbol is not defined, a guess of 15 is usually pretty good.
97 */
98#define HAS_DBL_DIG /* */
99
100/* HAS_DIFFTIME:
101 * This symbol, if defined, indicates that the difftime routine is
102 * available.
103 */
104#define HAS_DIFFTIME /**/
a687059c 105
ecfc5424
AD
106/* HAS_DLERROR:
107 * This symbol, if defined, indicates that the dlerror routine is
108 * available to return a string describing the last error that
109 * occurred from a call to dlopen(), dlclose() or dlsym().
110 */
4633a7c4 111#define HAS_DLERROR /**/
ecfc5424 112
85e6fe83
LW
113/* HAS_DUP2:
114 * This symbol, if defined, indicates that the dup2 routine is
115 * available to duplicate file descriptors.
a687059c 116 */
85e6fe83 117#define HAS_DUP2 /**/
a687059c 118
85e6fe83 119/* HAS_FCHMOD:
a687059c
LW
120 * This symbol, if defined, indicates that the fchmod routine is available
121 * to change mode of opened files. If unavailable, use chmod().
122 */
4633a7c4 123#define HAS_FCHMOD /**/
a687059c 124
85e6fe83 125/* HAS_FCHOWN:
a687059c
LW
126 * This symbol, if defined, indicates that the fchown routine is available
127 * to change ownership of opened files. If unavailable, use chown().
128 */
4633a7c4 129#define HAS_FCHOWN /**/
a687059c 130
85e6fe83 131/* HAS_FCNTL:
fe14fcc3
LW
132 * This symbol, if defined, indicates to the C program that
133 * the fcntl() function exists.
a687059c 134 */
85e6fe83 135#define HAS_FCNTL /**/
a687059c 136
a0d0e21e
LW
137/* HAS_FGETPOS:
138 * This symbol, if defined, indicates that the fgetpos routine is
139 * available to get the file position indicator, similar to ftell().
140 */
4633a7c4 141#define HAS_FGETPOS /**/
a0d0e21e 142
85e6fe83
LW
143/* HAS_FLOCK:
144 * This symbol, if defined, indicates that the flock routine is
a687059c
LW
145 * available to do file locking.
146 */
88fdc172 147#define HAS_FLOCK /**/
a0d0e21e
LW
148
149/* HAS_FORK:
150 * This symbol, if defined, indicates that the fork routine is
151 * available.
152 */
153#define HAS_FORK /**/
154
155/* HAS_FSETPOS:
156 * This symbol, if defined, indicates that the fsetpos routine is
157 * available to set the file position indicator, similar to fseek().
158 */
4633a7c4 159#define HAS_FSETPOS /**/
ecfc5424 160
5f05dabc 161/* HAS_GETTIMEOFDAY:
162 * This symbol, if defined, indicates that the gettimeofday() system
163 * call is available for a sub-second accuracy clock. Usually, the file
164 * <sys/resource.h> needs to be included (see I_SYS_RESOURCE).
165 * The type "Timeval" should be used to refer to "struct timeval".
166 */
dfe9444c 167#define HAS_GETTIMEOFDAY /**/
5f05dabc 168#ifdef HAS_GETTIMEOFDAY
169#define Timeval struct timeval /* Structure used by gettimeofday() */
170#endif
171
85e6fe83 172/* HAS_GETGROUPS:
a687059c
LW
173 * This symbol, if defined, indicates that the getgroups() routine is
174 * available to get the list of process groups. If unavailable, multiple
175 * groups are probably not supported.
176 */
85e6fe83 177#define HAS_GETGROUPS /**/
a687059c 178
a0d0e21e
LW
179/* HAS_GETLOGIN:
180 * This symbol, if defined, indicates that the getlogin routine is
181 * available to get the login name.
182 */
183#define HAS_GETLOGIN /**/
184
dfe9444c
AD
185/* HAS_GETPGID:
186 * This symbol, if defined, indicates to the C program that
187 * the getpgid(pid) function is available to get the
188 * process group id.
189 */
190#define HAS_GETPGID /**/
191
85e6fe83 192/* HAS_GETPGRP2:
fe14fcc3
LW
193 * This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
194 * routine is available to get the current process group.
195 */
88fdc172 196/*#define HAS_GETPGRP2 / **/
a687059c 197
a0d0e21e
LW
198/* HAS_GETPPID:
199 * This symbol, if defined, indicates that the getppid routine is
200 * available to get the parent process ID.
201 */
202#define HAS_GETPPID /**/
203
85e6fe83
LW
204/* HAS_GETPRIORITY:
205 * This symbol, if defined, indicates that the getpriority routine is
a687059c
LW
206 * available to get a process's priority.
207 */
9003a523 208#define HAS_GETPRIORITY /**/
a0d0e21e 209
dfe9444c
AD
210/* HAS_INET_ATON:
211 * This symbol, if defined, indicates to the C program that the
212 * inet_aton() function is available to parse IP address "dotted-quad"
213 * strings.
ecfc5424 214 */
921b2963 215#define HAS_INET_ATON /**/
ecfc5424 216
85e6fe83 217/* HAS_KILLPG:
a687059c
LW
218 * This symbol, if defined, indicates that the killpg routine is available
219 * to kill process groups. If unavailable, you probably should use kill
220 * with a negative process number.
221 */
9003a523 222#define HAS_KILLPG /**/
a687059c 223
85e6fe83
LW
224/* HAS_LINK:
225 * This symbol, if defined, indicates that the link routine is
226 * available to create hard links.
fe14fcc3 227 */
85e6fe83 228#define HAS_LINK /**/
fe14fcc3 229
ecfc5424
AD
230/* HAS_LOCALECONV:
231 * This symbol, if defined, indicates that the localeconv routine is
232 * available for numeric and monetary formatting conventions.
233 */
234#define HAS_LOCALECONV /**/
235
a0d0e21e
LW
236/* HAS_LOCKF:
237 * This symbol, if defined, indicates that the lockf routine is
238 * available to do file locking.
239 */
240#define HAS_LOCKF /**/
241
85e6fe83
LW
242/* HAS_LSTAT:
243 * This symbol, if defined, indicates that the lstat routine is
244 * available to do file stats on symbolic links.
a687059c 245 */
85e6fe83 246#define HAS_LSTAT /**/
a687059c 247
a0d0e21e
LW
248/* HAS_MBLEN:
249 * This symbol, if defined, indicates that the mblen routine is available
250 * to find the number of bytes in a multibye character.
251 */
4633a7c4 252#define HAS_MBLEN /**/
a0d0e21e
LW
253
254/* HAS_MBSTOWCS:
255 * This symbol, if defined, indicates that the mbstowcs routine is
256 * available to covert a multibyte string into a wide character string.
257 */
4633a7c4 258#define HAS_MBSTOWCS /**/
a0d0e21e
LW
259
260/* HAS_MBTOWC:
261 * This symbol, if defined, indicates that the mbtowc routine is available
262 * to covert a multibyte to a wide character.
263 */
4633a7c4 264#define HAS_MBTOWC /**/
a0d0e21e 265
85e6fe83
LW
266/* HAS_MEMCMP:
267 * This symbol, if defined, indicates that the memcmp routine is available
268 * to compare blocks of memory.
a687059c 269 */
85e6fe83
LW
270#define HAS_MEMCMP /**/
271
272/* HAS_MEMCPY:
68decaef 273 * This symbol, if defined, indicates that the memcpy routine is available
85e6fe83 274 * to copy blocks of memory.
68decaef 275 */
85e6fe83 276#define HAS_MEMCPY /**/
68decaef 277
85e6fe83 278/* HAS_MEMMOVE:
68decaef 279 * This symbol, if defined, indicates that the memmove routine is available
85e6fe83
LW
280 * to copy potentially overlapping blocks of memory. This should be used
281 * only when HAS_SAFE_BCOPY is not defined. If neither is there, roll your
282 * own version.
68decaef 283 */
4633a7c4 284#define HAS_MEMMOVE /**/
68decaef 285
85e6fe83 286/* HAS_MEMSET:
68decaef 287 * This symbol, if defined, indicates that the memset routine is available
85e6fe83 288 * to set blocks of memory.
68decaef 289 */
85e6fe83 290#define HAS_MEMSET /**/
a687059c 291
85e6fe83 292/* HAS_MKDIR:
a687059c
LW
293 * This symbol, if defined, indicates that the mkdir routine is available
294 * to create directories. Otherwise you should fork off a new process to
295 * exec /bin/mkdir.
296 */
85e6fe83 297#define HAS_MKDIR /**/
fe14fcc3 298
ecfc5424
AD
299/* HAS_MKFIFO:
300 * This symbol, if defined, indicates that the mkfifo routine is
301 * available to create FIFOs. Otherwise, mknod should be able to
302 * do it for you. However, if mkfifo is there, mknod might require
303 * super-user privileges which mkfifo will not.
304 */
305#define HAS_MKFIFO /**/
306
a0d0e21e
LW
307/* HAS_MKTIME:
308 * This symbol, if defined, indicates that the mktime routine is
309 * available.
310 */
311#define HAS_MKTIME /**/
312
fe749a9f
JH
313/* HAS_MSYNC:
314 * This symbol, if defined, indicates that the msync system call is
315 * available to synchronize a mapped file.
316 */
317#define HAS_MSYNC /**/
318
319/* HAS_MUNMAP:
320 * This symbol, if defined, indicates that the munmap system call is
321 * available to unmap a region, usually mapped by mmap().
322 */
323#define HAS_MUNMAP /**/
324
a0d0e21e
LW
325/* HAS_NICE:
326 * This symbol, if defined, indicates that the nice routine is
327 * available.
fe14fcc3 328 */
a0d0e21e 329#define HAS_NICE /**/
fe14fcc3 330
ecfc5424
AD
331/* HAS_PATHCONF:
332 * This symbol, if defined, indicates that pathconf() is available
333 * to determine file-system related limits and options associated
334 * with a given filename.
335 */
336/* HAS_FPATHCONF:
337 * This symbol, if defined, indicates that pathconf() is available
338 * to determine file-system related limits and options associated
339 * with a given open file descriptor.
340 */
341#define HAS_PATHCONF /**/
342#define HAS_FPATHCONF /**/
343
a0d0e21e
LW
344/* HAS_PAUSE:
345 * This symbol, if defined, indicates that the pause routine is
346 * available to suspend a process until a signal is received.
a687059c 347 */
a0d0e21e 348#define HAS_PAUSE /**/
fe14fcc3 349
a0d0e21e
LW
350/* HAS_PIPE:
351 * This symbol, if defined, indicates that the pipe routine is
352 * available to create an inter-process channel.
fe14fcc3 353 */
a0d0e21e
LW
354#define HAS_PIPE /**/
355
4633a7c4
LW
356/* HAS_POLL:
357 * This symbol, if defined, indicates that the poll routine is
dfe9444c
AD
358 * available to poll active file descriptors. You may safely
359 * include <poll.h> when this symbol is defined.
4633a7c4
LW
360 */
361#define HAS_POLL /**/
362
a0d0e21e
LW
363/* HAS_READDIR:
364 * This symbol, if defined, indicates that the readdir routine is
365 * available to read directory entries. You may have to include
366 * <dirent.h>. See I_DIRENT.
367 */
368#define HAS_READDIR /**/
369
370/* HAS_SEEKDIR:
371 * This symbol, if defined, indicates that the seekdir routine is
372 * available. You may have to include <dirent.h>. See I_DIRENT.
373 */
374#define HAS_SEEKDIR /**/
375
376/* HAS_TELLDIR:
377 * This symbol, if defined, indicates that the telldir routine is
378 * available. You may have to include <dirent.h>. See I_DIRENT.
379 */
380#define HAS_TELLDIR /**/
381
382/* HAS_REWINDDIR:
383 * This symbol, if defined, indicates that the rewinddir routine is
384 * available. You may have to include <dirent.h>. See I_DIRENT.
385 */
386#define HAS_REWINDDIR /**/
387
388/* HAS_READLINK:
389 * This symbol, if defined, indicates that the readlink routine is
390 * available to read the value of a symbolic link.
391 */
392#define HAS_READLINK /**/
a687059c 393
85e6fe83 394/* HAS_RENAME:
a687059c
LW
395 * This symbol, if defined, indicates that the rename routine is available
396 * to rename files. Otherwise you should do the unlink(), link(), unlink()
397 * trick.
398 */
85e6fe83 399#define HAS_RENAME /**/
a687059c 400
85e6fe83
LW
401/* HAS_RMDIR:
402 * This symbol, if defined, indicates that the rmdir routine is
403 * available to remove directories. Otherwise you should fork off a
404 * new process to exec /bin/rmdir.
68decaef 405 */
85e6fe83 406#define HAS_RMDIR /**/
68decaef 407
85e6fe83
LW
408/* HAS_SELECT:
409 * This symbol, if defined, indicates that the select routine is
410 * available to select active file descriptors. If the timeout field
411 * is used, <sys/time.h> may need to be included.
68decaef 412 */
85e6fe83 413#define HAS_SELECT /**/
68decaef 414
85e6fe83 415/* HAS_SETEGID:
a687059c
LW
416 * This symbol, if defined, indicates that the setegid routine is available
417 * to change the effective gid of the current program.
418 */
88fdc172 419#define HAS_SETEGID /**/
a687059c 420
85e6fe83 421/* HAS_SETEUID:
a687059c
LW
422 * This symbol, if defined, indicates that the seteuid routine is available
423 * to change the effective uid of the current program.
424 */
88fdc172 425#define HAS_SETEUID /**/
85e6fe83 426
a0d0e21e
LW
427/* HAS_SETLINEBUF:
428 * This symbol, if defined, indicates that the setlinebuf routine is
429 * available to change stderr or stdout from block-buffered or unbuffered
430 * to a line-buffered mode.
431 */
88fdc172 432#define HAS_SETLINEBUF /**/
a0d0e21e
LW
433
434/* HAS_SETLOCALE:
435 * This symbol, if defined, indicates that the setlocale routine is
436 * available to handle locale-specific ctype implementations.
437 */
438#define HAS_SETLOCALE /**/
439
dfe9444c
AD
440/* HAS_SETPGID:
441 * This symbol, if defined, indicates that the setpgid(pid, gpid)
442 * routine is available to set process group ID.
443 */
444#define HAS_SETPGID /**/
445
85e6fe83 446/* HAS_SETPGRP2:
fe14fcc3
LW
447 * This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
448 * routine is available to set the current process group.
449 */
88fdc172 450/*#define HAS_SETPGRP2 / **/
fe14fcc3 451
85e6fe83
LW
452/* HAS_SETPRIORITY:
453 * This symbol, if defined, indicates that the setpriority routine is
a687059c
LW
454 * available to set a process's priority.
455 */
9003a523 456#define HAS_SETPRIORITY /**/
a687059c 457
85e6fe83 458/* HAS_SETREGID:
fe14fcc3 459 * This symbol, if defined, indicates that the setregid routine is
85e6fe83
LW
460 * available to change the real and effective gid of the current
461 * process.
a687059c 462 */
85e6fe83 463/* HAS_SETRESGID:
fe14fcc3
LW
464 * This symbol, if defined, indicates that the setresgid routine is
465 * available to change the real, effective and saved gid of the current
85e6fe83 466 * process.
fe14fcc3 467 */
9003a523 468#define HAS_SETREGID /**/
60a7d337 469#define HAS_SETRESGID /**/
a687059c 470
85e6fe83 471/* HAS_SETREUID:
fe14fcc3 472 * This symbol, if defined, indicates that the setreuid routine is
85e6fe83
LW
473 * available to change the real and effective uid of the current
474 * process.
fe14fcc3 475 */
85e6fe83 476/* HAS_SETRESUID:
fe14fcc3
LW
477 * This symbol, if defined, indicates that the setresuid routine is
478 * available to change the real, effective and saved uid of the current
85e6fe83 479 * process.
a687059c 480 */
9003a523 481#define HAS_SETREUID /**/
60a7d337 482#define HAS_SETRESUID /**/
a687059c 483
85e6fe83 484/* HAS_SETRGID:
a687059c
LW
485 * This symbol, if defined, indicates that the setrgid routine is available
486 * to change the real gid of the current program.
487 */
60a7d337 488/*#define HAS_SETRGID / **/
a687059c 489
85e6fe83 490/* HAS_SETRUID:
a687059c
LW
491 * This symbol, if defined, indicates that the setruid routine is available
492 * to change the real uid of the current program.
493 */
60a7d337 494/*#define HAS_SETRUID / **/
fe14fcc3 495
85e6fe83
LW
496/* HAS_SETSID:
497 * This symbol, if defined, indicates that the setsid routine is
498 * available to set the process group ID.
fe14fcc3 499 */
85e6fe83 500#define HAS_SETSID /**/
fe14fcc3 501
a0d0e21e
LW
502/* HAS_STRCHR:
503 * This symbol is defined to indicate that the strchr()/strrchr()
504 * functions are available for string searching. If not, try the
505 * index()/rindex() pair.
506 */
507/* HAS_INDEX:
508 * This symbol is defined to indicate that the index()/rindex()
509 * functions are available for string searching.
510 */
511#define HAS_STRCHR /**/
20e68413 512/*#define HAS_INDEX / **/
a0d0e21e
LW
513
514/* HAS_STRCOLL:
515 * This symbol, if defined, indicates that the strcoll routine is
516 * available to compare strings using collating information.
517 */
518#define HAS_STRCOLL /**/
519
85e6fe83 520/* USE_STRUCT_COPY:
8d063cd8
LW
521 * This symbol, if defined, indicates that this C compiler knows how
522 * to copy structures. If undefined, you'll need to use a block copy
523 * routine of some sort instead.
524 */
85e6fe83 525#define USE_STRUCT_COPY /**/
fe14fcc3 526
55497cff 527/* HAS_STRTOD:
528 * This symbol, if defined, indicates that the strtod routine is
774d564b 529 * available to provide better numeric string conversion than atof().
55497cff 530 */
531#define HAS_STRTOD /**/
532
533/* HAS_STRTOL:
774d564b 534 * This symbol, if defined, indicates that the strtol routine is available
535 * to provide better numeric string conversion than atoi() and friends.
55497cff 536 */
537#define HAS_STRTOL /**/
538
a0d0e21e
LW
539/* HAS_STRXFRM:
540 * This symbol, if defined, indicates that the strxfrm() routine is
541 * available to transform strings.
542 */
543#define HAS_STRXFRM /**/
544
85e6fe83 545/* HAS_SYMLINK:
a687059c
LW
546 * This symbol, if defined, indicates that the symlink routine is available
547 * to create symbolic links.
548 */
85e6fe83 549#define HAS_SYMLINK /**/
a687059c 550
85e6fe83
LW
551/* HAS_SYSCALL:
552 * This symbol, if defined, indicates that the syscall routine is
553 * available to call arbitrary system calls. If undefined, that's tough.
a687059c 554 */
85e6fe83 555#define HAS_SYSCALL /**/
a687059c 556
ecfc5424
AD
557/* HAS_SYSCONF:
558 * This symbol, if defined, indicates that sysconf() is available
559 * to determine system related limits and options.
560 */
561#define HAS_SYSCONF /**/
562
85e6fe83
LW
563/* HAS_SYSTEM:
564 * This symbol, if defined, indicates that the system routine is
565 * available to issue a shell command.
68decaef 566 */
85e6fe83 567#define HAS_SYSTEM /**/
68decaef 568
a0d0e21e
LW
569/* HAS_TCGETPGRP:
570 * This symbol, if defined, indicates that the tcgetpgrp routine is
571 * available to get foreground process group ID.
572 */
573#define HAS_TCGETPGRP /**/
574
575/* HAS_TCSETPGRP:
576 * This symbol, if defined, indicates that the tcsetpgrp routine is
577 * available to set foreground process group ID.
85e6fe83 578 */
a0d0e21e 579#define HAS_TCSETPGRP /**/
85e6fe83 580
85e6fe83 581/* HAS_TRUNCATE:
fe14fcc3
LW
582 * This symbol, if defined, indicates that the truncate routine is
583 * available to truncate files.
a687059c 584 */
4633a7c4 585#define HAS_TRUNCATE /**/
a0d0e21e
LW
586
587/* HAS_TZNAME:
588 * This symbol, if defined, indicates that the tzname[] array is
589 * available to access timezone names.
590 */
591#define HAS_TZNAME /**/
592
593/* HAS_UMASK:
594 * This symbol, if defined, indicates that the umask routine is
595 * available to set and get the value of the file creation mask.
596 */
597#define HAS_UMASK /**/
a687059c 598
4e0554ec
JH
599/* HAS_USLEEP:
600 * This symbol, if defined, indicates that the usleep routine is
601 * available to let the process sleep on a sub-second accuracy.
602 */
603#define HAS_USLEEP /**/
604
85e6fe83 605/* HASVOLATILE:
fe14fcc3
LW
606 * This symbol, if defined, indicates that this C compiler knows about
607 * the volatile declaration.
608 */
4633a7c4 609#define HASVOLATILE /**/
85e6fe83
LW
610#ifndef HASVOLATILE
611#define volatile
612#endif
fe14fcc3 613
85e6fe83 614/* HAS_WAIT4:
fe14fcc3
LW
615 * This symbol, if defined, indicates that wait4() exists.
616 */
88fdc172 617#define HAS_WAIT4 /**/
fe14fcc3 618
85e6fe83
LW
619/* HAS_WAITPID:
620 * This symbol, if defined, indicates that the waitpid routine is
621 * available to wait for child process.
fe14fcc3 622 */
85e6fe83 623#define HAS_WAITPID /**/
fe14fcc3 624
a0d0e21e
LW
625/* HAS_WCSTOMBS:
626 * This symbol, if defined, indicates that the wcstombs routine is
627 * available to convert wide character strings to multibyte strings.
628 */
4633a7c4 629#define HAS_WCSTOMBS /**/
a0d0e21e
LW
630
631/* HAS_WCTOMB:
632 * This symbol, if defined, indicates that the wctomb routine is available
633 * to covert a wide character to a multibyte.
634 */
4633a7c4 635#define HAS_WCTOMB /**/
a0d0e21e 636
93341792 637/* I_ARPA_INET:
327c3667
GS
638 * This symbol, if defined, indicates to the C program that it should
639 * include <arpa/inet.h> to get inet_addr and friends declarations.
93341792 640 */
11dc3f68 641#define I_ARPA_INET /**/
93341792 642
dfe9444c
AD
643/* I_DBM:
644 * This symbol, if defined, indicates that <dbm.h> exists and should
645 * be included.
232e078e 646 */
dfe9444c
AD
647/* I_RPCSVC_DBM:
648 * This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
649 * should be included.
232e078e 650 */
60a7d337 651/*#define I_DBM / **/
921b2963 652/*#define I_RPCSVC_DBM / **/
232e078e 653
85e6fe83
LW
654/* I_DIRENT:
655 * This symbol, if defined, indicates to the C program that it should
656 * include <dirent.h>. Using this symbol also triggers the definition
657 * of the Direntry_t define which ends up being 'struct dirent' or
658 * 'struct direct' depending on the availability of <dirent.h>.
659 */
660/* DIRNAMLEN:
661 * This symbol, if defined, indicates to the C program that the length
662 * of directory entry names is provided by a d_namlen field. Otherwise
663 * you need to do strlen() on the d_name field.
2b317908 664 */
a0d0e21e
LW
665/* Direntry_t:
666 * This symbol is set to 'struct direct' or 'struct dirent' depending on
667 * whether dirent is available or not. You should use this pseudo type to
668 * portably declare your directory entries.
669 */
85e6fe83 670#define I_DIRENT /**/
60a7d337 671/*#define DIRNAMLEN / **/
85e6fe83 672#define Direntry_t struct dirent
a0d0e21e
LW
673
674/* I_DLFCN:
675 * This symbol, if defined, indicates that <dlfcn.h> exists and should
676 * be included.
677 */
4633a7c4 678#define I_DLFCN /**/
a687059c 679
85e6fe83 680/* I_FCNTL:
fe14fcc3 681 * This manifest constant tells the C program to include <fcntl.h>.
a687059c 682 */
921b2963 683/*#define I_FCNTL / **/
a687059c 684
a0d0e21e
LW
685/* I_FLOAT:
686 * This symbol, if defined, indicates to the C program that it should
687 * include <float.h> to get definition of symbols like DBL_MAX or
688 * DBL_MIN, i.e. machine dependent floating point values.
a687059c 689 */
a0d0e21e 690#define I_FLOAT /**/
a687059c 691
a0d0e21e
LW
692/* I_LIMITS:
693 * This symbol, if defined, indicates to the C program that it should
694 * include <limits.h> to get definition of symbols like WORD_BIT or
695 * LONG_MAX, i.e. machine dependant limitations.
696 */
697#define I_LIMITS /**/
698
dfe9444c
AD
699/* I_LOCALE:
700 * This symbol, if defined, indicates to the C program that it should
701 * include <locale.h>.
702 */
703#define I_LOCALE /**/
704
a0d0e21e
LW
705/* I_MATH:
706 * This symbol, if defined, indicates to the C program that it should
707 * include <math.h>.
708 */
709#define I_MATH /**/
710
711/* I_MEMORY:
712 * This symbol, if defined, indicates to the C program that it should
713 * include <memory.h>.
714 */
20e68413 715/*#define I_MEMORY / **/
a0d0e21e 716
ecfc5424
AD
717/* I_NET_ERRNO:
718 * This symbol, if defined, indicates that <net/errno.h> exists and
719 * should be included.
fe14fcc3 720 */
20e68413 721/*#define I_NET_ERRNO / **/
fe14fcc3 722
85e6fe83 723/* I_NETINET_IN:
a687059c 724 * This symbol, if defined, indicates to the C program that it should
85e6fe83 725 * include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
a687059c 726 */
85e6fe83 727#define I_NETINET_IN /**/
85e6fe83 728
dfe9444c
AD
729/* I_SFIO:
730 * This symbol, if defined, indicates to the C program that it should
731 * include <sfio.h>.
732 */
733/*#define I_SFIO / **/
85e6fe83
LW
734
735/* I_STDDEF:
736 * This symbol, if defined, indicates that <stddef.h> exists and should
737 * be included.
fe14fcc3 738 */
85e6fe83
LW
739#define I_STDDEF /**/
740
a0d0e21e
LW
741/* I_STDLIB:
742 * This symbol, if defined, indicates that <stdlib.h> exists and should
743 * be included.
744 */
745#define I_STDLIB /**/
746
85e6fe83
LW
747/* I_STRING:
748 * This symbol, if defined, indicates to the C program that it should
749 * include <string.h> (USG systems) instead of <strings.h> (BSD systems).
fe14fcc3 750 */
85e6fe83
LW
751#define I_STRING /**/
752
753/* I_SYS_DIR:
754 * This symbol, if defined, indicates to the C program that it should
755 * include <sys/dir.h>.
fe14fcc3 756 */
921b2963 757#define I_SYS_DIR /**/
a687059c 758
85e6fe83
LW
759/* I_SYS_FILE:
760 * This symbol, if defined, indicates to the C program that it should
761 * include <sys/file.h> to get definition of R_OK and friends.
a687059c 762 */
921b2963 763#define I_SYS_FILE /**/
a687059c 764
85e6fe83
LW
765/* I_SYS_IOCTL:
766 * This symbol, if defined, indicates that <sys/ioctl.h> exists and should
767 * be included. Otherwise, include <sgtty.h> or <termio.h>.
a687059c 768 */
49a78c82
JH
769/* I_SYS_SOCKIO:
770 * This symbol, if defined, indicates the <sys/sockio.h> should be included
771 * to get socket ioctl options, like SIOCATMARK.
772 */
85e6fe83 773#define I_SYS_IOCTL /**/
49a78c82 774/*#define I_SYS_SOCKIO / **/
a687059c 775
85e6fe83
LW
776/* I_SYS_NDIR:
777 * This symbol, if defined, indicates to the C program that it should
778 * include <sys/ndir.h>.
fe14fcc3 779 */
20e68413 780/*#define I_SYS_NDIR / **/
85e6fe83 781
a0d0e21e
LW
782/* I_SYS_PARAM:
783 * This symbol, if defined, indicates to the C program that it should
784 * include <sys/param.h>.
785 */
786#define I_SYS_PARAM /**/
787
9003a523 788/* I_SYS_RESOURCE:
789 * This symbol, if defined, indicates to the C program that it should
790 * include <sys/resource.h>.
791 */
792#define I_SYS_RESOURCE /**/
793
85e6fe83
LW
794/* I_SYS_SELECT:
795 * This symbol, if defined, indicates to the C program that it should
796 * include <sys/select.h> in order to get definition of struct timeval.
fe14fcc3 797 */
88fdc172 798#define I_SYS_SELECT /**/
85e6fe83 799
dfe9444c
AD
800/* I_SYS_STAT:
801 * This symbol, if defined, indicates to the C program that it should
802 * include <sys/stat.h>.
803 */
804#define I_SYS_STAT /**/
805
a0d0e21e 806/* I_SYS_TIMES:
85e6fe83 807 * This symbol, if defined, indicates to the C program that it should
a0d0e21e 808 * include <sys/times.h>.
fe14fcc3 809 */
a0d0e21e
LW
810#define I_SYS_TIMES /**/
811
bd89102f
AD
812/* I_SYS_TYPES:
813 * This symbol, if defined, indicates to the C program that it should
814 * include <sys/types.h>.
815 */
816#define I_SYS_TYPES /**/
817
fbfd4aab 818/* I_SYS_UN:
819 * This symbol, if defined, indicates to the C program that it should
820 * include <sys/un.h> to get UNIX domain socket definitions.
821 */
822#define I_SYS_UN /**/
823
9003a523 824/* I_SYS_WAIT:
825 * This symbol, if defined, indicates to the C program that it should
826 * include <sys/wait.h>.
827 */
828#define I_SYS_WAIT /**/
829
a0d0e21e
LW
830/* I_TERMIO:
831 * This symbol, if defined, indicates that the program should include
832 * <termio.h> rather than <sgtty.h>. There are also differences in
833 * the ioctl() calls that depend on the value of this symbol.
834 */
835/* I_TERMIOS:
836 * This symbol, if defined, indicates that the program should include
837 * the POSIX termios.h rather than sgtty.h or termio.h.
838 * There are also differences in the ioctl() calls that depend on the
839 * value of this symbol.
840 */
841/* I_SGTTY:
842 * This symbol, if defined, indicates that the program should include
843 * <sgtty.h> rather than <termio.h>. There are also differences in
844 * the ioctl() calls that depend on the value of this symbol.
845 */
20e68413 846/*#define I_TERMIO / **/
a0d0e21e 847#define I_TERMIOS /**/
20e68413 848/*#define I_SGTTY / **/
a0d0e21e 849
a0d0e21e
LW
850/* I_UNISTD:
851 * This symbol, if defined, indicates to the C program that it should
852 * include <unistd.h>.
853 */
854#define I_UNISTD /**/
855
85e6fe83 856/* I_UTIME:
a687059c 857 * This symbol, if defined, indicates to the C program that it should
85e6fe83 858 * include <utime.h>.
a687059c 859 */
85e6fe83 860#define I_UTIME /**/
a687059c 861
dfe9444c
AD
862/* I_VALUES:
863 * This symbol, if defined, indicates to the C program that it should
864 * include <values.h> to get definition of symbols like MINFLOAT or
865 * MAXLONG, i.e. machine dependant limitations. Probably, you
866 * should use <limits.h> instead, if it is available.
867 */
868#define I_VALUES /**/
869
a0d0e21e
LW
870/* I_VFORK:
871 * This symbol, if defined, indicates to the C program that it should
872 * include vfork.h.
873 */
20e68413 874/*#define I_VFORK / **/
fe14fcc3 875
327c3667
GS
876/* HAS_ACCESSX:
877 * This symbol, if defined, indicates that the accessx routine is
878 * available to do extended access checks.
879 */
11dc3f68 880/*#define HAS_ACCESSX / **/
327c3667
GS
881
882/* HAS_EACCESS:
883 * This symbol, if defined, indicates that the eaccess routine is
884 * available to do extended access checks.
885 */
11dc3f68 886/*#define HAS_EACCESS / **/
327c3667
GS
887
888/* I_SYS_ACCESS:
889 * This symbol, if defined, indicates to the C program that it should
921b2963 890 * include <sys/access.h>.
327c3667 891 */
60a7d337 892/*#define I_SYS_ACCESS / **/
327c3667
GS
893
894/* I_SYS_SECURITY:
895 * This symbol, if defined, indicates to the C program that it should
896 * include <sys/security.h>.
897 */
60a7d337 898/*#define I_SYS_SECURITY / **/
af4c28eb 899
fd550ca5
MB
900/* OSNAME:
901 * This symbol contains the name of the operating system, as determined
902 * by Configure. You shouldn't rely on it too much; the specific
903 * feature tests from Configure are generally more reliable.
904 */
905/* OSVERS:
906 * This symbol contains the version of the operating system, as determined
907 * by Configure. You shouldn't rely on it too much; the specific
908 * feature tests from Configure are generally more reliable.
909 */
910#define OSNAME "linux" /**/
3a021565 911#define OSVERS "2.6.13-15.8-default" /**/
a1e6f3ef
RGS
912
913/* USE_CROSS_COMPILE:
914 * This symbol, if defined, indicates that Perl is being cross-compiled.
915 */
916/* PERL_TARGETARCH:
917 * This symbol, if defined, indicates the target architecture
918 * Perl has been cross-compiled to. Undefined if not a cross-compile.
919 */
920#ifndef USE_CROSS_COMPILE
921/*#define USE_CROSS_COMPILE / **/
922#define PERL_TARGETARCH "" /**/
923#endif
924
925/* MULTIARCH:
926 * This symbol, if defined, signifies that the build
927 * process will produce some binary files that are going to be
928 * used in a cross-platform environment. This is the case for
929 * example with the NeXT "fat" binaries that contain executables
930 * for several CPUs.
931 */
932/*#define MULTIARCH / **/
fd550ca5 933
dfe9444c 934/* MEM_ALIGNBYTES:
af4c28eb 935 * This symbol contains the number of bytes required to align a
87b71857
JH
936 * double, or a long double when applicable. Usual values are 2,
937 * 4 and 8. The default is eight, for safety.
5f05dabc 938 */
5440bc8e 939#if defined(USE_CROSS_COMPILE) || defined(MULTIARCH)
cb5953d6 940# define MEM_ALIGNBYTES 8
af4c28eb 941#else
60a7d337 942#define MEM_ALIGNBYTES 4
af4c28eb 943#endif
5f05dabc 944
fd550ca5
MB
945/* ARCHLIB:
946 * This variable, if defined, holds the name of the directory in
947 * which the user wants to put architecture-dependent public
948 * library files for perl5. It is most often a local directory
949 * such as /usr/local/lib. Programs using this variable must be
950 * prepared to deal with filename expansion. If ARCHLIB is the
951 * same as PRIVLIB, it is not defined, since presumably the
952 * program already searches PRIVLIB.
953 */
954/* ARCHLIB_EXP:
955 * This symbol contains the ~name expanded version of ARCHLIB, to be used
956 * in programs that are not prepared to deal with ~ expansion at run-time.
957 */
a1e6f3ef
RGS
958#define ARCHLIB "/opt/perl/lib/5.9.4/i686-linux" /**/
959#define ARCHLIB_EXP "/opt/perl/lib/5.9.4/i686-linux" /**/
fd550ca5
MB
960
961/* ARCHNAME:
962 * This symbol holds a string representing the architecture name.
963 * It may be used to construct an architecture-dependant pathname
964 * where library files may be held under a private library, for
965 * instance.
966 */
967#define ARCHNAME "i686-linux" /**/
968
969/* HAS_ATOLF:
970 * This symbol, if defined, indicates that the atolf routine is
971 * available to convert strings into long doubles.
972 */
973/*#define HAS_ATOLF / **/
974
975/* HAS_ATOLL:
976 * This symbol, if defined, indicates that the atoll routine is
977 * available to convert strings into long longs.
978 */
979#define HAS_ATOLL /**/
980
981/* BIN:
982 * This symbol holds the path of the bin directory where the package will
983 * be installed. Program must be prepared to deal with ~name substitution.
984 */
985/* BIN_EXP:
986 * This symbol is the filename expanded version of the BIN symbol, for
987 * programs that do not want to deal with that at run-time.
988 */
3a021565
MB
989/* PERL_RELOCATABLE_INC:
990 * This symbol, if defined, indicates that we'd like to relocate entries
991 * in @INC at run time based on the location of the perl binary.
992 */
fd550ca5
MB
993#define BIN "/opt/perl/bin" /**/
994#define BIN_EXP "/opt/perl/bin" /**/
3a021565 995#define PERL_RELOCATABLE_INC "undef" /**/
fd550ca5 996
a1e6f3ef
RGS
997/* INTSIZE:
998 * This symbol contains the value of sizeof(int) so that the C
999 * preprocessor can make decisions based on it.
1000 */
1001/* LONGSIZE:
1002 * This symbol contains the value of sizeof(long) so that the C
1003 * preprocessor can make decisions based on it.
1004 */
1005/* SHORTSIZE:
1006 * This symbol contains the value of sizeof(short) so that the C
1007 * preprocessor can make decisions based on it.
1008 */
1009#define INTSIZE 4 /**/
1010#define LONGSIZE 4 /**/
1011#define SHORTSIZE 2 /**/
1012
4633a7c4 1013/* BYTEORDER:
9003a523 1014 * This symbol holds the hexadecimal constant defined in byteorder,
24412007 1015 * in a UV, i.e. 0x1234 or 0x4321 or 0x12345678, etc...
af4c28eb
CS
1016 * If the compiler supports cross-compiling or multiple-architecture
1017 * binaries (eg. on NeXT systems), use compiler-defined macros to
1018 * determine the byte order.
dfe9444c 1019 * On NeXT 3.2 (and greater), you can build "Fat" Multiple Architecture
9003a523 1020 * Binaries (MAB) on either big endian or little endian machines.
1021 * The endian-ness is available at compile-time. This only matters
1022 * for perl, where the config.h can be generated and installed on
1023 * one system, and used by a different architecture to build an
1024 * extension. Older versions of NeXT that might not have
1025 * defined either *_ENDIAN__ were all on Motorola 680x0 series,
1026 * so the default case (for NeXT) is big endian to catch them.
1027 * This might matter for NeXT 3.0.
1028 */
5440bc8e 1029#if defined(USE_CROSS_COMPILE) || defined(MULTIARCH)
af4c28eb
CS
1030# ifdef __LITTLE_ENDIAN__
1031# if LONGSIZE == 4
1032# define BYTEORDER 0x1234
1033# else
1034# if LONGSIZE == 8
1035# define BYTEORDER 0x12345678
1036# endif
1037# endif
1038# else
1039# ifdef __BIG_ENDIAN__
1040# if LONGSIZE == 4
1041# define BYTEORDER 0x4321
1042# else
1043# if LONGSIZE == 8
1044# define BYTEORDER 0x87654321
1045# endif
1046# endif
1047# endif
1048# endif
1049# if !defined(BYTEORDER) && (defined(NeXT) || defined(__NeXT__))
1050# define BYTEORDER 0x4321
1051# endif
1052#else
60a7d337 1053#define BYTEORDER 0x1234 /* large digits for MSB */
9003a523 1054#endif /* NeXT */
4633a7c4 1055
fd550ca5
MB
1056/* CAT2:
1057 * This macro concatenates 2 tokens together.
1058 */
1059/* STRINGIFY:
1060 * This macro surrounds its token with double quotes.
1061 */
1062#if 42 == 1
1063#define CAT2(a,b) a/**/b
1064#define STRINGIFY(a) "a"
1065 /* If you can get stringification with catify, tell me how! */
1066#endif
1067#if 42 == 42
1068#define PeRl_CaTiFy(a, b) a ## b
1069#define PeRl_StGiFy(a) #a
1070/* the additional level of indirection enables these macros to be
1071 * used as arguments to other macros. See K&R 2nd ed., page 231. */
1072#define CAT2(a,b) PeRl_CaTiFy(a,b)
1073#define StGiFy(a) PeRl_StGiFy(a)
1074#define STRINGIFY(a) PeRl_StGiFy(a)
1075#endif
1076#if 42 != 1 && 42 != 42
1077# include "Bletch: How does this C preprocessor concatenate tokens?"
1078#endif
1079
1080/* CPPSTDIN:
1081 * This symbol contains the first part of the string which will invoke
1082 * the C preprocessor on the standard input and produce to standard
1083 * output. Typical value of "cc -E" or "/lib/cpp", but it can also
1084 * call a wrapper. See CPPRUN.
1085 */
1086/* CPPMINUS:
1087 * This symbol contains the second part of the string which will invoke
1088 * the C preprocessor on the standard input and produce to standard
1089 * output. This symbol will have the value "-" if CPPSTDIN needs a minus
1090 * to specify standard input, otherwise the value is "".
1091 */
1092/* CPPRUN:
1093 * This symbol contains the string which will invoke a C preprocessor on
1094 * the standard input and produce to standard output. It needs to end
1095 * with CPPLAST, after all other preprocessor flags have been specified.
1096 * The main difference with CPPSTDIN is that this program will never be a
1097 * pointer to a shell wrapper, i.e. it will be empty if no preprocessor is
1098 * available directly to the user. Note that it may well be different from
1099 * the preprocessor used to compile the C program.
1100 */
1101/* CPPLAST:
1102 * This symbol is intended to be used along with CPPRUN in the same manner
1103 * symbol CPPMINUS is used with CPPSTDIN. It contains either "-" or "".
1104 */
1105#define CPPSTDIN "cc -E"
1106#define CPPMINUS "-"
1107#define CPPRUN "cc -E"
1108#define CPPLAST "-"
1109
1110/* HAS__FWALK:
1111 * This symbol, if defined, indicates that the _fwalk system call is
1112 * available to apply a function to all the file handles.
1113 */
1114/*#define HAS__FWALK / **/
1115
1116/* HAS_ACCESS:
1117 * This manifest constant lets the C program know that the access()
1118 * system call is available to check for accessibility using real UID/GID.
1119 * (always present on UNIX.)
1120 */
1121#define HAS_ACCESS /**/
1122
1123/* HAS_ASCTIME_R:
1124 * This symbol, if defined, indicates that the asctime_r routine
1125 * is available to asctime re-entrantly.
1126 */
1127/* ASCTIME_R_PROTO:
1128 * This symbol encodes the prototype of asctime_r.
1129 * It is zero if d_asctime_r is undef, and one of the
1130 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_asctime_r
1131 * is defined.
1132 */
1133/*#define HAS_ASCTIME_R / **/
1134#define ASCTIME_R_PROTO 0 /**/
1135
dfe9444c
AD
1136/* CASTI32:
1137 * This symbol is defined if the C compiler can cast negative
1138 * or large floating point numbers to 32-bit ints.
1aef975c 1139 */
88fdc172 1140/*#define CASTI32 / **/
1aef975c 1141
dfe9444c
AD
1142/* CASTNEGFLOAT:
1143 * This symbol is defined if the C compiler can cast negative
1144 * numbers to unsigned longs, ints and shorts.
85e6fe83 1145 */
dfe9444c
AD
1146/* CASTFLAGS:
1147 * This symbol contains flags that say what difficulties the compiler
1148 * has casting odd floating values to unsigned long:
1149 * 0 = ok
1150 * 1 = couldn't cast < 0
1151 * 2 = couldn't cast >= 0x80000000
1152 * 4 = couldn't cast in argument expression list
fbfd4aab 1153 */
e5c9fcd0
AD
1154#define CASTNEGFLOAT /**/
1155#define CASTFLAGS 0 /**/
dfe9444c 1156
fd550ca5
MB
1157/* HAS_CLASS:
1158 * This symbol, if defined, indicates that the class routine is
1159 * available to classify doubles. Available for example in AIX.
1160 * The returned values are defined in <float.h> and are:
1161 *
1162 * FP_PLUS_NORM Positive normalized, nonzero
1163 * FP_MINUS_NORM Negative normalized, nonzero
1164 * FP_PLUS_DENORM Positive denormalized, nonzero
1165 * FP_MINUS_DENORM Negative denormalized, nonzero
1166 * FP_PLUS_ZERO +0.0
1167 * FP_MINUS_ZERO -0.0
1168 * FP_PLUS_INF +INF
1169 * FP_MINUS_INF -INF
1170 * FP_NANS Signaling Not a Number (NaNS)
1171 * FP_NANQ Quiet Not a Number (NaNQ)
1172 */
1173/*#define HAS_CLASS / **/
1174
dfe9444c
AD
1175/* VOID_CLOSEDIR:
1176 * This symbol, if defined, indicates that the closedir() routine
1177 * does not return a value.
fbfd4aab 1178 */
dfe9444c 1179/*#define VOID_CLOSEDIR / **/
fbfd4aab 1180
fd550ca5
MB
1181/* HAS_STRUCT_CMSGHDR:
1182 * This symbol, if defined, indicates that the struct cmsghdr
1183 * is supported.
4e0554ec 1184 */
fd550ca5 1185#define HAS_STRUCT_CMSGHDR /**/
4e0554ec 1186
fd550ca5
MB
1187/* HAS_CRYPT_R:
1188 * This symbol, if defined, indicates that the crypt_r routine
1189 * is available to crypt re-entrantly.
10bc17b6 1190 */
fd550ca5
MB
1191/* CRYPT_R_PROTO:
1192 * This symbol encodes the prototype of crypt_r.
1193 * It is zero if d_crypt_r is undef, and one of the
1194 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_crypt_r
1195 * is defined.
ff935051 1196 */
fd550ca5
MB
1197/*#define HAS_CRYPT_R / **/
1198#define CRYPT_R_PROTO 0 /**/
88fdc172 1199
fd550ca5
MB
1200/* HAS_CSH:
1201 * This symbol, if defined, indicates that the C-shell exists.
ff935051 1202 */
fd550ca5
MB
1203/* CSH:
1204 * This symbol, if defined, contains the full pathname of csh.
88fdc172 1205 */
a1e6f3ef 1206#define HAS_CSH /**/
fd550ca5 1207#ifdef HAS_CSH
3a021565 1208#define CSH "/usr/bin/csh" /**/
fd550ca5 1209#endif
ff935051 1210
fd550ca5
MB
1211/* HAS_CTIME_R:
1212 * This symbol, if defined, indicates that the ctime_r routine
1213 * is available to ctime re-entrantly.
10bc17b6 1214 */
fd550ca5
MB
1215/* CTIME_R_PROTO:
1216 * This symbol encodes the prototype of ctime_r.
1217 * It is zero if d_ctime_r is undef, and one of the
1218 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctime_r
1219 * is defined.
10bc17b6 1220 */
fd550ca5
MB
1221/*#define HAS_CTIME_R / **/
1222#define CTIME_R_PROTO 0 /**/
10bc17b6 1223
fd550ca5
MB
1224/* DLSYM_NEEDS_UNDERSCORE:
1225 * This symbol, if defined, indicates that we need to prepend an
1226 * underscore to the symbol name before calling dlsym(). This only
1227 * makes sense if you *have* dlsym, which we will presume is the
1228 * case if you're using dl_dlopen.xs.
ff935051 1229 */
fd550ca5 1230/*#define DLSYM_NEEDS_UNDERSCORE / **/
ff935051 1231
fd550ca5
MB
1232/* HAS_DRAND48_R:
1233 * This symbol, if defined, indicates that the drand48_r routine
1234 * is available to drand48 re-entrantly.
10bc17b6 1235 */
fd550ca5
MB
1236/* DRAND48_R_PROTO:
1237 * This symbol encodes the prototype of drand48_r.
1238 * It is zero if d_drand48_r is undef, and one of the
1239 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_drand48_r
1240 * is defined.
88fdc172 1241 */
fd550ca5
MB
1242/*#define HAS_DRAND48_R / **/
1243#define DRAND48_R_PROTO 0 /**/
88fdc172 1244
fd550ca5
MB
1245/* HAS_DRAND48_PROTO:
1246 * This symbol, if defined, indicates that the system provides
1247 * a prototype for the drand48() function. Otherwise, it is up
1248 * to the program to supply one. A good guess is
1249 * extern double drand48(void);
88fdc172 1250 */
fd550ca5 1251#define HAS_DRAND48_PROTO /**/
88fdc172 1252
fd550ca5
MB
1253/* HAS_ENDGRENT:
1254 * This symbol, if defined, indicates that the getgrent routine is
1255 * available for finalizing sequential access of the group database.
88fdc172 1256 */
fd550ca5
MB
1257#define HAS_ENDGRENT /**/
1258
1259/* HAS_ENDGRENT_R:
1260 * This symbol, if defined, indicates that the endgrent_r routine
1261 * is available to endgrent re-entrantly.
88fdc172 1262 */
fd550ca5
MB
1263/* ENDGRENT_R_PROTO:
1264 * This symbol encodes the prototype of endgrent_r.
1265 * It is zero if d_endgrent_r is undef, and one of the
1266 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endgrent_r
1267 * is defined.
88fdc172 1268 */
fd550ca5
MB
1269/*#define HAS_ENDGRENT_R / **/
1270#define ENDGRENT_R_PROTO 0 /**/
88fdc172 1271
fd550ca5
MB
1272/* HAS_ENDHOSTENT:
1273 * This symbol, if defined, indicates that the endhostent() routine is
1274 * available to close whatever was being used for host queries.
88fdc172 1275 */
fd550ca5
MB
1276#define HAS_ENDHOSTENT /**/
1277
1278/* HAS_ENDNETENT:
1279 * This symbol, if defined, indicates that the endnetent() routine is
1280 * available to close whatever was being used for network queries.
88fdc172 1281 */
fd550ca5
MB
1282#define HAS_ENDNETENT /**/
1283
1284/* HAS_ENDPROTOENT:
1285 * This symbol, if defined, indicates that the endprotoent() routine is
1286 * available to close whatever was being used for protocol queries.
88fdc172 1287 */
fd550ca5
MB
1288#define HAS_ENDPROTOENT /**/
1289
1290/* HAS_ENDPWENT:
1291 * This symbol, if defined, indicates that the getgrent routine is
1292 * available for finalizing sequential access of the passwd database.
88fdc172 1293 */
fd550ca5
MB
1294#define HAS_ENDPWENT /**/
1295
1296/* HAS_ENDPWENT_R:
1297 * This symbol, if defined, indicates that the endpwent_r routine
1298 * is available to endpwent re-entrantly.
88fdc172 1299 */
fd550ca5
MB
1300/* ENDPWENT_R_PROTO:
1301 * This symbol encodes the prototype of endpwent_r.
1302 * It is zero if d_endpwent_r is undef, and one of the
1303 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endpwent_r
1304 * is defined.
88fdc172 1305 */
fd550ca5
MB
1306/*#define HAS_ENDPWENT_R / **/
1307#define ENDPWENT_R_PROTO 0 /**/
1308
1309/* HAS_ENDSERVENT:
1310 * This symbol, if defined, indicates that the endservent() routine is
1311 * available to close whatever was being used for service queries.
88fdc172 1312 */
fd550ca5 1313#define HAS_ENDSERVENT /**/
88fdc172 1314
fd550ca5
MB
1315/* HAS_FCHDIR:
1316 * This symbol, if defined, indicates that the fchdir routine is
1317 * available to change directory using a file descriptor.
88fdc172 1318 */
fd550ca5
MB
1319#define HAS_FCHDIR /**/
1320
1321/* FCNTL_CAN_LOCK:
1322 * This symbol, if defined, indicates that fcntl() can be used
1323 * for file locking. Normally on Unix systems this is defined.
1324 * It may be undefined on VMS.
88fdc172 1325 */
fd550ca5
MB
1326#define FCNTL_CAN_LOCK /**/
1327
1328/* HAS_FD_SET:
1329 * This symbol, when defined, indicates presence of the fd_set typedef
1330 * in <sys/types.h>
88fdc172 1331 */
fd550ca5 1332#define HAS_FD_SET /**/
88fdc172 1333
fd550ca5
MB
1334/* HAS_FINITE:
1335 * This symbol, if defined, indicates that the finite routine is
1336 * available to check whether a double is finite (non-infinity non-NaN).
88fdc172 1337 */
fd550ca5
MB
1338#define HAS_FINITE /**/
1339
1340/* HAS_FINITEL:
1341 * This symbol, if defined, indicates that the finitel routine is
1342 * available to check whether a long double is finite
1343 * (non-infinity non-NaN).
88fdc172 1344 */
fd550ca5 1345#define HAS_FINITEL /**/
88fdc172 1346
fd550ca5
MB
1347/* FLEXFILENAMES:
1348 * This symbol, if defined, indicates that the system supports filenames
1349 * longer than 14 characters.
88fdc172 1350 */
fd550ca5 1351#define FLEXFILENAMES /**/
88fdc172 1352
fd550ca5
MB
1353/* HAS_FP_CLASS:
1354 * This symbol, if defined, indicates that the fp_class routine is
1355 * available to classify doubles. Available for example in Digital UNIX.
1356 * The returned values are defined in <math.h> and are:
1357 *
1358 * FP_SNAN Signaling NaN (Not-a-Number)
1359 * FP_QNAN Quiet NaN (Not-a-Number)
1360 * FP_POS_INF +infinity
1361 * FP_NEG_INF -infinity
1362 * FP_POS_NORM Positive normalized
1363 * FP_NEG_NORM Negative normalized
1364 * FP_POS_DENORM Positive denormalized
1365 * FP_NEG_DENORM Negative denormalized
1366 * FP_POS_ZERO +0.0 (positive zero)
1367 * FP_NEG_ZERO -0.0 (negative zero)
88fdc172 1368 */
fd550ca5
MB
1369/*#define HAS_FP_CLASS / **/
1370
1371/* HAS_FPCLASS:
1372 * This symbol, if defined, indicates that the fpclass routine is
1373 * available to classify doubles. Available for example in Solaris/SVR4.
1374 * The returned values are defined in <ieeefp.h> and are:
1375 *
1376 * FP_SNAN signaling NaN
1377 * FP_QNAN quiet NaN
1378 * FP_NINF negative infinity
1379 * FP_PINF positive infinity
1380 * FP_NDENORM negative denormalized non-zero
1381 * FP_PDENORM positive denormalized non-zero
1382 * FP_NZERO negative zero
1383 * FP_PZERO positive zero
1384 * FP_NNORM negative normalized non-zero
1385 * FP_PNORM positive normalized non-zero
88fdc172 1386 */
fd550ca5
MB
1387/*#define HAS_FPCLASS / **/
1388
1389/* HAS_FPCLASSIFY:
1390 * This symbol, if defined, indicates that the fpclassify routine is
1391 * available to classify doubles. Available for example in HP-UX.
1392 * The returned values are defined in <math.h> and are
1393 *
1394 * FP_NORMAL Normalized
1395 * FP_ZERO Zero
1396 * FP_INFINITE Infinity
1397 * FP_SUBNORMAL Denormalized
1398 * FP_NAN NaN
1399 *
88fdc172 1400 */
fd550ca5
MB
1401/*#define HAS_FPCLASSIFY / **/
1402
1403/* HAS_FPOS64_T:
1404 * This symbol will be defined if the C compiler supports fpos64_t.
88fdc172 1405 */
fd550ca5 1406/*#define HAS_FPOS64_T / **/
88fdc172 1407
fd550ca5
MB
1408/* HAS_FREXPL:
1409 * This symbol, if defined, indicates that the frexpl routine is
1410 * available to break a long double floating-point number into
1411 * a normalized fraction and an integral power of 2.
88fdc172 1412 */
fd550ca5
MB
1413#define HAS_FREXPL /**/
1414
1415/* HAS_STRUCT_FS_DATA:
1416 * This symbol, if defined, indicates that the struct fs_data
1417 * to do statfs() is supported.
88fdc172 1418 */
fd550ca5
MB
1419/*#define HAS_STRUCT_FS_DATA / **/
1420
1421/* HAS_FSEEKO:
1422 * This symbol, if defined, indicates that the fseeko routine is
1423 * available to fseek beyond 32 bits (useful for ILP32 hosts).
88fdc172 1424 */
fd550ca5
MB
1425#define HAS_FSEEKO /**/
1426
1427/* HAS_FSTATFS:
1428 * This symbol, if defined, indicates that the fstatfs routine is
1429 * available to stat filesystems by file descriptors.
88fdc172 1430 */
fd550ca5 1431#define HAS_FSTATFS /**/
88fdc172 1432
fd550ca5
MB
1433/* HAS_FSYNC:
1434 * This symbol, if defined, indicates that the fsync routine is
1435 * available to write a file's modified data and attributes to
1436 * permanent storage.
88fdc172 1437 */
fd550ca5 1438#define HAS_FSYNC /**/
88fdc172 1439
fd550ca5
MB
1440/* HAS_FTELLO:
1441 * This symbol, if defined, indicates that the ftello routine is
1442 * available to ftell beyond 32 bits (useful for ILP32 hosts).
88fdc172 1443 */
fd550ca5
MB
1444#define HAS_FTELLO /**/
1445
a1e6f3ef
RGS
1446/* HAS_FUTIMES:
1447 * This symbol, if defined, indicates that the futimes routine is
1448 * available to change file descriptor time stamps with struct timevals.
1449 */
1450#define HAS_FUTIMES /**/
1451
fd550ca5
MB
1452/* Gconvert:
1453 * This preprocessor macro is defined to convert a floating point
1454 * number to a string without a trailing decimal point. This
1455 * emulates the behavior of sprintf("%g"), but is sometimes much more
1456 * efficient. If gconvert() is not available, but gcvt() drops the
1457 * trailing decimal point, then gcvt() is used. If all else fails,
1458 * a macro using sprintf("%g") is used. Arguments for the Gconvert
1459 * macro are: value, number of digits, whether trailing zeros should
1460 * be retained, and the output buffer.
1461 * The usual values are:
1462 * d_Gconvert='gconvert((x),(n),(t),(b))'
1463 * d_Gconvert='gcvt((x),(n),(b))'
1464 * d_Gconvert='sprintf((b),"%.*g",(n),(x))'
1465 * The last two assume trailing zeros should not be kept.
88fdc172 1466 */
fd550ca5
MB
1467#define Gconvert(x,n,t,b) gcvt((x),(n),(b))
1468
1469/* HAS_GETCWD:
1470 * This symbol, if defined, indicates that the getcwd routine is
1471 * available to get the current working directory.
88fdc172 1472 */
fd550ca5
MB
1473#define HAS_GETCWD /**/
1474
1475/* HAS_GETESPWNAM:
1476 * This symbol, if defined, indicates that the getespwnam system call is
1477 * available to retrieve enchanced (shadow) password entries by name.
88fdc172 1478 */
fd550ca5 1479/*#define HAS_GETESPWNAM / **/
88fdc172 1480
fd550ca5
MB
1481/* HAS_GETFSSTAT:
1482 * This symbol, if defined, indicates that the getfsstat routine is
1483 * available to stat filesystems in bulk.
88fdc172 1484 */
fd550ca5 1485/*#define HAS_GETFSSTAT / **/
88fdc172 1486
fd550ca5
MB
1487/* HAS_GETGRENT:
1488 * This symbol, if defined, indicates that the getgrent routine is
1489 * available for sequential access of the group database.
88fdc172 1490 */
fd550ca5 1491#define HAS_GETGRENT /**/
88fdc172 1492
fd550ca5
MB
1493/* HAS_GETGRENT_R:
1494 * This symbol, if defined, indicates that the getgrent_r routine
1495 * is available to getgrent re-entrantly.
88fdc172 1496 */
fd550ca5
MB
1497/* GETGRENT_R_PROTO:
1498 * This symbol encodes the prototype of getgrent_r.
1499 * It is zero if d_getgrent_r is undef, and one of the
1500 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrent_r
1501 * is defined.
88fdc172 1502 */
fd550ca5
MB
1503/*#define HAS_GETGRENT_R / **/
1504#define GETGRENT_R_PROTO 0 /**/
88fdc172 1505
fd550ca5
MB
1506/* HAS_GETGRGID_R:
1507 * This symbol, if defined, indicates that the getgrgid_r routine
1508 * is available to getgrgid re-entrantly.
88fdc172 1509 */
fd550ca5
MB
1510/* GETGRGID_R_PROTO:
1511 * This symbol encodes the prototype of getgrgid_r.
1512 * It is zero if d_getgrgid_r is undef, and one of the
1513 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrgid_r
1514 * is defined.
88fdc172 1515 */
fd550ca5
MB
1516/*#define HAS_GETGRGID_R / **/
1517#define GETGRGID_R_PROTO 0 /**/
88fdc172 1518
fd550ca5
MB
1519/* HAS_GETGRNAM_R:
1520 * This symbol, if defined, indicates that the getgrnam_r routine
1521 * is available to getgrnam re-entrantly.
88fdc172 1522 */
fd550ca5
MB
1523/* GETGRNAM_R_PROTO:
1524 * This symbol encodes the prototype of getgrnam_r.
1525 * It is zero if d_getgrnam_r is undef, and one of the
1526 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrnam_r
1527 * is defined.
88fdc172 1528 */
fd550ca5
MB
1529/*#define HAS_GETGRNAM_R / **/
1530#define GETGRNAM_R_PROTO 0 /**/
88fdc172 1531
fd550ca5
MB
1532/* HAS_GETHOSTBYADDR:
1533 * This symbol, if defined, indicates that the gethostbyaddr() routine is
1534 * available to look up hosts by their IP addresses.
88fdc172 1535 */
fd550ca5 1536#define HAS_GETHOSTBYADDR /**/
88fdc172 1537
fd550ca5
MB
1538/* HAS_GETHOSTBYNAME:
1539 * This symbol, if defined, indicates that the gethostbyname() routine is
1540 * available to look up host names in some data base or other.
60a7d337 1541 */
fd550ca5 1542#define HAS_GETHOSTBYNAME /**/
60a7d337 1543
fd550ca5
MB
1544/* HAS_GETHOSTENT:
1545 * This symbol, if defined, indicates that the gethostent() routine is
1546 * available to look up host names in some data base or another.
88fdc172 1547 */
fd550ca5 1548#define HAS_GETHOSTENT /**/
88fdc172 1549
fd550ca5
MB
1550/* HAS_GETHOSTNAME:
1551 * This symbol, if defined, indicates that the C program may use the
1552 * gethostname() routine to derive the host name. See also HAS_UNAME
1553 * and PHOSTNAME.
88fdc172 1554 */
fd550ca5
MB
1555/* HAS_UNAME:
1556 * This symbol, if defined, indicates that the C program may use the
1557 * uname() routine to derive the host name. See also HAS_GETHOSTNAME
1558 * and PHOSTNAME.
88fdc172 1559 */
fd550ca5
MB
1560/* PHOSTNAME:
1561 * This symbol, if defined, indicates the command to feed to the
1562 * popen() routine to derive the host name. See also HAS_GETHOSTNAME
1563 * and HAS_UNAME. Note that the command uses a fully qualified path,
1564 * so that it is safe even if used by a process with super-user
1565 * privileges.
88fdc172 1566 */
fd550ca5
MB
1567/* HAS_PHOSTNAME:
1568 * This symbol, if defined, indicates that the C program may use the
1569 * contents of PHOSTNAME as a command to feed to the popen() routine
1570 * to derive the host name.
88fdc172 1571 */
fd550ca5
MB
1572#define HAS_GETHOSTNAME /**/
1573#define HAS_UNAME /**/
1574/*#define HAS_PHOSTNAME / **/
1575#ifdef HAS_PHOSTNAME
1576#define PHOSTNAME "" /* How to get the host name */
1577#endif
88fdc172 1578
fd550ca5
MB
1579/* HAS_GETHOST_PROTOS:
1580 * This symbol, if defined, indicates that <netdb.h> includes
1581 * prototypes for gethostent(), gethostbyname(), and
1582 * gethostbyaddr(). Otherwise, it is up to the program to guess
1583 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
88fdc172 1584 */
fd550ca5 1585#define HAS_GETHOST_PROTOS /**/
88fdc172 1586
fd550ca5
MB
1587/* HAS_GETITIMER:
1588 * This symbol, if defined, indicates that the getitimer routine is
1589 * available to return interval timers.
88fdc172 1590 */
fd550ca5 1591#define HAS_GETITIMER /**/
88fdc172 1592
fd550ca5
MB
1593/* HAS_GETLOGIN_R:
1594 * This symbol, if defined, indicates that the getlogin_r routine
1595 * is available to getlogin re-entrantly.
88fdc172 1596 */
fd550ca5
MB
1597/* GETLOGIN_R_PROTO:
1598 * This symbol encodes the prototype of getlogin_r.
1599 * It is zero if d_getlogin_r is undef, and one of the
1600 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getlogin_r
1601 * is defined.
88fdc172 1602 */
fd550ca5
MB
1603/*#define HAS_GETLOGIN_R / **/
1604#define GETLOGIN_R_PROTO 0 /**/
88fdc172 1605
fd550ca5
MB
1606/* HAS_GETMNT:
1607 * This symbol, if defined, indicates that the getmnt routine is
1608 * available to get filesystem mount info by filename.
88fdc172 1609 */
fd550ca5 1610/*#define HAS_GETMNT / **/
88fdc172 1611
fd550ca5
MB
1612/* HAS_GETMNTENT:
1613 * This symbol, if defined, indicates that the getmntent routine is
1614 * available to iterate through mounted file systems to get their info.
88fdc172 1615 */
fd550ca5
MB
1616#define HAS_GETMNTENT /**/
1617
1618/* HAS_GETNETBYADDR:
1619 * This symbol, if defined, indicates that the getnetbyaddr() routine is
1620 * available to look up networks by their IP addresses.
88fdc172 1621 */
fd550ca5
MB
1622#define HAS_GETNETBYADDR /**/
1623
1624/* HAS_GETNETBYNAME:
1625 * This symbol, if defined, indicates that the getnetbyname() routine is
1626 * available to look up networks by their names.
88fdc172 1627 */
fd550ca5
MB
1628#define HAS_GETNETBYNAME /**/
1629
1630/* HAS_GETNETENT:
1631 * This symbol, if defined, indicates that the getnetent() routine is
1632 * available to look up network names in some data base or another.
88fdc172 1633 */
fd550ca5 1634#define HAS_GETNETENT /**/
88fdc172 1635
fd550ca5
MB
1636/* HAS_GETNET_PROTOS:
1637 * This symbol, if defined, indicates that <netdb.h> includes
1638 * prototypes for getnetent(), getnetbyname(), and
1639 * getnetbyaddr(). Otherwise, it is up to the program to guess
1640 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
88fdc172 1641 */
fd550ca5 1642#define HAS_GETNET_PROTOS /**/
88fdc172 1643
fd550ca5
MB
1644/* HAS_GETPAGESIZE:
1645 * This symbol, if defined, indicates that the getpagesize system call
1646 * is available to get system page size, which is the granularity of
1647 * many memory management calls.
88fdc172 1648 */
fd550ca5 1649#define HAS_GETPAGESIZE /**/
88fdc172 1650
fd550ca5
MB
1651/* HAS_GETPROTOENT:
1652 * This symbol, if defined, indicates that the getprotoent() routine is
1653 * available to look up protocols in some data base or another.
88fdc172 1654 */
fd550ca5 1655#define HAS_GETPROTOENT /**/
88fdc172 1656
fd550ca5
MB
1657/* HAS_GETPGRP:
1658 * This symbol, if defined, indicates that the getpgrp routine is
1659 * available to get the current process group.
88fdc172 1660 */
fd550ca5
MB
1661/* USE_BSD_GETPGRP:
1662 * This symbol, if defined, indicates that getpgrp needs one
1663 * arguments whereas USG one needs none.
88fdc172 1664 */
fd550ca5
MB
1665#define HAS_GETPGRP /**/
1666/*#define USE_BSD_GETPGRP / **/
88fdc172 1667
fd550ca5
MB
1668/* HAS_GETPROTOBYNAME:
1669 * This symbol, if defined, indicates that the getprotobyname()
1670 * routine is available to look up protocols by their name.
88fdc172 1671 */
fd550ca5
MB
1672/* HAS_GETPROTOBYNUMBER:
1673 * This symbol, if defined, indicates that the getprotobynumber()
1674 * routine is available to look up protocols by their number.
88fdc172 1675 */
fd550ca5
MB
1676#define HAS_GETPROTOBYNAME /**/
1677#define HAS_GETPROTOBYNUMBER /**/
88fdc172 1678
fd550ca5
MB
1679/* HAS_GETPROTO_PROTOS:
1680 * This symbol, if defined, indicates that <netdb.h> includes
1681 * prototypes for getprotoent(), getprotobyname(), and
1682 * getprotobyaddr(). Otherwise, it is up to the program to guess
1683 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
88fdc172 1684 */
fd550ca5 1685#define HAS_GETPROTO_PROTOS /**/
88fdc172 1686
fd550ca5
MB
1687/* HAS_GETPRPWNAM:
1688 * This symbol, if defined, indicates that the getprpwnam system call is
1689 * available to retrieve protected (shadow) password entries by name.
88fdc172 1690 */
fd550ca5 1691/*#define HAS_GETPRPWNAM / **/
88fdc172 1692
fd550ca5
MB
1693/* HAS_GETPWENT:
1694 * This symbol, if defined, indicates that the getpwent routine is
1695 * available for sequential access of the passwd database.
1696 * If this is not available, the older getpw() function may be available.
88fdc172 1697 */
fd550ca5 1698#define HAS_GETPWENT /**/
88fdc172 1699
fd550ca5
MB
1700/* HAS_GETPWENT_R:
1701 * This symbol, if defined, indicates that the getpwent_r routine
1702 * is available to getpwent re-entrantly.
88fdc172 1703 */
fd550ca5
MB
1704/* GETPWENT_R_PROTO:
1705 * This symbol encodes the prototype of getpwent_r.
1706 * It is zero if d_getpwent_r is undef, and one of the
1707 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwent_r
1708 * is defined.
88fdc172 1709 */
fd550ca5
MB
1710/*#define HAS_GETPWENT_R / **/
1711#define GETPWENT_R_PROTO 0 /**/
88fdc172 1712
fd550ca5
MB
1713/* HAS_GETPWNAM_R:
1714 * This symbol, if defined, indicates that the getpwnam_r routine
1715 * is available to getpwnam re-entrantly.
88fdc172 1716 */
fd550ca5
MB
1717/* GETPWNAM_R_PROTO:
1718 * This symbol encodes the prototype of getpwnam_r.
1719 * It is zero if d_getpwnam_r is undef, and one of the
1720 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwnam_r
1721 * is defined.
ff935051 1722 */
fd550ca5
MB
1723/*#define HAS_GETPWNAM_R / **/
1724#define GETPWNAM_R_PROTO 0 /**/
ff935051 1725
fd550ca5
MB
1726/* HAS_GETPWUID_R:
1727 * This symbol, if defined, indicates that the getpwuid_r routine
1728 * is available to getpwuid re-entrantly.
ff935051 1729 */
fd550ca5
MB
1730/* GETPWUID_R_PROTO:
1731 * This symbol encodes the prototype of getpwuid_r.
1732 * It is zero if d_getpwuid_r is undef, and one of the
1733 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwuid_r
1734 * is defined.
10bc17b6 1735 */
fd550ca5
MB
1736/*#define HAS_GETPWUID_R / **/
1737#define GETPWUID_R_PROTO 0 /**/
88fdc172 1738
fd550ca5
MB
1739/* HAS_GETSERVENT:
1740 * This symbol, if defined, indicates that the getservent() routine is
1741 * available to look up network services in some data base or another.
10bc17b6 1742 */
fd550ca5 1743#define HAS_GETSERVENT /**/
10bc17b6 1744
fd550ca5
MB
1745/* HAS_GETSERV_PROTOS:
1746 * This symbol, if defined, indicates that <netdb.h> includes
1747 * prototypes for getservent(), getservbyname(), and
1748 * getservbyaddr(). Otherwise, it is up to the program to guess
1749 * them. See netdbtype.U for probing for various Netdb_xxx_t types.
88fdc172 1750 */
fd550ca5 1751#define HAS_GETSERV_PROTOS /**/
ff935051 1752
fd550ca5
MB
1753/* HAS_GETSPNAM:
1754 * This symbol, if defined, indicates that the getspnam system call is
1755 * available to retrieve SysV shadow password entries by name.
88fdc172 1756 */
fd550ca5 1757#define HAS_GETSPNAM /**/
88fdc172 1758
fd550ca5
MB
1759/* HAS_GETSPNAM_R:
1760 * This symbol, if defined, indicates that the getspnam_r routine
1761 * is available to getspnam re-entrantly.
88fdc172 1762 */
fd550ca5
MB
1763/* GETSPNAM_R_PROTO:
1764 * This symbol encodes the prototype of getspnam_r.
1765 * It is zero if d_getspnam_r is undef, and one of the
1766 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getspnam_r
1767 * is defined.
88fdc172 1768 */
fd550ca5
MB
1769/*#define HAS_GETSPNAM_R / **/
1770#define GETSPNAM_R_PROTO 0 /**/
88fdc172
SB
1771
1772/* HAS_GETSERVBYNAME:
1773 * This symbol, if defined, indicates that the getservbyname()
1774 * routine is available to look up services by their name.
1775 */
1776/* HAS_GETSERVBYPORT:
1777 * This symbol, if defined, indicates that the getservbyport()
1778 * routine is available to look up services by their port.
1779 */
1780#define HAS_GETSERVBYNAME /**/
1781#define HAS_GETSERVBYPORT /**/
1782
fd550ca5
MB
1783/* HAS_GMTIME_R:
1784 * This symbol, if defined, indicates that the gmtime_r routine
1785 * is available to gmtime re-entrantly.
1786 */
1787/* GMTIME_R_PROTO:
1788 * This symbol encodes the prototype of gmtime_r.
1789 * It is zero if d_gmtime_r is undef, and one of the
1790 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gmtime_r
1791 * is defined.
1792 */
1793/*#define HAS_GMTIME_R / **/
1794#define GMTIME_R_PROTO 0 /**/
1795
1796/* HAS_GNULIBC:
1797 * This symbol, if defined, indicates to the C program that
1798 * the GNU C library is being used. A better check is to use
1799 * the __GLIBC__ and __GLIBC_MINOR__ symbols supplied with glibc.
1800 */
1801#define HAS_GNULIBC /**/
1802#if defined(HAS_GNULIBC) && !defined(_GNU_SOURCE)
1803# define _GNU_SOURCE
1804#endif
1805/* HAS_HASMNTOPT:
1806 * This symbol, if defined, indicates that the hasmntopt routine is
1807 * available to query the mount options of file systems.
1808 */
1809#define HAS_HASMNTOPT /**/
1810
88fdc172
SB
1811/* HAS_HTONL:
1812 * This symbol, if defined, indicates that the htonl() routine (and
1813 * friends htons() ntohl() ntohs()) are available to do network
1814 * order byte swapping.
1815 */
1816/* HAS_HTONS:
1817 * This symbol, if defined, indicates that the htons() routine (and
1818 * friends htonl() ntohl() ntohs()) are available to do network
1819 * order byte swapping.
1820 */
1821/* HAS_NTOHL:
1822 * This symbol, if defined, indicates that the ntohl() routine (and
1823 * friends htonl() htons() ntohs()) are available to do network
1824 * order byte swapping.
1825 */
1826/* HAS_NTOHS:
1827 * This symbol, if defined, indicates that the ntohs() routine (and
1828 * friends htonl() htons() ntohl()) are available to do network
1829 * order byte swapping.
1830 */
1831#define HAS_HTONL /**/
1832#define HAS_HTONS /**/
1833#define HAS_NTOHL /**/
1834#define HAS_NTOHS /**/
1835
fd550ca5
MB
1836/* HAS_INT64_T:
1837 * This symbol will defined if the C compiler supports int64_t.
1838 * Usually the <inttypes.h> needs to be included, but sometimes
1839 * <sys/types.h> is enough.
88fdc172 1840 */
fd550ca5
MB
1841#define HAS_INT64_T /**/
1842
1843/* HAS_ISASCII:
1844 * This manifest constant lets the C program know that isascii
1845 * is available.
1846 */
1847#define HAS_ISASCII /**/
1848
1849/* HAS_ISFINITE:
1850 * This symbol, if defined, indicates that the isfinite routine is
1851 * available to check whether a double is finite (non-infinity non-NaN).
1852 */
1853/*#define HAS_ISFINITE / **/
1854
1855/* HAS_ISINF:
1856 * This symbol, if defined, indicates that the isinf routine is
1857 * available to check whether a double is an infinity.
1858 */
1859#define HAS_ISINF /**/
1860
1861/* HAS_ISNAN:
1862 * This symbol, if defined, indicates that the isnan routine is
1863 * available to check whether a double is a NaN.
1864 */
1865#define HAS_ISNAN /**/
1866
1867/* HAS_ISNANL:
1868 * This symbol, if defined, indicates that the isnanl routine is
1869 * available to check whether a long double is a NaN.
1870 */
1871#define HAS_ISNANL /**/
1872
1873/* HAS_LCHOWN:
1874 * This symbol, if defined, indicates that the lchown routine is
1875 * available to operate on a symbolic link (instead of following the
1876 * link).
1877 */
1878#define HAS_LCHOWN /**/
1879
1880/* HAS_LDBL_DIG:
1881 * This symbol, if defined, indicates that this system's <float.h>
1882 * or <limits.h> defines the symbol LDBL_DIG, which is the number
1883 * of significant digits in a long double precision number. Unlike
1884 * for DBL_DIG, there's no good guess for LDBL_DIG if it is undefined.
1885 */
1886#define HAS_LDBL_DIG /* */
1887
1888/* HAS_LOCALTIME_R:
1889 * This symbol, if defined, indicates that the localtime_r routine
1890 * is available to localtime re-entrantly.
1891 */
f025e94b
MB
1892/* LOCALTIME_R_NEEDS_TZSET:
1893 * Many libc's localtime_r implementations do not call tzset,
1894 * making them differ from localtime(), and making timezone
1895 * changes using $ENV{TZ} without explicitly calling tzset
1896 * impossible. This symbol makes us call tzset before localtime_r
1897 */
fd550ca5
MB
1898/* LOCALTIME_R_PROTO:
1899 * This symbol encodes the prototype of localtime_r.
1900 * It is zero if d_localtime_r is undef, and one of the
1901 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_localtime_r
1902 * is defined.
1903 */
1904/*#define HAS_LOCALTIME_R / **/
f025e94b 1905/*#define LOCALTIME_R_NEEDS_TZSET / **/
fd550ca5
MB
1906#define LOCALTIME_R_PROTO 0 /**/
1907
1908/* HAS_LONG_DOUBLE:
1909 * This symbol will be defined if the C compiler supports long
1910 * doubles.
1911 */
1912/* LONG_DOUBLESIZE:
1913 * This symbol contains the size of a long double, so that the
1914 * C preprocessor can make decisions based on it. It is only
1915 * defined if the system supports long doubles.
1916 */
1917#define HAS_LONG_DOUBLE /**/
1918#ifdef HAS_LONG_DOUBLE
1919#define LONG_DOUBLESIZE 12 /**/
88fdc172
SB
1920#endif
1921
1922/* HAS_LONG_LONG:
1923 * This symbol will be defined if the C compiler supports long long.
1924 */
1925/* LONGLONGSIZE:
1926 * This symbol contains the size of a long long, so that the
1927 * C preprocessor can make decisions based on it. It is only
1928 * defined if the system supports long long.
1929 */
1930#define HAS_LONG_LONG /**/
1931#ifdef HAS_LONG_LONG
1932#define LONGLONGSIZE 8 /**/
1933#endif
1934
fd550ca5
MB
1935/* HAS_LSEEK_PROTO:
1936 * This symbol, if defined, indicates that the system provides
1937 * a prototype for the lseek() function. Otherwise, it is up
1938 * to the program to supply one. A good guess is
1939 * extern off_t lseek(int, off_t, int);
1940 */
1941#define HAS_LSEEK_PROTO /**/
1942
1943/* HAS_MADVISE:
1944 * This symbol, if defined, indicates that the madvise system call is
1945 * available to map a file into memory.
1946 */
1947#define HAS_MADVISE /**/
1948
a1e6f3ef
RGS
1949/* HAS_MALLOC_SIZE:
1950 * This symbol, if defined, indicates that the malloc_size
1951 * routine is available for use.
1952 */
1953/*#define HAS_MALLOC_SIZE / **/
1954
1955/* HAS_MALLOC_GOOD_SIZE:
1956 * This symbol, if defined, indicates that the malloc_good_size
1957 * routine is available for use.
1958 */
1959/*#define HAS_MALLOC_GOOD_SIZE / **/
1960
88fdc172
SB
1961/* HAS_MEMCHR:
1962 * This symbol, if defined, indicates that the memchr routine is available
1963 * to locate characters within a C string.
1964 */
1965#define HAS_MEMCHR /**/
1966
fd550ca5
MB
1967/* HAS_MKDTEMP:
1968 * This symbol, if defined, indicates that the mkdtemp routine is
1969 * available to exclusively create a uniquely named temporary directory.
1970 */
1971#define HAS_MKDTEMP /**/
1972
88fdc172
SB
1973/* HAS_MKSTEMP:
1974 * This symbol, if defined, indicates that the mkstemp routine is
1975 * available to exclusively create and open a uniquely named
1976 * temporary file.
1977 */
1978#define HAS_MKSTEMP /**/
1979
fd550ca5
MB
1980/* HAS_MKSTEMPS:
1981 * This symbol, if defined, indicates that the mkstemps routine is
1982 * available to excluslvely create and open a uniquely named
1983 * (with a suffix) temporary file.
1984 */
1985/*#define HAS_MKSTEMPS / **/
1986
88fdc172
SB
1987/* HAS_MMAP:
1988 * This symbol, if defined, indicates that the mmap system call is
1989 * available to map a file into memory.
1990 */
1991/* Mmap_t:
1992 * This symbol holds the return type of the mmap() system call
1993 * (and simultaneously the type of the first argument).
1994 * Usually set to 'void *' or 'cadd_t'.
1995 */
1996#define HAS_MMAP /**/
1997#define Mmap_t void * /**/
1998
fd550ca5
MB
1999/* HAS_MODFL:
2000 * This symbol, if defined, indicates that the modfl routine is
2001 * available to split a long double x into a fractional part f and
2002 * an integer part i such that |f| < 1.0 and (f + i) = x.
2003 */
2004/* HAS_MODFL_PROTO:
2005 * This symbol, if defined, indicates that the system provides
2006 * a prototype for the modfl() function. Otherwise, it is up
2007 * to the program to supply one.
2008 */
2009/* HAS_MODFL_POW32_BUG:
2010 * This symbol, if defined, indicates that the modfl routine is
2011 * broken for long doubles >= pow(2, 32).
2012 * For example from 4294967303.150000 one would get 4294967302.000000
2013 * and 1.150000. The bug has been seen in certain versions of glibc,
2014 * release 2.2.2 is known to be okay.
2015 */
2016#define HAS_MODFL /**/
a1e6f3ef 2017#define HAS_MODFL_PROTO /**/
fd550ca5
MB
2018/*#define HAS_MODFL_POW32_BUG / **/
2019
2020/* HAS_MPROTECT:
2021 * This symbol, if defined, indicates that the mprotect system call is
2022 * available to modify the access protection of a memory mapped file.
2023 */
2024#define HAS_MPROTECT /**/
2025
88fdc172
SB
2026/* HAS_MSG:
2027 * This symbol, if defined, indicates that the entire msg*(2) library is
2028 * supported (IPC mechanism based on message queues).
2029 */
2030#define HAS_MSG /**/
2031
fd550ca5
MB
2032/* HAS_STRUCT_MSGHDR:
2033 * This symbol, if defined, indicates that the struct msghdr
2034 * is supported.
88fdc172 2035 */
fd550ca5 2036#define HAS_STRUCT_MSGHDR /**/
88fdc172 2037
fd550ca5
MB
2038/* HAS_OFF64_T:
2039 * This symbol will be defined if the C compiler supports off64_t.
88fdc172 2040 */
fd550ca5 2041/*#define HAS_OFF64_T / **/
88fdc172 2042
fd550ca5
MB
2043/* HAS_OPEN3:
2044 * This manifest constant lets the C program know that the three
2045 * argument form of open(2) is available.
88fdc172 2046 */
fd550ca5 2047#define HAS_OPEN3 /**/
88fdc172 2048
fd550ca5
MB
2049/* OLD_PTHREAD_CREATE_JOINABLE:
2050 * This symbol, if defined, indicates how to create pthread
2051 * in joinable (aka undetached) state. NOTE: not defined
2052 * if pthread.h already has defined PTHREAD_CREATE_JOINABLE
2053 * (the new version of the constant).
2054 * If defined, known values are PTHREAD_CREATE_UNDETACHED
2055 * and __UNDETACHED.
88fdc172 2056 */
fd550ca5 2057/*#define OLD_PTHREAD_CREATE_JOINABLE / **/
88fdc172 2058
fd550ca5
MB
2059/* HAS_PTHREAD_YIELD:
2060 * This symbol, if defined, indicates that the pthread_yield
2061 * routine is available to yield the execution of the current
2062 * thread. sched_yield is preferable to pthread_yield.
88fdc172 2063 */
fd550ca5
MB
2064/* SCHED_YIELD:
2065 * This symbol defines the way to yield the execution of
2066 * the current thread. Known ways are sched_yield,
2067 * pthread_yield, and pthread_yield with NULL.
2068 */
2069/* HAS_SCHED_YIELD:
2070 * This symbol, if defined, indicates that the sched_yield
2071 * routine is available to yield the execution of the current
2072 * thread. sched_yield is preferable to pthread_yield.
2073 */
3a021565 2074#define HAS_PTHREAD_YIELD /**/
fd550ca5
MB
2075#define SCHED_YIELD sched_yield() /**/
2076#define HAS_SCHED_YIELD /**/
88fdc172 2077
fd550ca5
MB
2078/* HAS_RANDOM_R:
2079 * This symbol, if defined, indicates that the random_r routine
2080 * is available to random re-entrantly.
88fdc172 2081 */
fd550ca5
MB
2082/* RANDOM_R_PROTO:
2083 * This symbol encodes the prototype of random_r.
2084 * It is zero if d_random_r is undef, and one of the
2085 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_random_r
2086 * is defined.
2087 */
2088/*#define HAS_RANDOM_R / **/
2089#define RANDOM_R_PROTO 0 /**/
88fdc172 2090
fd550ca5
MB
2091/* HAS_READDIR_R:
2092 * This symbol, if defined, indicates that the readdir_r routine
2093 * is available to readdir re-entrantly.
88fdc172 2094 */
fd550ca5
MB
2095/* READDIR_R_PROTO:
2096 * This symbol encodes the prototype of readdir_r.
2097 * It is zero if d_readdir_r is undef, and one of the
2098 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir_r
2099 * is defined.
88fdc172 2100 */
fd550ca5
MB
2101/*#define HAS_READDIR_R / **/
2102#define READDIR_R_PROTO 0 /**/
88fdc172 2103
fd550ca5
MB
2104/* HAS_READV:
2105 * This symbol, if defined, indicates that the readv routine is
2106 * available to do gather reads. You will also need <sys/uio.h>
2107 * and there I_SYSUIO.
88fdc172 2108 */
fd550ca5 2109#define HAS_READV /**/
88fdc172 2110
fd550ca5
MB
2111/* HAS_RECVMSG:
2112 * This symbol, if defined, indicates that the recvmsg routine is
2113 * available to send structured socket messages.
ff935051 2114 */
fd550ca5 2115#define HAS_RECVMSG /**/
ff935051 2116
fd550ca5
MB
2117/* HAS_SAFE_BCOPY:
2118 * This symbol, if defined, indicates that the bcopy routine is available
2119 * to copy potentially overlapping memory blocks. Normally, you should
2120 * probably use memmove() or memcpy(). If neither is defined, roll your
2121 * own version.
ff935051 2122 */
fd550ca5 2123/*#define HAS_SAFE_BCOPY / **/
ff935051 2124
fd550ca5
MB
2125/* HAS_SAFE_MEMCPY:
2126 * This symbol, if defined, indicates that the memcpy routine is available
2127 * to copy potentially overlapping memory blocks. If you need to
2128 * copy overlapping memory blocks, you should check HAS_MEMMOVE and
2129 * use memmove() instead, if available.
ff935051 2130 */
fd550ca5 2131/*#define HAS_SAFE_MEMCPY / **/
ff935051 2132
fd550ca5
MB
2133/* HAS_SANE_MEMCMP:
2134 * This symbol, if defined, indicates that the memcmp routine is available
2135 * and can be used to compare relative magnitudes of chars with their high
2136 * bits set. If it is not defined, roll your own version.
10bc17b6 2137 */
fd550ca5
MB
2138#define HAS_SANE_MEMCMP /**/
2139
2140/* HAS_SBRK_PROTO:
2141 * This symbol, if defined, indicates that the system provides
2142 * a prototype for the sbrk() function. Otherwise, it is up
2143 * to the program to supply one. Good guesses are
2144 * extern void* sbrk(int);
2145 * extern void* sbrk(size_t);
10bc17b6 2146 */
fd550ca5
MB
2147#define HAS_SBRK_PROTO /**/
2148
2149/* HAS_SEM:
2150 * This symbol, if defined, indicates that the entire sem*(2) library is
2151 * supported.
2152 */
2153#define HAS_SEM /**/
2154
2155/* HAS_SENDMSG:
2156 * This symbol, if defined, indicates that the sendmsg routine is
2157 * available to send structured socket messages.
2158 */
2159#define HAS_SENDMSG /**/
2160
2161/* HAS_SETGRENT:
2162 * This symbol, if defined, indicates that the setgrent routine is
2163 * available for initializing sequential access of the group database.
2164 */
2165#define HAS_SETGRENT /**/
2166
2167/* HAS_SETGRENT_R:
2168 * This symbol, if defined, indicates that the setgrent_r routine
2169 * is available to setgrent re-entrantly.
2170 */
2171/* SETGRENT_R_PROTO:
2172 * This symbol encodes the prototype of setgrent_r.
2173 * It is zero if d_setgrent_r is undef, and one of the
2174 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setgrent_r
2175 * is defined.
2176 */
2177/*#define HAS_SETGRENT_R / **/
2178#define SETGRENT_R_PROTO 0 /**/
2179
2180/* HAS_SETGROUPS:
2181 * This symbol, if defined, indicates that the setgroups() routine is
2182 * available to set the list of process groups. If unavailable, multiple
2183 * groups are probably not supported.
2184 */
2185#define HAS_SETGROUPS /**/
2186
2187/* HAS_SETHOSTENT:
2188 * This symbol, if defined, indicates that the sethostent() routine is
2189 * available.
2190 */
2191#define HAS_SETHOSTENT /**/
2192
2193/* HAS_SETITIMER:
2194 * This symbol, if defined, indicates that the setitimer routine is
2195 * available to set interval timers.
2196 */
2197#define HAS_SETITIMER /**/
2198
2199/* HAS_SETNETENT:
2200 * This symbol, if defined, indicates that the setnetent() routine is
2201 * available.
2202 */
2203#define HAS_SETNETENT /**/
2204
2205/* HAS_SETPROTOENT:
2206 * This symbol, if defined, indicates that the setprotoent() routine is
2207 * available.
2208 */
2209#define HAS_SETPROTOENT /**/
2210
2211/* HAS_SETPGRP:
2212 * This symbol, if defined, indicates that the setpgrp routine is
2213 * available to set the current process group.
2214 */
2215/* USE_BSD_SETPGRP:
2216 * This symbol, if defined, indicates that setpgrp needs two
2217 * arguments whereas USG one needs none. See also HAS_SETPGID
2218 * for a POSIX interface.
2219 */
2220#define HAS_SETPGRP /**/
2221/*#define USE_BSD_SETPGRP / **/
2222
2223/* HAS_SETPROCTITLE:
2224 * This symbol, if defined, indicates that the setproctitle routine is
2225 * available to set process title.
2226 */
2227/*#define HAS_SETPROCTITLE / **/
2228
2229/* HAS_SETPWENT:
2230 * This symbol, if defined, indicates that the setpwent routine is
2231 * available for initializing sequential access of the passwd database.
2232 */
2233#define HAS_SETPWENT /**/
2234
2235/* HAS_SETPWENT_R:
2236 * This symbol, if defined, indicates that the setpwent_r routine
2237 * is available to setpwent re-entrantly.
2238 */
2239/* SETPWENT_R_PROTO:
2240 * This symbol encodes the prototype of setpwent_r.
2241 * It is zero if d_setpwent_r is undef, and one of the
2242 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setpwent_r
2243 * is defined.
2244 */
2245/*#define HAS_SETPWENT_R / **/
2246#define SETPWENT_R_PROTO 0 /**/
2247
2248/* HAS_SETSERVENT:
2249 * This symbol, if defined, indicates that the setservent() routine is
2250 * available.
2251 */
2252#define HAS_SETSERVENT /**/
2253
2254/* HAS_SETVBUF:
2255 * This symbol, if defined, indicates that the setvbuf routine is
2256 * available to change buffering on an open stdio stream.
2257 * to a line-buffered mode.
2258 */
2259#define HAS_SETVBUF /**/
2260
2261/* USE_SFIO:
2262 * This symbol, if defined, indicates that sfio should
2263 * be used.
2264 */
2265/*#define USE_SFIO / **/
2266
2267/* HAS_SHM:
2268 * This symbol, if defined, indicates that the entire shm*(2) library is
2269 * supported.
2270 */
2271#define HAS_SHM /**/
2272
2273/* HAS_SIGACTION:
2274 * This symbol, if defined, indicates that Vr4's sigaction() routine
2275 * is available.
2276 */
2277#define HAS_SIGACTION /**/
2278
2279/* HAS_SIGSETJMP:
2280 * This variable indicates to the C program that the sigsetjmp()
2281 * routine is available to save the calling process's registers
2282 * and stack environment for later use by siglongjmp(), and
2283 * to optionally save the process's signal mask. See
2284 * Sigjmp_buf, Sigsetjmp, and Siglongjmp.
2285 */
2286/* Sigjmp_buf:
2287 * This is the buffer type to be used with Sigsetjmp and Siglongjmp.
2288 */
2289/* Sigsetjmp:
2290 * This macro is used in the same way as sigsetjmp(), but will invoke
2291 * traditional setjmp() if sigsetjmp isn't available.
2292 * See HAS_SIGSETJMP.
2293 */
2294/* Siglongjmp:
2295 * This macro is used in the same way as siglongjmp(), but will invoke
2296 * traditional longjmp() if siglongjmp isn't available.
2297 * See HAS_SIGSETJMP.
2298 */
2299#define HAS_SIGSETJMP /**/
2300#ifdef HAS_SIGSETJMP
2301#define Sigjmp_buf sigjmp_buf
2302#define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
2303#define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
2304#else
2305#define Sigjmp_buf jmp_buf
2306#define Sigsetjmp(buf,save_mask) setjmp((buf))
2307#define Siglongjmp(buf,retval) longjmp((buf),(retval))
2308#endif
10bc17b6 2309
a1e6f3ef
RGS
2310/* USE_SITECUSTOMIZE:
2311 * This symbol, if defined, indicates that sitecustomize should
2312 * be used.
2313 */
3a021565 2314#ifndef USE_SITECUSTOMIZE
a1e6f3ef 2315/*#define USE_SITECUSTOMIZE / **/
3a021565 2316#endif
a1e6f3ef
RGS
2317
2318/* HAS_SNPRINTF:
2319 * This symbol, if defined, indicates that the snprintf () library
2320 * function is available for use.
2321 */
2322/* HAS_VSNPRINTF:
2323 * This symbol, if defined, indicates that the vsnprintf () library
2324 * function is available for use.
2325 */
2326#define HAS_SNPRINTF /**/
2327#define HAS_VSNPRINTF /**/
2328
88fdc172
SB
2329/* HAS_SOCKET:
2330 * This symbol, if defined, indicates that the BSD socket interface is
2331 * supported.
ff935051 2332 */
88fdc172
SB
2333/* HAS_SOCKETPAIR:
2334 * This symbol, if defined, indicates that the BSD socketpair() call is
2335 * supported.
b363b713 2336 */
88fdc172
SB
2337/* HAS_MSG_CTRUNC:
2338 * This symbol, if defined, indicates that the MSG_CTRUNC is supported.
2339 * Checking just with #ifdef might not be enough because this symbol
2340 * has been known to be an enum.
a7fea17f 2341 */
88fdc172
SB
2342/* HAS_MSG_DONTROUTE:
2343 * This symbol, if defined, indicates that the MSG_DONTROUTE is supported.
2344 * Checking just with #ifdef might not be enough because this symbol
2345 * has been known to be an enum.
921b2963 2346 */
88fdc172
SB
2347/* HAS_MSG_OOB:
2348 * This symbol, if defined, indicates that the MSG_OOB is supported.
2349 * Checking just with #ifdef might not be enough because this symbol
2350 * has been known to be an enum.
758a5d79 2351 */
88fdc172
SB
2352/* HAS_MSG_PEEK:
2353 * This symbol, if defined, indicates that the MSG_PEEK is supported.
2354 * Checking just with #ifdef might not be enough because this symbol
2355 * has been known to be an enum.
758a5d79 2356 */
88fdc172
SB
2357/* HAS_MSG_PROXY:
2358 * This symbol, if defined, indicates that the MSG_PROXY is supported.
2359 * Checking just with #ifdef might not be enough because this symbol
2360 * has been known to be an enum.
b6592ff0 2361 */
88fdc172
SB
2362/* HAS_SCM_RIGHTS:
2363 * This symbol, if defined, indicates that the SCM_RIGHTS is supported.
2364 * Checking just with #ifdef might not be enough because this symbol
2365 * has been known to be an enum.
758a5d79 2366 */
88fdc172
SB
2367#define HAS_SOCKET /**/
2368#define HAS_SOCKETPAIR /**/
2369#define HAS_MSG_CTRUNC /**/
2370#define HAS_MSG_DONTROUTE /**/
2371#define HAS_MSG_OOB /**/
2372#define HAS_MSG_PEEK /**/
60a7d337 2373#define HAS_MSG_PROXY /**/
88fdc172 2374#define HAS_SCM_RIGHTS /**/
758a5d79 2375
fd550ca5
MB
2376/* HAS_SOCKS5_INIT:
2377 * This symbol, if defined, indicates that the socks5_init routine is
2378 * available to initialize SOCKS 5.
2379 */
2380/*#define HAS_SOCKS5_INIT / **/
2381
2382/* HAS_SQRTL:
2383 * This symbol, if defined, indicates that the sqrtl routine is
2384 * available to do long double square roots.
2385 */
2386#define HAS_SQRTL /**/
2387
2388/* HAS_SRAND48_R:
2389 * This symbol, if defined, indicates that the srand48_r routine
2390 * is available to srand48 re-entrantly.
2391 */
2392/* SRAND48_R_PROTO:
2393 * This symbol encodes the prototype of srand48_r.
2394 * It is zero if d_srand48_r is undef, and one of the
2395 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_srand48_r
2396 * is defined.
2397 */
2398/*#define HAS_SRAND48_R / **/
2399#define SRAND48_R_PROTO 0 /**/
2400
2401/* HAS_SRANDOM_R:
2402 * This symbol, if defined, indicates that the srandom_r routine
2403 * is available to srandom re-entrantly.
2404 */
2405/* SRANDOM_R_PROTO:
2406 * This symbol encodes the prototype of srandom_r.
2407 * It is zero if d_srandom_r is undef, and one of the
2408 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_srandom_r
2409 * is defined.
2410 */
2411/*#define HAS_SRANDOM_R / **/
2412#define SRANDOM_R_PROTO 0 /**/
2413
88fdc172
SB
2414/* USE_STAT_BLOCKS:
2415 * This symbol is defined if this system has a stat structure declaring
2416 * st_blksize and st_blocks.
758a5d79 2417 */
88fdc172
SB
2418#ifndef USE_STAT_BLOCKS
2419#define USE_STAT_BLOCKS /**/
2420#endif
758a5d79 2421
fd550ca5
MB
2422/* HAS_STRUCT_STATFS_F_FLAGS:
2423 * This symbol, if defined, indicates that the struct statfs
2424 * does have the f_flags member containing the mount flags of
2425 * the filesystem containing the file.
2426 * This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3),
2427 * not from <sys/statfs.h> (SYSV). Older BSDs (like Ultrix) do not
2428 * have statfs() and struct statfs, they have ustat() and getmnt()
2429 * with struct ustat and struct fs_data.
a3540c92 2430 */
fd550ca5 2431/*#define HAS_STRUCT_STATFS_F_FLAGS / **/
a3540c92 2432
fd550ca5
MB
2433/* HAS_STRUCT_STATFS:
2434 * This symbol, if defined, indicates that the struct statfs
2435 * to do statfs() is supported.
ff935051 2436 */
fd550ca5
MB
2437#define HAS_STRUCT_STATFS /**/
2438
2439/* HAS_FSTATVFS:
2440 * This symbol, if defined, indicates that the fstatvfs routine is
2441 * available to stat filesystems by file descriptors.
2442 */
2443#define HAS_FSTATVFS /**/
2444
2445/* USE_STDIO_PTR:
2446 * This symbol is defined if the _ptr and _cnt fields (or similar)
2447 * of the stdio FILE structure can be used to access the stdio buffer
2448 * for a file handle. If this is defined, then the FILE_ptr(fp)
2449 * and FILE_cnt(fp) macros will also be defined and should be used
2450 * to access these fields.
2451 */
2452/* FILE_ptr:
2453 * This macro is used to access the _ptr field (or equivalent) of the
2454 * FILE structure pointed to by its argument. This macro will always be
2455 * defined if USE_STDIO_PTR is defined.
2456 */
2457/* STDIO_PTR_LVALUE:
2458 * This symbol is defined if the FILE_ptr macro can be used as an
2459 * lvalue.
2460 */
2461/* FILE_cnt:
2462 * This macro is used to access the _cnt field (or equivalent) of the
2463 * FILE structure pointed to by its argument. This macro will always be
2464 * defined if USE_STDIO_PTR is defined.
2465 */
2466/* STDIO_CNT_LVALUE:
2467 * This symbol is defined if the FILE_cnt macro can be used as an
2468 * lvalue.
2469 */
2470/* STDIO_PTR_LVAL_SETS_CNT:
2471 * This symbol is defined if using the FILE_ptr macro as an lvalue
2472 * to increase the pointer by n has the side effect of decreasing the
2473 * value of File_cnt(fp) by n.
2474 */
2475/* STDIO_PTR_LVAL_NOCHANGE_CNT:
2476 * This symbol is defined if using the FILE_ptr macro as an lvalue
2477 * to increase the pointer by n leaves File_cnt(fp) unchanged.
2478 */
2479/*#define USE_STDIO_PTR / **/
2480#ifdef USE_STDIO_PTR
2481#define FILE_ptr(fp) ((fp)->_IO_read_ptr)
2482/*#define STDIO_PTR_LVALUE / **/
2483#define FILE_cnt(fp) ((fp)->_IO_read_end - (fp)->_IO_read_ptr)
2484/*#define STDIO_CNT_LVALUE / **/
2485/*#define STDIO_PTR_LVAL_SETS_CNT / **/
2486/*#define STDIO_PTR_LVAL_NOCHANGE_CNT / **/
2487#endif
2488
2489/* USE_STDIO_BASE:
2490 * This symbol is defined if the _base field (or similar) of the
2491 * stdio FILE structure can be used to access the stdio buffer for
2492 * a file handle. If this is defined, then the FILE_base(fp) macro
2493 * will also be defined and should be used to access this field.
2494 * Also, the FILE_bufsiz(fp) macro will be defined and should be used
2495 * to determine the number of bytes in the buffer. USE_STDIO_BASE
2496 * will never be defined unless USE_STDIO_PTR is.
2497 */
2498/* FILE_base:
2499 * This macro is used to access the _base field (or equivalent) of the
2500 * FILE structure pointed to by its argument. This macro will always be
2501 * defined if USE_STDIO_BASE is defined.
2502 */
2503/* FILE_bufsiz:
2504 * This macro is used to determine the number of bytes in the I/O
2505 * buffer pointed to by _base field (or equivalent) of the FILE
2506 * structure pointed to its argument. This macro will always be defined
2507 * if USE_STDIO_BASE is defined.
2508 */
2509/*#define USE_STDIO_BASE / **/
2510#ifdef USE_STDIO_BASE
2511#define FILE_base(fp) ((fp)->_IO_read_base)
2512#define FILE_bufsiz(fp) ((fp)->_IO_read_end - (fp)->_IO_read_base)
2513#endif
2514
2515/* HAS_STRERROR:
2516 * This symbol, if defined, indicates that the strerror routine is
2517 * available to translate error numbers to strings. See the writeup
2518 * of Strerror() in this file before you try to define your own.
2519 */
2520/* HAS_SYS_ERRLIST:
2521 * This symbol, if defined, indicates that the sys_errlist array is
2522 * available to translate error numbers to strings. The extern int
2523 * sys_nerr gives the size of that table.
2524 */
2525/* Strerror:
2526 * This preprocessor symbol is defined as a macro if strerror() is
2527 * not available to translate error numbers to strings but sys_errlist[]
2528 * array is there.
2529 */
2530#define HAS_STRERROR /**/
2531#define HAS_SYS_ERRLIST /**/
2532#define Strerror(e) strerror(e)
2533
2534/* HAS_STRERROR_R:
2535 * This symbol, if defined, indicates that the strerror_r routine
2536 * is available to strerror re-entrantly.
2537 */
2538/* STRERROR_R_PROTO:
2539 * This symbol encodes the prototype of strerror_r.
2540 * It is zero if d_strerror_r is undef, and one of the
2541 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_strerror_r
2542 * is defined.
2543 */
2544/*#define HAS_STRERROR_R / **/
2545#define STRERROR_R_PROTO 0 /**/
2546
2547/* HAS_STRTOLD:
2548 * This symbol, if defined, indicates that the strtold routine is
2549 * available to convert strings to long doubles.
2550 */
2551#define HAS_STRTOLD /**/
2552
2553/* HAS_STRTOLL:
2554 * This symbol, if defined, indicates that the strtoll routine is
2555 * available to convert strings to long longs.
2556 */
2557#define HAS_STRTOLL /**/
2558
2559/* HAS_STRTOQ:
2560 * This symbol, if defined, indicates that the strtoq routine is
2561 * available to convert strings to long longs (quads).
2562 */
2563#define HAS_STRTOQ /**/
2564
2565/* HAS_STRTOUL:
2566 * This symbol, if defined, indicates that the strtoul routine is
2567 * available to provide conversion of strings to unsigned long.
2568 */
2569#define HAS_STRTOUL /**/
2570
2571/* HAS_STRTOULL:
2572 * This symbol, if defined, indicates that the strtoull routine is
2573 * available to convert strings to unsigned long longs.
2574 */
2575#define HAS_STRTOULL /**/
2576
2577/* HAS_STRTOUQ:
2578 * This symbol, if defined, indicates that the strtouq routine is
2579 * available to convert strings to unsigned long longs (quads).
2580 */
2581#define HAS_STRTOUQ /**/
2582
2583/* HAS_TELLDIR_PROTO:
2584 * This symbol, if defined, indicates that the system provides
2585 * a prototype for the telldir() function. Otherwise, it is up
2586 * to the program to supply one. A good guess is
2587 * extern long telldir(DIR*);
2588 */
2589#define HAS_TELLDIR_PROTO /**/
2590
2591/* HAS_TIME:
2592 * This symbol, if defined, indicates that the time() routine exists.
2593 */
2594/* Time_t:
2595 * This symbol holds the type returned by time(). It can be long,
2596 * or time_t on BSD sites (in which case <sys/types.h> should be
2597 * included).
2598 */
2599#define HAS_TIME /**/
2600#define Time_t time_t /* Time type */
2601
2602/* HAS_TIMES:
2603 * This symbol, if defined, indicates that the times() routine exists.
2604 * Note that this became obsolete on some systems (SUNOS), which now
2605 * use getrusage(). It may be necessary to include <sys/times.h>.
2606 */
2607#define HAS_TIMES /**/
2608
2609/* HAS_TMPNAM_R:
2610 * This symbol, if defined, indicates that the tmpnam_r routine
2611 * is available to tmpnam re-entrantly.
2612 */
2613/* TMPNAM_R_PROTO:
2614 * This symbol encodes the prototype of tmpnam_r.
2615 * It is zero if d_tmpnam_r is undef, and one of the
2616 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_tmpnam_r
2617 * is defined.
2618 */
2619/*#define HAS_TMPNAM_R / **/
2620#define TMPNAM_R_PROTO 0 /**/
2621
2622/* HAS_UALARM:
2623 * This symbol, if defined, indicates that the ualarm routine is
2624 * available to do alarms with microsecond granularity.
2625 */
2626#define HAS_UALARM /**/
ff935051 2627
88fdc172
SB
2628/* HAS_UNION_SEMUN:
2629 * This symbol, if defined, indicates that the union semun is
2630 * defined by including <sys/sem.h>. If not, the user code
2631 * probably needs to define it as:
2632 * union semun {
2633 * int val;
2634 * struct semid_ds *buf;
2635 * unsigned short *array;
2636 * }
ff935051 2637 */
88fdc172
SB
2638/* USE_SEMCTL_SEMUN:
2639 * This symbol, if defined, indicates that union semun is
2640 * used for semctl IPC_STAT.
ff935051 2641 */
88fdc172
SB
2642/* USE_SEMCTL_SEMID_DS:
2643 * This symbol, if defined, indicates that struct semid_ds * is
2644 * used for semctl IPC_STAT.
2645 */
2646/*#define HAS_UNION_SEMUN / **/
2647#define USE_SEMCTL_SEMUN /**/
2648#define USE_SEMCTL_SEMID_DS /**/
c890dc6c 2649
fd550ca5
MB
2650/* HAS_UNORDERED:
2651 * This symbol, if defined, indicates that the unordered routine is
2652 * available to check whether two doubles are unordered
2653 * (effectively: whether either of them is NaN)
2654 */
2655/*#define HAS_UNORDERED / **/
2656
a1e6f3ef
RGS
2657/* HAS_UNSETENV:
2658 * This symbol, if defined, indicates that the unsetenv () routine is
2659 * available for use.
2660 */
2661#define HAS_UNSETENV /**/
2662
fd550ca5
MB
2663/* HAS_USTAT:
2664 * This symbol, if defined, indicates that the ustat system call is
2665 * available to query file system statistics by dev_t.
2666 */
2667#define HAS_USTAT /**/
2668
88fdc172
SB
2669/* HAS_VFORK:
2670 * This symbol, if defined, indicates that vfork() exists.
a7fea17f 2671 */
88fdc172 2672/*#define HAS_VFORK / **/
a7fea17f 2673
88fdc172
SB
2674/* Signal_t:
2675 * This symbol's value is either "void" or "int", corresponding to the
2676 * appropriate return type of a signal handler. Thus, you can declare
2677 * a signal handler using "Signal_t (*handler)()", and define the
2678 * handler using "Signal_t handler(sig)".
ff935051 2679 */
88fdc172 2680#define Signal_t void /* Signal handler's return type */
ff935051 2681
fd550ca5
MB
2682/* HAS_VPRINTF:
2683 * This symbol, if defined, indicates that the vprintf routine is available
2684 * to printf with a pointer to an argument list. If unavailable, you
2685 * may need to write your own, probably in terms of _doprnt().
4633a7c4 2686 */
fd550ca5
MB
2687/* USE_CHAR_VSPRINTF:
2688 * This symbol is defined if this system has vsprintf() returning type
2689 * (char*). The trend seems to be to declare it as "int vsprintf()". It
2690 * is up to the package author to declare vsprintf correctly based on the
2691 * symbol.
49dabb45 2692 */
fd550ca5
MB
2693#define HAS_VPRINTF /**/
2694#define USE_CHAR_VSPRINTF /**/
2695
2696/* HAS_WRITEV:
2697 * This symbol, if defined, indicates that the writev routine is
2698 * available to do scatter writes.
3813c136 2699 */
fd550ca5 2700#define HAS_WRITEV /**/
3813c136 2701
fd550ca5
MB
2702/* USE_DYNAMIC_LOADING:
2703 * This symbol, if defined, indicates that dynamic loading of
2704 * some sort is available.
52c7d5b6 2705 */
fd550ca5 2706#define USE_DYNAMIC_LOADING /**/
52c7d5b6 2707
fd550ca5
MB
2708/* DOUBLESIZE:
2709 * This symbol contains the size of a double, so that the C preprocessor
2710 * can make decisions based on it.
d103522a 2711 */
fd550ca5 2712#define DOUBLESIZE 8 /**/
d103522a 2713
fd550ca5
MB
2714/* EBCDIC:
2715 * This symbol, if defined, indicates that this system uses
2716 * EBCDIC encoding.
10bc17b6 2717 */
fd550ca5
MB
2718/*#define EBCDIC / **/
2719
2720/* FFLUSH_NULL:
2721 * This symbol, if defined, tells that fflush(NULL) does flush
2722 * all pending stdio output.
2723 */
2724/* FFLUSH_ALL:
2725 * This symbol, if defined, tells that to flush
2726 * all pending stdio output one must loop through all
2727 * the stdio file handles stored in an array and fflush them.
2728 * Note that if fflushNULL is defined, fflushall will not
2729 * even be probed for and will be left undefined.
2730 */
2731#define FFLUSH_NULL /**/
2732/*#define FFLUSH_ALL / **/
2733
2734/* Fpos_t:
2735 * This symbol holds the type used to declare file positions in libc.
2736 * It can be fpos_t, long, uint, etc... It may be necessary to include
2737 * <sys/types.h> to get any typedef'ed information.
2738 */
2739#define Fpos_t fpos_t /* File position type */
2740
2741/* Gid_t_f:
2742 * This symbol defines the format string used for printing a Gid_t.
2743 */
2744#define Gid_t_f "lu" /**/
2745
2746/* Gid_t_sign:
2747 * This symbol holds the signedess of a Gid_t.
2748 * 1 for unsigned, -1 for signed.
2749 */
2750#define Gid_t_sign 1 /* GID sign */
2751
2752/* Gid_t_size:
2753 * This symbol holds the size of a Gid_t in bytes.
2754 */
2755#define Gid_t_size 4 /* GID size */
2756
2757/* Gid_t:
2758 * This symbol holds the return type of getgid() and the type of
2759 * argument to setrgid() and related functions. Typically,
2760 * it is the type of group ids in the kernel. It can be int, ushort,
2761 * gid_t, etc... It may be necessary to include <sys/types.h> to get
2762 * any typedef'ed information.
2763 */
2764#define Gid_t gid_t /* Type for getgid(), etc... */
2765
2766/* Groups_t:
2767 * This symbol holds the type used for the second argument to
2768 * getgroups() and setgroups(). Usually, this is the same as
2769 * gidtype (gid_t) , but sometimes it isn't.
2770 * It can be int, ushort, gid_t, etc...
2771 * It may be necessary to include <sys/types.h> to get any
2772 * typedef'ed information. This is only required if you have
2773 * getgroups() or setgroups()..
2774 */
2775#if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
2776#define Groups_t gid_t /* Type for 2nd arg to [sg]etgroups() */
2777#endif
2778
2779/* DB_Prefix_t:
2780 * This symbol contains the type of the prefix structure element
2781 * in the <db.h> header file. In older versions of DB, it was
2782 * int, while in newer ones it is u_int32_t.
2783 */
2784/* DB_Hash_t:
2785 * This symbol contains the type of the prefix structure element
2786 * in the <db.h> header file. In older versions of DB, it was
2787 * int, while in newer ones it is size_t.
2788 */
2789/* DB_VERSION_MAJOR_CFG:
2790 * This symbol, if defined, defines the major version number of
2791 * Berkeley DB found in the <db.h> header when Perl was configured.
2792 */
2793/* DB_VERSION_MINOR_CFG:
2794 * This symbol, if defined, defines the minor version number of
2795 * Berkeley DB found in the <db.h> header when Perl was configured.
2796 * For DB version 1 this is always 0.
2797 */
2798/* DB_VERSION_PATCH_CFG:
2799 * This symbol, if defined, defines the patch version number of
2800 * Berkeley DB found in the <db.h> header when Perl was configured.
2801 * For DB version 1 this is always 0.
2802 */
2803#define DB_Hash_t u_int32_t /**/
2804#define DB_Prefix_t size_t /**/
3a021565
MB
2805#define DB_VERSION_MAJOR_CFG 4 /**/
2806#define DB_VERSION_MINOR_CFG 3 /**/
2807#define DB_VERSION_PATCH_CFG 27 /**/
fd550ca5
MB
2808
2809/* I_FP_CLASS:
2810 * This symbol, if defined, indicates that <fp_class.h> exists and
2811 * should be included.
2812 */
2813/*#define I_FP_CLASS / **/
2814
2815/* I_GRP:
2816 * This symbol, if defined, indicates to the C program that it should
2817 * include <grp.h>.
2818 */
2819/* GRPASSWD:
2820 * This symbol, if defined, indicates to the C program that struct group
2821 * in <grp.h> contains gr_passwd.
2822 */
2823#define I_GRP /**/
2824#define GRPASSWD /**/
2825
2826/* I_IEEEFP:
2827 * This symbol, if defined, indicates that <ieeefp.h> exists and
2828 * should be included.
2829 */
2830/*#define I_IEEEFP / **/
2831
2832/* I_INTTYPES:
2833 * This symbol, if defined, indicates to the C program that it should
2834 * include <inttypes.h>.
2835 */
2836#define I_INTTYPES /**/
2837
2838/* I_LIBUTIL:
2839 * This symbol, if defined, indicates that <libutil.h> exists and
2840 * should be included.
2841 */
2842/*#define I_LIBUTIL / **/
2843
2844/* I_MACH_CTHREADS:
2845 * This symbol, if defined, indicates to the C program that it should
2846 * include <mach/cthreads.h>.
2847 */
2848/*#define I_MACH_CTHREADS / **/
2849
2850/* I_MNTENT:
2851 * This symbol, if defined, indicates that <mntent.h> exists and
2852 * should be included.
2853 */
2854#define I_MNTENT /**/
2855
2856/* I_NETDB:
2857 * This symbol, if defined, indicates that <netdb.h> exists and
2858 * should be included.
2859 */
2860#define I_NETDB /**/
2861
2862/* I_NETINET_TCP:
2863 * This symbol, if defined, indicates to the C program that it should
2864 * include <netinet/tcp.h>.
2865 */
2866#define I_NETINET_TCP /**/
2867
2868/* I_POLL:
2869 * This symbol, if defined, indicates that <poll.h> exists and
2870 * should be included.
2871 */
2872#define I_POLL /**/
2873
2874/* I_PROT:
2875 * This symbol, if defined, indicates that <prot.h> exists and
2876 * should be included.
2877 */
2878/*#define I_PROT / **/
2879
2880/* I_PTHREAD:
2881 * This symbol, if defined, indicates to the C program that it should
2882 * include <pthread.h>.
2883 */
2884#define I_PTHREAD /**/
2885
2886/* I_PWD:
2887 * This symbol, if defined, indicates to the C program that it should
2888 * include <pwd.h>.
2889 */
2890/* PWQUOTA:
88fdc172
SB
2891 * This symbol, if defined, indicates to the C program that struct passwd
2892 * contains pw_quota.
10bc17b6 2893 */
88fdc172
SB
2894/* PWAGE:
2895 * This symbol, if defined, indicates to the C program that struct passwd
2896 * contains pw_age.
10bc17b6 2897 */
88fdc172
SB
2898/* PWCHANGE:
2899 * This symbol, if defined, indicates to the C program that struct passwd
2900 * contains pw_change.
10bc17b6 2901 */
88fdc172
SB
2902/* PWCLASS:
2903 * This symbol, if defined, indicates to the C program that struct passwd
2904 * contains pw_class.
2905 */
2906/* PWEXPIRE:
2907 * This symbol, if defined, indicates to the C program that struct passwd
2908 * contains pw_expire.
2909 */
2910/* PWCOMMENT:
2911 * This symbol, if defined, indicates to the C program that struct passwd
2912 * contains pw_comment.
2913 */
2914/* PWGECOS:
2915 * This symbol, if defined, indicates to the C program that struct passwd
2916 * contains pw_gecos.
2917 */
2918/* PWPASSWD:
2919 * This symbol, if defined, indicates to the C program that struct passwd
2920 * contains pw_passwd.
2921 */
2922#define I_PWD /**/
60a7d337 2923/*#define PWQUOTA / **/
88fdc172
SB
2924/*#define PWAGE / **/
2925/*#define PWCHANGE / **/
2926/*#define PWCLASS / **/
2927/*#define PWEXPIRE / **/
60a7d337 2928/*#define PWCOMMENT / **/
88fdc172
SB
2929#define PWGECOS /**/
2930#define PWPASSWD /**/
10bc17b6 2931
fd550ca5
MB
2932/* I_SHADOW:
2933 * This symbol, if defined, indicates that <shadow.h> exists and
88fdc172 2934 * should be included.
10bc17b6 2935 */
fd550ca5 2936#define I_SHADOW /**/
88fdc172 2937
fd550ca5
MB
2938/* I_SOCKS:
2939 * This symbol, if defined, indicates that <socks.h> exists and
2940 * should be included.
10bc17b6 2941 */
fd550ca5
MB
2942/*#define I_SOCKS / **/
2943
2944/* I_SUNMATH:
2945 * This symbol, if defined, indicates that <sunmath.h> exists and
2946 * should be included.
88fdc172 2947 */
fd550ca5 2948/*#define I_SUNMATH / **/
10bc17b6 2949
fd550ca5
MB
2950/* I_SYSLOG:
2951 * This symbol, if defined, indicates that <syslog.h> exists and
2952 * should be included.
dd64f1c3 2953 */
fd550ca5
MB
2954#define I_SYSLOG /**/
2955
2956/* I_SYSMODE:
2957 * This symbol, if defined, indicates that <sys/mode.h> exists and
2958 * should be included.
88fdc172 2959 */
fd550ca5 2960/*#define I_SYSMODE / **/
dd64f1c3 2961
fd550ca5
MB
2962/* I_SYS_MOUNT:
2963 * This symbol, if defined, indicates that <sys/mount.h> exists and
2964 * should be included.
774d564b 2965 */
fd550ca5 2966#define I_SYS_MOUNT /**/
774d564b 2967
fd550ca5
MB
2968/* I_SYS_STATFS:
2969 * This symbol, if defined, indicates that <sys/statfs.h> exists.
d103522a 2970 */
fd550ca5
MB
2971#define I_SYS_STATFS /**/
2972
2973/* I_SYS_STATVFS:
2974 * This symbol, if defined, indicates that <sys/statvfs.h> exists and
2975 * should be included.
88fdc172 2976 */
fd550ca5 2977#define I_SYS_STATVFS /**/
d103522a 2978
fd550ca5
MB
2979/* I_SYSUIO:
2980 * This symbol, if defined, indicates that <sys/uio.h> exists and
2981 * should be included.
d103522a 2982 */
fd550ca5 2983#define I_SYSUIO /**/
88fdc172 2984
fd550ca5
MB
2985/* I_SYSUTSNAME:
2986 * This symbol, if defined, indicates that <sys/utsname.h> exists and
2987 * should be included.
78691af5 2988 */
fd550ca5 2989#define I_SYSUTSNAME /**/
af4c28eb 2990
fd550ca5
MB
2991/* I_SYS_VFS:
2992 * This symbol, if defined, indicates that <sys/vfs.h> exists and
2993 * should be included.
ff935051 2994 */
fd550ca5 2995#define I_SYS_VFS /**/
ff935051 2996
fd550ca5
MB
2997/* I_TIME:
2998 * This symbol, if defined, indicates to the C program that it should
2999 * include <time.h>.
4e0554ec 3000 */
fd550ca5
MB
3001/* I_SYS_TIME:
3002 * This symbol, if defined, indicates to the C program that it should
3003 * include <sys/time.h>.
10bc17b6 3004 */
fd550ca5
MB
3005/* I_SYS_TIME_KERNEL:
3006 * This symbol, if defined, indicates to the C program that it should
3007 * include <sys/time.h> with KERNEL defined.
10bc17b6 3008 */
fd550ca5
MB
3009/* HAS_TM_TM_ZONE:
3010 * This symbol, if defined, indicates to the C program that
3011 * the struct tm has a tm_zone field.
ff935051 3012 */
fd550ca5
MB
3013/* HAS_TM_TM_GMTOFF:
3014 * This symbol, if defined, indicates to the C program that
3015 * the struct tm has a tm_gmtoff field.
ff935051 3016 */
fd550ca5
MB
3017#define I_TIME /**/
3018#define I_SYS_TIME /**/
3019/*#define I_SYS_TIME_KERNEL / **/
3020#define HAS_TM_TM_ZONE /**/
3021#define HAS_TM_TM_GMTOFF /**/
ff935051 3022
fd550ca5
MB
3023/* I_USTAT:
3024 * This symbol, if defined, indicates that <ustat.h> exists and
3025 * should be included.
693762b4 3026 */
fd550ca5 3027#define I_USTAT /**/
693762b4 3028
fd550ca5
MB
3029/* PERL_INC_VERSION_LIST:
3030 * This variable specifies the list of subdirectories in over
3031 * which perl.c:incpush() and lib/lib.pm will automatically
3032 * search when adding directories to @INC, in a format suitable
3033 * for a C initialization string. See the inc_version_list entry
3034 * in Porting/Glossary for more details.
5c567d7d 3035 */
3a021565 3036/*#define PERL_INC_VERSION_LIST 0 / **/
5c567d7d 3037
fd550ca5
MB
3038/* INSTALL_USR_BIN_PERL:
3039 * This symbol, if defined, indicates that Perl is to be installed
3040 * also as /usr/bin/perl.
693762b4 3041 */
fd550ca5 3042/*#define INSTALL_USR_BIN_PERL / **/
693762b4 3043
fd550ca5
MB
3044/* PERL_PRIfldbl:
3045 * This symbol, if defined, contains the string used by stdio to
3046 * format long doubles (format 'f') for output.
0c0643d0 3047 */
fd550ca5
MB
3048/* PERL_PRIgldbl:
3049 * This symbol, if defined, contains the string used by stdio to
3050 * format long doubles (format 'g') for output.
e5c9fcd0 3051 */
fd550ca5
MB
3052/* PERL_PRIeldbl:
3053 * This symbol, if defined, contains the string used by stdio to
3054 * format long doubles (format 'e') for output.
4d54317a 3055 */
fd550ca5
MB
3056/* PERL_SCNfldbl:
3057 * This symbol, if defined, contains the string used by stdio to
3058 * format long doubles (format 'f') for input.
a7fea17f 3059 */
fd550ca5
MB
3060#define PERL_PRIfldbl "Lf" /**/
3061#define PERL_PRIgldbl "Lg" /**/
3062#define PERL_PRIeldbl "Le" /**/
3063#define PERL_SCNfldbl "Lf" /**/
88fdc172 3064
fd550ca5
MB
3065/* Off_t:
3066 * This symbol holds the type used to declare offsets in the kernel.
3067 * It can be int, long, off_t, etc... It may be necessary to include
3068 * <sys/types.h> to get any typedef'ed information.
a7fea17f 3069 */
fd550ca5
MB
3070/* LSEEKSIZE:
3071 * This symbol holds the number of bytes used by the Off_t.
3072 */
3073/* Off_t_size:
3074 * This symbol holds the number of bytes used by the Off_t.
3075 */
3076#define Off_t off_t /* <offset> type */
3077#define LSEEKSIZE 8 /* <offset> size */
3078#define Off_t_size 8 /* <offset> size */
a7fea17f 3079
fd550ca5
MB
3080/* Free_t:
3081 * This variable contains the return type of free(). It is usually
3082 * void, but occasionally int.
693762b4 3083 */
fd550ca5
MB
3084/* Malloc_t:
3085 * This symbol is the type of pointer returned by malloc and realloc.
3086 */
3087#define Malloc_t void * /**/
3088#define Free_t void /**/
88fdc172 3089
fd550ca5
MB
3090/* PERL_MALLOC_WRAP:
3091 * This symbol, if defined, indicates that we'd like malloc wrap checks.
693762b4 3092 */
69df4abc 3093#define PERL_MALLOC_WRAP /**/
693762b4 3094
fd550ca5
MB
3095/* MYMALLOC:
3096 * This symbol, if defined, indicates that we're using our own malloc.
ff935051 3097 */
fd550ca5 3098/*#define MYMALLOC / **/
ff935051 3099
fd550ca5
MB
3100/* Mode_t:
3101 * This symbol holds the type used to declare file modes
3102 * for systems calls. It is usually mode_t, but may be
3103 * int or unsigned short. It may be necessary to include <sys/types.h>
3104 * to get any typedef'ed information.
3813c136 3105 */
fd550ca5 3106#define Mode_t mode_t /* file mode parameter for system calls */
3813c136 3107
fd550ca5
MB
3108/* VAL_O_NONBLOCK:
3109 * This symbol is to be used during open() or fcntl(F_SETFL) to turn on
3110 * non-blocking I/O for the file descriptor. Note that there is no way
3111 * back, i.e. you cannot turn it blocking again this way. If you wish to
3112 * alternatively switch between blocking and non-blocking, use the
3113 * ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
10bc17b6 3114 */
fd550ca5
MB
3115/* VAL_EAGAIN:
3116 * This symbol holds the errno error code set by read() when no data was
3117 * present on the non-blocking file descriptor.
10bc17b6 3118 */
fd550ca5
MB
3119/* RD_NODATA:
3120 * This symbol holds the return code from read() when no data is present
3121 * on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
3122 * not defined, then you can't distinguish between no data and EOF by
3123 * issuing a read(). You'll have to find another way to tell for sure!
10bc17b6 3124 */
fd550ca5
MB
3125/* EOF_NONBLOCK:
3126 * This symbol, if defined, indicates to the C program that a read() on
3127 * a non-blocking file descriptor will return 0 on EOF, and not the value
3128 * held in RD_NODATA (-1 usually, in that case!).
10bc17b6 3129 */
fd550ca5
MB
3130#define VAL_O_NONBLOCK O_NONBLOCK
3131#define VAL_EAGAIN EAGAIN
3132#define RD_NODATA -1
3133#define EOF_NONBLOCK
10bc17b6 3134
fd550ca5
MB
3135/* NEED_VA_COPY:
3136 * This symbol, if defined, indicates that the system stores
3137 * the variable argument list datatype, va_list, in a format
3138 * that cannot be copied by simple assignment, so that some
3139 * other means must be used when copying is required.
3140 * As such systems vary in their provision (or non-provision)
3141 * of copying mechanisms, handy.h defines a platform-
3142 * independent macro, Perl_va_copy(src, dst), to do the job.
10bc17b6 3143 */
fd550ca5 3144/*#define NEED_VA_COPY / **/
88fdc172 3145
fd550ca5
MB
3146/* Netdb_host_t:
3147 * This symbol holds the type used for the 1st argument
3148 * to gethostbyaddr().
10bc17b6 3149 */
fd550ca5
MB
3150/* Netdb_hlen_t:
3151 * This symbol holds the type used for the 2nd argument
3152 * to gethostbyaddr().
e5c9fcd0 3153 */
fd550ca5
MB
3154/* Netdb_name_t:
3155 * This symbol holds the type used for the argument to
3156 * gethostbyname().
ff935051 3157 */
fd550ca5
MB
3158/* Netdb_net_t:
3159 * This symbol holds the type used for the 1st argument to
3160 * getnetbyaddr().
ff935051 3161 */
fd550ca5
MB
3162#define Netdb_host_t const void * /**/
3163#define Netdb_hlen_t size_t /**/
3164#define Netdb_name_t const char * /**/
3165#define Netdb_net_t in_addr_t /**/
ff935051 3166
fd550ca5
MB
3167/* PERL_OTHERLIBDIRS:
3168 * This variable contains a colon-separated set of paths for the perl
3169 * binary to search for additional library files or modules.
3170 * These directories will be tacked to the end of @INC.
3171 * Perl will automatically search below each path for version-
3172 * and architecture-specific directories. See PERL_INC_VERSION_LIST
3173 * for more details.
10bc17b6 3174 */
fd550ca5 3175/*#define PERL_OTHERLIBDIRS " " / **/
88fdc172 3176
a1e6f3ef
RGS
3177/* HAS_QUAD:
3178 * This symbol, if defined, tells that there's a 64-bit integer type,
3179 * Quad_t, and its unsigned counterpar, Uquad_t. QUADKIND will be one
3180 * of QUAD_IS_INT, QUAD_IS_LONG, QUAD_IS_LONG_LONG, or QUAD_IS_INT64_T.
3181 */
3182#define HAS_QUAD /**/
3183#ifdef HAS_QUAD
3184# define Quad_t long long /**/
3185# define Uquad_t unsigned long long /**/
3186# define QUADKIND 3 /**/
3187# define QUAD_IS_INT 1
3188# define QUAD_IS_LONG 2
3189# define QUAD_IS_LONG_LONG 3
3190# define QUAD_IS_INT64_T 4
3191#endif
3192
fd550ca5
MB
3193/* IVTYPE:
3194 * This symbol defines the C type used for Perl's IV.
10bc17b6 3195 */
fd550ca5
MB
3196/* UVTYPE:
3197 * This symbol defines the C type used for Perl's UV.
693762b4 3198 */
fd550ca5
MB
3199/* I8TYPE:
3200 * This symbol defines the C type used for Perl's I8.
693762b4 3201 */
fd550ca5
MB
3202/* U8TYPE:
3203 * This symbol defines the C type used for Perl's U8.
10bc17b6 3204 */
fd550ca5
MB
3205/* I16TYPE:
3206 * This symbol defines the C type used for Perl's I16.
10bc17b6 3207 */
fd550ca5
MB
3208/* U16TYPE:
3209 * This symbol defines the C type used for Perl's U16.
ff935051 3210 */
fd550ca5
MB
3211/* I32TYPE:
3212 * This symbol defines the C type used for Perl's I32.
88fdc172 3213 */
fd550ca5
MB
3214/* U32TYPE:
3215 * This symbol defines the C type used for Perl's U32.
ff935051 3216 */
fd550ca5
MB
3217/* I64TYPE:
3218 * This symbol defines the C type used for Perl's I64.
5c567d7d 3219 */
fd550ca5
MB
3220/* U64TYPE:
3221 * This symbol defines the C type used for Perl's U64.
fe749a9f 3222 */
fd550ca5
MB
3223/* NVTYPE:
3224 * This symbol defines the C type used for Perl's NV.
758a5d79 3225 */
fd550ca5
MB
3226/* IVSIZE:
3227 * This symbol contains the sizeof(IV).
758a5d79 3228 */
fd550ca5
MB
3229/* UVSIZE:
3230 * This symbol contains the sizeof(UV).
a3540c92 3231 */
fd550ca5
MB
3232/* I8SIZE:
3233 * This symbol contains the sizeof(I8).
ff935051 3234 */
fd550ca5
MB
3235/* U8SIZE:
3236 * This symbol contains the sizeof(U8).
792d8dab 3237 */
fd550ca5
MB
3238/* I16SIZE:
3239 * This symbol contains the sizeof(I16).
fe749a9f 3240 */
fd550ca5
MB
3241/* U16SIZE:
3242 * This symbol contains the sizeof(U16).
fe749a9f 3243 */
fd550ca5
MB
3244/* I32SIZE:
3245 * This symbol contains the sizeof(I32).
3813c136 3246 */
fd550ca5
MB
3247/* U32SIZE:
3248 * This symbol contains the sizeof(U32).
44b94491 3249 */
fd550ca5
MB
3250/* I64SIZE:
3251 * This symbol contains the sizeof(I64).
e67aeab1 3252 */
fd550ca5
MB
3253/* U64SIZE:
3254 * This symbol contains the sizeof(U64).
fe749a9f 3255 */
fd550ca5
MB
3256/* NVSIZE:
3257 * This symbol contains the sizeof(NV).
ff935051 3258 */
fd550ca5
MB
3259/* NV_PRESERVES_UV:
3260 * This symbol, if defined, indicates that a variable of type NVTYPE
3261 * can preserve all the bits of a variable of type UVTYPE.
10bc17b6 3262 */
fd550ca5
MB
3263/* NV_PRESERVES_UV_BITS:
3264 * This symbol contains the number of bits a variable of type NVTYPE
3265 * can preserve of a variable of type UVTYPE.
10bc17b6 3266 */
a1e6f3ef
RGS
3267/* NV_ZERO_IS_ALLBITS_ZERO:
3268 * This symbol, if defined, indicates that a variable of type NVTYPE
3269 * stores 0.0 in memory as all bits zero.
3270 */
fd550ca5
MB
3271#define IVTYPE long /**/
3272#define UVTYPE unsigned long /**/
3273#define I8TYPE char /**/
3274#define U8TYPE unsigned char /**/
3275#define I16TYPE short /**/
3276#define U16TYPE unsigned short /**/
3277#define I32TYPE long /**/
3278#define U32TYPE unsigned long /**/
3279#ifdef HAS_QUAD
3280#define I64TYPE long long /**/
3281#define U64TYPE unsigned long long /**/
3282#endif
3283#define NVTYPE double /**/
3284#define IVSIZE 4 /**/
3285#define UVSIZE 4 /**/
3286#define I8SIZE 1 /**/
3287#define U8SIZE 1 /**/
3288#define I16SIZE 2 /**/
3289#define U16SIZE 2 /**/
3290#define I32SIZE 4 /**/
3291#define U32SIZE 4 /**/
3292#ifdef HAS_QUAD
3293#define I64SIZE 8 /**/
3294#define U64SIZE 8 /**/
3295#endif
3296#define NVSIZE 8 /**/
3297#define NV_PRESERVES_UV
3298#define NV_PRESERVES_UV_BITS 32
a1e6f3ef 3299#define NV_ZERO_IS_ALLBITS_ZERO
fd550ca5
MB
3300#if UVSIZE == 8
3301# ifdef BYTEORDER
3302# if BYTEORDER == 0x1234
3303# undef BYTEORDER
3304# define BYTEORDER 0x12345678
3305# else
3306# if BYTEORDER == 0x4321
3307# undef BYTEORDER
3308# define BYTEORDER 0x87654321
3309# endif
3310# endif
3311# endif
3312#endif
10bc17b6 3313
fd550ca5
MB
3314/* IVdf:
3315 * This symbol defines the format string used for printing a Perl IV
3316 * as a signed decimal integer.
10bc17b6 3317 */
fd550ca5
MB
3318/* UVuf:
3319 * This symbol defines the format string used for printing a Perl UV
3320 * as an unsigned decimal integer.
10bc17b6 3321 */
fd550ca5
MB
3322/* UVof:
3323 * This symbol defines the format string used for printing a Perl UV
3324 * as an unsigned octal integer.
505656d3 3325 */
fd550ca5
MB
3326/* UVxf:
3327 * This symbol defines the format string used for printing a Perl UV
3328 * as an unsigned hexadecimal integer in lowercase abcdef.
4e0554ec 3329 */
fd550ca5
MB
3330/* UVXf:
3331 * This symbol defines the format string used for printing a Perl UV
3332 * as an unsigned hexadecimal integer in uppercase ABCDEF.
4e0554ec 3333 */
fd550ca5
MB
3334/* NVef:
3335 * This symbol defines the format string used for printing a Perl NV
3336 * using %e-ish floating point format.
a7fea17f 3337 */
fd550ca5
MB
3338/* NVff:
3339 * This symbol defines the format string used for printing a Perl NV
3340 * using %f-ish floating point format.
5c567d7d 3341 */
fd550ca5
MB
3342/* NVgf:
3343 * This symbol defines the format string used for printing a Perl NV
3344 * using %g-ish floating point format.
4e0554ec 3345 */
fd550ca5
MB
3346#define IVdf "ld" /**/
3347#define UVuf "lu" /**/
3348#define UVof "lo" /**/
3349#define UVxf "lx" /**/
3350#define UVXf "lX" /**/
3351#define NVef "e" /**/
3352#define NVff "f" /**/
3353#define NVgf "g" /**/
4e0554ec 3354
fd550ca5
MB
3355/* Pid_t:
3356 * This symbol holds the type used to declare process ids in the kernel.
3357 * It can be int, uint, pid_t, etc... It may be necessary to include
3358 * <sys/types.h> to get any typedef'ed information.
4e0554ec 3359 */
fd550ca5 3360#define Pid_t pid_t /* PID type */
4e0554ec 3361
fd550ca5
MB
3362/* PRIVLIB:
3363 * This symbol contains the name of the private library for this package.
3364 * The library is private in the sense that it needn't be in anyone's
3365 * execution path, but it should be accessible by the world. The program
3366 * should be prepared to do ~ expansion.
af960fef 3367 */
fd550ca5
MB
3368/* PRIVLIB_EXP:
3369 * This symbol contains the ~name expanded version of PRIVLIB, to be used
3370 * in programs that are not prepared to deal with ~ expansion at run-time.
bfb7748a 3371 */
a1e6f3ef
RGS
3372#define PRIVLIB "/opt/perl/lib/5.9.4" /**/
3373#define PRIVLIB_EXP "/opt/perl/lib/5.9.4" /**/
9003a523 3374
fd550ca5
MB
3375/* PTRSIZE:
3376 * This symbol contains the size of a pointer, so that the C preprocessor
3377 * can make decisions based on it. It will be sizeof(void *) if
3378 * the compiler supports (void *); otherwise it will be
3379 * sizeof(char *).
ff935051 3380 */
fd550ca5 3381#define PTRSIZE 4 /**/
fbfd4aab 3382
fd550ca5
MB
3383/* Drand01:
3384 * This macro is to be used to generate uniformly distributed
3385 * random numbers over the range [0., 1.[. You may have to supply
3386 * an 'extern double drand48();' in your program since SunOS 4.1.3
3387 * doesn't provide you with anything relevant in its headers.
3388 * See HAS_DRAND48_PROTO.
6b356c8e 3389 */
fd550ca5
MB
3390/* Rand_seed_t:
3391 * This symbol defines the type of the argument of the
3392 * random seed function.
dfe9444c 3393 */
fd550ca5
MB
3394/* seedDrand01:
3395 * This symbol defines the macro to be used in seeding the
3396 * random number generator (see Drand01).
10bc17b6 3397 */
fd550ca5
MB
3398/* RANDBITS:
3399 * This symbol indicates how many bits are produced by the
3400 * function used to generate normalized random numbers.
3401 * Values include 15, 16, 31, and 48.
86959918 3402 */
fd550ca5
MB
3403#define Drand01() drand48() /**/
3404#define Rand_seed_t long /**/
3405#define seedDrand01(x) srand48((Rand_seed_t)x) /**/
3406#define RANDBITS 48 /**/
86959918 3407
fd550ca5
MB
3408/* SELECT_MIN_BITS:
3409 * This symbol holds the minimum number of bits operated by select.
3410 * That is, if you do select(n, ...), how many bits at least will be
3411 * cleared in the masks if some activity is detected. Usually this
3412 * is either n or 32*ceil(n/32), especially many little-endians do
3413 * the latter. This is only useful if you have select(), naturally.
ad27e871 3414 */
fd550ca5 3415#define SELECT_MIN_BITS 32 /**/
ad27e871 3416
fd550ca5
MB
3417/* Select_fd_set_t:
3418 * This symbol holds the type used for the 2nd, 3rd, and 4th
3419 * arguments to select. Usually, this is 'fd_set *', if HAS_FD_SET
3420 * is defined, and 'int *' otherwise. This is only useful if you
3421 * have select(), of course.
327c3667 3422 */
fd550ca5 3423#define Select_fd_set_t fd_set * /**/
327c3667 3424
fd550ca5
MB
3425/* SIG_NAME:
3426 * This symbol contains a list of signal names in order of
3427 * signal number. This is intended
3428 * to be used as a static array initialization, like this:
3429 * char *sig_name[] = { SIG_NAME };
3430 * The signals in the list are separated with commas, and each signal
3431 * is surrounded by double quotes. There is no leading SIG in the signal
3432 * name, i.e. SIGQUIT is known as "QUIT".
3433 * Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
3434 * etc., where nn is the actual signal number (e.g. NUM37).
3435 * The signal number for sig_name[i] is stored in sig_num[i].
3436 * The last element is 0 to terminate the list with a NULL. This
3437 * corresponds to the 0 at the end of the sig_name_init list.
3438 * Note that this variable is initialized from the sig_name_init,
3439 * not from sig_name (which is unused).
0545a864 3440 */
fd550ca5
MB
3441/* SIG_NUM:
3442 * This symbol contains a list of signal numbers, in the same order as the
3443 * SIG_NAME list. It is suitable for static array initialization, as in:
3444 * int sig_num[] = { SIG_NUM };
3445 * The signals in the list are separated with commas, and the indices
3446 * within that list and the SIG_NAME list match, so it's easy to compute
3447 * the signal name from a number or vice versa at the price of a small
3448 * dynamic linear lookup.
3449 * Duplicates are allowed, but are moved to the end of the list.
3450 * The signal number corresponding to sig_name[i] is sig_number[i].
3451 * if (i < NSIG) then sig_number[i] == i.
3452 * The last element is 0, corresponding to the 0 at the end of
3453 * the sig_name_init list.
3454 * Note that this variable is initialized from the sig_num_init,
3455 * not from sig_num (which is unused).
10bc17b6 3456 */
fd550ca5
MB
3457/* SIG_SIZE:
3458 * This variable contains the number of elements of the SIG_NAME
3459 * and SIG_NUM arrays, excluding the final NULL entry.
54b118e4 3460 */
69df4abc 3461#define SIG_NAME "ZERO", "HUP", "INT", "QUIT", "ILL", "TRAP", "ABRT", "BUS", "FPE", "KILL", "USR1", "SEGV", "USR2", "PIPE", "ALRM", "TERM", "STKFLT", "CHLD", "CONT", "STOP", "TSTP", "TTIN", "TTOU", "URG", "XCPU", "XFSZ", "VTALRM", "PROF", "WINCH", "IO", "PWR", "SYS", "NUM32", "NUM33", "RTMIN", "NUM35", "NUM36", "NUM37", "NUM38", "NUM39", "NUM40", "NUM41", "NUM42", "NUM43", "NUM44", "NUM45", "NUM46", "NUM47", "NUM48", "NUM49", "NUM50", "NUM51", "NUM52", "NUM53", "NUM54", "NUM55", "NUM56", "NUM57", "NUM58", "NUM59", "NUM60", "NUM61", "NUM62", "NUM63", "RTMAX", "IOT", "CLD", "POLL", "UNUSED", 0 /**/
fd550ca5
MB
3462#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, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 6, 17, 29, 31, 0 /**/
3463#define SIG_SIZE 69 /**/
54b118e4 3464
fd550ca5
MB
3465/* SITEARCH:
3466 * This symbol contains the name of the private library for this package.
3467 * The library is private in the sense that it needn't be in anyone's
3468 * execution path, but it should be accessible by the world. The program
3469 * should be prepared to do ~ expansion.
3470 * The standard distribution will put nothing in this directory.
3471 * After perl has been installed, users may install their own local
3472 * architecture-dependent modules in this directory with
3473 * MakeMaker Makefile.PL
3474 * or equivalent. See INSTALL for details.
54b118e4 3475 */
fd550ca5
MB
3476/* SITEARCH_EXP:
3477 * This symbol contains the ~name expanded version of SITEARCH, to be used
3478 * in programs that are not prepared to deal with ~ expansion at run-time.
ff49bff8 3479 */
a1e6f3ef
RGS
3480#define SITEARCH "/opt/perl/lib/site_perl/5.9.4/i686-linux" /**/
3481#define SITEARCH_EXP "/opt/perl/lib/site_perl/5.9.4/i686-linux" /**/
ff49bff8 3482
fd550ca5
MB
3483/* SITELIB:
3484 * This symbol contains the name of the private library for this package.
3485 * The library is private in the sense that it needn't be in anyone's
3486 * execution path, but it should be accessible by the world. The program
3487 * should be prepared to do ~ expansion.
3488 * The standard distribution will put nothing in this directory.
3489 * After perl has been installed, users may install their own local
3490 * architecture-independent modules in this directory with
3491 * MakeMaker Makefile.PL
3492 * or equivalent. See INSTALL for details.
76d49b1c 3493 */
fd550ca5
MB
3494/* SITELIB_EXP:
3495 * This symbol contains the ~name expanded version of SITELIB, to be used
3496 * in programs that are not prepared to deal with ~ expansion at run-time.
3497 */
3498/* SITELIB_STEM:
3499 * This define is SITELIB_EXP with any trailing version-specific component
3500 * removed. The elements in inc_version_list (inc_version_list.U) can
3501 * be tacked onto this variable to generate a list of directories to search.
3502 */
a1e6f3ef
RGS
3503#define SITELIB "/opt/perl/lib/site_perl/5.9.4" /**/
3504#define SITELIB_EXP "/opt/perl/lib/site_perl/5.9.4" /**/
fd550ca5 3505#define SITELIB_STEM "/opt/perl/lib/site_perl" /**/
76d49b1c 3506
fd550ca5
MB
3507/* Size_t_size:
3508 * This symbol holds the size of a Size_t in bytes.
d0e6d399 3509 */
fd550ca5 3510#define Size_t_size 4 /* */
d0e6d399 3511
fd550ca5
MB
3512/* Size_t:
3513 * This symbol holds the type used to declare length parameters
3514 * for string functions. It is usually size_t, but may be
3515 * unsigned long, int, etc. It may be necessary to include
3516 * <sys/types.h> to get any typedef'ed information.
ad27e871 3517 */
fd550ca5 3518#define Size_t size_t /* length paramater for string functions */
ad27e871 3519
fd550ca5
MB
3520/* Sock_size_t:
3521 * This symbol holds the type used for the size argument of
3522 * various socket calls (just the base type, not the pointer-to).
ff49bff8 3523 */
fd550ca5 3524#define Sock_size_t socklen_t /**/
ff49bff8 3525
fd550ca5
MB
3526/* SSize_t:
3527 * This symbol holds the type used by functions that return
3528 * a count of bytes or an error condition. It must be a signed type.
3529 * It is usually ssize_t, but may be long or int, etc.
3530 * It may be necessary to include <sys/types.h> or <unistd.h>
3531 * to get any typedef'ed information.
3532 * We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
88fdc172 3533 */
fd550ca5 3534#define SSize_t ssize_t /* signed count of bytes */
88fdc172 3535
fd550ca5
MB
3536/* STARTPERL:
3537 * This variable contains the string to put in front of a perl
3538 * script to make sure (one hopes) that it runs with perl and not
3539 * some shell.
ff49bff8 3540 */
a1e6f3ef 3541#define STARTPERL "#!/opt/perl/bin/perl5.9.4" /**/
ff49bff8 3542
fd550ca5
MB
3543/* STDCHAR:
3544 * This symbol is defined to be the type of char used in stdio.h.
3545 * It has the values "unsigned char" or "char".
10bc17b6 3546 */
fd550ca5 3547#define STDCHAR char /**/
10bc17b6 3548
fd550ca5
MB
3549/* HAS_STDIO_STREAM_ARRAY:
3550 * This symbol, if defined, tells that there is an array
3551 * holding the stdio streams.
4e0554ec 3552 */
fd550ca5
MB
3553/* STDIO_STREAM_ARRAY:
3554 * This symbol tells the name of the array holding the stdio streams.
3555 * Usual values include _iob, __iob, and __sF.
3556 */
3557/*#define HAS_STDIO_STREAM_ARRAY / **/
3558#define STDIO_STREAM_ARRAY
4e0554ec 3559
fd550ca5
MB
3560/* Uid_t_f:
3561 * This symbol defines the format string used for printing a Uid_t.
758a5d79 3562 */
fd550ca5 3563#define Uid_t_f "lu" /**/
758a5d79 3564
fd550ca5
MB
3565/* Uid_t_sign:
3566 * This symbol holds the signedess of a Uid_t.
3567 * 1 for unsigned, -1 for signed.
ff935051 3568 */
fd550ca5 3569#define Uid_t_sign 1 /* UID sign */
ff935051 3570
fd550ca5
MB
3571/* Uid_t_size:
3572 * This symbol holds the size of a Uid_t in bytes.
4e0554ec 3573 */
fd550ca5 3574#define Uid_t_size 4 /* UID size */
4e0554ec 3575
fd550ca5
MB
3576/* Uid_t:
3577 * This symbol holds the type used to declare user ids in the kernel.
3578 * It can be int, ushort, uid_t, etc... It may be necessary to include
3579 * <sys/types.h> to get any typedef'ed information.
dfe9444c 3580 */
fd550ca5 3581#define Uid_t uid_t /* UID type */
dfe9444c 3582
fd550ca5
MB
3583/* USE_64_BIT_INT:
3584 * This symbol, if defined, indicates that 64-bit integers should
3585 * be used when available. If not defined, the native integers
3586 * will be employed (be they 32 or 64 bits). The minimal possible
3587 * 64-bitness is used, just enough to get 64-bit integers into Perl.
3588 * This may mean using for example "long longs", while your memory
3589 * may still be limited to 2 gigabytes.
a71cd7cd 3590 */
fd550ca5
MB
3591/* USE_64_BIT_ALL:
3592 * This symbol, if defined, indicates that 64-bit integers should
3593 * be used when available. If not defined, the native integers
3594 * will be used (be they 32 or 64 bits). The maximal possible
3595 * 64-bitness is employed: LP64 or ILP64, meaning that you will
3596 * be able to use more than 2 gigabytes of memory. This mode is
3597 * even more binary incompatible than USE_64_BIT_INT. You may not
3598 * be able to run the resulting executable in a 32-bit CPU at all or
3599 * you may need at least to reboot your OS to 64-bit mode.
a71cd7cd 3600 */
fd550ca5
MB
3601#ifndef USE_64_BIT_INT
3602/*#define USE_64_BIT_INT / **/
3603#endif
a71cd7cd 3604
fd550ca5
MB
3605#ifndef USE_64_BIT_ALL
3606/*#define USE_64_BIT_ALL / **/
3607#endif
ff935051 3608
fd550ca5
MB
3609/* USE_LARGE_FILES:
3610 * This symbol, if defined, indicates that large file support
3611 * should be used when available.
eef837ea 3612 */
fd550ca5
MB
3613#ifndef USE_LARGE_FILES
3614#define USE_LARGE_FILES /**/
3615#endif
dfe9444c 3616
fd550ca5
MB
3617/* USE_LONG_DOUBLE:
3618 * This symbol, if defined, indicates that long doubles should
3619 * be used when available.
758a5d79 3620 */
fd550ca5
MB
3621#ifndef USE_LONG_DOUBLE
3622/*#define USE_LONG_DOUBLE / **/
3623#endif
758a5d79 3624
fd550ca5
MB
3625/* USE_MORE_BITS:
3626 * This symbol, if defined, indicates that 64-bit interfaces and
3627 * long doubles should be used when available.
ff935051 3628 */
fd550ca5
MB
3629#ifndef USE_MORE_BITS
3630/*#define USE_MORE_BITS / **/
3631#endif
ff935051 3632
fd550ca5
MB
3633/* MULTIPLICITY:
3634 * This symbol, if defined, indicates that Perl should
3635 * be built to use multiplicity.
52c7d5b6 3636 */
fd550ca5
MB
3637#ifndef MULTIPLICITY
3638/*#define MULTIPLICITY / **/
3639#endif
52c7d5b6 3640
fd550ca5
MB
3641/* USE_PERLIO:
3642 * This symbol, if defined, indicates that the PerlIO abstraction should
3643 * be used throughout. If not defined, stdio should be
3644 * used in a fully backward compatible manner.
327c3667 3645 */
fd550ca5
MB
3646#ifndef USE_PERLIO
3647#define USE_PERLIO /**/
3648#endif
ff935051 3649
fd550ca5
MB
3650/* USE_SOCKS:
3651 * This symbol, if defined, indicates that Perl should
3652 * be built to use socks.
88fdc172 3653 */
fd550ca5
MB
3654#ifndef USE_SOCKS
3655/*#define USE_SOCKS / **/
3656#endif
88fdc172 3657
fd550ca5
MB
3658/* USE_ITHREADS:
3659 * This symbol, if defined, indicates that Perl should be built to
3660 * use the interpreter-based threading implementation.
6b356c8e 3661 */
fd550ca5
MB
3662/* USE_5005THREADS:
3663 * This symbol, if defined, indicates that Perl should be built to
3664 * use the 5.005-based threading implementation.
ff49bff8 3665 */
fd550ca5
MB
3666/* OLD_PTHREADS_API:
3667 * This symbol, if defined, indicates that Perl should
3668 * be built to use the old draft POSIX threads API.
a71cd7cd 3669 */
fd550ca5
MB
3670/* USE_REENTRANT_API:
3671 * This symbol, if defined, indicates that Perl should
3672 * try to use the various _r versions of library functions.
3673 * This is extremely experimental.
ff935051 3674 */
fd550ca5
MB
3675/*#define USE_5005THREADS / **/
3676/*#define USE_ITHREADS / **/
3677#if defined(USE_5005THREADS) && !defined(USE_ITHREADS)
3678#define USE_THREADS /* until src is revised*/
3679#endif
3680/*#define OLD_PTHREADS_API / **/
3681/*#define USE_REENTRANT_API / **/
ff935051 3682
fd550ca5
MB
3683/* PERL_VENDORARCH:
3684 * If defined, this symbol contains the name of a private library.
3685 * The library is private in the sense that it needn't be in anyone's
3686 * execution path, but it should be accessible by the world.
3a021565 3687 * It may have a ~ on the front.
fd550ca5
MB
3688 * The standard distribution will put nothing in this directory.
3689 * Vendors who distribute perl may wish to place their own
3690 * architecture-dependent modules and extensions in this directory with
3a021565 3691 * MakeMaker Makefile.PL INSTALLDIRS=vendor
fd550ca5 3692 * or equivalent. See INSTALL for details.
3813c136 3693 */
fd550ca5
MB
3694/* PERL_VENDORARCH_EXP:
3695 * This symbol contains the ~name expanded version of PERL_VENDORARCH, to be used
3696 * in programs that are not prepared to deal with ~ expansion at run-time.
86959918 3697 */
fd550ca5
MB
3698/*#define PERL_VENDORARCH "" / **/
3699/*#define PERL_VENDORARCH_EXP "" / **/
86959918 3700
fd550ca5
MB
3701/* PERL_VENDORLIB_EXP:
3702 * This symbol contains the ~name expanded version of VENDORLIB, to be used
3703 * in programs that are not prepared to deal with ~ expansion at run-time.
86959918 3704 */
fd550ca5
MB
3705/* PERL_VENDORLIB_STEM:
3706 * This define is PERL_VENDORLIB_EXP with any trailing version-specific component
3707 * removed. The elements in inc_version_list (inc_version_list.U) can
3708 * be tacked onto this variable to generate a list of directories to search.
792d8dab 3709 */
fd550ca5
MB
3710/*#define PERL_VENDORLIB_EXP "" / **/
3711/*#define PERL_VENDORLIB_STEM "" / **/
792d8dab 3712
fd550ca5
MB
3713/* VOIDFLAGS:
3714 * This symbol indicates how much support of the void type is given by this
3715 * compiler. What various bits mean:
3716 *
3717 * 1 = supports declaration of void
3718 * 2 = supports arrays of pointers to functions returning void
3719 * 4 = supports comparisons between pointers to void functions and
3720 * addresses of void functions
3721 * 8 = suports declaration of generic void pointers
3722 *
3723 * The package designer should define VOIDUSED to indicate the requirements
3724 * of the package. This can be done either by #defining VOIDUSED before
3725 * including config.h, or by defining defvoidused in Myinit.U. If the
3726 * latter approach is taken, only those flags will be tested. If the
3727 * level of void support necessary is not present, defines void to int.
ca52efda 3728 */
fd550ca5
MB
3729#ifndef VOIDUSED
3730#define VOIDUSED 15
3731#endif
3732#define VOIDFLAGS 15
3733#if (VOIDFLAGS & VOIDUSED) != VOIDUSED
3734#define void int /* is void to be avoided? */
3735#define M_VOID /* Xenix strikes again */
3736#endif
0545a864 3737
a1e6f3ef
RGS
3738/* HASATTRIBUTE_FORMAT:
3739 * Can we handle GCC attribute for checking printf-style formats
ff49bff8 3740 */
a1e6f3ef
RGS
3741/* HASATTRIBUTE_MALLOC:
3742 * Can we handle GCC attribute for malloc-style functions.
3743 */
3744/* HASATTRIBUTE_NONNULL:
3745 * Can we handle GCC attribute for nonnull function parms.
3746 */
3747/* HASATTRIBUTE_NORETURN:
3748 * Can we handle GCC attribute for functions that do not return
3749 */
3750/* HASATTRIBUTE_PURE:
3751 * Can we handle GCC attribute for pure functions
3752 */
3753/* HASATTRIBUTE_UNUSED:
3754 * Can we handle GCC attribute for unused variables and arguments
3755 */
3756/* HASATTRIBUTE_WARN_UNUSED_RESULT:
3757 * Can we handle GCC attribute for warning on unused results
3758 */
3759#define HASATTRIBUTE_FORMAT /**/
3760#define HASATTRIBUTE_NORETURN /**/
3761#define HASATTRIBUTE_MALLOC /**/
3762#define HASATTRIBUTE_NONNULL /**/
3763#define HASATTRIBUTE_PURE /**/
3764#define HASATTRIBUTE_UNUSED /**/
3765#define HASATTRIBUTE_WARN_UNUSED_RESULT /**/
ff935051 3766
fd550ca5
MB
3767/* HAS_CRYPT:
3768 * This symbol, if defined, indicates that the crypt routine is available
3769 * to encrypt passwords and the like.
ff935051 3770 */
fd550ca5 3771#define HAS_CRYPT /**/
ff935051 3772
fd550ca5
MB
3773/* SETUID_SCRIPTS_ARE_SECURE_NOW:
3774 * This symbol, if defined, indicates that the bug that prevents
3775 * setuid scripts from being secure is not present in this kernel.
ff935051 3776 */
fd550ca5
MB
3777/* DOSUID:
3778 * This symbol, if defined, indicates that the C program should
3779 * check the script that it is executing for setuid/setgid bits, and
3780 * attempt to emulate setuid/setgid on systems that have disabled
3781 * setuid #! scripts because the kernel can't do it securely.
3782 * It is up to the package designer to make sure that this emulation
3783 * is done securely. Among other things, it should do an fstat on
3784 * the script it just opened to make sure it really is a setuid/setgid
3785 * script, it should make sure the arguments passed correspond exactly
3786 * to the argument on the #! line, and it should not trust any
3787 * subprocesses to which it must pass the filename rather than the
3788 * file descriptor of the script to be executed.
ff935051 3789 */
fd550ca5
MB
3790/*#define SETUID_SCRIPTS_ARE_SECURE_NOW / **/
3791/*#define DOSUID / **/
88fdc172 3792
fd550ca5
MB
3793/* Shmat_t:
3794 * This symbol holds the return type of the shmat() system call.
3795 * Usually set to 'void *' or 'char *'.
88fdc172 3796 */
fd550ca5
MB
3797/* HAS_SHMAT_PROTOTYPE:
3798 * This symbol, if defined, indicates that the sys/shm.h includes
3799 * a prototype for shmat(). Otherwise, it is up to the program to
3800 * guess one. Shmat_t shmat(int, Shmat_t, int) is a good guess,
3801 * but not always right so it should be emitted by the program only
3802 * when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
a7fea17f 3803 */
fd550ca5
MB
3804#define Shmat_t void * /**/
3805#define HAS_SHMAT_PROTOTYPE /**/
a7fea17f 3806
fd550ca5
MB
3807/* I_NDBM:
3808 * This symbol, if defined, indicates that <ndbm.h> exists and should
3809 * be included.
ff935051 3810 */
3a021565 3811/*#define I_NDBM / **/
ff935051 3812
fd550ca5
MB
3813/* I_STDARG:
3814 * This symbol, if defined, indicates that <stdarg.h> exists and should
3815 * be included.
88fdc172 3816 */
fd550ca5
MB
3817/* I_VARARGS:
3818 * This symbol, if defined, indicates to the C program that it should
3819 * include <varargs.h>.
88fdc172 3820 */
fd550ca5
MB
3821#define I_STDARG /**/
3822/*#define I_VARARGS / **/
52c7d5b6 3823
fd550ca5
MB
3824/* CAN_PROTOTYPE:
3825 * If defined, this macro indicates that the C compiler can handle
3826 * function prototypes.
ff935051 3827 */
fd550ca5
MB
3828/* _:
3829 * This macro is used to declare function parameters for folks who want
3830 * to make declarations with prototypes using a different style than
3831 * the above macros. Use double parentheses. For example:
3832 *
3833 * int main _((int argc, char *argv[]));
fbfd4aab 3834 */
fd550ca5
MB
3835#define CAN_PROTOTYPE /**/
3836#ifdef CAN_PROTOTYPE
3837#define _(args) args
3838#else
3839#define _(args) ()
3840#endif
327c3667 3841
fd550ca5
MB
3842/* SH_PATH:
3843 * This symbol contains the full pathname to the shell used on this
3844 * on this system to execute Bourne shell scripts. Usually, this will be
3845 * /bin/sh, though it's possible that some systems will have /bin/ksh,
3846 * /bin/pdksh, /bin/ash, /bin/bash, or even something such as
3847 * D:/bin/sh.exe.
a71cd7cd 3848 */
fd550ca5 3849#define SH_PATH "/bin/sh" /**/
8c09e4ca 3850
fd550ca5
MB
3851/* HAS_AINTL:
3852 * This symbol, if defined, indicates that the aintl routine is
3853 * available. If copysignl is also present we can emulate modfl.
3854 */
3855/*#define HAS_AINTL / **/
3856
3a021565
MB
3857/* HAS_BUILTIN_CHOOSE_EXPR:
3858 * Can we handle GCC builtin for compile-time ternary-like expressions
3859 */
3860/* HAS_BUILTIN_EXPECT:
3861 * Can we handle GCC builtin for telling that certain values are more
3862 * likely
3863 */
3864/*#define HAS_BUILTIN_EXPECT / **/
3865#define HAS_BUILTIN_CHOOSE_EXPR /**/
3866
a1e6f3ef
RGS
3867/* HAS_CLEARENV:
3868 * This symbol, if defined, indicates that the clearenv () routine is
3869 * available for use.
3870 */
3871#define HAS_CLEARENV /**/
3872
fd550ca5
MB
3873/* HAS_COPYSIGNL:
3874 * This symbol, if defined, indicates that the copysignl routine is
3875 * available. If aintl is also present we can emulate modfl.
3876 */
3877#define HAS_COPYSIGNL /**/
c890dc6c 3878
666ea192
JH
3879/* USE_CPLUSPLUS:
3880 * This symbol, if defined, indicates that a C++ compiler was
3881 * used to compiled Perl and will be used to compile extensions.
3882 */
3883/*#define USE_CPLUSPLUS /**/
3884
fd550ca5
MB
3885/* HAS_DBMINIT_PROTO:
3886 * This symbol, if defined, indicates that the system provides
3887 * a prototype for the dbminit() function. Otherwise, it is up
3888 * to the program to supply one. A good guess is
3889 * extern int dbminit(char *);
4d54317a 3890 */
fd550ca5 3891/*#define HAS_DBMINIT_PROTO / **/
4d54317a 3892
fd550ca5
MB
3893/* HAS_DIRFD:
3894 * This manifest constant lets the C program know that dirfd
3895 * is available.
1baac590 3896 */
fd550ca5 3897#define HAS_DIRFD /**/
1baac590 3898
fd550ca5
MB
3899/* HAS_FAST_STDIO:
3900 * This symbol, if defined, indicates that the "fast stdio"
3901 * is available to manipulate the stdio buffers directly.
ca24dfc6 3902 */
fd550ca5 3903/*#define HAS_FAST_STDIO / **/
0befd8de 3904
fd550ca5
MB
3905/* HAS_FLOCK_PROTO:
3906 * This symbol, if defined, indicates that the system provides
3907 * a prototype for the flock() function. Otherwise, it is up
3908 * to the program to supply one. A good guess is
3909 * extern int flock(int, int);
78691af5 3910 */
fd550ca5 3911#define HAS_FLOCK_PROTO /**/
ca24dfc6 3912
fd550ca5
MB
3913/* HAS_FPCLASSL:
3914 * This symbol, if defined, indicates that the fpclassl routine is
3915 * available to classify long doubles. Available for example in IRIX.
3916 * The returned values are defined in <ieeefp.h> and are:
3917 *
3918 * FP_SNAN signaling NaN
3919 * FP_QNAN quiet NaN
3920 * FP_NINF negative infinity
3921 * FP_PINF positive infinity
3922 * FP_NDENORM negative denormalized non-zero
3923 * FP_PDENORM positive denormalized non-zero
3924 * FP_NZERO negative zero
3925 * FP_PZERO positive zero
3926 * FP_NNORM negative normalized non-zero
3927 * FP_PNORM positive normalized non-zero
ff49bff8 3928 */
fd550ca5 3929/*#define HAS_FPCLASSL / **/
ff49bff8 3930
fd550ca5
MB
3931/* HAS_ILOGBL:
3932 * This symbol, if defined, indicates that the ilogbl routine is
3933 * available. If scalbnl is also present we can emulate frexpl.
ce4a058e 3934 */
fd550ca5 3935#define HAS_ILOGBL /**/
ce4a058e 3936
a1e6f3ef
RGS
3937/* LIBM_LIB_VERSION:
3938 * This symbol, if defined, indicates that libm exports _LIB_VERSION
3939 * and that math.h defines the enum to manipulate it.
3940 */
3941#define LIBM_LIB_VERSION /**/
3942
fd550ca5
MB
3943/* HAS_NL_LANGINFO:
3944 * This symbol, if defined, indicates that the nl_langinfo routine is
3945 * available to return local data. You will also need <langinfo.h>
3946 * and therefore I_LANGINFO.
88fdc172 3947 */
fd550ca5 3948#define HAS_NL_LANGINFO /**/
dc45a647 3949
fd550ca5
MB
3950/* HAS_PROCSELFEXE:
3951 * This symbol is defined if PROCSELFEXE_PATH is a symlink
3952 * to the absolute pathname of the executing program.
b99a9337 3953 */
fd550ca5
MB
3954/* PROCSELFEXE_PATH:
3955 * If HAS_PROCSELFEXE is defined this symbol is the filename
3956 * of the symbolic link pointing to the absolute pathname of
3957 * the executing program.
3958 */
3959#define HAS_PROCSELFEXE /**/
3960#if defined(HAS_PROCSELFEXE) && !defined(PROCSELFEXE_PATH)
3961#define PROCSELFEXE_PATH "/proc/self/exe" /**/
3962#endif
b99a9337 3963
fd550ca5
MB
3964/* HAS_PTHREAD_ATTR_SETSCOPE:
3965 * This symbol, if defined, indicates that the pthread_attr_setscope
3966 * system call is available to set the contention scope attribute of
3967 * a thread attribute object.
2765b840 3968 */
fd550ca5 3969#define HAS_PTHREAD_ATTR_SETSCOPE /**/
2765b840 3970
fd550ca5
MB
3971/* HAS_SCALBNL:
3972 * This symbol, if defined, indicates that the scalbnl routine is
3973 * available. If ilogbl is also present we can emulate frexpl.
428dc699 3974 */
fd550ca5 3975#define HAS_SCALBNL /**/
428dc699 3976
fd550ca5
MB
3977/* HAS_SIGPROCMASK:
3978 * This symbol, if defined, indicates that the sigprocmask
3979 * system call is available to examine or change the signal mask
3980 * of the calling process.
983dbef6 3981 */
fd550ca5 3982#define HAS_SIGPROCMASK /**/
983dbef6 3983
fd550ca5
MB
3984/* HAS_SOCKATMARK:
3985 * This symbol, if defined, indicates that the sockatmark routine is
3986 * available to test whether a socket is at the out-of-band mark.
49a78c82 3987 */
fd550ca5 3988#define HAS_SOCKATMARK /**/
49a78c82 3989
fd550ca5 3990/* HAS_SOCKATMARK_PROTO:
5af95cda 3991 * This symbol, if defined, indicates that the system provides
fd550ca5 3992 * a prototype for the sockatmark() function. Otherwise, it is up
5af95cda 3993 * to the program to supply one. A good guess is
fd550ca5 3994 * extern int sockatmark(int);
5af95cda 3995 */
fd550ca5 3996/*#define HAS_SOCKATMARK_PROTO / **/
5af95cda 3997
a1e6f3ef
RGS
3998/* SPRINTF_RETURNS_STRLEN:
3999 * This variable defines whether sprintf returns the length of the string
4000 * (as per the ANSI spec). Some C libraries retain compatibility with
4001 * pre-ANSI C and return a pointer to the passed in buffer; for these
4002 * this variable will be undef.
4003 */
4004#define SPRINTF_RETURNS_STRLEN /**/
4005
fd550ca5
MB
4006/* HAS_SETRESGID_PROTO:
4007 * This symbol, if defined, indicates that the system provides
4008 * a prototype for the setresgid() function. Otherwise, it is up
4009 * to the program to supply one. Good guesses are
4010 * extern int setresgid(uid_t ruid, uid_t euid, uid_t suid);
b3c85772 4011 */
fd550ca5
MB
4012/*#define HAS_SETRESGID_PROTO / **/
4013
4014/* HAS_SETRESUID_PROTO:
4015 * This symbol, if defined, indicates that the system provides
4016 * a prototype for the setresuid() function. Otherwise, it is up
4017 * to the program to supply one. Good guesses are
4018 * extern int setresuid(uid_t ruid, uid_t euid, uid_t suid);
5af95cda 4019 */
fd550ca5 4020/*#define HAS_SETRESUID_PROTO / **/
5af95cda 4021
fd550ca5
MB
4022/* HAS_STRFTIME:
4023 * This symbol, if defined, indicates that the strftime routine is
4024 * available to do time formatting.
4e0554ec 4025 */
fd550ca5 4026#define HAS_STRFTIME /**/
4e0554ec 4027
a1e6f3ef
RGS
4028/* HAS_STRLCAT:
4029 * This symbol, if defined, indicates that the strlcat () routine is
4030 * available to do string concatenation.
4031 */
4032/*#define HAS_STRLCAT / **/
4033
4034/* HAS_STRLCPY:
4035 * This symbol, if defined, indicates that the strlcpy () routine is
4036 * available to do string copying.
4037 */
4038/*#define HAS_STRLCPY / **/
4039
fd550ca5
MB
4040/* HAS_SYSCALL_PROTO:
4041 * This symbol, if defined, indicates that the system provides
4042 * a prototype for the syscall() function. Otherwise, it is up
4043 * to the program to supply one. Good guesses are
4044 * extern int syscall(int, ...);
4045 * extern int syscall(long, ...);
5af95cda 4046 */
fd550ca5 4047#define HAS_SYSCALL_PROTO /**/
5af95cda 4048
fd550ca5
MB
4049/* U32_ALIGNMENT_REQUIRED:
4050 * This symbol, if defined, indicates that you must access
4051 * character data through U32-aligned pointers.
10bc17b6 4052 */
fd550ca5
MB
4053#ifndef U32_ALIGNMENT_REQUIRED
4054/*#define U32_ALIGNMENT_REQUIRED / **/
4055#endif
10bc17b6 4056
fd550ca5
MB
4057/* HAS_USLEEP_PROTO:
4058 * This symbol, if defined, indicates that the system provides
4059 * a prototype for the usleep() function. Otherwise, it is up
4060 * to the program to supply one. A good guess is
4061 * extern int usleep(useconds_t);
88fdc172 4062 */
fd550ca5
MB
4063#define HAS_USLEEP_PROTO /**/
4064
4065/* I_CRYPT:
4066 * This symbol, if defined, indicates that <crypt.h> exists and
4067 * should be included.
758a5d79 4068 */
fd550ca5
MB
4069#define I_CRYPT /**/
4070
4071/* I_FP:
4072 * This symbol, if defined, indicates that <fp.h> exists and
4073 * should be included.
4074 */
4075/*#define I_FP / **/
758a5d79 4076
fd550ca5
MB
4077/* I_LANGINFO:
4078 * This symbol, if defined, indicates that <langinfo.h> exists and
4079 * should be included.
2765b840 4080 */
fd550ca5
MB
4081#define I_LANGINFO /**/
4082
3a021565
MB
4083/* PERL_MAD:
4084 * This symbol, if defined, indicates that the Misc Attribution
4085 * Declaration code should be conditionally compiled.
4086 */
4087/*#define PERL_MAD / **/
4088
fd550ca5
MB
4089/* USE_FAST_STDIO:
4090 * This symbol, if defined, indicates that Perl should
4091 * be built to use 'fast stdio'.
4092 * Defaults to define in Perls 5.8 and earlier, to undef later.
88fdc172 4093 */
fd550ca5
MB
4094#ifndef USE_FAST_STDIO
4095/*#define USE_FAST_STDIO / **/
4096#endif
2765b840 4097
10bc17b6
JH
4098/* HAS_CTERMID_R:
4099 * This symbol, if defined, indicates that the ctermid_r routine
4100 * is available to ctermid re-entrantly.
4101 */
4102/* CTERMID_R_PROTO:
4103 * This symbol encodes the prototype of ctermid_r.
39183afa
JH
4104 * It is zero if d_ctermid_r is undef, and one of the
4105 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctermid_r
4106 * is defined.
10bc17b6
JH
4107 */
4108/*#define HAS_CTERMID_R / **/
4109#define CTERMID_R_PROTO 0 /**/
4110
4111/* HAS_ENDHOSTENT_R:
4112 * This symbol, if defined, indicates that the endhostent_r routine
4113 * is available to endhostent re-entrantly.
4114 */
4115/* ENDHOSTENT_R_PROTO:
4116 * This symbol encodes the prototype of endhostent_r.
39183afa
JH
4117 * It is zero if d_endhostent_r is undef, and one of the
4118 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endhostent_r
4119 * is defined.
10bc17b6 4120 */
2f12987e
JH
4121/*#define HAS_ENDHOSTENT_R / **/
4122#define ENDHOSTENT_R_PROTO 0 /**/
10bc17b6
JH
4123
4124/* HAS_ENDNETENT_R:
4125 * This symbol, if defined, indicates that the endnetent_r routine
4126 * is available to endnetent re-entrantly.
4127 */
4128/* ENDNETENT_R_PROTO:
4129 * This symbol encodes the prototype of endnetent_r.
39183afa
JH
4130 * It is zero if d_endnetent_r is undef, and one of the
4131 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endnetent_r
4132 * is defined.
10bc17b6 4133 */
2f12987e
JH
4134/*#define HAS_ENDNETENT_R / **/
4135#define ENDNETENT_R_PROTO 0 /**/
10bc17b6
JH
4136
4137/* HAS_ENDPROTOENT_R:
4138 * This symbol, if defined, indicates that the endprotoent_r routine
4139 * is available to endprotoent re-entrantly.
4140 */
4141/* ENDPROTOENT_R_PROTO:
4142 * This symbol encodes the prototype of endprotoent_r.
39183afa
JH
4143 * It is zero if d_endprotoent_r is undef, and one of the
4144 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endprotoent_r
4145 * is defined.
10bc17b6 4146 */
2f12987e
JH
4147/*#define HAS_ENDPROTOENT_R / **/
4148#define ENDPROTOENT_R_PROTO 0 /**/
10bc17b6
JH
4149
4150/* HAS_ENDSERVENT_R:
4151 * This symbol, if defined, indicates that the endservent_r routine
4152 * is available to endservent re-entrantly.
4153 */
4154/* ENDSERVENT_R_PROTO:
4155 * This symbol encodes the prototype of endservent_r.
39183afa
JH
4156 * It is zero if d_endservent_r is undef, and one of the
4157 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endservent_r
4158 * is defined.
10bc17b6 4159 */
2f12987e
JH
4160/*#define HAS_ENDSERVENT_R / **/
4161#define ENDSERVENT_R_PROTO 0 /**/
10bc17b6
JH
4162
4163/* HAS_GETHOSTBYADDR_R:
4164 * This symbol, if defined, indicates that the gethostbyaddr_r routine
4165 * is available to gethostbyaddr re-entrantly.
4166 */
4167/* GETHOSTBYADDR_R_PROTO:
4168 * This symbol encodes the prototype of gethostbyaddr_r.
39183afa
JH
4169 * It is zero if d_gethostbyaddr_r is undef, and one of the
4170 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyaddr_r
4171 * is defined.
10bc17b6 4172 */
2f12987e
JH
4173/*#define HAS_GETHOSTBYADDR_R / **/
4174#define GETHOSTBYADDR_R_PROTO 0 /**/
10bc17b6
JH
4175
4176/* HAS_GETHOSTBYNAME_R:
4177 * This symbol, if defined, indicates that the gethostbyname_r routine
4178 * is available to gethostbyname re-entrantly.
4179 */
4180/* GETHOSTBYNAME_R_PROTO:
4181 * This symbol encodes the prototype of gethostbyname_r.
39183afa
JH
4182 * It is zero if d_gethostbyname_r is undef, and one of the
4183 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyname_r
4184 * is defined.
10bc17b6 4185 */
2f12987e
JH
4186/*#define HAS_GETHOSTBYNAME_R / **/
4187#define GETHOSTBYNAME_R_PROTO 0 /**/
10bc17b6
JH
4188
4189/* HAS_GETHOSTENT_R:
4190 * This symbol, if defined, indicates that the gethostent_r routine
4191 * is available to gethostent re-entrantly.
4192 */
4193/* GETHOSTENT_R_PROTO:
4194 * This symbol encodes the prototype of gethostent_r.
39183afa
JH
4195 * It is zero if d_gethostent_r is undef, and one of the
4196 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostent_r
4197 * is defined.
10bc17b6 4198 */
2f12987e
JH
4199/*#define HAS_GETHOSTENT_R / **/
4200#define GETHOSTENT_R_PROTO 0 /**/
10bc17b6
JH
4201
4202/* HAS_GETNETBYADDR_R:
4203 * This symbol, if defined, indicates that the getnetbyaddr_r routine
4204 * is available to getnetbyaddr re-entrantly.
4205 */
4206/* GETNETBYADDR_R_PROTO:
4207 * This symbol encodes the prototype of getnetbyaddr_r.
39183afa
JH
4208 * It is zero if d_getnetbyaddr_r is undef, and one of the
4209 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyaddr_r
4210 * is defined.
10bc17b6 4211 */
2f12987e
JH
4212/*#define HAS_GETNETBYADDR_R / **/
4213#define GETNETBYADDR_R_PROTO 0 /**/
10bc17b6
JH
4214
4215/* HAS_GETNETBYNAME_R:
4216 * This symbol, if defined, indicates that the getnetbyname_r routine
4217 * is available to getnetbyname re-entrantly.
4218 */
4219/* GETNETBYNAME_R_PROTO:
4220 * This symbol encodes the prototype of getnetbyname_r.
39183afa
JH
4221 * It is zero if d_getnetbyname_r is undef, and one of the
4222 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyname_r
4223 * is defined.
10bc17b6 4224 */
2f12987e
JH
4225/*#define HAS_GETNETBYNAME_R / **/
4226#define GETNETBYNAME_R_PROTO 0 /**/
10bc17b6
JH
4227
4228/* HAS_GETNETENT_R:
4229 * This symbol, if defined, indicates that the getnetent_r routine
4230 * is available to getnetent re-entrantly.
4231 */
4232/* GETNETENT_R_PROTO:
4233 * This symbol encodes the prototype of getnetent_r.
39183afa
JH
4234 * It is zero if d_getnetent_r is undef, and one of the
4235 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetent_r
4236 * is defined.
10bc17b6 4237 */
2f12987e
JH
4238/*#define HAS_GETNETENT_R / **/
4239#define GETNETENT_R_PROTO 0 /**/
10bc17b6
JH
4240
4241/* HAS_GETPROTOBYNAME_R:
4242 * This symbol, if defined, indicates that the getprotobyname_r routine
4243 * is available to getprotobyname re-entrantly.
4244 */
4245/* GETPROTOBYNAME_R_PROTO:
4246 * This symbol encodes the prototype of getprotobyname_r.
39183afa
JH
4247 * It is zero if d_getprotobyname_r is undef, and one of the
4248 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobyname_r
4249 * is defined.
10bc17b6 4250 */
2f12987e
JH
4251/*#define HAS_GETPROTOBYNAME_R / **/
4252#define GETPROTOBYNAME_R_PROTO 0 /**/
10bc17b6
JH
4253
4254/* HAS_GETPROTOBYNUMBER_R:
4255 * This symbol, if defined, indicates that the getprotobynumber_r routine
4256 * is available to getprotobynumber re-entrantly.
4257 */
4258/* GETPROTOBYNUMBER_R_PROTO:
4259 * This symbol encodes the prototype of getprotobynumber_r.
39183afa
JH
4260 * It is zero if d_getprotobynumber_r is undef, and one of the
4261 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobynumber_r
4262 * is defined.
10bc17b6 4263 */
2f12987e
JH
4264/*#define HAS_GETPROTOBYNUMBER_R / **/
4265#define GETPROTOBYNUMBER_R_PROTO 0 /**/
10bc17b6
JH
4266
4267/* HAS_GETPROTOENT_R:
4268 * This symbol, if defined, indicates that the getprotoent_r routine
4269 * is available to getprotoent re-entrantly.
4270 */
4271/* GETPROTOENT_R_PROTO:
4272 * This symbol encodes the prototype of getprotoent_r.
39183afa
JH
4273 * It is zero if d_getprotoent_r is undef, and one of the
4274 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotoent_r
4275 * is defined.
10bc17b6 4276 */
2f12987e
JH
4277/*#define HAS_GETPROTOENT_R / **/
4278#define GETPROTOENT_R_PROTO 0 /**/
10bc17b6
JH
4279
4280/* HAS_GETSERVBYNAME_R:
4281 * This symbol, if defined, indicates that the getservbyname_r routine
4282 * is available to getservbyname re-entrantly.
4283 */
4284/* GETSERVBYNAME_R_PROTO:
4285 * This symbol encodes the prototype of getservbyname_r.
39183afa
JH
4286 * It is zero if d_getservbyname_r is undef, and one of the
4287 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyname_r
4288 * is defined.
10bc17b6 4289 */
2f12987e
JH
4290/*#define HAS_GETSERVBYNAME_R / **/
4291#define GETSERVBYNAME_R_PROTO 0 /**/
10bc17b6
JH
4292
4293/* HAS_GETSERVBYPORT_R:
4294 * This symbol, if defined, indicates that the getservbyport_r routine
4295 * is available to getservbyport re-entrantly.
4296 */
4297/* GETSERVBYPORT_R_PROTO:
4298 * This symbol encodes the prototype of getservbyport_r.
39183afa
JH
4299 * It is zero if d_getservbyport_r is undef, and one of the
4300 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyport_r
4301 * is defined.
10bc17b6 4302 */
2f12987e
JH
4303/*#define HAS_GETSERVBYPORT_R / **/
4304#define GETSERVBYPORT_R_PROTO 0 /**/
10bc17b6
JH
4305
4306/* HAS_GETSERVENT_R:
4307 * This symbol, if defined, indicates that the getservent_r routine
4308 * is available to getservent re-entrantly.
4309 */
4310/* GETSERVENT_R_PROTO:
4311 * This symbol encodes the prototype of getservent_r.
fd550ca5
MB
4312 * It is zero if d_getservent_r is undef, and one of the
4313 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservent_r
88fdc172
SB
4314 * is defined.
4315 */
fd550ca5
MB
4316/*#define HAS_GETSERVENT_R / **/
4317#define GETSERVENT_R_PROTO 0 /**/
4318
4319/* HAS_PTHREAD_ATFORK:
4320 * This symbol, if defined, indicates that the pthread_atfork routine
4321 * is available to setup fork handlers.
4322 */
4323/*#define HAS_PTHREAD_ATFORK / **/
d6483fcc 4324
10bc17b6
JH
4325/* HAS_READDIR64_R:
4326 * This symbol, if defined, indicates that the readdir64_r routine
4327 * is available to readdir64 re-entrantly.
4328 */
4329/* READDIR64_R_PROTO:
4330 * This symbol encodes the prototype of readdir64_r.
39183afa
JH
4331 * It is zero if d_readdir64_r is undef, and one of the
4332 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir64_r
4333 * is defined.
10bc17b6
JH
4334 */
4335/*#define HAS_READDIR64_R / **/
4336#define READDIR64_R_PROTO 0 /**/
4337
4338/* HAS_SETHOSTENT_R:
4339 * This symbol, if defined, indicates that the sethostent_r routine
4340 * is available to sethostent re-entrantly.
4341 */
4342/* SETHOSTENT_R_PROTO:
4343 * This symbol encodes the prototype of sethostent_r.
39183afa
JH
4344 * It is zero if d_sethostent_r is undef, and one of the
4345 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_sethostent_r
4346 * is defined.
10bc17b6 4347 */
2f12987e
JH
4348/*#define HAS_SETHOSTENT_R / **/
4349#define SETHOSTENT_R_PROTO 0 /**/
10bc17b6
JH
4350
4351/* HAS_SETLOCALE_R:
4352 * This symbol, if defined, indicates that the setlocale_r routine
4353 * is available to setlocale re-entrantly.
4354 */
4355/* SETLOCALE_R_PROTO:
4356 * This symbol encodes the prototype of setlocale_r.
39183afa
JH
4357 * It is zero if d_setlocale_r is undef, and one of the
4358 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setlocale_r
4359 * is defined.
10bc17b6
JH
4360 */
4361/*#define HAS_SETLOCALE_R / **/
4362#define SETLOCALE_R_PROTO 0 /**/
4363
4364/* HAS_SETNETENT_R:
4365 * This symbol, if defined, indicates that the setnetent_r routine
4366 * is available to setnetent re-entrantly.
4367 */
4368/* SETNETENT_R_PROTO:
4369 * This symbol encodes the prototype of setnetent_r.
39183afa
JH
4370 * It is zero if d_setnetent_r is undef, and one of the
4371 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setnetent_r
4372 * is defined.
10bc17b6 4373 */
2f12987e
JH
4374/*#define HAS_SETNETENT_R / **/
4375#define SETNETENT_R_PROTO 0 /**/
10bc17b6
JH
4376
4377/* HAS_SETPROTOENT_R:
4378 * This symbol, if defined, indicates that the setprotoent_r routine
4379 * is available to setprotoent re-entrantly.
4380 */
4381/* SETPROTOENT_R_PROTO:
4382 * This symbol encodes the prototype of setprotoent_r.
39183afa
JH
4383 * It is zero if d_setprotoent_r is undef, and one of the
4384 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setprotoent_r
4385 * is defined.
10bc17b6 4386 */
2f12987e
JH
4387/*#define HAS_SETPROTOENT_R / **/
4388#define SETPROTOENT_R_PROTO 0 /**/
10bc17b6
JH
4389
4390/* HAS_SETSERVENT_R:
4391 * This symbol, if defined, indicates that the setservent_r routine
4392 * is available to setservent re-entrantly.
4393 */
4394/* SETSERVENT_R_PROTO:
4395 * This symbol encodes the prototype of setservent_r.
39183afa
JH
4396 * It is zero if d_setservent_r is undef, and one of the
4397 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setservent_r
4398 * is defined.
10bc17b6 4399 */
2f12987e
JH
4400/*#define HAS_SETSERVENT_R / **/
4401#define SETSERVENT_R_PROTO 0 /**/
10bc17b6
JH
4402
4403/* HAS_TTYNAME_R:
4404 * This symbol, if defined, indicates that the ttyname_r routine
4405 * is available to ttyname re-entrantly.
4406 */
4407/* TTYNAME_R_PROTO:
4408 * This symbol encodes the prototype of ttyname_r.
39183afa
JH
4409 * It is zero if d_ttyname_r is undef, and one of the
4410 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_ttyname_r
4411 * is defined.
10bc17b6 4412 */
2f12987e
JH
4413/*#define HAS_TTYNAME_R / **/
4414#define TTYNAME_R_PROTO 0 /**/
10bc17b6 4415
fe14fcc3 4416#endif