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