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