FAQ sync.
[p5sagit/p5-mst-13.2.git] / Porting / Glossary
1 This file contains a description of all the shell variables whose value is
2 determined by the Configure script.  Variables intended for use in C
3 programs (e.g. I_UNISTD) are already described in config_h.SH.  [`configpm'
4 generates pod documentation for Config.pm from this file--please try to keep
5 the formatting regular.]
6
7 _a (Unix.U):
8         This variable defines the extension used for ordinary libraries.
9         For unix, it is '.a'.  The '.' is included.  Other possible
10         values include '.lib'.
11
12 _exe (Unix.U):
13         This variable defines the extension used for executable files.
14         For unix it is empty.  Other possible values include '.exe'.
15
16 _o (Unix.U):
17         This variable defines the extension used for object files.
18         For unix, it is '.o'.  The '.' is included.  Other possible
19         values include '.obj'.
20
21 afs (afs.U):
22         This variable is set to 'true' if AFS (Andrew File System) is used
23         on the system, 'false' otherwise.  It is possible to override this
24         with a hint value or command line option, but you'd better know
25         what you are doing.
26
27 afsroot (afs.U):
28         This variable is by default set to '/afs'. In the unlikely case
29         this is not the correct root, it is possible to override this with
30         a hint value or command line option.  This will be used in subsequent
31         tests for AFSness in the Perl configure and test process. 
32
33 alignbytes (alignbytes.U):
34         This variable holds the number of bytes required to align a
35         double-- or a long double when applicable. Usual values are
36         2, 4 and 8.  The default is eight, for safety.
37
38 ansi2knr (ansi2knr.U):
39         This variable is set if the user needs to run ansi2knr.  
40         Currently, this is not supported, so we just abort.
41
42 aphostname (d_gethname.U):
43         This variable contains the command which can be used to compute the
44         host name. The command is fully qualified by its absolute path, to make
45         it safe when used by a process with super-user privileges.
46
47 api_revision (patchlevel.U):
48         The three variables, api_revision, api_version, and
49         api_subversion, specify the version of the oldest perl binary
50         compatible with the present perl.  In a full version string
51         such as '5.6.1', api_revision is the '5'.
52         Prior to 5.5.640, the format was a floating point number,
53         like 5.00563.
54                 perl.c:incpush() and lib/lib.pm will automatically search in
55         $sitelib/.. for older directories back to the limit specified
56         by these api_ variables.  This is only useful if you have a
57         perl library directory tree structured like the default one.
58         See INSTALL for how this works.  The versioned site_perl
59         directory was introduced in 5.005, so that is the lowest
60         possible value.  The version list appropriate for the current
61         system is determined in inc_version_list.U.
62                 XXX To do:  Since compatibility can depend on compile time
63         options (such as bincompat, longlong, etc.) it should
64         (perhaps) be set by Configure, but currently it isn't.
65         Currently, we read a hard-wired value from patchlevel.h.
66         Perhaps what we ought to do is take the hard-wired value from
67         patchlevel.h but then modify it if the current Configure
68         options warrant.  patchlevel.h then would use an #ifdef guard.
69
70 api_subversion (patchlevel.U):
71         The three variables, api_revision, api_version, and
72         api_subversion, specify the version of the oldest perl binary
73         compatible with the present perl.  In a full version string
74         such as '5.6.1', api_subversion is the '1'.  See api_revision for
75         full details.
76
77 api_version (patchlevel.U):
78         The three variables, api_revision, api_version, and
79         api_subversion, specify the version of the oldest perl binary
80         compatible with the present perl.  In a full version string
81         such as '5.6.1', api_version is the '6'.  See api_revision for
82         full details.  As a special case, 5.5.0 is rendered in the
83         old-style as 5.005.  (In the 5.005_0x maintenance series,
84         this was the only versioned directory in $sitelib.)
85
86 api_versionstring (patchlevel.U):
87         This variable combines api_revision, api_version, and
88         api_subversion in a format such as 5.6.1 (or 5_6_1) suitable
89         for use as a directory name.  This is filesystem dependent.
90
91 ar (Loc.U):
92         This variable is used internally by Configure to determine the
93         full pathname (if any) of the ar program.  After Configure runs,
94         the value is reset to a plain "ar" and is not useful.
95
96 archlib (archlib.U):
97         This variable holds the name of the directory in which the user wants
98         to put architecture-dependent public library files for $package.
99         It is most often a local directory such as /usr/local/lib.
100         Programs using this variable must be prepared to deal
101         with filename expansion.
102
103 archlibexp (archlib.U):
104         This variable is the same as the archlib variable, but is
105         filename expanded at configuration time, for convenient use.
106
107 archname64 (use64bits.U):
108         This variable is used for the 64-bitness part of $archname.
109
110 archname (archname.U):
111         This variable is a short name to characterize the current
112         architecture.  It is used mainly to construct the default archlib.
113
114 archobjs (Unix.U):
115         This variable defines any additional objects that must be linked
116         in with the program on this architecture.  On unix, it is usually
117         empty.  It is typically used to include emulations of unix calls
118         or other facilities.  For perl on OS/2, for example, this would
119         include os2/os2.obj.
120
121 awk (Loc.U):
122         This variable is used internally by Configure to determine the
123         full pathname (if any) of the awk program.  After Configure runs,
124         the value is reset to a plain "awk" and is not useful.
125
126 baserev (baserev.U):
127         The base revision level of this package, from the .package file.
128
129 bash (Loc.U):
130         This variable is defined but not used by Configure.
131         The value is a plain '' and is not useful.
132
133 bin (bin.U):
134         This variable holds the name of the directory in which the user wants
135         to put publicly executable images for the package in question.  It
136         is most often a local directory such as /usr/local/bin. Programs using
137         this variable must be prepared to deal with ~name substitution.
138
139 bincompat5005 (bincompat5005.U):
140         This variable contains y if this version of Perl should be
141         binary-compatible with Perl 5.005.
142
143 binexp (bin.U):
144         This is the same as the bin variable, but is filename expanded at
145         configuration time, for use in your makefiles.
146
147 bison (Loc.U):
148         This variable is used internally by Configure to determine the
149         full pathname (if any) of the bison program.  After Configure runs,
150         the value is reset to a plain "bison" and is not useful.
151
152 byacc (Loc.U):
153         This variable is used internally by Configure to determine the
154         full pathname (if any) of the byacc program.  After Configure runs,
155         the value is reset to a plain "byacc" and is not useful.
156
157 byteorder (byteorder.U):
158         This variable holds the byte order. In the following, larger digits
159         indicate more significance.  The variable byteorder is either 4321
160         on a big-endian machine, or 1234 on a little-endian, or 87654321
161         on a Cray ... or 3412 with weird order !
162
163 c (n.U):
164         This variable contains the \c string if that is what causes the echo
165         command to suppress newline.  Otherwise it is null.  Correct usage is
166         $echo $n "prompt for a question: $c".
167
168 castflags (d_castneg.U):
169         This variable contains a flag that precise difficulties the
170         compiler has casting odd floating values to unsigned long:
171         0 = ok
172         1 = couldn't cast < 0
173         2 = couldn't cast >= 0x80000000
174         4 = couldn't cast in argument expression list
175
176 cat (Loc.U):
177         This variable is used internally by Configure to determine the
178         full pathname (if any) of the cat program.  After Configure runs,
179         the value is reset to a plain "cat" and is not useful.
180
181 cc (cc.U):
182         This variable holds the name of a command to execute a C compiler which
183         can resolve multiple global references that happen to have the same
184         name.  Usual values are 'cc' and 'gcc'.
185         Fervent ANSI compilers may be called 'c89'.  AIX has xlc.
186
187 cccdlflags (dlsrc.U):
188         This variable contains any special flags that might need to be
189         passed with 'cc -c' to compile modules to be used to create a shared
190         library that will be used for dynamic loading.  For hpux, this
191         should be +z.  It is up to the makefile to use it.
192
193 ccdlflags (dlsrc.U):
194         This variable contains any special flags that might need to be
195         passed to cc to link with a shared library for dynamic loading.
196         It is up to the makefile to use it.  For sunos 4.1, it should
197         be empty.
198
199 ccflags (ccflags.U):
200         This variable contains any additional C compiler flags desired by
201         the user.  It is up to the Makefile to use this.
202
203 ccflags_uselargefiles (uselfs.U):
204         This variable contains the compiler flags needed by large file builds
205         and added to ccflags by hints files.
206
207 ccname (Checkcc.U):
208         This can set either by hints files or by Configure.  If using
209         gcc, this is gcc, and if not, usually equal to cc, unimpressive, no?
210         Some platforms, however, make good use of this by storing the
211         flavor of the C compiler being used here.  For example if using
212         the Sun WorkShop suite, ccname will be 'workshop'.
213
214 ccsymbols (Cppsym.U):
215         The variable contains the symbols defined by the C compiler alone.
216         The symbols defined by cpp or by cc when it calls cpp are not in
217         this list, see cppsymbols and cppccsymbols.
218         The list is a space-separated list of symbol=value tokens.
219
220 ccversion (Checkcc.U):
221         This can set either by hints files or by Configure.  If using
222         a (non-gcc) vendor cc, this variable may contain a version for
223         the compiler.
224
225 cf_by (cf_who.U):
226         Login name of the person who ran the Configure script and answered the
227         questions. This is used to tag both config.sh and config_h.SH.
228
229 cf_email (cf_email.U):
230         Electronic mail address of the person who ran Configure. This can be
231         used by units that require the user's e-mail, like MailList.U.
232
233 cf_time (cf_who.U):
234         Holds the output of the "date" command when the configuration file was
235         produced. This is used to tag both config.sh and config_h.SH.
236
237 charsize (charsize.U):
238         This variable contains the value of the CHARSIZE symbol, which
239         indicates to the C program how many bytes there are in a character.
240
241 chgrp (Loc.U):
242         This variable is defined but not used by Configure.
243         The value is a plain '' and is not useful.
244
245 chmod (Loc.U):
246         This variable is used internally by Configure to determine the
247         full pathname (if any) of the chmod program.  After Configure runs,
248         the value is reset to a plain "chmod" and is not useful.
249
250 chown (Loc.U):
251         This variable is defined but not used by Configure.
252         The value is a plain '' and is not useful.
253
254 clocktype (d_times.U):
255         This variable holds the type returned by times(). It can be long,
256         or clock_t on BSD sites (in which case <sys/types.h> should be
257         included).
258
259 comm (Loc.U):
260         This variable is used internally by Configure to determine the
261         full pathname (if any) of the comm program.  After Configure runs,
262         the value is reset to a plain "comm" and is not useful.
263
264 compress (Loc.U):
265         This variable is defined but not used by Configure.
266         The value is a plain '' and is not useful.
267
268 contains (contains.U):
269         This variable holds the command to do a grep with a proper return
270         status.  On most sane systems it is simply "grep".  On insane systems
271         it is a grep followed by a cat followed by a test.  This variable
272         is primarily for the use of other Configure units.
273
274 cp (Loc.U):
275         This variable is used internally by Configure to determine the
276         full pathname (if any) of the cp program.  After Configure runs,
277         the value is reset to a plain "cp" and is not useful.
278
279 cpio (Loc.U):
280         This variable is defined but not used by Configure.
281         The value is a plain '' and is not useful.
282
283 cpp (Loc.U):
284         This variable is used internally by Configure to determine the
285         full pathname (if any) of the cpp program.  After Configure runs,
286         the value is reset to a plain "cpp" and is not useful.
287
288 cpp_stuff (cpp_stuff.U):
289         This variable contains an identification of the catenation mechanism
290         used by the C preprocessor.
291
292 cppccsymbols (Cppsym.U):
293         The variable contains the symbols defined by the C compiler
294         when it calls cpp.  The symbols defined by the cc alone or cpp
295         alone are not in this list, see ccsymbols and cppsymbols.
296         The list is a space-separated list of symbol=value tokens.
297
298 cppflags (ccflags.U):
299         This variable holds the flags that will be passed to the C pre-
300         processor. It is up to the Makefile to use it.
301
302 cpplast (cppstdin.U):
303         This variable has the same functionality as cppminus, only it applies
304         to cpprun and not cppstdin.
305
306 cppminus (cppstdin.U):
307         This variable contains the second part of the string which will invoke
308         the C preprocessor on the standard input and produce to standard
309         output.  This variable will have the value "-" if cppstdin needs
310         a minus to specify standard input, otherwise the value is "".
311
312 cpprun (cppstdin.U):
313         This variable contains the command which will invoke a C preprocessor
314         on standard input and put the output to stdout. It is guaranteed not
315         to be a wrapper and may be a null string if no preprocessor can be
316         made directly available. This preprocessor might be different from the
317         one used by the C compiler. Don't forget to append cpplast after the
318         preprocessor options.
319
320 cppstdin (cppstdin.U):
321         This variable contains the command which will invoke the C
322         preprocessor on standard input and put the output to stdout.
323         It is primarily used by other Configure units that ask about
324         preprocessor symbols.
325
326 cppsymbols (Cppsym.U):
327         The variable contains the symbols defined by the C preprocessor
328         alone.  The symbols defined by cc or by cc when it calls cpp are
329         not in this list, see ccsymbols and cppccsymbols.
330         The list is a space-separated list of symbol=value tokens.
331
332 cryptlib (d_crypt.U):
333         This variable holds -lcrypt or the path to a libcrypt.a archive if
334         the crypt() function is not defined in the standard C library. It is
335         up to the Makefile to use this.
336
337 csh (Loc.U):
338         This variable is used internally by Configure to determine the
339         full pathname (if any) of the csh program.  After Configure runs,
340         the value is reset to a plain "csh" and is not useful.
341
342 d__fwalk (d__fwalk.U):
343         This variable conditionally defines HAS__FWALK if _fwalk() is
344         available to apply a function to all the file handles.
345
346 d_access (d_access.U):
347         This variable conditionally defines HAS_ACCESS if the access() system
348         call is available to check for access permissions using real IDs.
349
350 d_accessx (d_accessx.U):
351         This variable conditionally defines the HAS_ACCESSX symbol, which
352         indicates to the C program that the accessx() routine is available.
353
354 d_alarm (d_alarm.U):
355         This variable conditionally defines the HAS_ALARM symbol, which
356         indicates to the C program that the alarm() routine is available.
357
358 d_archlib (archlib.U):
359         This variable conditionally defines ARCHLIB to hold the pathname
360         of architecture-dependent library files for $package.  If
361         $archlib is the same as $privlib, then this is set to undef.
362
363 d_atolf (atolf.U):
364         This variable conditionally defines the HAS_ATOLF symbol, which
365         indicates to the C program that the atolf() routine is available.
366
367 d_atoll (atoll.U):
368         This variable conditionally defines the HAS_ATOLL symbol, which
369         indicates to the C program that the atoll() routine is available.
370
371 d_attribut (d_attribut.U):
372         This variable conditionally defines HASATTRIBUTE, which
373         indicates the C compiler can check for function attributes,
374         such as printf formats.
375
376 d_bcmp (d_bcmp.U):
377         This variable conditionally defines the HAS_BCMP symbol if
378         the bcmp() routine is available to compare strings.
379
380 d_bcopy (d_bcopy.U):
381         This variable conditionally defines the HAS_BCOPY symbol if
382         the bcopy() routine is available to copy strings.
383
384 d_bincompat5005 (bincompat5005.U):
385         This variable conditionally defines BINCOMPAT5005 so that embed.h
386         can take special action if this version of Perl should be
387         binary-compatible with Perl 5.005.  This is impossible for builds
388         that use features like threads and multiplicity it is always $undef
389         for those versions.
390
391 d_bsd (Guess.U):
392         This symbol conditionally defines the symbol BSD when running on a
393         BSD system.
394
395 d_bsdgetpgrp (d_getpgrp.U):
396         This variable conditionally defines USE_BSD_GETPGRP if
397         getpgrp needs one arguments whereas USG one needs none.
398
399 d_bsdsetpgrp (d_setpgrp.U):
400         This variable conditionally defines USE_BSD_SETPGRP if
401         setpgrp needs two arguments whereas USG one needs none.
402         See also d_setpgid for a POSIX interface.
403
404 d_bzero (d_bzero.U):
405         This variable conditionally defines the HAS_BZERO symbol if
406         the bzero() routine is available to set memory to 0.
407
408 d_casti32 (d_casti32.U):
409         This variable conditionally defines CASTI32, which indicates
410         whether the C compiler can cast large floats to 32-bit ints.
411
412 d_castneg (d_castneg.U):
413         This variable conditionally defines CASTNEG, which indicates
414         wether the C compiler can cast negative float to unsigned.
415
416 d_charvspr (d_vprintf.U):
417         This variable conditionally defines CHARVSPRINTF if this system
418         has vsprintf returning type (char*).  The trend seems to be to
419         declare it as "int vsprintf()".
420
421 d_chown (d_chown.U):
422         This variable conditionally defines the HAS_CHOWN symbol, which
423         indicates to the C program that the chown() routine is available.
424
425 d_chroot (d_chroot.U):
426         This variable conditionally defines the HAS_CHROOT symbol, which
427         indicates to the C program that the chroot() routine is available.
428
429 d_chsize (d_chsize.U):
430         This variable conditionally defines the CHSIZE symbol, which
431         indicates to the C program that the chsize() routine is available
432         to truncate files.  You might need a -lx to get this routine.
433
434 d_class (d_class.U):
435         This variable conditionally defines the HAS_CLASS symbol, which
436         indicates to the C program that the class() routine is available.
437
438 d_closedir (d_closedir.U):
439         This variable conditionally defines HAS_CLOSEDIR if closedir() is
440         available.
441
442 d_cmsghdr_s (d_cmsghdr_s.U):
443         This variable conditionally defines the HAS_STRUCT_CMSGHDR symbol,
444         which indicates that the struct cmsghdr is supported.
445
446 d_const (d_const.U):
447         This variable conditionally defines the HASCONST symbol, which
448         indicates to the C program that this C compiler knows about the
449         const type.
450
451 d_crypt (d_crypt.U):
452         This variable conditionally defines the CRYPT symbol, which
453         indicates to the C program that the crypt() routine is available
454         to encrypt passwords and the like.
455
456 d_csh (d_csh.U):
457         This variable conditionally defines the CSH symbol, which
458         indicates to the C program that the C-shell exists.
459
460 d_cuserid (d_cuserid.U):
461         This variable conditionally defines the HAS_CUSERID symbol, which
462         indicates to the C program that the cuserid() routine is available
463         to get character login names.
464
465 d_dbl_dig (d_dbl_dig.U):
466         This variable conditionally defines d_dbl_dig if this system's
467         header files provide DBL_DIG, which is the number of significant
468         digits in a double precision number.
469
470 d_dbminitproto (d_dbminitproto.U):
471         This variable conditionally defines the HAS_DBMINIT_PROTO symbol,
472         which indicates to the C program that the system provides
473         a prototype for the dbminit() function.  Otherwise, it is
474         up to the program to supply one.
475
476 d_difftime (d_difftime.U):
477         This variable conditionally defines the HAS_DIFFTIME symbol, which
478         indicates to the C program that the difftime() routine is available.
479
480 d_dirfd (d_dirfd.U):
481         This variable conditionally defines the HAS_DIRFD constant,
482         which indicates to the C program that dirfd() is available
483         to return the file descriptor of a directory stream.
484
485 d_dirnamlen (i_dirent.U):
486         This variable conditionally defines DIRNAMLEN, which indicates
487         to the C program that the length of directory entry names is
488         provided by a d_namelen field.
489
490 d_dlerror (d_dlerror.U):
491         This variable conditionally defines the HAS_DLERROR symbol, which
492         indicates to the C program that the dlerror() routine is available.
493
494 d_dlopen (d_dlopen.U):
495         This variable conditionally defines the HAS_DLOPEN symbol, which
496         indicates to the C program that the dlopen() routine is available.
497
498 d_dlsymun (d_dlsymun.U):
499         This variable conditionally defines DLSYM_NEEDS_UNDERSCORE, which
500         indicates that we need to prepend an underscore to the symbol
501         name before calling dlsym().
502
503 d_dosuid (d_dosuid.U):
504         This variable conditionally defines the symbol DOSUID, which
505         tells the C program that it should insert setuid emulation code
506         on hosts which have setuid #! scripts disabled.
507
508 d_drand48proto (d_drand48proto.U):
509         This variable conditionally defines the HAS_DRAND48_PROTO symbol,
510         which indicates to the C program that the system provides
511         a prototype for the drand48() function.  Otherwise, it is
512         up to the program to supply one.
513
514 d_dup2 (d_dup2.U):
515         This variable conditionally defines HAS_DUP2 if dup2() is
516         available to duplicate file descriptors.
517
518 d_eaccess (d_eaccess.U):
519         This variable conditionally defines the HAS_EACCESS symbol, which
520         indicates to the C program that the eaccess() routine is available.
521
522 d_endgrent (d_endgrent.U):
523         This variable conditionally defines the HAS_ENDGRENT symbol, which
524         indicates to the C program that the endgrent() routine is available
525         for sequential access of the group database.
526
527 d_endhent (d_endhent.U):
528         This variable conditionally defines HAS_ENDHOSTENT if endhostent() is
529         available to close whatever was being used for host queries.
530
531 d_endnent (d_endnent.U):
532         This variable conditionally defines HAS_ENDNETENT if endnetent() is
533         available to close whatever was being used for network queries.
534
535 d_endpent (d_endpent.U):
536         This variable conditionally defines HAS_ENDPROTOENT if endprotoent() is
537         available to close whatever was being used for protocol queries.
538
539 d_endpwent (d_endpwent.U):
540         This variable conditionally defines the HAS_ENDPWENT symbol, which
541         indicates to the C program that the endpwent() routine is available
542         for sequential access of the passwd database.
543
544 d_endsent (d_endsent.U):
545         This variable conditionally defines HAS_ENDSERVENT if endservent() is
546         available to close whatever was being used for service queries.
547
548 d_eofnblk (nblock_io.U):
549         This variable conditionally defines EOF_NONBLOCK if EOF can be seen
550         when reading from a non-blocking I/O source.
551
552 d_eunice (Guess.U):
553         This variable conditionally defines the symbols EUNICE and VAX, which
554         alerts the C program that it must deal with ideosyncracies of VMS.
555
556 d_fchdir (d_fchdir.U):
557         This variable conditionally defines the HAS_FCHDIR symbol, which
558         indicates to the C program that the fchdir() routine is available.
559
560 d_fchmod (d_fchmod.U):
561         This variable conditionally defines the HAS_FCHMOD symbol, which
562         indicates to the C program that the fchmod() routine is available
563         to change mode of opened files.
564
565 d_fchown (d_fchown.U):
566         This variable conditionally defines the HAS_FCHOWN symbol, which
567         indicates to the C program that the fchown() routine is available
568         to change ownership of opened files.
569
570 d_fcntl (d_fcntl.U):
571         This variable conditionally defines the HAS_FCNTL symbol, and indicates
572         whether the fcntl() function exists
573
574 d_fcntl_can_lock (d_fcntl_can_lock.U):
575         This variable conditionally defines the FCNTL_CAN_LOCK symbol
576         and indicates whether file locking with fcntl() works.
577
578 d_fd_macros (d_fd_set.U):
579         This variable contains the eventual value of the HAS_FD_MACROS symbol,
580         which indicates if your C compiler knows about the macros which
581         manipulate an fd_set.
582
583 d_fd_set (d_fd_set.U):
584         This variable contains the eventual value of the HAS_FD_SET symbol,
585         which indicates if your C compiler knows about the fd_set typedef.
586
587 d_fds_bits (d_fd_set.U):
588         This variable contains the eventual value of the HAS_FDS_BITS symbol,
589         which indicates if your fd_set typedef contains the fds_bits member.
590         If you have an fd_set typedef, but the dweebs who installed it did
591         a half-fast job and neglected to provide the macros to manipulate
592         an fd_set, HAS_FDS_BITS will let us know how to fix the gaffe.
593
594 d_fgetpos (d_fgetpos.U):
595         This variable conditionally defines HAS_FGETPOS if fgetpos() is
596         available to get the file position indicator.
597
598 d_finite (d_finite.U):
599         This variable conditionally defines the HAS_FINITE symbol, which
600         indicates to the C program that the finite() routine is available.
601
602 d_finitel (d_finitel.U):
603         This variable conditionally defines the HAS_FINITEL symbol, which
604         indicates to the C program that the finitel() routine is available.
605
606 d_flexfnam (d_flexfnam.U):
607         This variable conditionally defines the FLEXFILENAMES symbol, which
608         indicates that the system supports filenames longer than 14 characters.
609
610 d_flock (d_flock.U):
611         This variable conditionally defines HAS_FLOCK if flock() is
612         available to do file locking.
613
614 d_flockproto (d_flockproto.U):
615         This variable conditionally defines the HAS_FLOCK_PROTO symbol,
616         which indicates to the C program that the system provides
617         a prototype for the flock() function.  Otherwise, it is
618         up to the program to supply one.
619
620 d_fork (d_fork.U):
621         This variable conditionally defines the HAS_FORK symbol, which
622         indicates to the C program that the fork() routine is available.
623
624 d_fp_class (d_fp_class.U):
625         This variable conditionally defines the HAS_FP_CLASS symbol, which
626         indicates to the C program that the fp_class() routine is available.
627
628 d_fpathconf (d_pathconf.U):
629         This variable conditionally defines the HAS_FPATHCONF symbol, which
630         indicates to the C program that the pathconf() routine is available
631         to determine file-system related limits and options associated
632         with a given open file descriptor.
633
634 d_fpclass (d_fpclass.U):
635         This variable conditionally defines the HAS_FPCLASS symbol, which
636         indicates to the C program that the fpclass() routine is available.
637
638 d_fpclassify (d_fpclassify.U):
639         This variable conditionally defines the HAS_FPCLASSIFY symbol, which
640         indicates to the C program that the fpclassify() routine is available.
641
642 d_fpclassl (d_fpclassl.U):
643         This variable conditionally defines the HAS_FPCLASSL symbol, which
644         indicates to the C program that the fpclassl() routine is available.
645
646 d_fpos64_t (d_fpos64_t.U):
647         This symbol will be defined if the C compiler supports fpos64_t.
648
649 d_frexpl (d_frexpl.U):
650         This variable conditionally defines the HAS_FREXPL symbol, which
651         indicates to the C program that the frexpl() routine is available.
652
653 d_fs_data_s (d_fs_data_s.U):
654         This variable conditionally defines the HAS_STRUCT_FS_DATA symbol,
655         which indicates that the struct fs_data is supported.
656
657 d_fseeko (d_fseeko.U):
658         This variable conditionally defines the HAS_FSEEKO symbol, which
659         indicates to the C program that the fseeko() routine is available.
660
661 d_fsetpos (d_fsetpos.U):
662         This variable conditionally defines HAS_FSETPOS if fsetpos() is
663         available to set the file position indicator.
664
665 d_fstatfs (d_fstatfs.U):
666         This variable conditionally defines the HAS_FSTATFS symbol, which
667         indicates to the C program that the fstatfs() routine is available.
668
669 d_fstatvfs (d_statvfs.U):
670         This variable conditionally defines the HAS_FSTATVFS symbol, which
671         indicates to the C program that the fstatvfs() routine is available.
672
673 d_fsync (d_fsync.U):
674         This variable conditionally defines the HAS_FSYNC symbol, which
675         indicates to the C program that the fsync() routine is available.
676
677 d_ftello (d_ftello.U):
678         This variable conditionally defines the HAS_FTELLO symbol, which
679         indicates to the C program that the ftello() routine is available.
680
681 d_ftime (d_ftime.U):
682         This variable conditionally defines the HAS_FTIME symbol, which indicates
683         that the ftime() routine exists.  The ftime() routine is basically
684         a sub-second accuracy clock.
685
686 d_Gconvert (d_gconvert.U):
687         This variable holds what Gconvert is defined as to convert
688         floating point numbers into strings. It could be 'gconvert'
689         or a more complex macro emulating gconvert with gcvt() or sprintf.
690         Possible values are:
691         d_Gconvert='gconvert((x),(n),(t),(b))'
692         d_Gconvert='gcvt((x),(n),(b))'
693         d_Gconvert='sprintf((b),"%.*g",(n),(x))'
694
695 d_getcwd (d_getcwd.U):
696         This variable conditionally defines the HAS_GETCWD symbol, which
697         indicates to the C program that the getcwd() routine is available
698         to get the current working directory.
699
700 d_getespwnam (d_getespwnam.U):
701         This variable conditionally defines HAS_GETESPWNAM if getespwnam() is
702         available to retrieve enchanced (shadow) password entries by name.
703
704 d_getfsstat (d_getfsstat.U):
705         This variable conditionally defines the HAS_GETFSSTAT symbol, which
706         indicates to the C program that the getfsstat() routine is available.
707
708 d_getgrent (d_getgrent.U):
709         This variable conditionally defines the HAS_GETGRENT symbol, which
710         indicates to the C program that the getgrent() routine is available
711         for sequential access of the group database.
712
713 d_getgrps (d_getgrps.U):
714         This variable conditionally defines the HAS_GETGROUPS symbol, which
715         indicates to the C program that the getgroups() routine is available
716         to get the list of process groups.
717
718 d_gethbyaddr (d_gethbyad.U):
719         This variable conditionally defines the HAS_GETHOSTBYADDR symbol, which
720         indicates to the C program that the gethostbyaddr() routine is available
721         to look up hosts by their IP addresses.
722
723 d_gethbyname (d_gethbynm.U):
724         This variable conditionally defines the HAS_GETHOSTBYNAME symbol, which
725         indicates to the C program that the gethostbyname() routine is available
726         to look up host names in some data base or other.
727
728 d_gethent (d_gethent.U):
729         This variable conditionally defines HAS_GETHOSTENT if gethostent() is
730         available to look up host names in some data base or another.
731
732 d_gethname (d_gethname.U):
733         This variable conditionally defines the HAS_GETHOSTNAME symbol, which
734         indicates to the C program that the gethostname() routine may be
735         used to derive the host name.
736
737 d_gethostprotos (d_gethostprotos.U):
738         This variable conditionally defines the HAS_GETHOST_PROTOS symbol,
739         which indicates to the C program that <netdb.h> supplies
740         prototypes for the various gethost*() functions.  
741         See also netdbtype.U for probing for various netdb types.
742
743 d_getitimer (d_getitimer.U):
744         This variable conditionally defines the HAS_GETITIMER symbol, which
745         indicates to the C program that the getitimer() routine is available.
746
747 d_getlogin (d_getlogin.U):
748         This variable conditionally defines the HAS_GETLOGIN symbol, which
749         indicates to the C program that the getlogin() routine is available
750         to get the login name.
751
752 d_getmnt (d_getmnt.U):
753         This variable conditionally defines the HAS_GETMNT symbol, which
754         indicates to the C program that the getmnt() routine is available
755         to retrieve one or more mount info blocks by filename.
756
757 d_getmntent (d_getmntent.U):
758         This variable conditionally defines the HAS_GETMNTENT symbol, which
759         indicates to the C program that the getmntent() routine is available
760         to iterate through mounted files to get their mount info.
761
762 d_getnbyaddr (d_getnbyad.U):
763         This variable conditionally defines the HAS_GETNETBYADDR symbol, which
764         indicates to the C program that the getnetbyaddr() routine is available
765         to look up networks by their IP addresses.
766
767 d_getnbyname (d_getnbynm.U):
768         This variable conditionally defines the HAS_GETNETBYNAME symbol, which
769         indicates to the C program that the getnetbyname() routine is available
770         to look up networks by their names.
771
772 d_getnent (d_getnent.U):
773         This variable conditionally defines HAS_GETNETENT if getnetent() is
774         available to look up network names in some data base or another.
775
776 d_getnetprotos (d_getnetprotos.U):
777         This variable conditionally defines the HAS_GETNET_PROTOS symbol,
778         which indicates to the C program that <netdb.h> supplies
779         prototypes for the various getnet*() functions.  
780         See also netdbtype.U for probing for various netdb types.
781
782 d_getpagsz (d_getpagsz.U):
783         This variable conditionally defines HAS_GETPAGESIZE if getpagesize()
784         is available to get the system page size.
785
786 d_getpbyname (d_getprotby.U):
787         This variable conditionally defines the HAS_GETPROTOBYNAME 
788         symbol, which indicates to the C program that the 
789         getprotobyname() routine is available to look up protocols
790         by their name.
791
792 d_getpbynumber (d_getprotby.U):
793         This variable conditionally defines the HAS_GETPROTOBYNUMBER 
794         symbol, which indicates to the C program that the 
795         getprotobynumber() routine is available to look up protocols
796         by their number.
797
798 d_getpent (d_getpent.U):
799         This variable conditionally defines HAS_GETPROTOENT if getprotoent() is
800         available to look up protocols in some data base or another.
801
802 d_getpgid (d_getpgid.U):
803         This variable conditionally defines the HAS_GETPGID symbol, which
804         indicates to the C program that the getpgid(pid) function
805         is available to get the process group id.
806
807 d_getpgrp2 (d_getpgrp2.U):
808         This variable conditionally defines the HAS_GETPGRP2 symbol, which
809         indicates to the C program that the getpgrp2() (as in DG/UX) routine
810         is available to get the current process group.
811
812 d_getpgrp (d_getpgrp.U):
813         This variable conditionally defines HAS_GETPGRP if getpgrp() is
814         available to get the current process group.
815
816 d_getppid (d_getppid.U):
817         This variable conditionally defines the HAS_GETPPID symbol, which
818         indicates to the C program that the getppid() routine is available
819         to get the parent process ID.
820
821 d_getprior (d_getprior.U):
822         This variable conditionally defines HAS_GETPRIORITY if getpriority()
823         is available to get a process's priority.
824
825 d_getprotoprotos (d_getprotoprotos.U):
826         This variable conditionally defines the HAS_GETPROTO_PROTOS symbol,
827         which indicates to the C program that <netdb.h> supplies
828         prototypes for the various getproto*() functions.  
829         See also netdbtype.U for probing for various netdb types.
830
831 d_getprpwnam (d_getprpwnam.U):
832         This variable conditionally defines HAS_GETPRPWNAM if getprpwnam() is
833         available to retrieve protected (shadow) password entries by name.
834
835 d_getpwent (d_getpwent.U):
836         This variable conditionally defines the HAS_GETPWENT symbol, which
837         indicates to the C program that the getpwent() routine is available
838         for sequential access of the passwd database.
839
840 d_getsbyname (d_getsrvby.U):
841         This variable conditionally defines the HAS_GETSERVBYNAME 
842         symbol, which indicates to the C program that the 
843         getservbyname() routine is available to look up services
844         by their name.
845
846 d_getsbyport (d_getsrvby.U):
847         This variable conditionally defines the HAS_GETSERVBYPORT 
848         symbol, which indicates to the C program that the 
849         getservbyport() routine is available to look up services
850         by their port.
851
852 d_getsent (d_getsent.U):
853         This variable conditionally defines HAS_GETSERVENT if getservent() is
854         available to look up network services in some data base or another.
855
856 d_getservprotos (d_getservprotos.U):
857         This variable conditionally defines the HAS_GETSERV_PROTOS symbol,
858         which indicates to the C program that <netdb.h> supplies
859         prototypes for the various getserv*() functions.  
860         See also netdbtype.U for probing for various netdb types.
861
862 d_getspnam (d_getspnam.U):
863         This variable conditionally defines HAS_GETSPNAM if getspnam() is
864         available to retrieve SysV shadow password entries by name.
865
866 d_gettimeod (d_ftime.U):
867         This variable conditionally defines the HAS_GETTIMEOFDAY symbol, which
868         indicates that the gettimeofday() system call exists (to obtain a
869         sub-second accuracy clock). You should probably include <sys/resource.h>.
870
871 d_gnulibc (d_gnulibc.U):
872         Defined if we're dealing with the GNU C Library.
873
874 d_grpasswd (i_grp.U):
875         This variable conditionally defines GRPASSWD, which indicates
876         that struct group in <grp.h> contains gr_passwd.
877
878 d_hasmntopt (d_hasmntopt.U):
879         This variable conditionally defines the HAS_HASMNTOPT symbol, which
880         indicates to the C program that the hasmntopt() routine is available
881         to query the mount options of file systems.
882
883 d_htonl (d_htonl.U):
884         This variable conditionally defines HAS_HTONL if htonl() and its
885         friends are available to do network order byte swapping.
886
887 d_index (d_strchr.U):
888         This variable conditionally defines HAS_INDEX if index() and
889         rindex() are available for string searching.
890
891 d_inetaton (d_inetaton.U):
892         This variable conditionally defines the HAS_INET_ATON symbol, which
893         indicates to the C program that the inet_aton() function is available
894         to parse IP address "dotted-quad" strings.
895
896 d_int64_t (d_int64_t.U):
897         This symbol will be defined if the C compiler supports int64_t.
898
899 d_isascii (d_isascii.U):
900         This variable conditionally defines the HAS_ISASCII constant,
901         which indicates to the C program that isascii() is available.
902
903 d_isfinite (d_isfinite.U):
904         This variable conditionally defines the HAS_ISFINITE symbol, which
905         indicates to the C program that the isfinite() routine is available.
906
907 d_isinf (d_isinf.U):
908         This variable conditionally defines the HAS_ISINF symbol, which
909         indicates to the C program that the isinf() routine is available.
910
911 d_isnan (d_isnan.U):
912         This variable conditionally defines the HAS_ISNAN symbol, which
913         indicates to the C program that the isnan() routine is available.
914
915 d_isnanl (d_isnanl.U):
916         This variable conditionally defines the HAS_ISNANL symbol, which
917         indicates to the C program that the isnanl() routine is available.
918
919 d_killpg (d_killpg.U):
920         This variable conditionally defines the HAS_KILLPG symbol, which
921         indicates to the C program that the killpg() routine is available
922         to kill process groups.
923
924 d_lchown (d_lchown.U):
925         This variable conditionally defines the HAS_LCHOWN symbol, which
926         indicates to the C program that the lchown() routine is available
927         to operate on a symbolic link (instead of following the link).
928
929 d_ldbl_dig (d_ldbl_dig.U):
930         This variable conditionally defines d_ldbl_dig if this system's
931         header files provide LDBL_DIG, which is the number of significant
932         digits in a long double precision number.
933
934 d_link (d_link.U):
935         This variable conditionally defines HAS_LINK if link() is
936         available to create hard links.
937
938 d_locconv (d_locconv.U):
939         This variable conditionally defines HAS_LOCALECONV if localeconv() is
940         available for numeric and monetary formatting conventions.
941
942 d_lockf (d_lockf.U):
943         This variable conditionally defines HAS_LOCKF if lockf() is
944         available to do file locking.
945
946 d_longdbl (d_longdbl.U):
947         This variable conditionally defines HAS_LONG_DOUBLE if 
948         the long double type is supported.
949
950 d_longlong (d_longlong.U):
951         This variable conditionally defines HAS_LONG_LONG if 
952         the long long type is supported.
953
954 d_lseekproto (d_lseekproto.U):
955         This variable conditionally defines the HAS_LSEEK_PROTO symbol,
956         which indicates to the C program that the system provides
957         a prototype for the lseek() function.  Otherwise, it is
958         up to the program to supply one.
959
960 d_lstat (d_lstat.U):
961         This variable conditionally defines HAS_LSTAT if lstat() is
962         available to do file stats on symbolic links.
963
964 d_madvise (d_madvise.U):
965         This variable conditionally defines HAS_MADVISE if madvise() is
966         available to map a file into memory.
967
968 d_mblen (d_mblen.U):
969         This variable conditionally defines the HAS_MBLEN symbol, which
970         indicates to the C program that the mblen() routine is available
971         to find the number of bytes in a multibye character.
972
973 d_mbstowcs (d_mbstowcs.U):
974         This variable conditionally defines the HAS_MBSTOWCS symbol, which
975         indicates to the C program that the mbstowcs() routine is available
976         to convert a multibyte string into a wide character string.
977
978 d_mbtowc (d_mbtowc.U):
979         This variable conditionally defines the HAS_MBTOWC symbol, which
980         indicates to the C program that the mbtowc() routine is available
981         to convert multibyte to a wide character.
982
983 d_memchr (d_memchr.U):
984         This variable conditionally defines the HAS_MEMCHR symbol, which
985         indicates to the C program that the memchr() routine is available
986         to locate characters within a C string.
987
988 d_memcmp (d_memcmp.U):
989         This variable conditionally defines the HAS_MEMCMP symbol, which
990         indicates to the C program that the memcmp() routine is available
991         to compare blocks of memory.
992
993 d_memcpy (d_memcpy.U):
994         This variable conditionally defines the HAS_MEMCPY symbol, which
995         indicates to the C program that the memcpy() routine is available
996         to copy blocks of memory.
997
998 d_memmove (d_memmove.U):
999         This variable conditionally defines the HAS_MEMMOVE symbol, which
1000         indicates to the C program that the memmove() routine is available
1001         to copy potentatially overlapping blocks of memory.
1002
1003 d_memset (d_memset.U):
1004         This variable conditionally defines the HAS_MEMSET symbol, which
1005         indicates to the C program that the memset() routine is available
1006         to set blocks of memory.
1007
1008 d_mkdir (d_mkdir.U):
1009         This variable conditionally defines the HAS_MKDIR symbol, which
1010         indicates to the C program that the mkdir() routine is available
1011         to create directories..
1012
1013 d_mkdtemp (d_mkdtemp.U):
1014         This variable conditionally defines the HAS_MKDTEMP symbol, which
1015         indicates to the C program that the mkdtemp() routine is available
1016         to exclusively create a uniquely named temporary directory.
1017
1018 d_mkfifo (d_mkfifo.U):
1019         This variable conditionally defines the HAS_MKFIFO symbol, which
1020         indicates to the C program that the mkfifo() routine is available.
1021
1022 d_mkstemp (d_mkstemp.U):
1023         This variable conditionally defines the HAS_MKSTEMP symbol, which
1024         indicates to the C program that the mkstemp() routine is available
1025         to exclusively create and open a uniquely named temporary file.
1026
1027 d_mkstemps (d_mkstemps.U):
1028         This variable conditionally defines the HAS_MKSTEMPS symbol, which
1029         indicates to the C program that the mkstemps() routine is available
1030         to exclusively create and open a uniquely named (with a suffix)
1031         temporary file.
1032
1033 d_mktime (d_mktime.U):
1034         This variable conditionally defines the HAS_MKTIME symbol, which
1035         indicates to the C program that the mktime() routine is available.
1036
1037 d_mmap (d_mmap.U):
1038         This variable conditionally defines HAS_MMAP if mmap() is
1039         available to map a file into memory.
1040
1041 d_modfl (d_modfl.U):
1042         This variable conditionally defines the HAS_MODFL symbol, which
1043         indicates to the C program that the modfl() routine is available.
1044
1045 d_modfl_pow32_bug (d_modfl.U):
1046         This variable conditionally defines the HAS_MODFL_POW32_BUG symbol,
1047         which indicates that modfl() is broken for long doubles >= pow(2, 32).
1048         For example from 4294967303.150000 one would get 4294967302.000000
1049         and 1.150000.  The bug has been seen in certain versions of glibc,
1050         release 2.2.2 is known to be okay.
1051
1052 d_mprotect (d_mprotect.U):
1053         This variable conditionally defines HAS_MPROTECT if mprotect() is
1054         available to modify the access protection of a memory mapped file.
1055
1056 d_msg (d_msg.U):
1057         This variable conditionally defines the HAS_MSG symbol, which
1058         indicates that the entire msg*(2) library is present.
1059
1060 d_msg_ctrunc (d_socket.U):
1061         This variable conditionally defines the HAS_MSG_CTRUNC symbol,
1062         which indicates that the MSG_CTRUNC is available.  #ifdef is
1063         not enough because it may be an enum, glibc has been known to do this.
1064
1065 d_msg_dontroute (d_socket.U):
1066         This variable conditionally defines the HAS_MSG_DONTROUTE symbol,
1067         which indicates that the MSG_DONTROUTE is available.  #ifdef is
1068         not enough because it may be an enum, glibc has been known to do this.
1069
1070 d_msg_oob (d_socket.U):
1071         This variable conditionally defines the HAS_MSG_OOB symbol,
1072         which indicates that the MSG_OOB is available.  #ifdef is
1073         not enough because it may be an enum, glibc has been known to do this.
1074
1075 d_msg_peek (d_socket.U):
1076         This variable conditionally defines the HAS_MSG_PEEK symbol,
1077         which indicates that the MSG_PEEK is available.  #ifdef is
1078         not enough because it may be an enum, glibc has been known to do this.
1079
1080 d_msg_proxy (d_socket.U):
1081         This variable conditionally defines the HAS_MSG_PROXY symbol,
1082         which indicates that the MSG_PROXY is available.  #ifdef is
1083         not enough because it may be an enum, glibc has been known to do this.
1084
1085 d_msgctl (d_msgctl.U):
1086         This variable conditionally defines the HAS_MSGCTL symbol, which
1087         indicates to the C program that the msgctl() routine is available.
1088
1089 d_msgget (d_msgget.U):
1090         This variable conditionally defines the HAS_MSGGET symbol, which
1091         indicates to the C program that the msgget() routine is available.
1092
1093 d_msghdr_s (d_msghdr_s.U):
1094         This variable conditionally defines the HAS_STRUCT_MSGHDR symbol,
1095         which indicates that the struct msghdr is supported.
1096
1097 d_msgrcv (d_msgrcv.U):
1098         This variable conditionally defines the HAS_MSGRCV symbol, which
1099         indicates to the C program that the msgrcv() routine is available.
1100
1101 d_msgsnd (d_msgsnd.U):
1102         This variable conditionally defines the HAS_MSGSND symbol, which
1103         indicates to the C program that the msgsnd() routine is available.
1104
1105 d_msync (d_msync.U):
1106         This variable conditionally defines HAS_MSYNC if msync() is
1107         available to synchronize a mapped file.
1108
1109 d_munmap (d_munmap.U):
1110         This variable conditionally defines HAS_MUNMAP if munmap() is
1111         available to unmap a region mapped by mmap().
1112
1113 d_mymalloc (mallocsrc.U):
1114         This variable conditionally defines MYMALLOC in case other parts
1115         of the source want to take special action if MYMALLOC is used.
1116         This may include different sorts of profiling or error detection.
1117
1118 d_nice (d_nice.U):
1119         This variable conditionally defines the HAS_NICE symbol, which
1120         indicates to the C program that the nice() routine is available.
1121
1122 d_nl_langinfo (d_nl_langinfo.U):
1123         This variable conditionally defines the HAS_NL_LANGINFO symbol, which
1124         indicates to the C program that the nl_langinfo() routine is available.
1125
1126 d_nv_preserves_uv (perlxv.U):
1127         This variable indicates whether a variable of type nvtype
1128         can preserve all the bits a variable of type uvtype.
1129
1130 d_nv_preserves_uv_bits (perlxv.U):
1131         This variable indicates how many of bits type uvtype
1132         a variable nvtype can preserve.
1133
1134 d_off64_t (d_off64_t.U):
1135         This symbol will be defined if the C compiler supports off64_t.
1136
1137 d_old_pthread_create_joinable (d_pthrattrj.U):
1138         This variable conditionally defines pthread_create_joinable.
1139         undef if pthread.h defines PTHREAD_CREATE_JOINABLE.
1140
1141 d_oldpthreads (usethreads.U):
1142         This variable conditionally defines the OLD_PTHREADS_API symbol,
1143         and indicates that Perl should be built to use the old
1144         draft POSIX threads API.  This is only potentially meaningful if
1145         usethreads is set.
1146
1147 d_oldsock (d_socket.U):
1148         This variable conditionally defines the OLDSOCKET symbol, which
1149         indicates that the BSD socket interface is based on 4.1c and not 4.2.
1150
1151 d_open3 (d_open3.U):
1152         This variable conditionally defines the HAS_OPEN3 manifest constant,
1153         which indicates to the C program that the 3 argument version of
1154         the open(2) function is available.
1155
1156 d_pathconf (d_pathconf.U):
1157         This variable conditionally defines the HAS_PATHCONF symbol, which
1158         indicates to the C program that the pathconf() routine is available
1159         to determine file-system related limits and options associated
1160         with a given filename.
1161
1162 d_pause (d_pause.U):
1163         This variable conditionally defines the HAS_PAUSE symbol, which
1164         indicates to the C program that the pause() routine is available
1165         to suspend a process until a signal is received.
1166
1167 d_perl_otherlibdirs (otherlibdirs.U):
1168         This variable conditionally defines PERL_OTHERLIBDIRS, which
1169         contains a colon-separated set of paths for the perl binary to
1170         include in @INC.  See also otherlibdirs.
1171
1172 d_phostname (d_gethname.U):
1173         This variable conditionally defines the HAS_PHOSTNAME symbol, which
1174         contains the shell command which, when fed to popen(), may be
1175         used to derive the host name.
1176
1177 d_pipe (d_pipe.U):
1178         This variable conditionally defines the HAS_PIPE symbol, which
1179         indicates to the C program that the pipe() routine is available
1180         to create an inter-process channel.
1181
1182 d_poll (d_poll.U):
1183         This variable conditionally defines the HAS_POLL symbol, which
1184         indicates to the C program that the poll() routine is available
1185         to poll active file descriptors.
1186
1187 d_portable (d_portable.U):
1188         This variable conditionally defines the PORTABLE symbol, which
1189         indicates to the C program that it should not assume that it is
1190         running on the machine it was compiled on.
1191
1192 d_PRId64 (quadfio.U):
1193         This variable conditionally defines the PERL_PRId64 symbol, which
1194         indiciates that stdio has a symbol to print 64-bit decimal numbers.
1195
1196 d_PRIeldbl (longdblfio.U):
1197         This variable conditionally defines the PERL_PRIfldbl symbol, which
1198         indiciates that stdio has a symbol to print long doubles.
1199
1200 d_PRIEUldbl (longdblfio.U):
1201         This variable conditionally defines the PERL_PRIfldbl symbol, which
1202         indiciates that stdio has a symbol to print long doubles.
1203         The 'U' in the name is to separate this from d_PRIeldbl so that even
1204         case-blind systems can see the difference.
1205
1206 d_PRIfldbl (longdblfio.U):
1207         This variable conditionally defines the PERL_PRIfldbl symbol, which
1208         indiciates that stdio has a symbol to print long doubles.
1209
1210 d_PRIFUldbl (longdblfio.U):
1211         This variable conditionally defines the PERL_PRIfldbl symbol, which
1212         indiciates that stdio has a symbol to print long doubles.
1213         The 'U' in the name is to separate this from d_PRIfldbl so that even
1214         case-blind systems can see the difference.
1215
1216 d_PRIgldbl (longdblfio.U):
1217         This variable conditionally defines the PERL_PRIfldbl symbol, which
1218         indiciates that stdio has a symbol to print long doubles.
1219
1220 d_PRIGUldbl (longdblfio.U):
1221         This variable conditionally defines the PERL_PRIfldbl symbol, which
1222         indiciates that stdio has a symbol to print long doubles.
1223         The 'U' in the name is to separate this from d_PRIgldbl so that even
1224         case-blind systems can see the difference.
1225
1226 d_PRIi64 (quadfio.U):
1227         This variable conditionally defines the PERL_PRIi64 symbol, which
1228         indiciates that stdio has a symbol to print 64-bit decimal numbers.
1229
1230 d_PRIo64 (quadfio.U):
1231         This variable conditionally defines the PERL_PRIo64 symbol, which
1232         indiciates that stdio has a symbol to print 64-bit octal numbers.
1233
1234 d_PRIu64 (quadfio.U):
1235         This variable conditionally defines the PERL_PRIu64 symbol, which
1236         indiciates that stdio has a symbol to print 64-bit unsigned decimal
1237         numbers.
1238
1239 d_PRIx64 (quadfio.U):
1240         This variable conditionally defines the PERL_PRIx64 symbol, which
1241         indiciates that stdio has a symbol to print 64-bit hexadecimal numbers.
1242
1243 d_PRIXU64 (quadfio.U):
1244         This variable conditionally defines the PERL_PRIXU64 symbol, which
1245         indiciates that stdio has a symbol to print 64-bit hExADECimAl numbers.
1246         The 'U' in the name is to separate this from d_PRIx64 so that even
1247         case-blind systems can see the difference.
1248
1249 d_procselfexe (d_procselfexe.U):
1250         Defined if $procselfexe is symlink to the absolute
1251         pathname of the executing program.
1252
1253 d_pthread_atfork (d_pthread_atfork.U):
1254         This variable conditionally defines the HAS_PTHREAD_ATFORK symbol,
1255         which indicates to the C program that the pthread_atfork()
1256         routine is available.
1257
1258 d_pthread_yield (d_pthread_y.U):
1259         This variable conditionally defines the HAS_PTHREAD_YIELD
1260         symbol if the pthread_yield routine is available to yield
1261         the execution of the current thread.
1262
1263 d_pwage (i_pwd.U):
1264         This variable conditionally defines PWAGE, which indicates
1265         that struct passwd contains pw_age.
1266
1267 d_pwchange (i_pwd.U):
1268         This variable conditionally defines PWCHANGE, which indicates
1269         that struct passwd contains pw_change.
1270
1271 d_pwclass (i_pwd.U):
1272         This variable conditionally defines PWCLASS, which indicates
1273         that struct passwd contains pw_class.
1274
1275 d_pwcomment (i_pwd.U):
1276         This variable conditionally defines PWCOMMENT, which indicates
1277         that struct passwd contains pw_comment.
1278
1279 d_pwexpire (i_pwd.U):
1280         This variable conditionally defines PWEXPIRE, which indicates
1281         that struct passwd contains pw_expire.
1282
1283 d_pwgecos (i_pwd.U):
1284         This variable conditionally defines PWGECOS, which indicates
1285         that struct passwd contains pw_gecos.
1286
1287 d_pwpasswd (i_pwd.U):
1288         This variable conditionally defines PWPASSWD, which indicates
1289         that struct passwd contains pw_passwd.
1290
1291 d_pwquota (i_pwd.U):
1292         This variable conditionally defines PWQUOTA, which indicates
1293         that struct passwd contains pw_quota.
1294
1295 d_qgcvt (d_qgcvt.U):
1296         This variable conditionally defines the HAS_QGCVT symbol, which
1297         indicates to the C program that the qgcvt() routine is available.
1298
1299 d_quad (quadtype.U):
1300         This variable, if defined, tells that there's a 64-bit integer type,
1301         quadtype.
1302
1303 d_readdir (d_readdir.U):
1304         This variable conditionally defines HAS_READDIR if readdir() is
1305         available to read directory entries.
1306
1307 d_readlink (d_readlink.U):
1308         This variable conditionally defines the HAS_READLINK symbol, which
1309         indicates to the C program that the readlink() routine is available
1310         to read the value of a symbolic link.
1311
1312 d_readv (d_readv.U):
1313         This variable conditionally defines the HAS_READV symbol, which
1314         indicates to the C program that the readv() routine is available.
1315
1316 d_recvmsg (d_recvmsg.U):
1317         This variable conditionally defines the HAS_RECVMSG symbol, which
1318         indicates to the C program that the recvmsg() routine is available.
1319
1320 d_rename (d_rename.U):
1321         This variable conditionally defines the HAS_RENAME symbol, which
1322         indicates to the C program that the rename() routine is available
1323         to rename files.
1324
1325 d_rewinddir (d_readdir.U):
1326         This variable conditionally defines HAS_REWINDDIR if rewinddir() is
1327         available.
1328
1329 d_rmdir (d_rmdir.U):
1330         This variable conditionally defines HAS_RMDIR if rmdir() is
1331         available to remove directories.
1332
1333 d_safebcpy (d_safebcpy.U):
1334         This variable conditionally defines the HAS_SAFE_BCOPY symbol if
1335         the bcopy() routine can do overlapping copies.  Normally, you
1336         should probably use memmove().
1337
1338 d_safemcpy (d_safemcpy.U):
1339         This variable conditionally defines the HAS_SAFE_MEMCPY symbol if
1340         the memcpy() routine can do overlapping copies.
1341         For overlapping copies, memmove() should be used, if available.
1342
1343 d_sanemcmp (d_sanemcmp.U):
1344         This variable conditionally defines the HAS_SANE_MEMCMP symbol if
1345         the memcpy() routine is available and can be used to compare relative
1346         magnitudes of chars with their high bits set.
1347
1348 d_sbrkproto (d_sbrkproto.U):
1349         This variable conditionally defines the HAS_SBRK_PROTO symbol,
1350         which indicates to the C program that the system provides
1351         a prototype for the sbrk() function.  Otherwise, it is
1352         up to the program to supply one.
1353
1354 d_sched_yield (d_pthread_y.U):
1355         This variable conditionally defines the HAS_SCHED_YIELD
1356         symbol if the sched_yield routine is available to yield
1357         the execution of the current thread.
1358
1359 d_scm_rights (d_socket.U):
1360         This variable conditionally defines the HAS_SCM_RIGHTS symbol,
1361         which indicates that the SCM_RIGHTS is available.  #ifdef is
1362         not enough because it may be an enum, glibc has been known to do this.
1363
1364 d_SCNfldbl (longdblfio.U):
1365         This variable conditionally defines the PERL_PRIfldbl symbol, which
1366         indiciates that stdio has a symbol to scan long doubles.
1367
1368 d_seekdir (d_readdir.U):
1369         This variable conditionally defines HAS_SEEKDIR if seekdir() is
1370         available.
1371
1372 d_select (d_select.U):
1373         This variable conditionally defines HAS_SELECT if select() is
1374         available to select active file descriptors. A <sys/time.h>
1375         inclusion may be necessary for the timeout field.
1376
1377 d_sem (d_sem.U):
1378         This variable conditionally defines the HAS_SEM symbol, which
1379         indicates that the entire sem*(2) library is present.
1380
1381 d_semctl (d_semctl.U):
1382         This variable conditionally defines the HAS_SEMCTL symbol, which
1383         indicates to the C program that the semctl() routine is available.
1384
1385 d_semctl_semid_ds (d_union_semun.U):
1386         This variable conditionally defines USE_SEMCTL_SEMID_DS, which
1387         indicates that struct semid_ds * is to be used for semctl IPC_STAT.
1388
1389 d_semctl_semun (d_union_semun.U):
1390         This variable conditionally defines USE_SEMCTL_SEMUN, which
1391         indicates that union semun is to be used for semctl IPC_STAT.
1392
1393 d_semget (d_semget.U):
1394         This variable conditionally defines the HAS_SEMGET symbol, which
1395         indicates to the C program that the semget() routine is available.
1396
1397 d_semop (d_semop.U):
1398         This variable conditionally defines the HAS_SEMOP symbol, which
1399         indicates to the C program that the semop() routine is available.
1400
1401 d_sendmsg (d_sendmsg.U):
1402         This variable conditionally defines the HAS_SENDMSG symbol, which
1403         indicates to the C program that the sendmsg() routine is available.
1404
1405 d_setegid (d_setegid.U):
1406         This variable conditionally defines the HAS_SETEGID symbol, which
1407         indicates to the C program that the setegid() routine is available
1408         to change the effective gid of the current program.
1409
1410 d_seteuid (d_seteuid.U):
1411         This variable conditionally defines the HAS_SETEUID symbol, which
1412         indicates to the C program that the seteuid() routine is available
1413         to change the effective uid of the current program.
1414
1415 d_setgrent (d_setgrent.U):
1416         This variable conditionally defines the HAS_SETGRENT symbol, which
1417         indicates to the C program that the setgrent() routine is available
1418         for initializing sequential access to the group database.
1419
1420 d_setgrps (d_setgrps.U):
1421         This variable conditionally defines the HAS_SETGROUPS symbol, which
1422         indicates to the C program that the setgroups() routine is available
1423         to set the list of process groups.
1424
1425 d_sethent (d_sethent.U):
1426         This variable conditionally defines HAS_SETHOSTENT if sethostent() is
1427         available.
1428
1429 d_setitimer (d_setitimer.U):
1430         This variable conditionally defines the HAS_SETITIMER symbol, which
1431         indicates to the C program that the setitimer() routine is available.
1432
1433 d_setlinebuf (d_setlnbuf.U):
1434         This variable conditionally defines the HAS_SETLINEBUF symbol, which
1435         indicates to the C program that the setlinebuf() routine is available
1436         to change stderr or stdout from block-buffered or unbuffered to a
1437         line-buffered mode.
1438
1439 d_setlocale (d_setlocale.U):
1440         This variable conditionally defines HAS_SETLOCALE if setlocale() is
1441         available to handle locale-specific ctype implementations.
1442
1443 d_setnent (d_setnent.U):
1444         This variable conditionally defines HAS_SETNETENT if setnetent() is
1445         available.
1446
1447 d_setpent (d_setpent.U):
1448         This variable conditionally defines HAS_SETPROTOENT if setprotoent() is
1449         available.
1450
1451 d_setpgid (d_setpgid.U):
1452         This variable conditionally defines the HAS_SETPGID symbol if the
1453         setpgid(pid, gpid) function is available to set process group ID.
1454
1455 d_setpgrp2 (d_setpgrp2.U):
1456         This variable conditionally defines the HAS_SETPGRP2 symbol, which
1457         indicates to the C program that the setpgrp2() (as in DG/UX) routine
1458         is available to set the current process group.
1459
1460 d_setpgrp (d_setpgrp.U):
1461         This variable conditionally defines HAS_SETPGRP if setpgrp() is
1462         available to set the current process group.
1463
1464 d_setprior (d_setprior.U):
1465         This variable conditionally defines HAS_SETPRIORITY if setpriority()
1466         is available to set a process's priority.
1467
1468 d_setproctitle (d_setproctitle.U):
1469         This variable conditionally defines the HAS_SETPROCTITLE symbol,
1470         which indicates to the C program that the setproctitle() routine
1471         is available.
1472
1473 d_setpwent (d_setpwent.U):
1474         This variable conditionally defines the HAS_SETPWENT symbol, which
1475         indicates to the C program that the setpwent() routine is available
1476         for initializing sequential access to the passwd database.
1477
1478 d_setregid (d_setregid.U):
1479         This variable conditionally defines HAS_SETREGID if setregid() is
1480         available to change the real and effective gid of the current
1481         process.
1482
1483 d_setresgid (d_setregid.U):
1484         This variable conditionally defines HAS_SETRESGID if setresgid() is
1485         available to change the real, effective and saved gid of the current
1486         process.
1487
1488 d_setresuid (d_setreuid.U):
1489         This variable conditionally defines HAS_SETREUID if setresuid() is
1490         available to change the real, effective and saved uid of the current
1491         process.
1492
1493 d_setreuid (d_setreuid.U):
1494         This variable conditionally defines HAS_SETREUID if setreuid() is
1495         available to change the real and effective uid of the current
1496         process.
1497
1498 d_setrgid (d_setrgid.U):
1499         This variable conditionally defines the HAS_SETRGID symbol, which
1500         indicates to the C program that the setrgid() routine is available
1501         to change the real gid of the current program.
1502
1503 d_setruid (d_setruid.U):
1504         This variable conditionally defines the HAS_SETRUID symbol, which
1505         indicates to the C program that the setruid() routine is available
1506         to change the real uid of the current program.
1507
1508 d_setsent (d_setsent.U):
1509         This variable conditionally defines HAS_SETSERVENT if setservent() is
1510         available.
1511
1512 d_setsid (d_setsid.U):
1513         This variable conditionally defines HAS_SETSID if setsid() is
1514         available to set the process group ID.
1515
1516 d_setvbuf (d_setvbuf.U):
1517         This variable conditionally defines the HAS_SETVBUF symbol, which
1518         indicates to the C program that the setvbuf() routine is available
1519         to change buffering on an open stdio stream.
1520
1521 d_sfio (d_sfio.U):
1522         This variable conditionally defines the USE_SFIO symbol,
1523         and indicates whether sfio is available (and should be used).
1524
1525 d_shm (d_shm.U):
1526         This variable conditionally defines the HAS_SHM symbol, which
1527         indicates that the entire shm*(2) library is present.
1528
1529 d_shmat (d_shmat.U):
1530         This variable conditionally defines the HAS_SHMAT symbol, which
1531         indicates to the C program that the shmat() routine is available.
1532
1533 d_shmatprototype (d_shmat.U):
1534         This variable conditionally defines the HAS_SHMAT_PROTOTYPE 
1535         symbol, which indicates that sys/shm.h has a prototype for
1536         shmat.
1537
1538 d_shmctl (d_shmctl.U):
1539         This variable conditionally defines the HAS_SHMCTL symbol, which
1540         indicates to the C program that the shmctl() routine is available.
1541
1542 d_shmdt (d_shmdt.U):
1543         This variable conditionally defines the HAS_SHMDT symbol, which
1544         indicates to the C program that the shmdt() routine is available.
1545
1546 d_shmget (d_shmget.U):
1547         This variable conditionally defines the HAS_SHMGET symbol, which
1548         indicates to the C program that the shmget() routine is available.
1549
1550 d_sigaction (d_sigaction.U):
1551         This variable conditionally defines the HAS_SIGACTION symbol, which
1552         indicates that the Vr4 sigaction() routine is available.
1553
1554 d_sigprocmask (d_sigprocmask.U):
1555         This variable conditionally defines HAS_SIGPROCMASK
1556         if sigprocmask() is available to examine or change the signal mask
1557         of the calling process.
1558
1559 d_sigsetjmp (d_sigsetjmp.U):
1560         This variable conditionally defines the HAS_SIGSETJMP symbol,
1561         which indicates that the sigsetjmp() routine is available to
1562         call setjmp() and optionally save the process's signal mask.
1563
1564 d_sockatmark (d_sockatmark.U):
1565         This variable conditionally defines the HAS_SOCKATMARK symbol, which
1566         indicates to the C program that the sockatmark() routine is available.
1567
1568 d_sockatmarkproto (d_sockatmarkproto.U):
1569         This variable conditionally defines the HAS_SOCKATMARK_PROTO symbol,
1570         which indicates to the C program that the system provides
1571         a prototype for the sockatmark() function.  Otherwise, it is
1572         up to the program to supply one.
1573
1574 d_socket (d_socket.U):
1575         This variable conditionally defines HAS_SOCKET, which indicates
1576         that the BSD socket interface is supported.
1577
1578 d_socklen_t (d_socklen_t.U):
1579         This symbol will be defined if the C compiler supports socklen_t.
1580
1581 d_sockpair (d_socket.U):
1582         This variable conditionally defines the HAS_SOCKETPAIR symbol, which
1583         indicates that the BSD socketpair() is supported.
1584
1585 d_socks5_init (d_socks5_init.U):
1586         This variable conditionally defines the HAS_SOCKS5_INIT symbol, which
1587         indicates to the C program that the socks5_init() routine is available.
1588
1589 d_sqrtl (d_sqrtl.U):
1590         This variable conditionally defines the HAS_SQRTL symbol, which
1591         indicates to the C program that the sqrtl() routine is available.
1592
1593 d_sresgproto (d_sresgproto.U):
1594         This variable conditionally defines the HAS_SETRESGID_PROTO symbol,
1595         which indicates to the C program that the system provides
1596         a prototype for the setresgid() function.  Otherwise, it is
1597         up to the program to supply one.
1598
1599 d_sresuproto (d_sresuproto.U):
1600         This variable conditionally defines the HAS_SETRESUID_PROTO symbol,
1601         which indicates to the C program that the system provides
1602         a prototype for the setresuid() function.  Otherwise, it is
1603         up to the program to supply one.
1604
1605 d_statblks (d_statblks.U):
1606         This variable conditionally defines USE_STAT_BLOCKS
1607         if this system has a stat structure declaring
1608         st_blksize and st_blocks.
1609
1610 d_statfs_f_flags (d_statfs_f_flags.U):
1611         This variable conditionally defines the HAS_STRUCT_STATFS_F_FLAGS
1612         symbol, which indicates to struct statfs from has f_flags member.
1613         This kind of struct statfs is coming from sys/mount.h (BSD),
1614         not from sys/statfs.h (SYSV).
1615
1616 d_statfs_s (d_statfs_s.U):
1617         This variable conditionally defines the HAS_STRUCT_STATFS symbol,
1618         which indicates that the struct statfs is supported.
1619
1620 d_statvfs (d_statvfs.U):
1621         This variable conditionally defines the HAS_STATVFS symbol, which
1622         indicates to the C program that the statvfs() routine is available.
1623
1624 d_stdio_cnt_lval (d_stdstdio.U):
1625         This variable conditionally defines STDIO_CNT_LVALUE if the
1626         FILE_cnt macro can be used as an lvalue.
1627
1628 d_stdio_ptr_lval (d_stdstdio.U):
1629         This variable conditionally defines STDIO_PTR_LVALUE if the
1630         FILE_ptr macro can be used as an lvalue.
1631
1632 d_stdio_ptr_lval_nochange_cnt (d_stdstdio.U):
1633         This symbol is defined if using the FILE_ptr macro as an lvalue
1634         to increase the pointer by n leaves File_cnt(fp) unchanged.
1635
1636 d_stdio_ptr_lval_sets_cnt (d_stdstdio.U):
1637         This symbol is defined if using the FILE_ptr macro as an lvalue
1638         to increase the pointer by n has the side effect of decreasing the
1639         value of File_cnt(fp) by n.
1640
1641 d_stdio_stream_array (stdio_streams.U):
1642         This variable tells whether there is an array holding
1643         the stdio streams.
1644
1645 d_stdiobase (d_stdstdio.U):
1646         This variable conditionally defines USE_STDIO_BASE if this system
1647         has a FILE structure declaring a usable _base field (or equivalent)
1648         in stdio.h.
1649
1650 d_stdstdio (d_stdstdio.U):
1651         This variable conditionally defines USE_STDIO_PTR if this system
1652         has a FILE structure declaring usable _ptr and _cnt fields (or
1653         equivalent) in stdio.h.
1654
1655 d_strchr (d_strchr.U):
1656         This variable conditionally defines HAS_STRCHR if strchr() and
1657         strrchr() are available for string searching.
1658
1659 d_strcoll (d_strcoll.U):
1660         This variable conditionally defines HAS_STRCOLL if strcoll() is
1661         available to compare strings using collating information.
1662
1663 d_strctcpy (d_strctcpy.U):
1664         This variable conditionally defines the USE_STRUCT_COPY symbol, which
1665         indicates to the C program that this C compiler knows how to copy
1666         structures.
1667
1668 d_strerrm (d_strerror.U):
1669         This variable holds what Strerrr is defined as to translate an error
1670         code condition into an error message string. It could be 'strerror'
1671         or a more complex macro emulating strrror with sys_errlist[], or the
1672         "unknown" string when both strerror and sys_errlist are missing.
1673
1674 d_strerror (d_strerror.U):
1675         This variable conditionally defines HAS_STRERROR if strerror() is
1676         available to translate error numbers to strings.
1677
1678 d_strftime (d_strftime.U):
1679         This variable conditionally defines the HAS_STRFTIME symbol, which
1680         indicates to the C program that the strftime() routine is available.
1681
1682 d_strtod (d_strtod.U):
1683         This variable conditionally defines the HAS_STRTOD symbol, which
1684         indicates to the C program that the strtod() routine is available
1685         to provide better numeric string conversion than atof().
1686
1687 d_strtol (d_strtol.U):
1688         This variable conditionally defines the HAS_STRTOL symbol, which
1689         indicates to the C program that the strtol() routine is available
1690         to provide better numeric string conversion than atoi() and friends.
1691
1692 d_strtold (d_strtold.U):
1693         This variable conditionally defines the HAS_STRTOLD symbol, which
1694         indicates to the C program that the strtold() routine is available.
1695
1696 d_strtoll (d_strtoll.U):
1697         This variable conditionally defines the HAS_STRTOLL symbol, which
1698         indicates to the C program that the strtoll() routine is available.
1699
1700 d_strtoq (d_strtoq.U):
1701         This variable conditionally defines the HAS_STRTOQ symbol, which
1702         indicates to the C program that the strtoq() routine is available.
1703
1704 d_strtoul (d_strtoul.U):
1705         This variable conditionally defines the HAS_STRTOUL symbol, which
1706         indicates to the C program that the strtoul() routine is available
1707         to provide conversion of strings to unsigned long.
1708
1709 d_strtoull (d_strtoull.U):
1710         This variable conditionally defines the HAS_STRTOULL symbol, which
1711         indicates to the C program that the strtoull() routine is available.
1712
1713 d_strtouq (d_strtouq.U):
1714         This variable conditionally defines the HAS_STRTOUQ symbol, which
1715         indicates to the C program that the strtouq() routine is available.
1716
1717 d_strxfrm (d_strxfrm.U):
1718         This variable conditionally defines HAS_STRXFRM if strxfrm() is
1719         available to transform strings.
1720
1721 d_suidsafe (d_dosuid.U):
1722         This variable conditionally defines SETUID_SCRIPTS_ARE_SECURE_NOW
1723         if setuid scripts can be secure.  This test looks in /dev/fd/.
1724
1725 d_symlink (d_symlink.U):
1726         This variable conditionally defines the HAS_SYMLINK symbol, which
1727         indicates to the C program that the symlink() routine is available
1728         to create symbolic links.
1729
1730 d_syscall (d_syscall.U):
1731         This variable conditionally defines HAS_SYSCALL if syscall() is
1732         available call arbitrary system calls.
1733
1734 d_syscallproto (d_syscallproto.U):
1735         This variable conditionally defines the HAS_SYSCALL_PROTO symbol,
1736         which indicates to the C program that the system provides
1737         a prototype for the syscall() function.  Otherwise, it is
1738         up to the program to supply one.
1739
1740 d_sysconf (d_sysconf.U):
1741         This variable conditionally defines the HAS_SYSCONF symbol, which
1742         indicates to the C program that the sysconf() routine is available
1743         to determine system related limits and options.
1744
1745 d_sysernlst (d_strerror.U):
1746         This variable conditionally defines HAS_SYS_ERRNOLIST if sys_errnolist[]
1747         is available to translate error numbers to the symbolic name.
1748
1749 d_syserrlst (d_strerror.U):
1750         This variable conditionally defines HAS_SYS_ERRLIST if sys_errlist[] is
1751         available to translate error numbers to strings.
1752
1753 d_system (d_system.U):
1754         This variable conditionally defines HAS_SYSTEM if system() is
1755         available to issue a shell command.
1756
1757 d_tcgetpgrp (d_tcgtpgrp.U):
1758         This variable conditionally defines the HAS_TCGETPGRP symbol, which
1759         indicates to the C program that the tcgetpgrp() routine is available.
1760         to get foreground process group ID.
1761
1762 d_tcsetpgrp (d_tcstpgrp.U):
1763         This variable conditionally defines the HAS_TCSETPGRP symbol, which
1764         indicates to the C program that the tcsetpgrp() routine is available
1765         to set foreground process group ID.
1766
1767 d_telldir (d_readdir.U):
1768         This variable conditionally defines HAS_TELLDIR if telldir() is
1769         available.
1770
1771 d_telldirproto (d_telldirproto.U):
1772         This variable conditionally defines the HAS_TELLDIR_PROTO symbol,
1773         which indicates to the C program that the system provides
1774         a prototype for the telldir() function.  Otherwise, it is
1775         up to the program to supply one.
1776
1777 d_time (d_time.U):
1778         This variable conditionally defines the HAS_TIME symbol, which indicates
1779         that the time() routine exists.  The time() routine is normaly
1780         provided on UNIX systems.
1781
1782 d_times (d_times.U):
1783         This variable conditionally defines the HAS_TIMES symbol, which indicates
1784         that the times() routine exists.  The times() routine is normaly
1785         provided on UNIX systems. You may have to include <sys/times.h>.
1786
1787 d_truncate (d_truncate.U):
1788         This variable conditionally defines HAS_TRUNCATE if truncate() is
1789         available to truncate files.
1790
1791 d_tzname (d_tzname.U):
1792         This variable conditionally defines HAS_TZNAME if tzname[] is
1793         available to access timezone names.
1794
1795 d_u32align (d_u32align.U):
1796         This variable tells whether you must access character data
1797         through U32-aligned pointers.
1798
1799 d_ualarm (d_ualarm.U):
1800         This variable conditionally defines the HAS_UALARM symbol, which
1801         indicates to the C program that the ualarm() routine is available.
1802
1803 d_umask (d_umask.U):
1804         This variable conditionally defines the HAS_UMASK symbol, which
1805         indicates to the C program that the umask() routine is available.
1806         to set and get the value of the file creation mask.
1807
1808 d_uname (d_gethname.U):
1809         This variable conditionally defines the HAS_UNAME symbol, which
1810         indicates to the C program that the uname() routine may be
1811         used to derive the host name.
1812
1813 d_union_semun (d_union_semun.U):
1814         This variable conditionally defines HAS_UNION_SEMUN if the
1815         union semun is defined by including <sys/sem.h>.
1816
1817 d_unordered (d_unordered.U):
1818         This variable conditionally defines the HAS_UNORDERED symbol, which
1819         indicates to the C program that the unordered() routine is available.
1820
1821 d_usleep (d_usleep.U):
1822         This variable conditionally defines HAS_USLEEP if usleep() is
1823         available to do high granularity sleeps.
1824
1825 d_usleepproto (d_usleepproto.U):
1826         This variable conditionally defines the HAS_USLEEP_PROTO symbol,
1827         which indicates to the C program that the system provides
1828         a prototype for the usleep() function.  Otherwise, it is
1829         up to the program to supply one.
1830
1831 d_ustat (d_ustat.U):
1832         This variable conditionally defines HAS_USTAT if ustat() is
1833         available to query file system statistics by dev_t.
1834
1835 d_vendorarch (vendorarch.U):
1836         This variable conditionally defined PERL_VENDORARCH.
1837
1838 d_vendorbin (vendorbin.U):
1839         This variable conditionally defines PERL_VENDORBIN.
1840
1841 d_vendorlib (vendorlib.U):
1842         This variable conditionally defines PERL_VENDORLIB.
1843
1844 d_vfork (d_vfork.U):
1845         This variable conditionally defines the HAS_VFORK symbol, which
1846         indicates the vfork() routine is available.
1847
1848 d_void_closedir (d_closedir.U):
1849         This variable conditionally defines VOID_CLOSEDIR if closedir()
1850         does not return a value.
1851
1852 d_voidsig (d_voidsig.U):
1853         This variable conditionally defines VOIDSIG if this system
1854         declares "void (*signal(...))()" in signal.h.  The old way was to
1855         declare it as "int (*signal(...))()".
1856
1857 d_voidtty (i_sysioctl.U):
1858         This variable conditionally defines USE_IOCNOTTY to indicate that the
1859         ioctl() call with TIOCNOTTY should be used to void tty association.
1860         Otherwise (on USG probably), it is enough to close the standard file
1861         decriptors and do a setpgrp().
1862
1863 d_volatile (d_volatile.U):
1864         This variable conditionally defines the HASVOLATILE symbol, which
1865         indicates to the C program that this C compiler knows about the
1866         volatile declaration.
1867
1868 d_vprintf (d_vprintf.U):
1869         This variable conditionally defines the HAS_VPRINTF symbol, which
1870         indicates to the C program that the vprintf() routine is available
1871         to printf with a pointer to an argument list.
1872
1873 d_wait4 (d_wait4.U):
1874         This variable conditionally defines the HAS_WAIT4 symbol, which
1875         indicates the wait4() routine is available.
1876
1877 d_waitpid (d_waitpid.U):
1878         This variable conditionally defines HAS_WAITPID if waitpid() is
1879         available to wait for child process.
1880
1881 d_wcstombs (d_wcstombs.U):
1882         This variable conditionally defines the HAS_WCSTOMBS symbol, which
1883         indicates to the C program that the wcstombs() routine is available
1884         to convert wide character strings to multibyte strings.
1885
1886 d_wctomb (d_wctomb.U):
1887         This variable conditionally defines the HAS_WCTOMB symbol, which
1888         indicates to the C program that the wctomb() routine is available
1889         to convert a wide character to a multibyte.
1890
1891 d_writev (d_writev.U):
1892         This variable conditionally defines the HAS_WRITEV symbol, which
1893         indicates to the C program that the writev() routine is available.
1894
1895 d_xenix (Guess.U):
1896         This variable conditionally defines the symbol XENIX, which alerts
1897         the C program that it runs under Xenix.
1898
1899 date (Loc.U):
1900         This variable is used internally by Configure to determine the
1901         full pathname (if any) of the date program.  After Configure runs,
1902         the value is reset to a plain "date" and is not useful.
1903
1904 db_hashtype (i_db.U):
1905         This variable contains the type of the hash structure element
1906         in the <db.h> header file.  In older versions of DB, it was
1907         int, while in newer ones it is u_int32_t.
1908
1909 db_prefixtype (i_db.U):
1910         This variable contains the type of the prefix structure element
1911         in the <db.h> header file.  In older versions of DB, it was
1912         int, while in newer ones it is size_t.
1913
1914 db_version_major (i_db.U):
1915         This variable contains the major version number of
1916         Berkeley DB found in the <db.h> header file.
1917
1918 db_version_minor (i_db.U):
1919         This variable contains the minor version number of
1920         Berkeley DB found in the <db.h> header file.
1921         For DB version 1 this is always 0.
1922
1923 db_version_patch (i_db.U):
1924         This variable contains the patch version number of
1925         Berkeley DB found in the <db.h> header file.
1926         For DB version 1 this is always 0.
1927
1928 defvoidused (voidflags.U):
1929         This variable contains the default value of the VOIDUSED symbol (15).
1930
1931 direntrytype (i_dirent.U):
1932         This symbol is set to 'struct direct' or 'struct dirent' depending on
1933         whether dirent is available or not. You should use this pseudo type to
1934         portably declare your directory entries.
1935
1936 dlext (dlext.U):
1937         This variable contains the extension that is to be used for the
1938         dynamically loaded modules that perl generaties.
1939
1940 dlsrc (dlsrc.U):
1941         This variable contains the name of the dynamic loading file that
1942         will be used with the package.
1943
1944 doublesize (doublesize.U):
1945         This variable contains the value of the DOUBLESIZE symbol, which
1946         indicates to the C program how many bytes there are in a double.
1947
1948 drand01 (randfunc.U):
1949         Indicates the macro to be used to generate normalized
1950         random numbers.  Uses randfunc, often divided by
1951         (double) (((unsigned long) 1 << randbits)) in order to
1952         normalize the result.
1953         In C programs, the macro 'Drand01' is mapped to drand01.
1954
1955 dynamic_ext (Extensions.U):
1956         This variable holds a list of XS extension files we want to
1957         link dynamically into the package.  It is used by Makefile.
1958
1959 eagain (nblock_io.U):
1960         This variable bears the symbolic errno code set by read() when no
1961         data is present on the file and non-blocking I/O was enabled (otherwise,
1962         read() blocks naturally).
1963
1964 ebcdic (ebcdic.U):
1965         This variable conditionally defines EBCDIC if this
1966         system uses EBCDIC encoding.  Among other things, this
1967         means that the character ranges are not contiguous.
1968         See trnl.U
1969
1970 echo (Loc.U):
1971         This variable is used internally by Configure to determine the
1972         full pathname (if any) of the echo program.  After Configure runs,
1973         the value is reset to a plain "echo" and is not useful.
1974
1975 egrep (Loc.U):
1976         This variable is used internally by Configure to determine the
1977         full pathname (if any) of the egrep program.  After Configure runs,
1978         the value is reset to a plain "egrep" and is not useful.
1979
1980 emacs (Loc.U):
1981         This variable is defined but not used by Configure.
1982         The value is a plain '' and is not useful.
1983
1984 eunicefix (Init.U):
1985         When running under Eunice this variable contains a command which will
1986         convert a shell script to the proper form of text file for it to be
1987         executable by the shell.  On other systems it is a no-op.
1988
1989 exe_ext (Unix.U):
1990         This is an old synonym for _exe.
1991
1992 expr (Loc.U):
1993         This variable is used internally by Configure to determine the
1994         full pathname (if any) of the expr program.  After Configure runs,
1995         the value is reset to a plain "expr" and is not useful.
1996
1997 extensions (Extensions.U):
1998         This variable holds a list of all extension files (both XS and
1999         non-xs linked into the package.  It is propagated to Config.pm
2000         and is typically used to test whether a particular extesion 
2001         is available.
2002
2003 extras (Extras.U):
2004         This variable holds a list of extra modules to install.
2005
2006 fflushall (fflushall.U):
2007         This symbol, if defined, tells that to flush
2008         all pending stdio output one must loop through all
2009         the stdio file handles stored in an array and fflush them.
2010         Note that if fflushNULL is defined, fflushall will not
2011         even be probed for and will be left undefined.
2012
2013 fflushNULL (fflushall.U):
2014         This symbol, if defined, tells that fflush(NULL) does flush
2015         all pending stdio output.
2016
2017 find (Loc.U):
2018         This variable is defined but not used by Configure.
2019         The value is a plain '' and is not useful.
2020
2021 firstmakefile (Unix.U):
2022         This variable defines the first file searched by make.  On unix,
2023         it is makefile (then Makefile).  On case-insensitive systems,
2024         it might be something else.  This is only used to deal with
2025         convoluted make depend tricks.
2026
2027 flex (Loc.U):
2028         This variable is defined but not used by Configure.
2029         The value is a plain '' and is not useful.
2030
2031 fpossize (fpossize.U):
2032         This variable contains the size of a fpostype in bytes.
2033
2034 fpostype (fpostype.U):
2035         This variable defines Fpos_t to be something like fpos_t, long, 
2036         uint, or whatever type is used to declare file positions in libc.
2037
2038 freetype (mallocsrc.U):
2039         This variable contains the return type of free().  It is usually
2040         void, but occasionally int.
2041
2042 from (Cross.U):
2043         This variable contains the command used by Configure
2044         to copy files from the target host.  Useful and available
2045         only during Perl build.
2046         The string ':' if not cross-compiling.
2047
2048 full_ar (Loc_ar.U):
2049         This variable contains the full pathname to 'ar', whether or
2050         not the user has specified 'portability'.  This is only used
2051         in the Makefile.SH.
2052
2053 full_csh (d_csh.U):
2054         This variable contains the full pathname to 'csh', whether or
2055         not the user has specified 'portability'.  This is only used
2056         in the compiled C program, and we assume that all systems which
2057         can share this executable will have the same full pathname to
2058         'csh.'
2059
2060 full_sed (Loc_sed.U):
2061         This variable contains the full pathname to 'sed', whether or
2062         not the user has specified 'portability'.  This is only used
2063         in the compiled C program, and we assume that all systems which
2064         can share this executable will have the same full pathname to
2065         'sed.'
2066
2067 gccosandvers (gccvers.U):
2068         If GNU cc (gcc) is used, this variable the operating system and
2069         version used to compile the gcc.  It is set to '' if not gcc,
2070         or if nothing useful can be parsed as the os version.
2071
2072 gccversion (gccvers.U):
2073         If GNU cc (gcc) is used, this variable holds '1' or '2' to 
2074         indicate whether the compiler is version 1 or 2.  This is used in
2075         setting some of the default cflags.  It is set to '' if not gcc.
2076
2077 gidformat (gidf.U):
2078         This variable contains the format string used for printing a Gid_t.
2079
2080 gidsign (gidsign.U):
2081         This variable contains the signedness of a gidtype.
2082         1 for unsigned, -1 for signed.
2083
2084 gidsize (gidsize.U):
2085         This variable contains the size of a gidtype in bytes.
2086
2087 gidtype (gidtype.U):
2088         This variable defines Gid_t to be something like gid_t, int,
2089         ushort, or whatever type is used to declare the return type
2090         of getgid().  Typically, it is the type of group ids in the kernel.
2091
2092 glibpth (libpth.U):
2093         This variable holds the general path (space-separated) used to
2094         find libraries.  It may contain directories that do not exist on
2095         this platform, libpth is the cleaned-up version.
2096
2097 gmake (Loc.U):
2098         This variable is used internally by Configure to determine the
2099         full pathname (if any) of the gmake program.  After Configure runs,
2100         the value is reset to a plain "gmake" and is not useful.
2101
2102 grep (Loc.U):
2103         This variable is used internally by Configure to determine the
2104         full pathname (if any) of the grep program.  After Configure runs,
2105         the value is reset to a plain "grep" and is not useful.
2106
2107 groupcat (nis.U):
2108         This variable contains a command that produces the text of the
2109         /etc/group file.  This is normally "cat /etc/group", but can be
2110         "ypcat group" when NIS is used.
2111         On some systems, such as os390, there may be no equivalent
2112         command, in which case this variable is unset.
2113
2114 groupstype (groupstype.U):
2115         This variable defines Groups_t to be something like gid_t, int, 
2116         ushort, or whatever type is used for the second argument to
2117         getgroups() and setgroups().  Usually, this is the same as
2118         gidtype (gid_t), but sometimes it isn't.
2119
2120 gzip (Loc.U):
2121         This variable is used internally by Configure to determine the
2122         full pathname (if any) of the gzip program.  After Configure runs,
2123         the value is reset to a plain "gzip" and is not useful.
2124
2125 h_fcntl (h_fcntl.U):
2126         This is variable gets set in various places to tell i_fcntl that
2127         <fcntl.h> should be included.
2128
2129 h_sysfile (h_sysfile.U):
2130         This is variable gets set in various places to tell i_sys_file that
2131         <sys/file.h> should be included.
2132
2133 hint (Oldconfig.U):
2134         Gives the type of hints used for previous answers. May be one of
2135         "default", "recommended" or "previous".
2136
2137 hostcat (nis.U):
2138         This variable contains a command that produces the text of the
2139         /etc/hosts file.  This is normally "cat /etc/hosts", but can be
2140         "ypcat hosts" when NIS is used.
2141         On some systems, such as os390, there may be no equivalent
2142         command, in which case this variable is unset.
2143
2144 i16size (perlxv.U):
2145         This variable is the size of an I16 in bytes.
2146
2147 i16type (perlxv.U):
2148         This variable contains the C type used for Perl's I16.
2149
2150 i32size (perlxv.U):
2151         This variable is the size of an I32 in bytes.
2152
2153 i32type (perlxv.U):
2154         This variable contains the C type used for Perl's I32.
2155
2156 i64size (perlxv.U):
2157         This variable is the size of an I64 in bytes.
2158
2159 i64type (perlxv.U):
2160         This variable contains the C type used for Perl's I64.
2161
2162 i8size (perlxv.U):
2163         This variable is the size of an I8 in bytes.
2164
2165 i8type (perlxv.U):
2166         This variable contains the C type used for Perl's I8.
2167
2168 i_arpainet (i_arpainet.U):
2169         This variable conditionally defines the I_ARPA_INET symbol,
2170         and indicates whether a C program should include <arpa/inet.h>.
2171
2172 i_bsdioctl (i_sysioctl.U):
2173         This variable conditionally defines the I_SYS_BSDIOCTL symbol, which
2174         indicates to the C program that <sys/bsdioctl.h> exists and should
2175         be included.
2176
2177 i_db (i_db.U):
2178         This variable conditionally defines the I_DB symbol, and indicates
2179         whether a C program may include Berkeley's DB include file <db.h>.
2180
2181 i_dbm (i_dbm.U):
2182         This variable conditionally defines the I_DBM symbol, which
2183         indicates to the C program that <dbm.h> exists and should
2184         be included.
2185
2186 i_dirent (i_dirent.U):
2187         This variable conditionally defines I_DIRENT, which indicates
2188         to the C program that it should include <dirent.h>.
2189
2190 i_dld (i_dld.U):
2191         This variable conditionally defines the I_DLD symbol, which
2192         indicates to the C program that <dld.h> (GNU dynamic loading)
2193         exists and should be included.
2194
2195 i_dlfcn (i_dlfcn.U):
2196         This variable conditionally defines the I_DLFCN symbol, which
2197         indicates to the C program that <dlfcn.h> exists and should
2198         be included.
2199
2200 i_fcntl (i_fcntl.U):
2201         This variable controls the value of I_FCNTL (which tells
2202         the C program to include <fcntl.h>).
2203
2204 i_float (i_float.U):
2205         This variable conditionally defines the I_FLOAT symbol, and indicates
2206         whether a C program may include <float.h> to get symbols like DBL_MAX
2207         or DBL_MIN, i.e. machine dependent floating point values.
2208
2209 i_fp (i_fp.U):
2210         This variable conditionally defines the I_FP symbol, and indicates
2211         whether a C program should include <fp.h>.
2212
2213 i_fp_class (i_fp_class.U):
2214         This variable conditionally defines the I_FP_CLASS symbol, and indicates
2215         whether a C program should include <fp_class.h>.
2216
2217 i_gdbm (i_gdbm.U):
2218         This variable conditionally defines the I_GDBM symbol, which
2219         indicates to the C program that <gdbm.h> exists and should
2220         be included.
2221
2222 i_grp (i_grp.U):
2223         This variable conditionally defines the I_GRP symbol, and indicates
2224         whether a C program should include <grp.h>.
2225
2226 i_ieeefp (i_ieeefp.U):
2227         This variable conditionally defines the I_IEEEFP symbol, and indicates
2228         whether a C program should include <ieeefp.h>.
2229
2230 i_inttypes (i_inttypes.U):
2231         This variable conditionally defines the I_INTTYPES symbol,
2232         and indicates whether a C program should include <inttypes.h>.
2233
2234 i_langinfo (i_langinfo.U):
2235         This variable conditionally defines the I_LANGINFO symbol,
2236         and indicates whether a C program should include <langinfo.h>.
2237
2238 i_libutil (i_libutil.U):
2239         This variable conditionally defines the I_LIBUTIL symbol, and indicates
2240         whether a C program should include <libutil.h>.
2241
2242 i_limits (i_limits.U):
2243         This variable conditionally defines the I_LIMITS symbol, and indicates
2244         whether a C program may include <limits.h> to get symbols like WORD_BIT
2245         and friends.
2246
2247 i_locale (i_locale.U):
2248         This variable conditionally defines the I_LOCALE symbol,
2249         and indicates whether a C program should include <locale.h>.
2250
2251 i_machcthr (i_machcthr.U):
2252         This variable conditionally defines the I_MACH_CTHREADS symbol,
2253         and indicates whether a C program should include <mach/cthreads.h>.
2254
2255 i_malloc (i_malloc.U):
2256         This variable conditionally defines the I_MALLOC symbol, and indicates
2257         whether a C program should include <malloc.h>.
2258
2259 i_math (i_math.U):
2260         This variable conditionally defines the I_MATH symbol, and indicates
2261         whether a C program may include <math.h>.
2262
2263 i_memory (i_memory.U):
2264         This variable conditionally defines the I_MEMORY symbol, and indicates
2265         whether a C program should include <memory.h>.
2266
2267 i_mntent (i_mntent.U):
2268         This variable conditionally defines the I_MNTENT symbol, and indicates
2269         whether a C program should include <mntent.h>.
2270
2271 i_ndbm (i_ndbm.U):
2272         This variable conditionally defines the I_NDBM symbol, which
2273         indicates to the C program that <ndbm.h> exists and should
2274         be included.
2275
2276 i_netdb (i_netdb.U):
2277         This variable conditionally defines the I_NETDB symbol, and indicates
2278         whether a C program should include <netdb.h>.
2279
2280 i_neterrno (i_neterrno.U):
2281         This variable conditionally defines the I_NET_ERRNO symbol, which
2282         indicates to the C program that <net/errno.h> exists and should
2283         be included.
2284
2285 i_netinettcp (i_netinettcp.U):
2286         This variable conditionally defines the I_NETINET_TCP symbol,
2287         and indicates whether a C program should include <netinet/tcp.h>.
2288
2289 i_niin (i_niin.U):
2290         This variable conditionally defines I_NETINET_IN, which indicates
2291         to the C program that it should include <netinet/in.h>. Otherwise,
2292         you may try <sys/in.h>.
2293
2294 i_poll (i_poll.U):
2295         This variable conditionally defines the I_POLL symbol, and indicates
2296         whether a C program should include <poll.h>.
2297
2298 i_prot (i_prot.U):
2299         This variable conditionally defines the I_PROT symbol, and indicates
2300         whether a C program should include <prot.h>.
2301
2302 i_pthread (i_pthread.U):
2303         This variable conditionally defines the I_PTHREAD symbol,
2304         and indicates whether a C program should include <pthread.h>.
2305
2306 i_pwd (i_pwd.U):
2307         This variable conditionally defines I_PWD, which indicates
2308         to the C program that it should include <pwd.h>.
2309
2310 i_rpcsvcdbm (i_dbm.U):
2311         This variable conditionally defines the I_RPCSVC_DBM symbol, which
2312         indicates to the C program that <rpcsvc/dbm.h> exists and should
2313         be included.  Some System V systems might need this instead of <dbm.h>.
2314
2315 i_sfio (i_sfio.U):
2316         This variable conditionally defines the I_SFIO symbol,
2317         and indicates whether a C program should include <sfio.h>.
2318
2319 i_sgtty (i_termio.U):
2320         This variable conditionally defines the I_SGTTY symbol, which
2321         indicates to the C program that it should include <sgtty.h> rather
2322         than <termio.h>.
2323
2324 i_shadow (i_shadow.U):
2325         This variable conditionally defines the I_SHADOW symbol, and indicates
2326         whether a C program should include <shadow.h>.
2327
2328 i_socks (i_socks.U):
2329         This variable conditionally defines the I_SOCKS symbol, and indicates
2330         whether a C program should include <socks.h>.
2331
2332 i_stdarg (i_varhdr.U):
2333         This variable conditionally defines the I_STDARG symbol, which
2334         indicates to the C program that <stdarg.h> exists and should
2335         be included.
2336
2337 i_stddef (i_stddef.U):
2338         This variable conditionally defines the I_STDDEF symbol, which
2339         indicates to the C program that <stddef.h> exists and should
2340         be included.
2341
2342 i_stdlib (i_stdlib.U):
2343         This variable conditionally defines the I_STDLIB symbol, which
2344         indicates to the C program that <stdlib.h> exists and should
2345         be included.
2346
2347 i_string (i_string.U):
2348         This variable conditionally defines the I_STRING symbol, which
2349         indicates that <string.h> should be included rather than <strings.h>.
2350
2351 i_sunmath (i_sunmath.U):
2352         This variable conditionally defines the I_SUNMATH symbol, and indicates
2353         whether a C program should include <sunmath.h>.
2354
2355 i_sysaccess (i_sysaccess.U):
2356         This variable conditionally defines the I_SYS_ACCESS symbol,
2357         and indicates whether a C program should include <sys/access.h>.
2358
2359 i_sysdir (i_sysdir.U):
2360         This variable conditionally defines the I_SYS_DIR symbol, and indicates
2361         whether a C program should include <sys/dir.h>.
2362
2363 i_sysfile (i_sysfile.U):
2364         This variable conditionally defines the I_SYS_FILE symbol, and indicates
2365         whether a C program should include <sys/file.h> to get R_OK and friends.
2366
2367 i_sysfilio (i_sysioctl.U):
2368         This variable conditionally defines the I_SYS_FILIO symbol, which
2369         indicates to the C program that <sys/filio.h> exists and should
2370         be included in preference to <sys/ioctl.h>.
2371
2372 i_sysin (i_niin.U):
2373         This variable conditionally defines I_SYS_IN, which indicates
2374         to the C program that it should include <sys/in.h> instead of
2375         <netinet/in.h>.
2376
2377 i_sysioctl (i_sysioctl.U):
2378         This variable conditionally defines the I_SYS_IOCTL symbol, which
2379         indicates to the C program that <sys/ioctl.h> exists and should
2380         be included.
2381
2382 i_syslog (i_syslog.U):
2383         This variable conditionally defines the I_SYSLOG symbol,
2384         and indicates whether a C program should include <syslog.h>.
2385
2386 i_sysmman (i_sysmman.U):
2387         This variable conditionally defines the I_SYS_MMAN symbol, and
2388         indicates whether a C program should include <sys/mman.h>.
2389
2390 i_sysmode (i_sysmode.U):
2391         This variable conditionally defines the I_SYSMODE symbol,
2392         and indicates whether a C program should include <sys/mode.h>.
2393
2394 i_sysmount (i_sysmount.U):
2395         This variable conditionally defines the I_SYSMOUNT symbol,
2396         and indicates whether a C program should include <sys/mount.h>.
2397
2398 i_sysndir (i_sysndir.U):
2399         This variable conditionally defines the I_SYS_NDIR symbol, and indicates
2400         whether a C program should include <sys/ndir.h>.
2401
2402 i_sysparam (i_sysparam.U):
2403         This variable conditionally defines the I_SYS_PARAM symbol, and indicates
2404         whether a C program should include <sys/param.h>.
2405
2406 i_sysresrc (i_sysresrc.U):
2407         This variable conditionally defines the I_SYS_RESOURCE symbol,
2408         and indicates whether a C program should include <sys/resource.h>.
2409
2410 i_syssecrt (i_syssecrt.U):
2411         This variable conditionally defines the I_SYS_SECURITY symbol,
2412         and indicates whether a C program should include <sys/security.h>.
2413
2414 i_sysselct (i_sysselct.U):
2415         This variable conditionally defines I_SYS_SELECT, which indicates
2416         to the C program that it should include <sys/select.h> in order to
2417         get the definition of struct timeval.
2418
2419 i_syssockio (i_sysioctl.U):
2420         This variable conditionally defines I_SYS_SOCKIO to indicate to the
2421         C program that socket ioctl codes may be found in <sys/sockio.h>
2422         instead of <sys/ioctl.h>.
2423
2424 i_sysstat (i_sysstat.U):
2425         This variable conditionally defines the I_SYS_STAT symbol,
2426         and indicates whether a C program should include <sys/stat.h>.
2427
2428 i_sysstatfs (i_sysstatfs.U):
2429         This variable conditionally defines the I_SYSSTATFS symbol,
2430         and indicates whether a C program should include <sys/statfs.h>.
2431
2432 i_sysstatvfs (i_sysstatvfs.U):
2433         This variable conditionally defines the I_SYSSTATVFS symbol,
2434         and indicates whether a C program should include <sys/statvfs.h>.
2435
2436 i_systime (i_time.U):
2437         This variable conditionally defines I_SYS_TIME, which indicates
2438         to the C program that it should include <sys/time.h>.
2439
2440 i_systimek (i_time.U):
2441         This variable conditionally defines I_SYS_TIME_KERNEL, which
2442         indicates to the C program that it should include <sys/time.h>
2443         with KERNEL defined.
2444
2445 i_systimes (i_systimes.U):
2446         This variable conditionally defines the I_SYS_TIMES symbol, and indicates
2447         whether a C program should include <sys/times.h>.
2448
2449 i_systypes (i_systypes.U):
2450         This variable conditionally defines the I_SYS_TYPES symbol,
2451         and indicates whether a C program should include <sys/types.h>.
2452
2453 i_sysuio (i_sysuio.U):
2454         This variable conditionally defines the I_SYSUIO symbol, and indicates
2455         whether a C program should include <sys/uio.h>.
2456
2457 i_sysun (i_sysun.U):
2458         This variable conditionally defines I_SYS_UN, which indicates
2459         to the C program that it should include <sys/un.h> to get UNIX
2460         domain socket definitions.
2461
2462 i_sysutsname (i_sysutsname.U):
2463         This variable conditionally defines the I_SYSUTSNAME symbol,
2464         and indicates whether a C program should include <sys/utsname.h>.
2465
2466 i_sysvfs (i_sysvfs.U):
2467         This variable conditionally defines the I_SYSVFS symbol,
2468         and indicates whether a C program should include <sys/vfs.h>.
2469
2470 i_syswait (i_syswait.U):
2471         This variable conditionally defines I_SYS_WAIT, which indicates
2472         to the C program that it should include <sys/wait.h>.
2473
2474 i_termio (i_termio.U):
2475         This variable conditionally defines the I_TERMIO symbol, which
2476         indicates to the C program that it should include <termio.h> rather
2477         than <sgtty.h>.
2478
2479 i_termios (i_termio.U):
2480         This variable conditionally defines the I_TERMIOS symbol, which
2481         indicates to the C program that the POSIX <termios.h> file is
2482         to be included.
2483
2484 i_time (i_time.U):
2485         This variable conditionally defines I_TIME, which indicates
2486         to the C program that it should include <time.h>.
2487
2488 i_unistd (i_unistd.U):
2489         This variable conditionally defines the I_UNISTD symbol, and indicates
2490         whether a C program should include <unistd.h>.
2491
2492 i_ustat (i_ustat.U):
2493         This variable conditionally defines the I_USTAT symbol, and indicates
2494         whether a C program should include <ustat.h>.
2495
2496 i_utime (i_utime.U):
2497         This variable conditionally defines the I_UTIME symbol, and indicates
2498         whether a C program should include <utime.h>.
2499
2500 i_values (i_values.U):
2501         This variable conditionally defines the I_VALUES symbol, and indicates
2502         whether a C program may include <values.h> to get symbols like MAXLONG
2503         and friends.
2504
2505 i_varargs (i_varhdr.U):
2506         This variable conditionally defines I_VARARGS, which indicates
2507         to the C program that it should include <varargs.h>.
2508
2509 i_varhdr (i_varhdr.U):
2510         Contains the name of the header to be included to get va_dcl definition.
2511         Typically one of varargs.h or stdarg.h.
2512
2513 i_vfork (i_vfork.U):
2514         This variable conditionally defines the I_VFORK symbol, and indicates
2515         whether a C program should include vfork.h.
2516
2517 ignore_versioned_solibs (libs.U):
2518         This variable should be non-empty if non-versioned shared
2519         libraries (libfoo.so.x.y) are to be ignored (because they
2520         cannot be linked against).
2521
2522 inc_version_list (inc_version_list.U):
2523         This variable specifies the list of subdirectories in over
2524         which perl.c:incpush() and lib/lib.pm will automatically
2525         search when adding directories to @INC.  The elements in
2526         the list are separated by spaces.  This is only useful
2527         if you have a perl library directory tree structured like the
2528         default one.  See INSTALL for how this works.  The versioned
2529         site_perl directory was introduced in 5.005, so that is the
2530         lowest possible value.
2531
2532 inc_version_list_init (inc_version_list.U):
2533         This variable holds the same list as inc_version_list, but
2534         each item is enclosed in double quotes and separated by commas, 
2535         suitable for use in the PERL_INC_VERSION_LIST initialization.
2536
2537 incpath (usrinc.U):
2538         This variable must preceed the normal include path to get hte
2539         right one, as in "$incpath/usr/include" or "$incpath/usr/lib".
2540         Value can be "" or "/bsd43" on mips.
2541
2542 inews (Loc.U):
2543         This variable is defined but not used by Configure.
2544         The value is a plain '' and is not useful.
2545
2546 installarchlib (archlib.U):
2547         This variable is really the same as archlibexp but may differ on
2548         those systems using AFS. For extra portability, only this variable
2549         should be used in makefiles.
2550
2551 installbin (bin.U):
2552         This variable is the same as binexp unless AFS is running in which case
2553         the user is explicitely prompted for it. This variable should always
2554         be used in your makefiles for maximum portability.
2555
2556 installman1dir (man1dir.U):
2557         This variable is really the same as man1direxp, unless you are using
2558         AFS in which case it points to the read/write location whereas
2559         man1direxp only points to the read-only access location. For extra
2560         portability, you should only use this variable within your makefiles.
2561
2562 installman3dir (man3dir.U):
2563         This variable is really the same as man3direxp, unless you are using
2564         AFS in which case it points to the read/write location whereas
2565         man3direxp only points to the read-only access location. For extra
2566         portability, you should only use this variable within your makefiles.
2567
2568 installprefix (installprefix.U):
2569         This variable holds the name of the directory below which 
2570         "make install" will install the package.  For most users, this
2571         is the same as prefix.  However, it is useful for
2572         installing the software into a different (usually temporary)
2573         location after which it can be bundled up and moved somehow
2574         to the final location specified by prefix.
2575
2576 installprefixexp (installprefix.U):
2577         This variable holds the full absolute path of installprefix
2578         with all ~-expansion done.
2579
2580 installprivlib (privlib.U):
2581         This variable is really the same as privlibexp but may differ on
2582         those systems using AFS. For extra portability, only this variable
2583         should be used in makefiles.
2584
2585 installscript (scriptdir.U):
2586         This variable is usually the same as scriptdirexp, unless you are on
2587         a system running AFS, in which case they may differ slightly. You
2588         should always use this variable within your makefiles for portability.
2589
2590 installsitearch (sitearch.U):
2591         This variable is really the same as sitearchexp but may differ on
2592         those systems using AFS. For extra portability, only this variable
2593         should be used in makefiles.
2594
2595 installsitebin (sitebin.U):
2596         This variable is usually the same as sitebinexp, unless you are on
2597         a system running AFS, in which case they may differ slightly. You
2598         should always use this variable within your makefiles for portability.
2599
2600 installsitelib (sitelib.U):
2601         This variable is really the same as sitelibexp but may differ on
2602         those systems using AFS. For extra portability, only this variable
2603         should be used in makefiles.
2604
2605 installstyle (installstyle.U):
2606         This variable describes the "style" of the perl installation.
2607         This is intended to be useful for tools that need to
2608         manipulate entire perl distributions.  Perl itself doesn't use
2609         this to find its libraries -- the library directories are
2610         stored directly in Config.pm.  Currently, there are only two
2611         styles:  "lib" and "lib/perl5".  The default library locations
2612         (e.g. privlib, sitelib) are either $prefix/lib or
2613         $prefix/lib/perl5.  The former is useful if $prefix is a
2614         directory dedicated to perl (e.g. /opt/perl), while the latter
2615         is useful if $prefix is shared by many packages, e.g. if
2616         $prefix=/usr/local.
2617                 This may later be extended to include other information, so
2618         be careful with pattern-matching on the results.
2619                 For compatibility with perl5.005 and earlier, the default
2620         setting is based on whether or not $prefix contains the string
2621         "perl".
2622
2623 installusrbinperl (instubperl.U):
2624         This variable tells whether Perl should be installed also as
2625         /usr/bin/perl in addition to
2626         $installbin/perl
2627
2628 installvendorarch (vendorarch.U):
2629         This variable is really the same as vendorarchexp but may differ on
2630         those systems using AFS. For extra portability, only this variable
2631         should be used in makefiles.
2632
2633 installvendorbin (vendorbin.U):
2634         This variable is really the same as vendorbinexp but may differ on
2635         those systems using AFS. For extra portability, only this variable
2636         should be used in makefiles.
2637
2638 installvendorlib (vendorlib.U):
2639         This variable is really the same as vendorlibexp but may differ on
2640         those systems using AFS. For extra portability, only this variable
2641         should be used in makefiles.
2642
2643 intsize (intsize.U):
2644         This variable contains the value of the INTSIZE symbol, which
2645         indicates to the C program how many bytes there are in an int.
2646
2647 issymlink (issymlink.U):
2648         This variable holds the test command to test for a symbolic link
2649         (if they are supported).  Typical values include 'test -h' and
2650         'test -L'.
2651
2652 ivdformat (perlxvf.U):
2653         This variable contains the format string used for printing
2654         a Perl IV as a signed decimal integer. 
2655
2656 ivsize (perlxv.U):
2657         This variable is the size of an IV in bytes.
2658
2659 ivtype (perlxv.U):
2660         This variable contains the C type used for Perl's IV.
2661
2662 known_extensions (Extensions.U):
2663         This variable holds a list of all XS extensions included in 
2664         the package.
2665
2666 ksh (Loc.U):
2667         This variable is defined but not used by Configure.
2668         The value is a plain '' and is not useful.
2669
2670 ld (dlsrc.U):
2671         This variable indicates the program to be used to link
2672         libraries for dynamic loading.  On some systems, it is 'ld'.
2673         On ELF systems, it should be $cc.  Mostly, we'll try to respect
2674         the hint file setting.
2675
2676 lddlflags (dlsrc.U):
2677         This variable contains any special flags that might need to be
2678         passed to $ld to create a shared library suitable for dynamic
2679         loading.  It is up to the makefile to use it.  For hpux, it
2680         should be '-b'.  For sunos 4.1, it is empty.
2681
2682 ldflags (ccflags.U):
2683         This variable contains any additional C loader flags desired by
2684         the user.  It is up to the Makefile to use this.
2685
2686 ldflags_uselargefiles (uselfs.U):
2687         This variable contains the loader flags needed by large file builds
2688         and added to ldflags by hints files.
2689
2690 ldlibpthname (libperl.U):
2691         This variable holds the name of the shared library
2692         search path, often LD_LIBRARY_PATH.  To get an empty
2693         string, the hints file must set this to 'none'.
2694
2695 less (Loc.U):
2696         This variable is used internally by Configure to determine the
2697         full pathname (if any) of the less program.  After Configure runs,
2698         the value is reset to a plain "less" and is not useful.
2699
2700 lib_ext (Unix.U):
2701         This is an old synonym for _a.
2702
2703 libc (libc.U):
2704         This variable contains the location of the C library.
2705
2706 libperl (libperl.U):
2707         The perl executable is obtained by linking perlmain.c with
2708         libperl, any static extensions (usually just DynaLoader),
2709         and any other libraries needed on this system.  libperl
2710         is usually libperl.a, but can also be libperl.so.xxx if
2711         the user wishes to build a perl executable with a shared
2712         library.
2713
2714 libpth (libpth.U):
2715         This variable holds the general path (space-separated) used to find
2716         libraries. It is intended to be used by other units.
2717
2718 libs (libs.U):
2719         This variable holds the additional libraries we want to use.
2720         It is up to the Makefile to deal with it.
2721
2722 libsdirs (libs.U):
2723         This variable holds the directory names aka dirnames of the libraries
2724         we found and accepted, duplicates are removed.
2725
2726 libsfiles (libs.U):
2727         This variable holds the filenames aka basenames of the libraries
2728         we found and accepted.
2729
2730 libsfound (libs.U):
2731         This variable holds the full pathnames of the libraries
2732         we found and accepted.
2733
2734 libspath (libs.U):
2735         This variable holds the directory names probed for libraries.
2736
2737 libswanted (Myinit.U):
2738         This variable holds a list of all the libraries we want to
2739         search.  The order is chosen to pick up the c library
2740         ahead of ucb or bsd libraries for SVR4.
2741
2742 libswanted_uselargefiles (uselfs.U):
2743         This variable contains the libraries needed by large file builds
2744         and added to ldflags by hints files.  It is a space separated list
2745         of the library names without the "lib" prefix or any suffix, just
2746         like libswanted..
2747
2748 line (Loc.U):
2749         This variable is defined but not used by Configure.
2750         The value is a plain '' and is not useful.
2751
2752 lint (Loc.U):
2753         This variable is defined but not used by Configure.
2754         The value is a plain '' and is not useful.
2755
2756 lkflags (ccflags.U):
2757         This variable contains any additional C partial linker flags desired by
2758         the user.  It is up to the Makefile to use this.
2759
2760 ln (Loc.U):
2761         This variable is used internally by Configure to determine the
2762         full pathname (if any) of the ln program.  After Configure runs,
2763         the value is reset to a plain "ln" and is not useful.
2764
2765 lns (lns.U):
2766         This variable holds the name of the command to make 
2767         symbolic links (if they are supported).  It can be used
2768         in the Makefile. It is either 'ln -s' or 'ln'
2769
2770 locincpth (ccflags.U):
2771         This variable contains a list of additional directories to be
2772         searched by the compiler.  The appropriate '-I' directives will
2773         be added to ccflags.  This is intended to simplify setting
2774         local directories from the Configure command line.
2775         It's not much, but it parallels the loclibpth stuff in libpth.U.
2776
2777 loclibpth (libpth.U):
2778         This variable holds the paths (space-separated) used to find local
2779         libraries.  It is prepended to libpth, and is intended to be easily
2780         set from the command line.
2781
2782 longdblsize (d_longdbl.U):
2783         This variable contains the value of the LONG_DOUBLESIZE symbol, which
2784         indicates to the C program how many bytes there are in a long double,
2785         if this system supports long doubles.
2786
2787 longlongsize (d_longlong.U):
2788         This variable contains the value of the LONGLONGSIZE symbol, which
2789         indicates to the C program how many bytes there are in a long long,
2790         if this system supports long long.
2791
2792 longsize (intsize.U):
2793         This variable contains the value of the LONGSIZE symbol, which
2794         indicates to the C program how many bytes there are in a long.
2795
2796 lp (Loc.U):
2797         This variable is defined but not used by Configure.
2798         The value is a plain '' and is not useful.
2799
2800 lpr (Loc.U):
2801         This variable is defined but not used by Configure.
2802         The value is a plain '' and is not useful.
2803
2804 ls (Loc.U):
2805         This variable is used internally by Configure to determine the
2806         full pathname (if any) of the ls program.  After Configure runs,
2807         the value is reset to a plain "ls" and is not useful.
2808
2809 lseeksize (lseektype.U):
2810         This variable defines lseektype to be something like off_t, long, 
2811         or whatever type is used to declare lseek offset's type in the
2812         kernel (which also appears to be lseek's return type).
2813
2814 lseektype (lseektype.U):
2815         This variable defines lseektype to be something like off_t, long, 
2816         or whatever type is used to declare lseek offset's type in the
2817         kernel (which also appears to be lseek's return type).
2818
2819 mail (Loc.U):
2820         This variable is defined but not used by Configure.
2821         The value is a plain '' and is not useful.
2822
2823 mailx (Loc.U):
2824         This variable is defined but not used by Configure.
2825         The value is a plain '' and is not useful.
2826
2827 make (Loc.U):
2828         This variable is used internally by Configure to determine the
2829         full pathname (if any) of the make program.  After Configure runs,
2830         the value is reset to a plain "make" and is not useful.
2831
2832 make_set_make (make.U):
2833         Some versions of 'make' set the variable MAKE.  Others do not.
2834         This variable contains the string to be included in Makefile.SH
2835         so that MAKE is set if needed, and not if not needed.
2836         Possible values are:
2837         make_set_make='#'               # If your make program handles this for you,
2838         make_set_make="MAKE=$make"      # if it doesn't.
2839         I used a comment character so that we can distinguish a
2840         'set' value (from a previous config.sh or Configure '-D' option)
2841         from an uncomputed value.
2842
2843 mallocobj (mallocsrc.U):
2844         This variable contains the name of the malloc.o that this package
2845         generates, if that malloc.o is preferred over the system malloc.
2846         Otherwise the value is null.  This variable is intended for generating
2847         Makefiles.  See mallocsrc.
2848
2849 mallocsrc (mallocsrc.U):
2850         This variable contains the name of the malloc.c that comes with
2851         the package, if that malloc.c is preferred over the system malloc.
2852         Otherwise the value is null.  This variable is intended for generating
2853         Makefiles.
2854
2855 malloctype (mallocsrc.U):
2856         This variable contains the kind of ptr returned by malloc and realloc.
2857
2858 man1dir (man1dir.U):
2859         This variable contains the name of the directory in which manual
2860         source pages are to be put.  It is the responsibility of the
2861         Makefile.SH to get the value of this into the proper command.
2862         You must be prepared to do the ~name expansion yourself.
2863
2864 man1direxp (man1dir.U):
2865         This variable is the same as the man1dir variable, but is filename
2866         expanded at configuration time, for convenient use in makefiles.
2867
2868 man1ext (man1dir.U):
2869         This variable contains the extension that the manual page should
2870         have: one of 'n', 'l', or '1'.  The Makefile must supply the '.'.
2871         See man1dir.
2872
2873 man3dir (man3dir.U):
2874         This variable contains the name of the directory in which manual
2875         source pages are to be put.  It is the responsibility of the
2876         Makefile.SH to get the value of this into the proper command.
2877         You must be prepared to do the ~name expansion yourself.
2878
2879 man3direxp (man3dir.U):
2880         This variable is the same as the man3dir variable, but is filename
2881         expanded at configuration time, for convenient use in makefiles.
2882
2883 man3ext (man3dir.U):
2884         This variable contains the extension that the manual page should
2885         have: one of 'n', 'l', or '3'.  The Makefile must supply the '.'.
2886         See man3dir.
2887
2888 Mcc (Loc.U):
2889         This variable is used internally by Configure to determine the
2890         full pathname (if any) of the Mcc program.  After Configure runs,
2891         the value is reset to a plain "Mcc" and is not useful.
2892
2893 mips_type (usrinc.U):
2894         This variable holds the environment type for the mips system.
2895         Possible values are "BSD 4.3" and "System V".
2896
2897 mkdir (Loc.U):
2898         This variable is used internally by Configure to determine the
2899         full pathname (if any) of the mkdir program.  After Configure runs,
2900         the value is reset to a plain "mkdir" and is not useful.
2901
2902 mmaptype (d_mmap.U):
2903         This symbol contains the type of pointer returned by mmap()
2904         (and simultaneously the type of the first argument).
2905         It can be 'void *' or 'caddr_t'.
2906
2907 modetype (modetype.U):
2908         This variable defines modetype to be something like mode_t, 
2909         int, unsigned short, or whatever type is used to declare file 
2910         modes for system calls.
2911
2912 more (Loc.U):
2913         This variable is used internally by Configure to determine the
2914         full pathname (if any) of the more program.  After Configure runs,
2915         the value is reset to a plain "more" and is not useful.
2916
2917 multiarch (multiarch.U):
2918         This variable conditionally defines the MULTIARCH symbol
2919         which signifies the presence of multiplatform files.
2920         This is normally set by hints files.
2921
2922 mv (Loc.U):
2923         This variable is defined but not used by Configure.
2924         The value is a plain '' and is not useful.
2925
2926 myarchname (archname.U):
2927         This variable holds the architecture name computed by Configure in
2928         a previous run. It is not intended to be perused by any user and
2929         should never be set in a hint file.
2930
2931 mydomain (myhostname.U):
2932         This variable contains the eventual value of the MYDOMAIN symbol,
2933         which is the domain of the host the program is going to run on.
2934         The domain must be appended to myhostname to form a complete host name.
2935         The dot comes with mydomain, and need not be supplied by the program.
2936
2937 myhostname (myhostname.U):
2938         This variable contains the eventual value of the MYHOSTNAME symbol,
2939         which is the name of the host the program is going to run on.
2940         The domain is not kept with hostname, but must be gotten from mydomain.
2941         The dot comes with mydomain, and need not be supplied by the program.
2942
2943 myuname (Oldconfig.U):
2944         The output of 'uname -a' if available, otherwise the hostname. On Xenix,
2945         pseudo variables assignments in the output are stripped, thank you. The
2946         whole thing is then lower-cased.
2947
2948 n (n.U):
2949         This variable contains the '-n' flag if that is what causes the echo
2950         command to suppress newline.  Otherwise it is null.  Correct usage is
2951         $echo $n "prompt for a question: $c".
2952
2953 need_va_copy (need_va_copy.U):
2954         This symbol, if defined, indicates that the system stores
2955         the variable argument list datatype, va_list, in a format
2956         that cannot be copied by simple assignment, so that some
2957         other means must be used when copying is required.
2958         As such systems vary in their provision (or non-provision)
2959         of copying mechanisms, handy.h defines a platform-
2960         independent macro, Perl_va_copy(src, dst), to do the job.
2961
2962 netdb_hlen_type (netdbtype.U):
2963         This variable holds the type used for the 2nd argument to
2964         gethostbyaddr().  Usually, this is int or size_t or unsigned.
2965         This is only useful if you have gethostbyaddr(), naturally.
2966
2967 netdb_host_type (netdbtype.U):
2968         This variable holds the type used for the 1st argument to
2969         gethostbyaddr().  Usually, this is char * or void *,  possibly
2970         with or without a const prefix.
2971         This is only useful if you have gethostbyaddr(), naturally.
2972
2973 netdb_name_type (netdbtype.U):
2974         This variable holds the type used for the argument to
2975         gethostbyname().  Usually, this is char * or const char *.
2976         This is only useful if you have gethostbyname(), naturally.
2977
2978 netdb_net_type (netdbtype.U):
2979         This variable holds the type used for the 1st argument to
2980         getnetbyaddr().  Usually, this is int or long.
2981         This is only useful if you have getnetbyaddr(), naturally.
2982
2983 nm (Loc.U):
2984         This variable is used internally by Configure to determine the
2985         full pathname (if any) of the nm program.  After Configure runs,
2986         the value is reset to a plain "nm" and is not useful.
2987
2988 nm_opt (usenm.U):
2989         This variable holds the options that may be necessary for nm.
2990
2991 nm_so_opt (usenm.U):
2992         This variable holds the options that may be necessary for nm
2993         to work on a shared library but that can not be used on an
2994         archive library.  Currently, this is only used by Linux, where
2995         nm --dynamic is *required* to get symbols from an ELF library which
2996         has been stripped, but nm --dynamic is *fatal* on an archive library.
2997         Maybe Linux should just always set usenm=false.
2998
2999 nonxs_ext (Extensions.U):
3000         This variable holds a list of all non-xs extensions included
3001         in the package.  All of them will be built.
3002
3003 nroff (Loc.U):
3004         This variable is used internally by Configure to determine the
3005         full pathname (if any) of the nroff program.  After Configure runs,
3006         the value is reset to a plain "nroff" and is not useful.
3007
3008 nveformat (perlxvf.U):
3009         This variable contains the format string used for printing
3010         a Perl NV using %e-ish floating point format.
3011
3012 nvEUformat (perlxvf.U):
3013         This variable contains the format string used for printing
3014         a Perl NV using %E-ish floating point format.
3015
3016 nvfformat (perlxvf.U):
3017         This variable confains the format string used for printing
3018         a Perl NV using %f-ish floating point format.
3019
3020 nvFUformat (perlxvf.U):
3021         This variable confains the format string used for printing
3022         a Perl NV using %F-ish floating point format.
3023
3024 nvgformat (perlxvf.U):
3025         This variable contains the format string used for printing
3026         a Perl NV using %g-ish floating point format.
3027
3028 nvGUformat (perlxvf.U):
3029         This variable contains the format string used for printing
3030         a Perl NV using %G-ish floating point format.
3031
3032 nvsize (perlxv.U):
3033         This variable is the size of an NV in bytes.
3034
3035 nvtype (perlxv.U):
3036         This variable contains the C type used for Perl's NV.
3037
3038 o_nonblock (nblock_io.U):
3039         This variable bears the symbol value to be used during open() or fcntl()
3040         to turn on non-blocking I/O for a file descriptor. If you wish to switch
3041         between blocking and non-blocking, you may try ioctl(FIOSNBIO) instead,
3042         but that is only supported by some devices.
3043
3044 obj_ext (Unix.U):
3045         This is an old synonym for _o.
3046
3047 old_pthread_create_joinable (d_pthrattrj.U):
3048         This variable defines the constant to use for creating joinable
3049         (aka undetached) pthreads.  Unused if pthread.h defines
3050         PTHREAD_CREATE_JOINABLE.  If used, possible values are
3051         PTHREAD_CREATE_UNDETACHED and __UNDETACHED.
3052
3053 optimize (ccflags.U):
3054         This variable contains any optimizer/debugger flag that should be used.
3055         It is up to the Makefile to use it.
3056
3057 orderlib (orderlib.U):
3058         This variable is "true" if the components of libraries must be ordered
3059         (with `lorder $* | tsort`) before placing them in an archive.  Set to
3060         "false" if ranlib or ar can generate random libraries.
3061
3062 osname (Oldconfig.U):
3063         This variable contains the operating system name (e.g. sunos,
3064         solaris, hpux, etc.).  It can be useful later on for setting
3065         defaults.  Any spaces are replaced with underscores.  It is set
3066         to a null string if we can't figure it out.
3067
3068 osvers (Oldconfig.U):
3069         This variable contains the operating system version (e.g.
3070         4.1.3, 5.2, etc.).  It is primarily used for helping select
3071         an appropriate hints file, but might be useful elsewhere for
3072         setting defaults.  It is set to '' if we can't figure it out.
3073         We try to be flexible about how much of the version number
3074         to keep, e.g. if 4.1.1, 4.1.2, and 4.1.3 are essentially the
3075         same for this package, hints files might just be os_4.0 or
3076         os_4.1, etc., not keeping separate files for each little release.
3077
3078 otherlibdirs (otherlibdirs.U):
3079         This variable contains a colon-separated set of paths for the perl
3080         binary to search for additional library files or modules.
3081         These directories will be tacked to the end of @INC.
3082         Perl will automatically search below each path for version-
3083         and architecture-specific directories.  See inc_version_list
3084         for more details.
3085         A value of ' ' means 'none' and is used to preserve this value
3086         for the next run through Configure.
3087
3088 package (package.U):
3089         This variable contains the name of the package being constructed.
3090         It is primarily intended for the use of later Configure units.
3091
3092 pager (pager.U):
3093         This variable contains the name of the preferred pager on the system.
3094         Usual values are (the full pathnames of) more, less, pg, or cat.
3095
3096 passcat (nis.U):
3097         This variable contains a command that produces the text of the
3098         /etc/passwd file.  This is normally "cat /etc/passwd", but can be
3099         "ypcat passwd" when NIS is used.
3100         On some systems, such as os390, there may be no equivalent
3101         command, in which case this variable is unset.
3102
3103 patchlevel (patchlevel.U):
3104         The patchlevel level of this package.
3105         The value of patchlevel comes from the patchlevel.h file.
3106         In a version number such as 5.6.1, this is the "6".
3107         In patchlevel.h, this is referred to as "PERL_VERSION".
3108
3109 path_sep (Unix.U):
3110         This is an old synonym for p_ in Head.U, the character
3111         used to separate elements in the command shell search PATH.
3112
3113 perl5 (perl5.U):
3114         This variable contains the full path (if any) to a previously
3115         installed perl5.005 or later suitable for running the script
3116         to determine inc_version_list.
3117
3118 perl (Loc.U):
3119         This variable is defined but not used by Configure.
3120         The value is a plain '' and is not useful.
3121
3122 perl_patchlevel (patchlevel.U):
3123         This is the Perl patch level, a numeric change identifier,
3124         as defined by whichever source code maintenance system
3125         is used to maintain the patches; currently Perforce.
3126         It does not correlate with the Perl version numbers or
3127         the maintenance versus development dichotomy except
3128         by also being increasing.
3129
3130 PERL_REVISION (Oldsyms.U):
3131         In a Perl version number such as 5.6.2, this is the 5.
3132         This value is manually set in patchlevel.h
3133
3134 PERL_SUBVERSION (Oldsyms.U):
3135         In a Perl version number such as 5.6.2, this is the 2.
3136         Values greater than 50 represent potentially unstable
3137         development subversions.
3138         This value is manually set in patchlevel.h
3139
3140 PERL_VERSION (Oldsyms.U):
3141         In a Perl version number such as 5.6.2, this is the 6.
3142         This value is manually set in patchlevel.h
3143
3144 perladmin (perladmin.U):
3145         Electronic mail address of the perl5 administrator.
3146
3147 perllibs (End.U):
3148         The list of libraries needed by Perl only (any libraries needed
3149         by extensions only will by dropped, if using dynamic loading).
3150
3151 perlpath (perlpath.U):
3152         This variable contains the eventual value of the PERLPATH symbol,
3153         which contains the name of the perl interpreter to be used in
3154         shell scripts and in the "eval 'exec'" idiom.
3155
3156 pg (Loc.U):
3157         This variable is used internally by Configure to determine the
3158         full pathname (if any) of the pg program.  After Configure runs,
3159         the value is reset to a plain "pg" and is not useful.
3160
3161 phostname (myhostname.U):
3162         This variable contains the eventual value of the PHOSTNAME symbol,
3163         which is a command that can be fed to popen() to get the host name.
3164         The program should probably not presume that the domain is or isn't
3165         there already.
3166
3167 pidtype (pidtype.U):
3168         This variable defines PIDTYPE to be something like pid_t, int, 
3169         ushort, or whatever type is used to declare process ids in the kernel.
3170
3171 plibpth (libpth.U):
3172         Holds the private path used by Configure to find out the libraries.
3173         Its value is prepend to libpth. This variable takes care of special
3174         machines, like the mips.  Usually, it should be empty.
3175
3176 pm_apiversion (xs_apiversion.U):
3177         This variable contains the version of the oldest perl
3178         compatible with the present perl.  (That is, pure perl modules
3179         written for $pm_apiversion will still work for the current
3180         version).  perl.c:incpush() and lib/lib.pm will automatically
3181         search in $sitelib for older directories across major versions
3182         back to pm_apiversion.  This is only useful if you have a perl
3183         library directory tree structured like the default one.  The
3184         versioned site_perl library was introduced in 5.005, so that's
3185         the default setting for this variable.  It's hard to imagine
3186         it changing before Perl6.  It is included here for symmetry
3187         with xs_apiveprsion -- the searching algorithms will
3188         (presumably) be similar.
3189         See the INSTALL file for how this works.
3190
3191 pmake (Loc.U):
3192         This variable is defined but not used by Configure.
3193         The value is a plain '' and is not useful.
3194
3195 pr (Loc.U):
3196         This variable is defined but not used by Configure.
3197         The value is a plain '' and is not useful.
3198
3199 prefix (prefix.U):
3200         This variable holds the name of the directory below which the
3201         user will install the package.  Usually, this is /usr/local, and
3202         executables go in /usr/local/bin, library stuff in /usr/local/lib,
3203         man pages in /usr/local/man, etc.  It is only used to set defaults
3204         for things in bin.U, mansrc.U, privlib.U, or scriptdir.U.
3205
3206 prefixexp (prefix.U):
3207         This variable holds the full absolute path of the directory below
3208         which the user will install the package.  Derived from prefix.
3209
3210 privlib (privlib.U):
3211         This variable contains the eventual value of the PRIVLIB symbol,
3212         which is the name of the private library for this package.  It may
3213         have a ~ on the front. It is up to the makefile to eventually create
3214         this directory while performing installation (with ~ substitution).
3215
3216 privlibexp (privlib.U):
3217         This variable is the ~name expanded version of privlib, so that you
3218         may use it directly in Makefiles or shell scripts.
3219
3220 procselfexe (d_procselfexe.U):
3221         If d_procselfexe is defined, $procselfexe is the filename
3222         of the symbolic link pointing to the absolute pathname of
3223         the executing program.
3224
3225 prototype (prototype.U):
3226         This variable holds the eventual value of CAN_PROTOTYPE, which
3227         indicates the C compiler can handle funciton prototypes.
3228
3229 ptrsize (ptrsize.U):
3230         This variable contains the value of the PTRSIZE symbol, which
3231         indicates to the C program how many bytes there are in a pointer.
3232
3233 quadkind (quadtype.U):
3234         This variable, if defined, encodes the type of a quad:
3235         1 = int, 2 = long, 3 = long long, 4 = int64_t.
3236
3237 quadtype (quadtype.U):
3238         This variable defines Quad_t to be something like long, int, 
3239         long long, int64_t, or whatever type is used for 64-bit integers.
3240
3241 randbits (randfunc.U):
3242         Indicates how many bits are produced by the function used to
3243         generate normalized random numbers.
3244
3245 randfunc (randfunc.U):
3246         Indicates the name of the random number function to use.
3247         Values include drand48, random, and rand. In C programs,
3248         the 'Drand01' macro is defined to generate uniformly distributed
3249         random numbers over the range [0., 1.[ (see drand01 and nrand).
3250
3251 randseedtype (randfunc.U):
3252         Indicates the type of the argument of the seedfunc.
3253
3254 ranlib (orderlib.U):
3255         This variable is set to the pathname of the ranlib program, if it is
3256         needed to generate random libraries.  Set to ":" if ar can generate
3257         random libraries or if random libraries are not supported
3258
3259 rd_nodata (nblock_io.U):
3260         This variable holds the return code from read() when no data is
3261         present. It should be -1, but some systems return 0 when O_NDELAY is
3262         used, which is a shame because you cannot make the difference between
3263         no data and an EOF.. Sigh!
3264
3265 revision (patchlevel.U):
3266         The value of revision comes from the patchlevel.h file.
3267         In a version number such as 5.6.1, this is the "5".
3268         In patchlevel.h, this is referred to as "PERL_REVISION".
3269
3270 rm (Loc.U):
3271         This variable is used internally by Configure to determine the
3272         full pathname (if any) of the rm program.  After Configure runs,
3273         the value is reset to a plain "rm" and is not useful.
3274
3275 rmail (Loc.U):
3276         This variable is defined but not used by Configure.
3277         The value is a plain '' and is not useful.
3278
3279 run (Cross.U):
3280         This variable contains the command used by Configure
3281         to copy and execute a cross-compiled executable in the
3282         target host.  Useful and available only during Perl build.
3283         Empty string '' if not cross-compiling.
3284
3285 runnm (usenm.U):
3286         This variable contains 'true' or 'false' depending whether the
3287         nm extraction should be performed or not, according to the value
3288         of usenm and the flags on the Configure command line.
3289
3290 sched_yield (d_pthread_y.U):
3291         This variable defines the way to yield the execution
3292         of the current thread.
3293
3294 scriptdir (scriptdir.U):
3295         This variable holds the name of the directory in which the user wants
3296         to put publicly scripts for the package in question.  It is either
3297         the same directory as for binaries, or a special one that can be
3298         mounted across different architectures, like /usr/share. Programs
3299         must be prepared to deal with ~name expansion.
3300
3301 scriptdirexp (scriptdir.U):
3302         This variable is the same as scriptdir, but is filename expanded
3303         at configuration time, for programs not wanting to bother with it.
3304
3305 sed (Loc.U):
3306         This variable is used internally by Configure to determine the
3307         full pathname (if any) of the sed program.  After Configure runs,
3308         the value is reset to a plain "sed" and is not useful.
3309
3310 seedfunc (randfunc.U):
3311         Indicates the random number generating seed function.
3312         Values include srand48, srandom, and srand.
3313
3314 selectminbits (selectminbits.U):
3315         This variable holds the minimum number of bits operated by select.
3316         That is, if you do select(n, ...), how many bits at least will be
3317         cleared in the masks if some activity is detected.  Usually this
3318         is either n or 32*ceil(n/32), especially many little-endians do
3319         the latter.  This is only useful if you have select(), naturally.
3320
3321 selecttype (selecttype.U):
3322         This variable holds the type used for the 2nd, 3rd, and 4th
3323         arguments to select.  Usually, this is 'fd_set *', if HAS_FD_SET
3324         is defined, and 'int *' otherwise.  This is only useful if you 
3325         have select(), naturally.
3326
3327 sendmail (Loc.U):
3328         This variable is defined but not used by Configure.
3329         The value is a plain '' and is not useful.
3330
3331 sh (sh.U):
3332         This variable contains the full pathname of the shell used
3333         on this system to execute Bourne shell scripts.  Usually, this will be
3334         /bin/sh, though it's possible that some systems will have /bin/ksh,
3335         /bin/pdksh, /bin/ash, /bin/bash, or even something such as
3336         D:/bin/sh.exe.
3337         This unit comes before Options.U, so you can't set sh with a '-D'
3338         option, though you can override this (and startsh)
3339         with '-O -Dsh=/bin/whatever -Dstartsh=whatever'
3340
3341 shar (Loc.U):
3342         This variable is defined but not used by Configure.
3343         The value is a plain '' and is not useful.
3344
3345 sharpbang (spitshell.U):
3346         This variable contains the string #! if this system supports that
3347         construct.
3348
3349 shmattype (d_shmat.U):
3350         This symbol contains the type of pointer returned by shmat().
3351         It can be 'void *' or 'char *'.
3352
3353 shortsize (intsize.U):
3354         This variable contains the value of the SHORTSIZE symbol which
3355         indicates to the C program how many bytes there are in a short.
3356
3357 shrpenv (libperl.U):
3358         If the user builds a shared libperl.so, then we need to tell the
3359         'perl' executable where it will be able to find the installed libperl.so. 
3360         One way to do this on some systems is to set the environment variable
3361         LD_RUN_PATH to the directory that will be the final location of the
3362         shared libperl.so.  The makefile can use this with something like
3363         $shrpenv $(CC) -o perl perlmain.o $libperl $libs
3364         Typical values are
3365         shrpenv="env LD_RUN_PATH=$archlibexp/CORE"
3366         or
3367         shrpenv=''
3368         See the main perl Makefile.SH for actual working usage.
3369         Alternatively, we might be able to use a command line option such
3370         as -R $archlibexp/CORE (Solaris) or -Wl,-rpath
3371         $archlibexp/CORE (Linux).
3372
3373 shsharp (spitshell.U):
3374         This variable tells further Configure units whether your sh can
3375         handle # comments.
3376
3377 sig_count (sig_name.U):
3378         This variable holds a number larger than the largest valid
3379         signal number.  This is usually the same as the NSIG macro.
3380
3381 sig_name (sig_name.U):
3382         This variable holds the signal names, space separated. The leading
3383         SIG in signal name is removed.  A ZERO is prepended to the
3384         list.  This is currently not used.
3385
3386 sig_name_init (sig_name.U):
3387         This variable holds the signal names, enclosed in double quotes and
3388         separated by commas, suitable for use in the SIG_NAME definition 
3389         below.  A "ZERO" is prepended to the list, and the list is 
3390         terminated with a plain 0.  The leading SIG in signal names
3391         is removed. See sig_num.
3392
3393 sig_num (sig_name.U):
3394         This variable holds the signal numbers, space separated. A ZERO is
3395         prepended to the list (corresponding to the fake SIGZERO), and 
3396         the list is terminated with a 0.  Those numbers correspond to 
3397         the value of the signal listed in the same place within the
3398         sig_name list.
3399
3400 sig_num_init (sig_name.U):
3401         This variable holds the signal numbers, enclosed in double quotes and
3402         separated by commas, suitable for use in the SIG_NUM definition 
3403         below.  A "ZERO" is prepended to the list, and the list is 
3404         terminated with a plain 0.
3405
3406 sig_size (sig_name.U):
3407         This variable contains the number of elements of the sig_name
3408         and sig_num arrays, excluding the final NULL entry.
3409
3410 signal_t (d_voidsig.U):
3411         This variable holds the type of the signal handler (void or int).
3412
3413 sitearch (sitearch.U):
3414         This variable contains the eventual value of the SITEARCH symbol,
3415         which is the name of the private library for this package.  It may
3416         have a ~ on the front. It is up to the makefile to eventually create
3417         this directory while performing installation (with ~ substitution).
3418         The standard distribution will put nothing in this directory.
3419         After perl has been installed, users may install their own local
3420         architecture-dependent modules in this directory with
3421         MakeMaker Makefile.PL
3422         or equivalent.  See INSTALL for details.
3423
3424 sitearchexp (sitearch.U):
3425         This variable is the ~name expanded version of sitearch, so that you
3426         may use it directly in Makefiles or shell scripts.
3427
3428 sitebin (sitebin.U):
3429         This variable holds the name of the directory in which the user wants
3430         to put add-on publicly executable files for the package in question.  It
3431         is most often a local directory such as /usr/local/bin. Programs using
3432         this variable must be prepared to deal with ~name substitution.
3433         The standard distribution will put nothing in this directory.
3434         After perl has been installed, users may install their own local
3435         executables in this directory with
3436         MakeMaker Makefile.PL
3437         or equivalent.  See INSTALL for details.
3438
3439 sitebinexp (sitebin.U):
3440         This is the same as the sitebin variable, but is filename expanded at
3441         configuration time, for use in your makefiles.
3442
3443 sitelib (sitelib.U):
3444         This variable contains the eventual value of the SITELIB symbol,
3445         which is the name of the private library for this package.  It may
3446         have a ~ on the front. It is up to the makefile to eventually create
3447         this directory while performing installation (with ~ substitution).
3448         The standard distribution will put nothing in this directory.
3449         After perl has been installed, users may install their own local
3450         architecture-independent modules in this directory with
3451         MakeMaker Makefile.PL
3452         or equivalent.  See INSTALL for details.
3453
3454 sitelib_stem (sitelib.U):
3455         This variable is $sitelibexp with any trailing version-specific component
3456         removed.  The elements in inc_version_list (inc_version_list.U) can
3457         be tacked onto this variable to generate a list of directories to search.
3458
3459 sitelibexp (sitelib.U):
3460         This variable is the ~name expanded version of sitelib, so that you
3461         may use it directly in Makefiles or shell scripts.
3462
3463 siteprefix (siteprefix.U):
3464         This variable holds the full absolute path of the directory below
3465         which the user will install add-on packages.
3466         See INSTALL for usage and examples.
3467
3468 siteprefixexp (siteprefix.U):
3469         This variable holds the full absolute path of the directory below
3470         which the user will install add-on packages.  Derived from siteprefix.
3471
3472 sizesize (sizesize.U):
3473         This variable contains the size of a sizetype in bytes.
3474
3475 sizetype (sizetype.U):
3476         This variable defines sizetype to be something like size_t, 
3477         unsigned long, or whatever type is used to declare length 
3478         parameters for string functions.
3479
3480 sleep (Loc.U):
3481         This variable is defined but not used by Configure.
3482         The value is a plain '' and is not useful.
3483
3484 smail (Loc.U):
3485         This variable is defined but not used by Configure.
3486         The value is a plain '' and is not useful.
3487
3488 so (so.U):
3489         This variable holds the extension used to identify shared libraries
3490         (also known as shared objects) on the system. Usually set to 'so'.
3491
3492 sockethdr (d_socket.U):
3493         This variable has any cpp '-I' flags needed for socket support.
3494
3495 socketlib (d_socket.U):
3496         This variable has the names of any libraries needed for socket support.
3497
3498 socksizetype (socksizetype.U):
3499         This variable holds the type used for the size argument
3500         for various socket calls like accept.  Usual values include
3501         socklen_t, size_t, and int.
3502
3503 sort (Loc.U):
3504         This variable is used internally by Configure to determine the
3505         full pathname (if any) of the sort program.  After Configure runs,
3506         the value is reset to a plain "sort" and is not useful.
3507
3508 spackage (package.U):
3509         This variable contains the name of the package being constructed,
3510         with the first letter uppercased, i.e. suitable for starting
3511         sentences.
3512
3513 spitshell (spitshell.U):
3514         This variable contains the command necessary to spit out a runnable
3515         shell on this system.  It is either cat or a grep '-v' for # comments.
3516
3517 sPRId64 (quadfio.U):
3518         This variable, if defined, contains the string used by stdio to
3519         format 64-bit decimal numbers (format 'd') for output.
3520
3521 sPRIeldbl (longdblfio.U):
3522         This variable, if defined, contains the string used by stdio to
3523         format long doubles (format 'e') for output.
3524
3525 sPRIEUldbl (longdblfio.U):
3526         This variable, if defined, contains the string used by stdio to
3527         format long doubles (format 'E') for output.
3528         The 'U' in the name is to separate this from sPRIeldbl so that even
3529         case-blind systems can see the difference.
3530
3531 sPRIfldbl (longdblfio.U):
3532         This variable, if defined, contains the string used by stdio to
3533         format long doubles (format 'f') for output.
3534
3535 sPRIFUldbl (longdblfio.U):
3536         This variable, if defined, contains the string used by stdio to
3537         format long doubles (format 'F') for output.
3538         The 'U' in the name is to separate this from sPRIfldbl so that even
3539         case-blind systems can see the difference.
3540
3541 sPRIgldbl (longdblfio.U):
3542         This variable, if defined, contains the string used by stdio to
3543         format long doubles (format 'g') for output.
3544
3545 sPRIGUldbl (longdblfio.U):
3546         This variable, if defined, contains the string used by stdio to
3547         format long doubles (format 'G') for output.
3548         The 'U' in the name is to separate this from sPRIgldbl so that even
3549         case-blind systems can see the difference.
3550
3551 sPRIi64 (quadfio.U):
3552         This variable, if defined, contains the string used by stdio to
3553         format 64-bit decimal numbers (format 'i') for output.
3554
3555 sPRIo64 (quadfio.U):
3556         This variable, if defined, contains the string used by stdio to
3557         format 64-bit octal numbers (format 'o') for output.
3558
3559 sPRIu64 (quadfio.U):
3560         This variable, if defined, contains the string used by stdio to
3561         format 64-bit unsigned decimal numbers (format 'u') for output.
3562
3563 sPRIx64 (quadfio.U):
3564         This variable, if defined, contains the string used by stdio to
3565         format 64-bit hexadecimal numbers (format 'x') for output.
3566
3567 sPRIXU64 (quadfio.U):
3568         This variable, if defined, contains the string used by stdio to
3569         format 64-bit hExADECimAl numbers (format 'X') for output.
3570         The 'U' in the name is to separate this from sPRIx64 so that even
3571         case-blind systems can see the difference.
3572
3573 src (src.U):
3574         This variable holds the path to the package source. It is up to
3575         the Makefile to use this variable and set VPATH accordingly to
3576         find the sources remotely.
3577
3578 sSCNfldbl (longdblfio.U):
3579         This variable, if defined, contains the string used by stdio to
3580         format long doubles (format 'f') for input.
3581
3582 ssizetype (ssizetype.U):
3583         This variable defines ssizetype to be something like ssize_t, 
3584         long or int.  It is used by functions that return a count 
3585         of bytes or an error condition.  It must be a signed type.
3586         We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
3587
3588 startperl (startperl.U):
3589         This variable contains the string to put on the front of a perl
3590         script to make sure (hopefully) that it runs with perl and not some
3591         shell. Of course, that leading line must be followed by the classical
3592         perl idiom:
3593         eval 'exec perl -S $0 ${1+"$@"}'
3594         if $running_under_some_shell;
3595         to guarantee perl startup should the shell execute the script. Note
3596         that this magic incatation is not understood by csh.
3597
3598 startsh (startsh.U):
3599         This variable contains the string to put on the front of a shell
3600         script to make sure (hopefully) that it runs with sh and not some
3601         other shell.
3602
3603 static_ext (Extensions.U):
3604         This variable holds a list of XS extension files we want to
3605         link statically into the package.  It is used by Makefile.
3606
3607 stdchar (stdchar.U):
3608         This variable conditionally defines STDCHAR to be the type of char
3609         used in stdio.h.  It has the values "unsigned char" or "char".
3610
3611 stdio_base (d_stdstdio.U):
3612         This variable defines how, given a FILE pointer, fp, to access the
3613         _base field (or equivalent) of stdio.h's FILE structure.  This will
3614         be used to define the macro FILE_base(fp).
3615
3616 stdio_bufsiz (d_stdstdio.U):
3617         This variable defines how, given a FILE pointer, fp, to determine
3618         the number of bytes store in the I/O buffer pointer to by the
3619         _base field (or equivalent) of stdio.h's FILE structure.  This will
3620         be used to define the macro FILE_bufsiz(fp).
3621
3622 stdio_cnt (d_stdstdio.U):
3623         This variable defines how, given a FILE pointer, fp, to access the
3624         _cnt field (or equivalent) of stdio.h's FILE structure.  This will
3625         be used to define the macro FILE_cnt(fp).
3626
3627 stdio_filbuf (d_stdstdio.U):
3628         This variable defines how, given a FILE pointer, fp, to tell
3629         stdio to refill its internal buffers (?).  This will
3630         be used to define the macro FILE_filbuf(fp).
3631
3632 stdio_ptr (d_stdstdio.U):
3633         This variable defines how, given a FILE pointer, fp, to access the
3634         _ptr field (or equivalent) of stdio.h's FILE structure.  This will
3635         be used to define the macro FILE_ptr(fp).
3636
3637 stdio_stream_array (stdio_streams.U):
3638         This variable tells the name of the array holding the stdio streams.
3639         Usual values include _iob, __iob, and __sF.
3640
3641 strings (i_string.U):
3642         This variable holds the full path of the string header that will be
3643         used. Typically /usr/include/string.h or /usr/include/strings.h.
3644
3645 submit (Loc.U):
3646         This variable is defined but not used by Configure.
3647         The value is a plain '' and is not useful.
3648
3649 subversion (patchlevel.U):
3650         The subversion level of this package.
3651         The value of subversion comes from the patchlevel.h file.
3652         In a version number such as 5.6.1, this is the "1".
3653         In patchlevel.h, this is referred to as "PERL_SUBVERSION".
3654         This is unique to perl.
3655
3656 sysman (sysman.U):
3657         This variable holds the place where the manual is located on this
3658         system. It is not the place where the user wants to put his manual
3659         pages. Rather it is the place where Configure may look to find manual
3660         for unix commands (section 1 of the manual usually). See mansrc.
3661
3662 tail (Loc.U):
3663         This variable is defined but not used by Configure.
3664         The value is a plain '' and is not useful.
3665
3666 tar (Loc.U):
3667         This variable is defined but not used by Configure.
3668         The value is a plain '' and is not useful.
3669
3670 targetarch (Cross.U):
3671         If cross-compiling, this variable contains the target architecture.
3672         If not, this will be empty.
3673
3674 tbl (Loc.U):
3675         This variable is defined but not used by Configure.
3676         The value is a plain '' and is not useful.
3677
3678 tee (Loc.U):
3679         This variable is defined but not used by Configure.
3680         The value is a plain '' and is not useful.
3681
3682 test (Loc.U):
3683         This variable is used internally by Configure to determine the
3684         full pathname (if any) of the test program.  After Configure runs,
3685         the value is reset to a plain "test" and is not useful.
3686
3687 timeincl (i_time.U):
3688         This variable holds the full path of the included time header(s).
3689
3690 timetype (d_time.U):
3691         This variable holds the type returned by time(). It can be long,
3692         or time_t on BSD sites (in which case <sys/types.h> should be
3693         included). Anyway, the type Time_t should be used.
3694
3695 to (Cross.U):
3696         This variable contains the command used by Configure
3697         to copy to from the target host.  Useful and available
3698         only during Perl build.
3699         The string ':' if not cross-compiling.
3700
3701 touch (Loc.U):
3702         This variable is used internally by Configure to determine the
3703         full pathname (if any) of the touch program.  After Configure runs,
3704         the value is reset to a plain "touch" and is not useful.
3705
3706 tr (Loc.U):
3707         This variable is used internally by Configure to determine the
3708         full pathname (if any) of the tr program.  After Configure runs,
3709         the value is reset to a plain "tr" and is not useful.
3710
3711 trnl (trnl.U):
3712         This variable contains the value to be passed to the tr(1)
3713         command to transliterate a newline.  Typical values are
3714         '\012' and '\n'.  This is needed for EBCDIC systems where
3715         newline is not necessarily '\012'.
3716
3717 troff (Loc.U):
3718         This variable is defined but not used by Configure.
3719         The value is a plain '' and is not useful.
3720
3721 u16size (perlxv.U):
3722         This variable is the size of an U16 in bytes.
3723
3724 u16type (perlxv.U):
3725         This variable contains the C type used for Perl's U16.
3726
3727 u32size (perlxv.U):
3728         This variable is the size of an U32 in bytes.
3729
3730 u32type (perlxv.U):
3731         This variable contains the C type used for Perl's U32.
3732
3733 u64size (perlxv.U):
3734         This variable is the size of an U64 in bytes.
3735
3736 u64type (perlxv.U):
3737         This variable contains the C type used for Perl's U64.
3738
3739 u8size (perlxv.U):
3740         This variable is the size of an U8 in bytes.
3741
3742 u8type (perlxv.U):
3743         This variable contains the C type used for Perl's U8.
3744
3745 uidformat (uidf.U):
3746         This variable contains the format string used for printing a Uid_t.
3747
3748 uidsign (uidsign.U):
3749         This variable contains the signedness of a uidtype.
3750         1 for unsigned, -1 for signed.
3751
3752 uidsize (uidsize.U):
3753         This variable contains the size of a uidtype in bytes.
3754
3755 uidtype (uidtype.U):
3756         This variable defines Uid_t to be something like uid_t, int, 
3757         ushort, or whatever type is used to declare user ids in the kernel.
3758
3759 uname (Loc.U):
3760         This variable is used internally by Configure to determine the
3761         full pathname (if any) of the uname program.  After Configure runs,
3762         the value is reset to a plain "uname" and is not useful.
3763
3764 uniq (Loc.U):
3765         This variable is used internally by Configure to determine the
3766         full pathname (if any) of the uniq program.  After Configure runs,
3767         the value is reset to a plain "uniq" and is not useful.
3768
3769 uquadtype (quadtype.U):
3770         This variable defines Uquad_t to be something like unsigned long,
3771         unsigned int, unsigned long long, uint64_t, or whatever type is
3772         used for 64-bit integers.
3773
3774 use5005threads (usethreads.U):
3775         This variable conditionally defines the USE_5005THREADS symbol,
3776         and indicates that Perl should be built to use the 5.005-based
3777         threading implementation.
3778
3779 use64bitall (use64bits.U):
3780         This variable conditionally defines the USE_64_BIT_ALL symbol,
3781         and indicates that 64-bit integer types should be used
3782         when available.  The maximal possible
3783         64-bitness is employed: LP64 or ILP64, meaning that you will
3784         be able to use more than 2 gigabytes of memory.  This mode is
3785         even more binary incompatible than USE_64_BIT_INT. You may not
3786         be able to run the resulting executable in a 32-bit CPU at all or
3787         you may need at least to reboot your OS to 64-bit mode.
3788
3789 use64bitint (use64bits.U):
3790         This variable conditionally defines the USE_64_BIT_INT symbol,
3791         and indicates that 64-bit integer types should be used
3792         when available.  The minimal possible 64-bitness
3793         is employed, just enough to get 64-bit integers into Perl.
3794         This may mean using for example "long longs", while your memory
3795         may still be limited to 2 gigabytes.
3796
3797 usecrosscompile (Cross.U):
3798         This variable conditionally defines the USE_CROSS_COMPILE symbol,
3799         and indicates that Perl has been cross-compiled.
3800
3801 usedl (dlsrc.U):
3802         This variable indicates if the system supports dynamic
3803         loading of some sort.  See also dlsrc and dlobj.
3804
3805 useithreads (usethreads.U):
3806         This variable conditionally defines the USE_ITHREADS symbol,
3807         and indicates that Perl should be built to use the interpreter-based
3808         threading implementation.
3809
3810 uselargefiles (uselfs.U):
3811         This variable conditionally defines the USE_LARGE_FILES symbol,
3812         and indicates that large file interfaces should be used when
3813         available.
3814
3815 uselongdouble (uselongdbl.U):
3816         This variable conditionally defines the USE_LONG_DOUBLE symbol,
3817         and indicates that long doubles should be used when available.
3818
3819 usemorebits (usemorebits.U):
3820         This variable conditionally defines the USE_MORE_BITS symbol,
3821         and indicates that explicit 64-bit interfaces and long doubles
3822         should be used when available.
3823
3824 usemultiplicity (usemultiplicity.U):
3825         This variable conditionally defines the MULTIPLICITY symbol,
3826         and indicates that Perl should be built to use multiplicity.
3827
3828 usemymalloc (mallocsrc.U):
3829         This variable contains y if the malloc that comes with this package
3830         is desired over the system's version of malloc.  People often include
3831         special versions of malloc for effiency, but such versions are often
3832         less portable.  See also mallocsrc and mallocobj.
3833         If this is 'y', then -lmalloc is removed from $libs.
3834
3835 usenm (usenm.U):
3836         This variable contains 'true' or 'false' depending whether the
3837         nm extraction is wanted or not.
3838
3839 useopcode (Extensions.U):
3840         This variable holds either 'true' or 'false' to indicate
3841         whether the Opcode extension should be used.  The sole
3842         use for this currently is to allow an easy mechanism
3843         for users to skip the Opcode extension from the Configure
3844         command line.
3845
3846 useperlio (useperlio.U):
3847         This variable conditionally defines the USE_PERLIO symbol,
3848         and indicates that the PerlIO abstraction should be
3849         used throughout.
3850
3851 useposix (Extensions.U):
3852         This variable holds either 'true' or 'false' to indicate
3853         whether the POSIX extension should be used.  The sole
3854         use for this currently is to allow an easy mechanism
3855         for hints files to indicate that POSIX will not compile
3856         on a particular system.
3857
3858 usereentrant (usethreads.U):
3859         This variable conditionally defines the USE_REENTRANT_API symbol,
3860         which indicates that the thread code may try to use the various
3861         _r versions of library functions.  This is only potentially
3862         meaningful if usethreads is set and is very experimental, it is
3863         not even prompted for.
3864
3865 usesfio (d_sfio.U):
3866         This variable is set to true when the user agrees to use sfio.
3867         It is set to false when sfio is not available or when the user
3868         explicitely requests not to use sfio.  It is here primarily so
3869         that command-line settings can override the auto-detection of
3870         d_sfio without running into a "WHOA THERE".
3871
3872 useshrplib (libperl.U):
3873         This variable is set to 'yes' if the user wishes
3874         to build a shared libperl, and 'no' otherwise.
3875
3876 usesocks (usesocks.U):
3877         This variable conditionally defines the USE_SOCKS symbol,
3878         and indicates that Perl should be built to use SOCKS.
3879
3880 usethreads (usethreads.U):
3881         This variable conditionally defines the USE_THREADS symbol,
3882         and indicates that Perl should be built to use threads.
3883
3884 usevendorprefix (vendorprefix.U):
3885         This variable tells whether the vendorprefix
3886         and consequently other vendor* paths are in use.
3887
3888 usevfork (d_vfork.U):
3889         This variable is set to true when the user accepts to use vfork.
3890         It is set to false when no vfork is available or when the user
3891         explicitely requests not to use vfork.
3892
3893 usrinc (usrinc.U):
3894         This variable holds the path of the include files, which is
3895         usually /usr/include. It is mainly used by other Configure units.
3896
3897 uuname (Loc.U):
3898         This variable is defined but not used by Configure.
3899         The value is a plain '' and is not useful.
3900
3901 uvoformat (perlxvf.U):
3902         This variable contains the format string used for printing
3903         a Perl UV as an unsigned octal integer. 
3904
3905 uvsize (perlxv.U):
3906         This variable is the size of a UV in bytes.
3907
3908 uvtype (perlxv.U):
3909         This variable contains the C type used for Perl's UV.
3910
3911 uvuformat (perlxvf.U):
3912         This variable contains the format string used for printing
3913         a Perl UV as an unsigned decimal integer. 
3914
3915 uvxformat (perlxvf.U):
3916         This variable contains the format string used for printing
3917         a Perl UV as an unsigned hexadecimal integer in lowercase abcdef.
3918
3919 uvXUformat (perlxvf.U):
3920         This variable contains the format string used for printing
3921         a Perl UV as an unsigned hexadecimal integer in uppercase ABCDEF.
3922
3923 vendorarch (vendorarch.U):
3924         This variable contains the value of the PERL_VENDORARCH symbol.
3925         It may have a ~ on the front. 
3926         The standard distribution will put nothing in this directory.
3927         Vendors who distribute perl may wish to place their own
3928         architecture-dependent modules and extensions in this directory with
3929         MakeMaker Makefile.PL INSTALLDIRS=vendor 
3930         or equivalent.  See INSTALL for details.
3931
3932 vendorarchexp (vendorarch.U):
3933         This variable is the ~name expanded version of vendorarch, so that you
3934         may use it directly in Makefiles or shell scripts.
3935
3936 vendorbin (vendorbin.U):
3937         This variable contains the eventual value of the VENDORBIN symbol.
3938         It may have a ~ on the front.
3939         The standard distribution will put nothing in this directory.
3940         Vendors who distribute perl may wish to place additional
3941         binaries in this directory with
3942         MakeMaker Makefile.PL INSTALLDIRS=vendor 
3943         or equivalent.  See INSTALL for details.
3944
3945 vendorbinexp (vendorbin.U):
3946         This variable is the ~name expanded version of vendorbin, so that you
3947         may use it directly in Makefiles or shell scripts.
3948
3949 vendorlib (vendorlib.U):
3950         This variable contains the eventual value of the VENDORLIB symbol,
3951         which is the name of the private library for this package.
3952         The standard distribution will put nothing in this directory.
3953         Vendors who distribute perl may wish to place their own
3954         modules in this directory with
3955         MakeMaker Makefile.PL INSTALLDIRS=vendor 
3956         or equivalent.  See INSTALL for details.
3957
3958 vendorlib_stem (vendorlib.U):
3959         This variable is $vendorlibexp with any trailing version-specific component
3960         removed.  The elements in inc_version_list (inc_version_list.U) can
3961         be tacked onto this variable to generate a list of directories to search.
3962
3963 vendorlibexp (vendorlib.U):
3964         This variable is the ~name expanded version of vendorlib, so that you
3965         may use it directly in Makefiles or shell scripts.
3966
3967 vendorprefix (vendorprefix.U):
3968         This variable holds the full absolute path of the directory below
3969         which the vendor will install add-on packages.
3970         See INSTALL for usage and examples.
3971
3972 vendorprefixexp (vendorprefix.U):
3973         This variable holds the full absolute path of the directory below
3974         which the vendor will install add-on packages.  Derived from vendorprefix.
3975
3976 version (patchlevel.U):
3977         The full version number of this package, such as 5.6.1 (or 5_6_1).
3978         This combines revision, patchlevel, and subversion to get the
3979         full version number, including any possible subversions.
3980         This is suitable for use as a directory name, and hence is
3981         filesystem dependent.
3982
3983 version_patchlevel_string (patchlevel.U):
3984         This is a string combining version, subversion and
3985         perl_patchlevel (if perl_patchlevel is non-zero).  
3986         It is typically something like 
3987         'version 7 subversion 1'  or
3988         'version 7 subversion 1 patchlevel 11224'
3989         It is computed here to avoid duplication of code in myconfig.SH
3990         and lib/Config.pm. 
3991
3992 versiononly (versiononly.U):
3993         If set, this symbol indicates that only the version-specific
3994         components of a perl installation should be installed.
3995         This may be useful for making a test installation of a new
3996         version without disturbing the existing installation.
3997         Setting versiononly is equivalent to setting installperl's -v option.
3998         In particular, the non-versioned scripts and programs such as
3999         a2p, c2ph, h2xs, pod2*, and perldoc are not installed
4000         (see INSTALL for a more complete list).  Nor are the man
4001         pages installed.
4002         Usually, this is undef.
4003
4004 vi (Loc.U):
4005         This variable is defined but not used by Configure.
4006         The value is a plain '' and is not useful.
4007
4008 voidflags (voidflags.U):
4009         This variable contains the eventual value of the VOIDFLAGS symbol,
4010         which indicates how much support of the void type is given by this
4011         compiler.  See VOIDFLAGS for more info.
4012
4013 xlibpth (libpth.U):
4014         This variable holds extra path (space-separated) used to find
4015         libraries on this platform, for example CPU-specific libraries
4016         (on multi-CPU platforms) may be listed here.
4017
4018 xs_apiversion (xs_apiversion.U):
4019         This variable contains the version of the oldest perl binary
4020         compatible with the present perl.  perl.c:incpush() and
4021         lib/lib.pm will automatically search in $sitearch for older
4022         directories across major versions back to xs_apiversion.
4023         This is only useful if you have a perl library directory tree
4024         structured like the default one.
4025         See INSTALL for how this works.
4026         The versioned site_perl directory was introduced in 5.005,
4027         so that is the lowest possible value.
4028         Since this can depend on compile time options (such as
4029         bincompat) it is set by Configure.  Other non-default sources
4030         of potential incompatibility, such as multiplicity, threads,
4031         debugging, 64bits, sfio, etc., are not checked for currently,
4032         though in principle we could go snooping around in old
4033         Config.pm files.
4034
4035 yacc (yacc.U):
4036         This variable holds the name of the compiler compiler we
4037         want to use in the Makefile. It can be yacc, byacc, or bison -y.
4038
4039 yaccflags (yacc.U):
4040         This variable contains any additional yacc flags desired by the
4041         user.  It is up to the Makefile to use this.
4042
4043 zcat (Loc.U):
4044         This variable is defined but not used by Configure.
4045         The value is a plain '' and is not useful.
4046
4047 zip (Loc.U):
4048         This variable is used internally by Configure to determine the
4049         full pathname (if any) of the zip program.  After Configure runs,
4050         the value is reset to a plain "zip" and is not useful.
4051