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