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