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