home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / Config.pod < prev    next >
Text File  |  2003-11-07  |  211KB  |  8,174 lines

  1. =head1 NAME
  2.  
  3. Config - access Perl configuration information
  4.  
  5. =head1 SYNOPSIS
  6.  
  7.     use Config;
  8.     if ($Config{'cc'} =~ /gcc/) {
  9.     print "built by gcc\n";
  10.     } 
  11.  
  12.     use Config qw(myconfig config_sh config_vars config_re);
  13.  
  14.     print myconfig();
  15.  
  16.     print config_sh();
  17.  
  18.     print config_re();
  19.  
  20.     config_vars(qw(osname archname));
  21.  
  22.  
  23. =head1 DESCRIPTION
  24.  
  25. The Config module contains all the information that was available to
  26. the C<Configure> program at Perl build time (over 900 values).
  27.  
  28. Shell variables from the F<config.sh> file (written by Configure) are
  29. stored in the readonly-variable C<%Config>, indexed by their names.
  30.  
  31. Values stored in config.sh as 'undef' are returned as undefined
  32. values.  The perl C<exists> function can be used to check if a
  33. named variable exists.
  34.  
  35. =over 4
  36.  
  37. =item myconfig()
  38.  
  39. Returns a textual summary of the major perl configuration values.
  40. See also C<-V> in L<perlrun/Switches>.
  41.  
  42. =item config_sh()
  43.  
  44. Returns the entire perl configuration information in the form of the
  45. original config.sh shell variable assignment script.
  46.  
  47. =item config_re($regex)
  48.  
  49. Like config_sh() but returns, as a list, only the config entries who's
  50. names match the $regex.
  51.  
  52. =item config_vars(@names)
  53.  
  54. Prints to STDOUT the values of the named configuration variable. Each is
  55. printed on a separate line in the form:
  56.  
  57.   name='value';
  58.  
  59. Names which are unknown are output as C<name='UNKNOWN';>.
  60. See also C<-V:name> in L<perlrun/Switches>.
  61.  
  62. =back
  63.  
  64. =head1 EXAMPLE
  65.  
  66. Here's a more sophisticated example of using %Config:
  67.  
  68.     use Config;
  69.     use strict;
  70.  
  71.     my %sig_num;
  72.     my @sig_name;
  73.     unless($Config{sig_name} && $Config{sig_num}) {
  74.     die "No sigs?";
  75.     } else {
  76.     my @names = split ' ', $Config{sig_name};
  77.     @sig_num{@names} = split ' ', $Config{sig_num};
  78.     foreach (@names) {
  79.         $sig_name[$sig_num{$_}] ||= $_;
  80.     }   
  81.     }
  82.  
  83.     print "signal #17 = $sig_name[17]\n";
  84.     if ($sig_num{ALRM}) { 
  85.     print "SIGALRM is $sig_num{ALRM}\n";
  86.     }   
  87.  
  88. =head1 WARNING
  89.  
  90. Because this information is not stored within the perl executable
  91. itself it is possible (but unlikely) that the information does not
  92. relate to the actual perl binary which is being used to access it.
  93.  
  94. The Config module is installed into the architecture and version
  95. specific library directory ($Config{installarchlib}) and it checks the
  96. perl version number when loaded.
  97.  
  98. The values stored in config.sh may be either single-quoted or
  99. double-quoted. Double-quoted strings are handy for those cases where you
  100. need to include escape sequences in the strings. To avoid runtime variable
  101. interpolation, any C<$> and C<@> characters are replaced by C<\$> and
  102. C<\@>, respectively. This isn't foolproof, of course, so don't embed C<\$>
  103. or C<\@> in double-quoted strings unless you're willing to deal with the
  104. consequences. (The slashes will end up escaped and the C<$> or C<@> will
  105. trigger variable interpolation)
  106.  
  107. =head1 GLOSSARY
  108.  
  109. Most C<Config> variables are determined by the C<Configure> script
  110. on platforms supported by it (which is most UNIX platforms).  Some
  111. platforms have custom-made C<Config> variables, and may thus not have
  112. some of the variables described below, or may have extraneous variables
  113. specific to that particular port.  See the port specific documentation
  114. in such cases.
  115.  
  116. =head2 _
  117.  
  118. =over 4
  119.  
  120. =item C<_a>
  121.  
  122. From F<Unix.U>:
  123.  
  124. This variable defines the extension used for ordinary library files.
  125. For unix, it is F<.a>.  The F<.> is included.  Other possible
  126. values include F<.lib>.
  127.  
  128. =item C<_exe>
  129.  
  130. From F<Unix.U>:
  131.  
  132. This variable defines the extension used for executable files.
  133. C<DJGPP>, Cygwin and F<OS/2> use F<.exe>.  Stratus C<VOS> uses F<.pm>.
  134. On operating systems which do not require a specific extension
  135. for executable files, this variable is empty.
  136.  
  137. =item C<_o>
  138.  
  139. From F<Unix.U>:
  140.  
  141. This variable defines the extension used for object files.
  142. For unix, it is F<.o>.  The F<.> is included.  Other possible
  143. values include F<.obj>.
  144.  
  145. =back
  146.  
  147. =head2 a
  148.  
  149. =over 4
  150.  
  151. =item C<afs>
  152.  
  153. From F<afs.U>:
  154.  
  155. This variable is set to C<true> if C<AFS> (Andrew File System) is used
  156. on the system, C<false> otherwise.  It is possible to override this
  157. with a hint value or command line option, but you'd better know
  158. what you are doing.
  159.  
  160. =item C<afsroot>
  161.  
  162. From F<afs.U>:
  163.  
  164. This variable is by default set to F</afs>. In the unlikely case
  165. this is not the correct root, it is possible to override this with
  166. a hint value or command line option.  This will be used in subsequent
  167. tests for AFSness in the Perl configure and test process. 
  168.  
  169. =item C<alignbytes>
  170.  
  171. From F<alignbytes.U>:
  172.  
  173. This variable holds the number of bytes required to align a
  174. double-- or a long double when applicable. Usual values are
  175. 2, 4 and 8.  The default is eight, for safety.
  176.  
  177. =item C<ansi2knr>
  178.  
  179. From F<ansi2knr.U>:
  180.  
  181. This variable is set if the user needs to run ansi2knr.  
  182. Currently, this is not supported, so we just abort.
  183.  
  184. =item C<aphostname>
  185.  
  186. From F<d_gethname.U>:
  187.  
  188. This variable contains the command which can be used to compute the
  189. host name. The command is fully qualified by its absolute path, to make
  190. it safe when used by a process with super-user privileges.
  191.  
  192. =item C<api_revision>
  193.  
  194. From F<patchlevel.U>:
  195.  
  196. The three variables, api_revision, api_version, and
  197. api_subversion, specify the version of the oldest perl binary
  198. compatible with the present perl.  In a full version string
  199. such as F<5.6.1>, api_revision is the C<5>.
  200. Prior to 5.5.640, the format was a floating point number,
  201. like 5.00563.
  202.  
  203. F<perl.c>:incpush() and F<lib/lib.pm> will automatically search in
  204. F<$sitelib/.>. for older directories back to the limit specified
  205. by these api_ variables.  This is only useful if you have a
  206. perl library directory tree structured like the default one.
  207. See C<INSTALL> for how this works.  The versioned site_perl
  208. directory was introduced in 5.005, so that is the lowest
  209. possible value.  The version list appropriate for the current
  210. system is determined in F<inc_version_list.U>.
  211.  
  212. C<XXX> To do:  Since compatibility can depend on compile time
  213. options (such as bincompat, longlong, etc.) it should
  214. (perhaps) be set by Configure, but currently it isn't.
  215. Currently, we read a hard-wired value from F<patchlevel.h>.
  216. Perhaps what we ought to do is take the hard-wired value from
  217. F<patchlevel.h> but then modify it if the current Configure
  218. options warrant.  F<patchlevel.h> then would use an #ifdef guard.
  219.  
  220. =item C<api_subversion>
  221.  
  222. From F<patchlevel.U>:
  223.  
  224. The three variables, api_revision, api_version, and
  225. api_subversion, specify the version of the oldest perl binary
  226. compatible with the present perl.  In a full version string
  227. such as F<5.6.1>, api_subversion is the C<1>.  See api_revision for
  228. full details.
  229.  
  230. =item C<api_version>
  231.  
  232. From F<patchlevel.U>:
  233.  
  234. The three variables, api_revision, api_version, and
  235. api_subversion, specify the version of the oldest perl binary
  236. compatible with the present perl.  In a full version string
  237. such as F<5.6.1>, api_version is the C<6>.  See api_revision for
  238. full details.  As a special case, 5.5.0 is rendered in the
  239. old-style as 5.005.  (In the 5.005_0x maintenance series,
  240. this was the only versioned directory in $sitelib.)
  241.  
  242. =item C<api_versionstring>
  243.  
  244. From F<patchlevel.U>:
  245.  
  246. This variable combines api_revision, api_version, and
  247. api_subversion in a format such as 5.6.1 (or 5_6_1) suitable
  248. for use as a directory name.  This is filesystem dependent.
  249.  
  250. =item C<ar>
  251.  
  252. From F<Loc.U>:
  253.  
  254. This variable is used internally by Configure to determine the
  255. full pathname (if any) of the ar program.  After Configure runs,
  256. the value is reset to a plain C<ar> and is not useful.
  257.  
  258. =item C<archlib>
  259.  
  260. From F<archlib.U>:
  261.  
  262. This variable holds the name of the directory in which the user wants
  263. to put architecture-dependent public library files for $package.
  264. It is most often a local directory such as F</usr/local/lib>.
  265. Programs using this variable must be prepared to deal
  266. with filename expansion.
  267.  
  268. =item C<archlibexp>
  269.  
  270. From F<archlib.U>:
  271.  
  272. This variable is the same as the archlib variable, but is
  273. filename expanded at configuration time, for convenient use.
  274.  
  275. =item C<archname64>
  276.  
  277. From F<use64bits.U>:
  278.  
  279. This variable is used for the 64-bitness part of $archname.
  280.  
  281. =item C<archname>
  282.  
  283. From F<archname.U>:
  284.  
  285. This variable is a short name to characterize the current
  286. architecture.  It is used mainly to construct the default archlib.
  287.  
  288. =item C<archobjs>
  289.  
  290. From F<Unix.U>:
  291.  
  292. This variable defines any additional objects that must be linked
  293. in with the program on this architecture.  On unix, it is usually
  294. empty.  It is typically used to include emulations of unix calls
  295. or other facilities.  For perl on F<OS/2>, for example, this would
  296. include F<os2/os2.obj>.
  297.  
  298. =item C<asctime_r_proto>
  299.  
  300. From F<d_asctime_r.U>:
  301.  
  302. This variable encodes the prototype of asctime_r.
  303. It is zero if d_asctime_r is undef, and one of the
  304. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_asctime_r
  305. is defined.
  306.  
  307. =item C<awk>
  308.  
  309. From F<Loc.U>:
  310.  
  311. This variable is used internally by Configure to determine the
  312. full pathname (if any) of the awk program.  After Configure runs,
  313. the value is reset to a plain C<awk> and is not useful.
  314.  
  315. =back
  316.  
  317. =head2 b
  318.  
  319. =over 4
  320.  
  321. =item C<baserev>
  322.  
  323. From F<baserev.U>:
  324.  
  325. The base revision level of this package, from the F<.package> file.
  326.  
  327. =item C<bash>
  328.  
  329. From F<Loc.U>:
  330.  
  331. This variable is defined but not used by Configure.
  332. The value is a plain '' and is not useful.
  333.  
  334. =item C<bin>
  335.  
  336. From F<bin.U>:
  337.  
  338. This variable holds the name of the directory in which the user wants
  339. to put publicly executable images for the package in question.  It
  340. is most often a local directory such as F</usr/local/bin>. Programs using
  341. this variable must be prepared to deal with F<~name> substitution.
  342.  
  343. =item C<binexp>
  344.  
  345. From F<bin.U>:
  346.  
  347. This is the same as the bin variable, but is filename expanded at
  348. configuration time, for use in your makefiles.
  349.  
  350. =item C<bison>
  351.  
  352. From F<Loc.U>:
  353.  
  354. This variable is used internally by Configure to determine the
  355. full pathname (if any) of the bison program.  After Configure runs,
  356. the value is reset to a plain C<bison> and is not useful.
  357.  
  358. =item C<byacc>
  359.  
  360. From F<Loc.U>:
  361.  
  362. This variable is used internally by Configure to determine the
  363. full pathname (if any) of the byacc program.  After Configure runs,
  364. the value is reset to a plain C<byacc> and is not useful.
  365.  
  366. =item C<byteorder>
  367.  
  368. From F<byteorder.U>:
  369.  
  370. This variable holds the byte order in a C<UV>. In the following,
  371. larger digits indicate more significance.  The variable byteorder
  372. is either 4321 on a big-endian machine, or 1234 on a little-endian,
  373. or 87654321 on a Cray ... or 3412 with weird order !
  374.  
  375. =back
  376.  
  377. =head2 c
  378.  
  379. =over 4
  380.  
  381. =item C<c>
  382.  
  383. From F<n.U>:
  384.  
  385. This variable contains the \c string if that is what causes the echo
  386. command to suppress newline.  Otherwise it is null.  Correct usage is
  387. $echo $n "prompt for a question: $c".
  388.  
  389. =item C<castflags>
  390.  
  391. From F<d_castneg.U>:
  392.  
  393. This variable contains a flag that precise difficulties the
  394. compiler has casting odd floating values to unsigned long:
  395. 0 = ok
  396. 1 = couldn't cast < 0
  397. 2 = couldn't cast >= 0x80000000
  398. 4 = couldn't cast in argument expression list
  399.  
  400. =item C<cat>
  401.  
  402. From F<Loc.U>:
  403.  
  404. This variable is used internally by Configure to determine the
  405. full pathname (if any) of the cat program.  After Configure runs,
  406. the value is reset to a plain C<cat> and is not useful.
  407.  
  408. =item C<cc>
  409.  
  410. From F<cc.U>:
  411.  
  412. This variable holds the name of a command to execute a C compiler which
  413. can resolve multiple global references that happen to have the same
  414. name.  Usual values are C<cc> and C<gcc>.
  415. Fervent C<ANSI> compilers may be called C<c89>.  C<AIX> has xlc.
  416.  
  417. =item C<cccdlflags>
  418.  
  419. From F<dlsrc.U>:
  420.  
  421. This variable contains any special flags that might need to be
  422. passed with C<cc -c> to compile modules to be used to create a shared
  423. library that will be used for dynamic loading.  For hpux, this
  424. should be +z.  It is up to the makefile to use it.
  425.  
  426. =item C<ccdlflags>
  427.  
  428. From F<dlsrc.U>:
  429.  
  430. This variable contains any special flags that might need to be
  431. passed to cc to link with a shared library for dynamic loading.
  432. It is up to the makefile to use it.  For sunos 4.1, it should
  433. be empty.
  434.  
  435. =item C<ccflags>
  436.  
  437. From F<ccflags.U>:
  438.  
  439. This variable contains any additional C compiler flags desired by
  440. the user.  It is up to the Makefile to use this.
  441.  
  442. =item C<ccflags_uselargefiles>
  443.  
  444. From F<uselfs.U>:
  445.  
  446. This variable contains the compiler flags needed by large file builds
  447. and added to ccflags by hints files.
  448.  
  449. =item C<ccname>
  450.  
  451. From F<Checkcc.U>:
  452.  
  453. This can set either by hints files or by Configure.  If using
  454. gcc, this is gcc, and if not, usually equal to cc, unimpressive, no?
  455. Some platforms, however, make good use of this by storing the
  456. flavor of the C compiler being used here.  For example if using
  457. the Sun WorkShop suite, ccname will be C<workshop>.
  458.  
  459. =item C<ccsymbols>
  460.  
  461. From F<Cppsym.U>:
  462.  
  463. The variable contains the symbols defined by the C compiler alone.
  464. The symbols defined by cpp or by cc when it calls cpp are not in
  465. this list, see cppsymbols and cppccsymbols.
  466. The list is a space-separated list of symbol=value tokens.
  467.  
  468. =item C<ccversion>
  469.  
  470. From F<Checkcc.U>:
  471.  
  472. This can set either by hints files or by Configure.  If using
  473. a (non-gcc) vendor cc, this variable may contain a version for
  474. the compiler.
  475.  
  476. =item C<cf_by>
  477.  
  478. From F<cf_who.U>:
  479.  
  480. Login name of the person who ran the Configure script and answered the
  481. questions. This is used to tag both F<config.sh> and F<config_h.SH>.
  482.  
  483. =item C<cf_email>
  484.  
  485. From F<cf_email.U>:
  486.  
  487. Electronic mail address of the person who ran Configure. This can be
  488. used by units that require the user's e-mail, like F<MailList.U>.
  489.  
  490. =item C<cf_time>
  491.  
  492. From F<cf_who.U>:
  493.  
  494. Holds the output of the C<date> command when the configuration file was
  495. produced. This is used to tag both F<config.sh> and F<config_h.SH>.
  496.  
  497. =item C<charsize>
  498.  
  499. From F<charsize.U>:
  500.  
  501. This variable contains the value of the C<CHARSIZE> symbol, which
  502. indicates to the C program how many bytes there are in a character.
  503.  
  504. =item C<chgrp>
  505.  
  506. From F<Loc.U>:
  507.  
  508. This variable is defined but not used by Configure.
  509. The value is a plain '' and is not useful.
  510.  
  511. =item C<chmod>
  512.  
  513. From F<Loc.U>:
  514.  
  515. This variable is used internally by Configure to determine the
  516. full pathname (if any) of the chmod program.  After Configure runs,
  517. the value is reset to a plain C<chmod> and is not useful.
  518.  
  519. =item C<chown>
  520.  
  521. From F<Loc.U>:
  522.  
  523. This variable is defined but not used by Configure.
  524. The value is a plain '' and is not useful.
  525.  
  526. =item C<clocktype>
  527.  
  528. From F<d_times.U>:
  529.  
  530. This variable holds the type returned by times(). It can be long,
  531. or clock_t on C<BSD> sites (in which case <sys/types.h> should be
  532. included).
  533.  
  534. =item C<comm>
  535.  
  536. From F<Loc.U>:
  537.  
  538. This variable is used internally by Configure to determine the
  539. full pathname (if any) of the comm program.  After Configure runs,
  540. the value is reset to a plain C<comm> and is not useful.
  541.  
  542. =item C<compress>
  543.  
  544. From F<Loc.U>:
  545.  
  546. This variable is defined but not used by Configure.
  547. The value is a plain '' and is not useful.
  548.  
  549. =item C<contains>
  550.  
  551. From F<contains.U>:
  552.  
  553. This variable holds the command to do a grep with a proper return
  554. status.  On most sane systems it is simply C<grep>.  On insane systems
  555. it is a grep followed by a cat followed by a test.  This variable
  556. is primarily for the use of other Configure units.
  557.  
  558. =item C<cp>
  559.  
  560. From F<Loc.U>:
  561.  
  562. This variable is used internally by Configure to determine the
  563. full pathname (if any) of the cp program.  After Configure runs,
  564. the value is reset to a plain C<cp> and is not useful.
  565.  
  566. =item C<cpio>
  567.  
  568. From F<Loc.U>:
  569.  
  570. This variable is defined but not used by Configure.
  571. The value is a plain '' and is not useful.
  572.  
  573. =item C<cpp>
  574.  
  575. From F<Loc.U>:
  576.  
  577. This variable is used internally by Configure to determine the
  578. full pathname (if any) of the cpp program.  After Configure runs,
  579. the value is reset to a plain C<cpp> and is not useful.
  580.  
  581. =item C<cpp_stuff>
  582.  
  583. From F<cpp_stuff.U>:
  584.  
  585. This variable contains an identification of the concatenation mechanism
  586. used by the C preprocessor.
  587.  
  588. =item C<cppccsymbols>
  589.  
  590. From F<Cppsym.U>:
  591.  
  592. The variable contains the symbols defined by the C compiler
  593. when it calls cpp.  The symbols defined by the cc alone or cpp
  594. alone are not in this list, see ccsymbols and cppsymbols.
  595. The list is a space-separated list of symbol=value tokens.
  596.  
  597. =item C<cppflags>
  598.  
  599. From F<ccflags.U>:
  600.  
  601. This variable holds the flags that will be passed to the C pre-
  602. processor. It is up to the Makefile to use it.
  603.  
  604. =item C<cpplast>
  605.  
  606. From F<cppstdin.U>:
  607.  
  608. This variable has the same functionality as cppminus, only it applies
  609. to cpprun and not cppstdin.
  610.  
  611. =item C<cppminus>
  612.  
  613. From F<cppstdin.U>:
  614.  
  615. This variable contains the second part of the string which will invoke
  616. the C preprocessor on the standard input and produce to standard
  617. output.  This variable will have the value C<-> if cppstdin needs
  618. a minus to specify standard input, otherwise the value is "".
  619.  
  620. =item C<cpprun>
  621.  
  622. From F<cppstdin.U>:
  623.  
  624. This variable contains the command which will invoke a C preprocessor
  625. on standard input and put the output to stdout. It is guaranteed not
  626. to be a wrapper and may be a null string if no preprocessor can be
  627. made directly available. This preprocessor might be different from the
  628. one used by the C compiler. Don't forget to append cpplast after the
  629. preprocessor options.
  630.  
  631. =item C<cppstdin>
  632.  
  633. From F<cppstdin.U>:
  634.  
  635. This variable contains the command which will invoke the C
  636. preprocessor on standard input and put the output to stdout.
  637. It is primarily used by other Configure units that ask about
  638. preprocessor symbols.
  639.  
  640. =item C<cppsymbols>
  641.  
  642. From F<Cppsym.U>:
  643.  
  644. The variable contains the symbols defined by the C preprocessor
  645. alone.  The symbols defined by cc or by cc when it calls cpp are
  646. not in this list, see ccsymbols and cppccsymbols.
  647. The list is a space-separated list of symbol=value tokens.
  648.  
  649. =item C<crypt_r_proto>
  650.  
  651. From F<d_crypt_r.U>:
  652.  
  653. This variable encodes the prototype of crypt_r.
  654. It is zero if d_crypt_r is undef, and one of the
  655. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_crypt_r
  656. is defined.
  657.  
  658. =item C<cryptlib>
  659.  
  660. From F<d_crypt.U>:
  661.  
  662. This variable holds -lcrypt or the path to a F<libcrypt.a> archive if
  663. the crypt() function is not defined in the standard C library. It is
  664. up to the Makefile to use this.
  665.  
  666. =item C<csh>
  667.  
  668. From F<Loc.U>:
  669.  
  670. This variable is used internally by Configure to determine the
  671. full pathname (if any) of the csh program.  After Configure runs,
  672. the value is reset to a plain C<csh> and is not useful.
  673.  
  674. =item C<ctermid_r_proto>
  675.  
  676. From F<d_ctermid_r.U>:
  677.  
  678. This variable encodes the prototype of ctermid_r.
  679. It is zero if d_ctermid_r is undef, and one of the
  680. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_ctermid_r
  681. is defined.
  682.  
  683. =item C<ctime_r_proto>
  684.  
  685. From F<d_ctime_r.U>:
  686.  
  687. This variable encodes the prototype of ctime_r.
  688. It is zero if d_ctime_r is undef, and one of the
  689. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_ctime_r
  690. is defined.
  691.  
  692. =back
  693.  
  694. =head2 d
  695.  
  696. =over 4
  697.  
  698. =item C<d__fwalk>
  699.  
  700. From F<d__fwalk.U>:
  701.  
  702. This variable conditionally defines C<HAS__FWALK> if _fwalk() is
  703. available to apply a function to all the file handles.
  704.  
  705. =item C<d_access>
  706.  
  707. From F<d_access.U>:
  708.  
  709. This variable conditionally defines C<HAS_ACCESS> if the access() system
  710. call is available to check for access permissions using real IDs.
  711.  
  712. =item C<d_accessx>
  713.  
  714. From F<d_accessx.U>:
  715.  
  716. This variable conditionally defines the C<HAS_ACCESSX> symbol, which
  717. indicates to the C program that the accessx() routine is available.
  718.  
  719. =item C<d_aintl>
  720.  
  721. From F<d_aintl.U>:
  722.  
  723. This variable conditionally defines the C<HAS_AINTL> symbol, which
  724. indicates to the C program that the aintl() routine is available.
  725. If copysignl is also present we can emulate modfl.
  726.  
  727. =item C<d_alarm>
  728.  
  729. From F<d_alarm.U>:
  730.  
  731. This variable conditionally defines the C<HAS_ALARM> symbol, which
  732. indicates to the C program that the alarm() routine is available.
  733.  
  734. =item C<d_archlib>
  735.  
  736. From F<archlib.U>:
  737.  
  738. This variable conditionally defines C<ARCHLIB> to hold the pathname
  739. of architecture-dependent library files for $package.  If
  740. $archlib is the same as $privlib, then this is set to undef.
  741.  
  742. =item C<d_asctime_r>
  743.  
  744. From F<d_asctime_r.U>:
  745.  
  746. This variable conditionally defines the C<HAS_ASCTIME_R> symbol,
  747. which indicates to the C program that the asctime_r()
  748. routine is available.
  749.  
  750. =item C<d_atolf>
  751.  
  752. From F<atolf.U>:
  753.  
  754. This variable conditionally defines the C<HAS_ATOLF> symbol, which
  755. indicates to the C program that the atolf() routine is available.
  756.  
  757. =item C<d_atoll>
  758.  
  759. From F<atoll.U>:
  760.  
  761. This variable conditionally defines the C<HAS_ATOLL> symbol, which
  762. indicates to the C program that the atoll() routine is available.
  763.  
  764. =item C<d_attribut>
  765.  
  766. From F<d_attribut.U>:
  767.  
  768. This variable conditionally defines C<HASATTRIBUTE>, which
  769. indicates the C compiler can check for function attributes,
  770. such as printf formats.
  771.  
  772. =item C<d_bcmp>
  773.  
  774. From F<d_bcmp.U>:
  775.  
  776. This variable conditionally defines the C<HAS_BCMP> symbol if
  777. the bcmp() routine is available to compare strings.
  778.  
  779. =item C<d_bcopy>
  780.  
  781. From F<d_bcopy.U>:
  782.  
  783. This variable conditionally defines the C<HAS_BCOPY> symbol if
  784. the bcopy() routine is available to copy strings.
  785.  
  786. =item C<d_bsd>
  787.  
  788. From F<Guess.U>:
  789.  
  790. This symbol conditionally defines the symbol C<BSD> when running on a
  791. C<BSD> system.
  792.  
  793. =item C<d_bsdgetpgrp>
  794.  
  795. From F<d_getpgrp.U>:
  796.  
  797. This variable conditionally defines C<USE_BSD_GETPGRP> if
  798. getpgrp needs one arguments whereas C<USG> one needs none.
  799.  
  800. =item C<d_bsdsetpgrp>
  801.  
  802. From F<d_setpgrp.U>:
  803.  
  804. This variable conditionally defines C<USE_BSD_SETPGRP> if
  805. setpgrp needs two arguments whereas C<USG> one needs none.
  806. See also d_setpgid for a C<POSIX> interface.
  807.  
  808. =item C<d_bzero>
  809.  
  810. From F<d_bzero.U>:
  811.  
  812. This variable conditionally defines the C<HAS_BZERO> symbol if
  813. the bzero() routine is available to set memory to 0.
  814.  
  815. =item C<d_casti32>
  816.  
  817. From F<d_casti32.U>:
  818.  
  819. This variable conditionally defines CASTI32, which indicates
  820. whether the C compiler can cast large floats to 32-bit ints.
  821.  
  822. =item C<d_castneg>
  823.  
  824. From F<d_castneg.U>:
  825.  
  826. This variable conditionally defines C<CASTNEG>, which indicates
  827. wether the C compiler can cast negative float to unsigned.
  828.  
  829. =item C<d_charvspr>
  830.  
  831. From F<d_vprintf.U>:
  832.  
  833. This variable conditionally defines C<CHARVSPRINTF> if this system
  834. has vsprintf returning type (char*).  The trend seems to be to
  835. declare it as "int vsprintf()".
  836.  
  837. =item C<d_chown>
  838.  
  839. From F<d_chown.U>:
  840.  
  841. This variable conditionally defines the C<HAS_CHOWN> symbol, which
  842. indicates to the C program that the chown() routine is available.
  843.  
  844. =item C<d_chroot>
  845.  
  846. From F<d_chroot.U>:
  847.  
  848. This variable conditionally defines the C<HAS_CHROOT> symbol, which
  849. indicates to the C program that the chroot() routine is available.
  850.  
  851. =item C<d_chsize>
  852.  
  853. From F<d_chsize.U>:
  854.  
  855. This variable conditionally defines the C<CHSIZE> symbol, which
  856. indicates to the C program that the chsize() routine is available
  857. to truncate files.  You might need a -lx to get this routine.
  858.  
  859. =item C<d_class>
  860.  
  861. From F<d_class.U>:
  862.  
  863. This variable conditionally defines the C<HAS_CLASS> symbol, which
  864. indicates to the C program that the class() routine is available.
  865.  
  866. =item C<d_closedir>
  867.  
  868. From F<d_closedir.U>:
  869.  
  870. This variable conditionally defines C<HAS_CLOSEDIR> if closedir() is
  871. available.
  872.  
  873. =item C<d_cmsghdr_s>
  874.  
  875. From F<d_cmsghdr_s.U>:
  876.  
  877. This variable conditionally defines the C<HAS_STRUCT_CMSGHDR> symbol,
  878. which indicates that the struct cmsghdr is supported.
  879.  
  880. =item C<d_const>
  881.  
  882. From F<d_const.U>:
  883.  
  884. This variable conditionally defines the C<HASCONST> symbol, which
  885. indicates to the C program that this C compiler knows about the
  886. const type.
  887.  
  888. =item C<d_copysignl>
  889.  
  890. From F<d_copysignl.U>:
  891.  
  892. This variable conditionally defines the C<HAS_COPYSIGNL> symbol, which
  893. indicates to the C program that the copysignl() routine is available.
  894. If aintl is also present we can emulate modfl.
  895.  
  896. =item C<d_crypt>
  897.  
  898. From F<d_crypt.U>:
  899.  
  900. This variable conditionally defines the C<CRYPT> symbol, which
  901. indicates to the C program that the crypt() routine is available
  902. to encrypt passwords and the like.
  903.  
  904. =item C<d_crypt_r>
  905.  
  906. From F<d_crypt_r.U>:
  907.  
  908. This variable conditionally defines the C<HAS_CRYPT_R> symbol,
  909. which indicates to the C program that the crypt_r()
  910. routine is available.
  911.  
  912. =item C<d_csh>
  913.  
  914. From F<d_csh.U>:
  915.  
  916. This variable conditionally defines the C<CSH> symbol, which
  917. indicates to the C program that the C-shell exists.
  918.  
  919. =item C<d_ctermid_r>
  920.  
  921. From F<d_ctermid_r.U>:
  922.  
  923. This variable conditionally defines the C<HAS_CTERMID_R> symbol,
  924. which indicates to the C program that the ctermid_r()
  925. routine is available.
  926.  
  927. =item C<d_ctime_r>
  928.  
  929. From F<d_ctime_r.U>:
  930.  
  931. This variable conditionally defines the C<HAS_CTIME_R> symbol,
  932. which indicates to the C program that the ctime_r()
  933. routine is available.
  934.  
  935. =item C<d_cuserid>
  936.  
  937. From F<d_cuserid.U>:
  938.  
  939. This variable conditionally defines the C<HAS_CUSERID> symbol, which
  940. indicates to the C program that the cuserid() routine is available
  941. to get character login names.
  942.  
  943. =item C<d_dbl_dig>
  944.  
  945. From F<d_dbl_dig.U>:
  946.  
  947. This variable conditionally defines d_dbl_dig if this system's
  948. header files provide C<DBL_DIG>, which is the number of significant
  949. digits in a double precision number.
  950.  
  951. =item C<d_dbminitproto>
  952.  
  953. From F<d_dbminitproto.U>:
  954.  
  955. This variable conditionally defines the C<HAS_DBMINIT_PROTO> symbol,
  956. which indicates to the C program that the system provides
  957. a prototype for the dbminit() function.  Otherwise, it is
  958. up to the program to supply one.
  959.  
  960. =item C<d_difftime>
  961.  
  962. From F<d_difftime.U>:
  963.  
  964. This variable conditionally defines the C<HAS_DIFFTIME> symbol, which
  965. indicates to the C program that the difftime() routine is available.
  966.  
  967. =item C<d_dirfd>
  968.  
  969. From F<d_dirfd.U>:
  970.  
  971. This variable conditionally defines the C<HAS_DIRFD> constant,
  972. which indicates to the C program that dirfd() is available
  973. to return the file descriptor of a directory stream.
  974.  
  975. =item C<d_dirnamlen>
  976.  
  977. From F<i_dirent.U>:
  978.  
  979. This variable conditionally defines C<DIRNAMLEN>, which indicates
  980. to the C program that the length of directory entry names is
  981. provided by a d_namelen field.
  982.  
  983. =item C<d_dlerror>
  984.  
  985. From F<d_dlerror.U>:
  986.  
  987. This variable conditionally defines the C<HAS_DLERROR> symbol, which
  988. indicates to the C program that the dlerror() routine is available.
  989.  
  990. =item C<d_dlopen>
  991.  
  992. From F<d_dlopen.U>:
  993.  
  994. This variable conditionally defines the C<HAS_DLOPEN> symbol, which
  995. indicates to the C program that the dlopen() routine is available.
  996.  
  997. =item C<d_dlsymun>
  998.  
  999. From F<d_dlsymun.U>:
  1000.  
  1001. This variable conditionally defines C<DLSYM_NEEDS_UNDERSCORE>, which
  1002. indicates that we need to prepend an underscore to the symbol
  1003. name before calling dlsym().
  1004.  
  1005. =item C<d_dosuid>
  1006.  
  1007. From F<d_dosuid.U>:
  1008.  
  1009. This variable conditionally defines the symbol C<DOSUID>, which
  1010. tells the C program that it should insert setuid emulation code
  1011. on hosts which have setuid #! scripts disabled.
  1012.  
  1013. =item C<d_drand48_r>
  1014.  
  1015. From F<d_drand48_r.U>:
  1016.  
  1017. This variable conditionally defines the HAS_DRAND48_R symbol,
  1018. which indicates to the C program that the drand48_r()
  1019. routine is available.
  1020.  
  1021. =item C<d_drand48proto>
  1022.  
  1023. From F<d_drand48proto.U>:
  1024.  
  1025. This variable conditionally defines the HAS_DRAND48_PROTO symbol,
  1026. which indicates to the C program that the system provides
  1027. a prototype for the drand48() function.  Otherwise, it is
  1028. up to the program to supply one.
  1029.  
  1030. =item C<d_dup2>
  1031.  
  1032. From F<d_dup2.U>:
  1033.  
  1034. This variable conditionally defines HAS_DUP2 if dup2() is
  1035. available to duplicate file descriptors.
  1036.  
  1037. =item C<d_eaccess>
  1038.  
  1039. From F<d_eaccess.U>:
  1040.  
  1041. This variable conditionally defines the C<HAS_EACCESS> symbol, which
  1042. indicates to the C program that the eaccess() routine is available.
  1043.  
  1044. =item C<d_endgrent>
  1045.  
  1046. From F<d_endgrent.U>:
  1047.  
  1048. This variable conditionally defines the C<HAS_ENDGRENT> symbol, which
  1049. indicates to the C program that the endgrent() routine is available
  1050. for sequential access of the group database.
  1051.  
  1052. =item C<d_endgrent_r>
  1053.  
  1054. From F<d_endgrent_r.U>:
  1055.  
  1056. This variable conditionally defines the C<HAS_ENDGRENT_R> symbol,
  1057. which indicates to the C program that the endgrent_r()
  1058. routine is available.
  1059.  
  1060. =item C<d_endhent>
  1061.  
  1062. From F<d_endhent.U>:
  1063.  
  1064. This variable conditionally defines C<HAS_ENDHOSTENT> if endhostent() is
  1065. available to close whatever was being used for host queries.
  1066.  
  1067. =item C<d_endhostent_r>
  1068.  
  1069. From F<d_endhostent_r.U>:
  1070.  
  1071. This variable conditionally defines the C<HAS_ENDHOSTENT_R> symbol,
  1072. which indicates to the C program that the endhostent_r()
  1073. routine is available.
  1074.  
  1075. =item C<d_endnent>
  1076.  
  1077. From F<d_endnent.U>:
  1078.  
  1079. This variable conditionally defines C<HAS_ENDNETENT> if endnetent() is
  1080. available to close whatever was being used for network queries.
  1081.  
  1082. =item C<d_endnetent_r>
  1083.  
  1084. From F<d_endnetent_r.U>:
  1085.  
  1086. This variable conditionally defines the C<HAS_ENDNETENT_R> symbol,
  1087. which indicates to the C program that the endnetent_r()
  1088. routine is available.
  1089.  
  1090. =item C<d_endpent>
  1091.  
  1092. From F<d_endpent.U>:
  1093.  
  1094. This variable conditionally defines C<HAS_ENDPROTOENT> if endprotoent() is
  1095. available to close whatever was being used for protocol queries.
  1096.  
  1097. =item C<d_endprotoent_r>
  1098.  
  1099. From F<d_endprotoent_r.U>:
  1100.  
  1101. This variable conditionally defines the C<HAS_ENDPROTOENT_R> symbol,
  1102. which indicates to the C program that the endprotoent_r()
  1103. routine is available.
  1104.  
  1105. =item C<d_endpwent>
  1106.  
  1107. From F<d_endpwent.U>:
  1108.  
  1109. This variable conditionally defines the C<HAS_ENDPWENT> symbol, which
  1110. indicates to the C program that the endpwent() routine is available
  1111. for sequential access of the passwd database.
  1112.  
  1113. =item C<d_endpwent_r>
  1114.  
  1115. From F<d_endpwent_r.U>:
  1116.  
  1117. This variable conditionally defines the C<HAS_ENDPWENT_R> symbol,
  1118. which indicates to the C program that the endpwent_r()
  1119. routine is available.
  1120.  
  1121. =item C<d_endsent>
  1122.  
  1123. From F<d_endsent.U>:
  1124.  
  1125. This variable conditionally defines C<HAS_ENDSERVENT> if endservent() is
  1126. available to close whatever was being used for service queries.
  1127.  
  1128. =item C<d_endservent_r>
  1129.  
  1130. From F<d_endservent_r.U>:
  1131.  
  1132. This variable conditionally defines the C<HAS_ENDSERVENT_R> symbol,
  1133. which indicates to the C program that the endservent_r()
  1134. routine is available.
  1135.  
  1136. =item C<d_eofnblk>
  1137.  
  1138. From F<nblock_io.U>:
  1139.  
  1140. This variable conditionally defines C<EOF_NONBLOCK> if C<EOF> can be seen
  1141. when reading from a non-blocking I/O source.
  1142.  
  1143. =item C<d_eunice>
  1144.  
  1145. From F<Guess.U>:
  1146.  
  1147. This variable conditionally defines the symbols C<EUNICE> and C<VAX>, which
  1148. alerts the C program that it must deal with ideosyncracies of C<VMS>.
  1149.  
  1150. =item C<d_faststdio>
  1151.  
  1152. From F<d_faststdio.U>:
  1153.  
  1154. This variable conditionally defines the C<HAS_FAST_STDIO> symbol,
  1155. which indicates to the C program that the "fast stdio" is available
  1156. to manipulate the stdio buffers directly.
  1157.  
  1158. =item C<d_fchdir>
  1159.  
  1160. From F<d_fchdir.U>:
  1161.  
  1162. This variable conditionally defines the C<HAS_FCHDIR> symbol, which
  1163. indicates to the C program that the fchdir() routine is available.
  1164.  
  1165. =item C<d_fchmod>
  1166.  
  1167. From F<d_fchmod.U>:
  1168.  
  1169. This variable conditionally defines the C<HAS_FCHMOD> symbol, which
  1170. indicates to the C program that the fchmod() routine is available
  1171. to change mode of opened files.
  1172.  
  1173. =item C<d_fchown>
  1174.  
  1175. From F<d_fchown.U>:
  1176.  
  1177. This variable conditionally defines the C<HAS_FCHOWN> symbol, which
  1178. indicates to the C program that the fchown() routine is available
  1179. to change ownership of opened files.
  1180.  
  1181. =item C<d_fcntl>
  1182.  
  1183. From F<d_fcntl.U>:
  1184.  
  1185. This variable conditionally defines the C<HAS_FCNTL> symbol, and indicates
  1186. whether the fcntl() function exists
  1187.  
  1188. =item C<d_fcntl_can_lock>
  1189.  
  1190. From F<d_fcntl_can_lock.U>:
  1191.  
  1192. This variable conditionally defines the C<FCNTL_CAN_LOCK> symbol
  1193. and indicates whether file locking with fcntl() works.
  1194.  
  1195. =item C<d_fd_macros>
  1196.  
  1197. From F<d_fd_set.U>:
  1198.  
  1199. This variable contains the eventual value of the C<HAS_FD_MACROS> symbol,
  1200. which indicates if your C compiler knows about the macros which
  1201. manipulate an fd_set.
  1202.  
  1203. =item C<d_fd_set>
  1204.  
  1205. From F<d_fd_set.U>:
  1206.  
  1207. This variable contains the eventual value of the C<HAS_FD_SET> symbol,
  1208. which indicates if your C compiler knows about the fd_set typedef.
  1209.  
  1210. =item C<d_fds_bits>
  1211.  
  1212. From F<d_fd_set.U>:
  1213.  
  1214. This variable contains the eventual value of the C<HAS_FDS_BITS> symbol,
  1215. which indicates if your fd_set typedef contains the fds_bits member.
  1216. If you have an fd_set typedef, but the dweebs who installed it did
  1217. a half-fast job and neglected to provide the macros to manipulate
  1218. an fd_set, C<HAS_FDS_BITS> will let us know how to fix the gaffe.
  1219.  
  1220. =item C<d_fgetpos>
  1221.  
  1222. From F<d_fgetpos.U>:
  1223.  
  1224. This variable conditionally defines C<HAS_FGETPOS> if fgetpos() is
  1225. available to get the file position indicator.
  1226.  
  1227. =item C<d_finite>
  1228.  
  1229. From F<d_finite.U>:
  1230.  
  1231. This variable conditionally defines the C<HAS_FINITE> symbol, which
  1232. indicates to the C program that the finite() routine is available.
  1233.  
  1234. =item C<d_finitel>
  1235.  
  1236. From F<d_finitel.U>:
  1237.  
  1238. This variable conditionally defines the C<HAS_FINITEL> symbol, which
  1239. indicates to the C program that the finitel() routine is available.
  1240.  
  1241. =item C<d_flexfnam>
  1242.  
  1243. From F<d_flexfnam.U>:
  1244.  
  1245. This variable conditionally defines the C<FLEXFILENAMES> symbol, which
  1246. indicates that the system supports filenames longer than 14 characters.
  1247.  
  1248. =item C<d_flock>
  1249.  
  1250. From F<d_flock.U>:
  1251.  
  1252. This variable conditionally defines C<HAS_FLOCK> if flock() is
  1253. available to do file locking.
  1254.  
  1255. =item C<d_flockproto>
  1256.  
  1257. From F<d_flockproto.U>:
  1258.  
  1259. This variable conditionally defines the C<HAS_FLOCK_PROTO> symbol,
  1260. which indicates to the C program that the system provides
  1261. a prototype for the flock() function.  Otherwise, it is
  1262. up to the program to supply one.
  1263.  
  1264. =item C<d_fork>
  1265.  
  1266. From F<d_fork.U>:
  1267.  
  1268. This variable conditionally defines the C<HAS_FORK> symbol, which
  1269. indicates to the C program that the fork() routine is available.
  1270.  
  1271. =item C<d_fp_class>
  1272.  
  1273. From F<d_fp_class.U>:
  1274.  
  1275. This variable conditionally defines the C<HAS_FP_CLASS> symbol, which
  1276. indicates to the C program that the fp_class() routine is available.
  1277.  
  1278. =item C<d_fpathconf>
  1279.  
  1280. From F<d_pathconf.U>:
  1281.  
  1282. This variable conditionally defines the C<HAS_FPATHCONF> symbol, which
  1283. indicates to the C program that the pathconf() routine is available
  1284. to determine file-system related limits and options associated
  1285. with a given open file descriptor.
  1286.  
  1287. =item C<d_fpclass>
  1288.  
  1289. From F<d_fpclass.U>:
  1290.  
  1291. This variable conditionally defines the C<HAS_FPCLASS> symbol, which
  1292. indicates to the C program that the fpclass() routine is available.
  1293.  
  1294. =item C<d_fpclassify>
  1295.  
  1296. From F<d_fpclassify.U>:
  1297.  
  1298. This variable conditionally defines the C<HAS_FPCLASSIFY> symbol, which
  1299. indicates to the C program that the fpclassify() routine is available.
  1300.  
  1301. =item C<d_fpclassl>
  1302.  
  1303. From F<d_fpclassl.U>:
  1304.  
  1305. This variable conditionally defines the C<HAS_FPCLASSL> symbol, which
  1306. indicates to the C program that the fpclassl() routine is available.
  1307.  
  1308. =item C<d_fpos64_t>
  1309.  
  1310. From F<d_fpos64_t.U>:
  1311.  
  1312. This symbol will be defined if the C compiler supports fpos64_t.
  1313.  
  1314. =item C<d_frexpl>
  1315.  
  1316. From F<d_frexpl.U>:
  1317.  
  1318. This variable conditionally defines the C<HAS_FREXPL> symbol, which
  1319. indicates to the C program that the frexpl() routine is available.
  1320.  
  1321. =item C<d_fs_data_s>
  1322.  
  1323. From F<d_fs_data_s.U>:
  1324.  
  1325. This variable conditionally defines the C<HAS_STRUCT_FS_DATA> symbol,
  1326. which indicates that the struct fs_data is supported.
  1327.  
  1328. =item C<d_fseeko>
  1329.  
  1330. From F<d_fseeko.U>:
  1331.  
  1332. This variable conditionally defines the C<HAS_FSEEKO> symbol, which
  1333. indicates to the C program that the fseeko() routine is available.
  1334.  
  1335. =item C<d_fsetpos>
  1336.  
  1337. From F<d_fsetpos.U>:
  1338.  
  1339. This variable conditionally defines C<HAS_FSETPOS> if fsetpos() is
  1340. available to set the file position indicator.
  1341.  
  1342. =item C<d_fstatfs>
  1343.  
  1344. From F<d_fstatfs.U>:
  1345.  
  1346. This variable conditionally defines the C<HAS_FSTATFS> symbol, which
  1347. indicates to the C program that the fstatfs() routine is available.
  1348.  
  1349. =item C<d_fstatvfs>
  1350.  
  1351. From F<d_statvfs.U>:
  1352.  
  1353. This variable conditionally defines the C<HAS_FSTATVFS> symbol, which
  1354. indicates to the C program that the fstatvfs() routine is available.
  1355.  
  1356. =item C<d_fsync>
  1357.  
  1358. From F<d_fsync.U>:
  1359.  
  1360. This variable conditionally defines the C<HAS_FSYNC> symbol, which
  1361. indicates to the C program that the fsync() routine is available.
  1362.  
  1363. =item C<d_ftello>
  1364.  
  1365. From F<d_ftello.U>:
  1366.  
  1367. This variable conditionally defines the C<HAS_FTELLO> symbol, which
  1368. indicates to the C program that the ftello() routine is available.
  1369.  
  1370. =item C<d_ftime>
  1371.  
  1372. From F<d_ftime.U>:
  1373.  
  1374. This variable conditionally defines the C<HAS_FTIME> symbol, which indicates
  1375. that the ftime() routine exists.  The ftime() routine is basically
  1376. a sub-second accuracy clock.
  1377.  
  1378. =item C<d_Gconvert>
  1379.  
  1380. From F<d_gconvert.U>:
  1381.  
  1382. This variable holds what Gconvert is defined as to convert
  1383. floating point numbers into strings.  By default, Configure
  1384. sets C<this> macro to use the first of gconvert, gcvt, or sprintf
  1385. that pass sprintf-%g-like behaviour tests.  If perl is using
  1386. long doubles, the macro uses the first of the following
  1387. functions that pass Configure's tests: qgcvt, sprintf (if
  1388. Configure knows how to make sprintf format long doubles--see
  1389. sPRIgldbl), gconvert, gcvt, and sprintf (casting to double).  
  1390. The gconvert_preference and gconvert_ld_preference variables   
  1391. can be used to alter Configure's preferences, for doubles and
  1392. long doubles, respectively.  If present, they contain a       
  1393. space-separated list of one or more of the above function       
  1394. names in the order they should be tried.
  1395.  
  1396. d_Gconvert may be set to override Configure with a platform-
  1397. specific function.  If this function expects a double, a
  1398. different value may need to be set by the F<uselongdouble.cbu>
  1399. call-back unit so that long doubles can be formatted without
  1400. loss of precision.
  1401.  
  1402. =item C<d_getcwd>
  1403.  
  1404. From F<d_getcwd.U>:
  1405.  
  1406. This variable conditionally defines the C<HAS_GETCWD> symbol, which
  1407. indicates to the C program that the getcwd() routine is available
  1408. to get the current working directory.
  1409.  
  1410. =item C<d_getespwnam>
  1411.  
  1412. From F<d_getespwnam.U>:
  1413.  
  1414. This variable conditionally defines C<HAS_GETESPWNAM> if getespwnam() is
  1415. available to retrieve enchanced (shadow) password entries by name.
  1416.  
  1417. =item C<d_getfsstat>
  1418.  
  1419. From F<d_getfsstat.U>:
  1420.  
  1421. This variable conditionally defines the C<HAS_GETFSSTAT> symbol, which
  1422. indicates to the C program that the getfsstat() routine is available.
  1423.  
  1424. =item C<d_getgrent>
  1425.  
  1426. From F<d_getgrent.U>:
  1427.  
  1428. This variable conditionally defines the C<HAS_GETGRENT> symbol, which
  1429. indicates to the C program that the getgrent() routine is available
  1430. for sequential access of the group database.
  1431.  
  1432. =item C<d_getgrent_r>
  1433.  
  1434. From F<d_getgrent_r.U>:
  1435.  
  1436. This variable conditionally defines the C<HAS_GETGRENT_R> symbol,
  1437. which indicates to the C program that the getgrent_r()
  1438. routine is available.
  1439.  
  1440. =item C<d_getgrgid_r>
  1441.  
  1442. From F<d_getgrgid_r.U>:
  1443.  
  1444. This variable conditionally defines the C<HAS_GETGRGID_R> symbol,
  1445. which indicates to the C program that the getgrgid_r()
  1446. routine is available.
  1447.  
  1448. =item C<d_getgrnam_r>
  1449.  
  1450. From F<d_getgrnam_r.U>:
  1451.  
  1452. This variable conditionally defines the C<HAS_GETGRNAM_R> symbol,
  1453. which indicates to the C program that the getgrnam_r()
  1454. routine is available.
  1455.  
  1456. =item C<d_getgrps>
  1457.  
  1458. From F<d_getgrps.U>:
  1459.  
  1460. This variable conditionally defines the C<HAS_GETGROUPS> symbol, which
  1461. indicates to the C program that the getgroups() routine is available
  1462. to get the list of process groups.
  1463.  
  1464. =item C<d_gethbyaddr>
  1465.  
  1466. From F<d_gethbyad.U>:
  1467.  
  1468. This variable conditionally defines the C<HAS_GETHOSTBYADDR> symbol, which
  1469. indicates to the C program that the gethostbyaddr() routine is available
  1470. to look up hosts by their C<IP> addresses.
  1471.  
  1472. =item C<d_gethbyname>
  1473.  
  1474. From F<d_gethbynm.U>:
  1475.  
  1476. This variable conditionally defines the C<HAS_GETHOSTBYNAME> symbol, which
  1477. indicates to the C program that the gethostbyname() routine is available
  1478. to look up host names in some data base or other.
  1479.  
  1480. =item C<d_gethent>
  1481.  
  1482. From F<d_gethent.U>:
  1483.  
  1484. This variable conditionally defines C<HAS_GETHOSTENT> if gethostent() is
  1485. available to look up host names in some data base or another.
  1486.  
  1487. =item C<d_gethname>
  1488.  
  1489. From F<d_gethname.U>:
  1490.  
  1491. This variable conditionally defines the C<HAS_GETHOSTNAME> symbol, which
  1492. indicates to the C program that the gethostname() routine may be
  1493. used to derive the host name.
  1494.  
  1495. =item C<d_gethostbyaddr_r>
  1496.  
  1497. From F<d_gethostbyaddr_r.U>:
  1498.  
  1499. This variable conditionally defines the C<HAS_GETHOSTBYADDR_R> symbol,
  1500. which indicates to the C program that the gethostbyaddr_r()
  1501. routine is available.
  1502.  
  1503. =item C<d_gethostbyname_r>
  1504.  
  1505. From F<d_gethostbyname_r.U>:
  1506.  
  1507. This variable conditionally defines the C<HAS_GETHOSTBYNAME_R> symbol,
  1508. which indicates to the C program that the gethostbyname_r()
  1509. routine is available.
  1510.  
  1511. =item C<d_gethostent_r>
  1512.  
  1513. From F<d_gethostent_r.U>:
  1514.  
  1515. This variable conditionally defines the C<HAS_GETHOSTENT_R> symbol,
  1516. which indicates to the C program that the gethostent_r()
  1517. routine is available.
  1518.  
  1519. =item C<d_gethostprotos>
  1520.  
  1521. From F<d_gethostprotos.U>:
  1522.  
  1523. This variable conditionally defines the C<HAS_GETHOST_PROTOS> symbol,
  1524. which indicates to the C program that <netdb.h> supplies
  1525. prototypes for the various gethost*() functions.  
  1526. See also F<netdbtype.U> for probing for various netdb types.
  1527.  
  1528. =item C<d_getitimer>
  1529.  
  1530. From F<d_getitimer.U>:
  1531.  
  1532. This variable conditionally defines the C<HAS_GETITIMER> symbol, which
  1533. indicates to the C program that the getitimer() routine is available.
  1534.  
  1535. =item C<d_getlogin>
  1536.  
  1537. From F<d_getlogin.U>:
  1538.  
  1539. This variable conditionally defines the C<HAS_GETLOGIN> symbol, which
  1540. indicates to the C program that the getlogin() routine is available
  1541. to get the login name.
  1542.  
  1543. =item C<d_getlogin_r>
  1544.  
  1545. From F<d_getlogin_r.U>:
  1546.  
  1547. This variable conditionally defines the C<HAS_GETLOGIN_R> symbol,
  1548. which indicates to the C program that the getlogin_r()
  1549. routine is available.
  1550.  
  1551. =item C<d_getmnt>
  1552.  
  1553. From F<d_getmnt.U>:
  1554.  
  1555. This variable conditionally defines the C<HAS_GETMNT> symbol, which
  1556. indicates to the C program that the getmnt() routine is available
  1557. to retrieve one or more mount info blocks by filename.
  1558.  
  1559. =item C<d_getmntent>
  1560.  
  1561. From F<d_getmntent.U>:
  1562.  
  1563. This variable conditionally defines the C<HAS_GETMNTENT> symbol, which
  1564. indicates to the C program that the getmntent() routine is available
  1565. to iterate through mounted files to get their mount info.
  1566.  
  1567. =item C<d_getnbyaddr>
  1568.  
  1569. From F<d_getnbyad.U>:
  1570.  
  1571. This variable conditionally defines the C<HAS_GETNETBYADDR> symbol, which
  1572. indicates to the C program that the getnetbyaddr() routine is available
  1573. to look up networks by their C<IP> addresses.
  1574.  
  1575. =item C<d_getnbyname>
  1576.  
  1577. From F<d_getnbynm.U>:
  1578.  
  1579. This variable conditionally defines the C<HAS_GETNETBYNAME> symbol, which
  1580. indicates to the C program that the getnetbyname() routine is available
  1581. to look up networks by their names.
  1582.  
  1583. =item C<d_getnent>
  1584.  
  1585. From F<d_getnent.U>:
  1586.  
  1587. This variable conditionally defines C<HAS_GETNETENT> if getnetent() is
  1588. available to look up network names in some data base or another.
  1589.  
  1590. =item C<d_getnetbyaddr_r>
  1591.  
  1592. From F<d_getnetbyaddr_r.U>:
  1593.  
  1594. This variable conditionally defines the C<HAS_GETNETBYADDR_R> symbol,
  1595. which indicates to the C program that the getnetbyaddr_r()
  1596. routine is available.
  1597.  
  1598. =item C<d_getnetbyname_r>
  1599.  
  1600. From F<d_getnetbyname_r.U>:
  1601.  
  1602. This variable conditionally defines the C<HAS_GETNETBYNAME_R> symbol,
  1603. which indicates to the C program that the getnetbyname_r()
  1604. routine is available.
  1605.  
  1606. =item C<d_getnetent_r>
  1607.  
  1608. From F<d_getnetent_r.U>:
  1609.  
  1610. This variable conditionally defines the C<HAS_GETNETENT_R> symbol,
  1611. which indicates to the C program that the getnetent_r()
  1612. routine is available.
  1613.  
  1614. =item C<d_getnetprotos>
  1615.  
  1616. From F<d_getnetprotos.U>:
  1617.  
  1618. This variable conditionally defines the C<HAS_GETNET_PROTOS> symbol,
  1619. which indicates to the C program that <netdb.h> supplies
  1620. prototypes for the various getnet*() functions.  
  1621. See also F<netdbtype.U> for probing for various netdb types.
  1622.  
  1623. =item C<d_getpagsz>
  1624.  
  1625. From F<d_getpagsz.U>:
  1626.  
  1627. This variable conditionally defines C<HAS_GETPAGESIZE> if getpagesize()
  1628. is available to get the system page size.
  1629.  
  1630. =item C<d_getpbyname>
  1631.  
  1632. From F<d_getprotby.U>:
  1633.  
  1634. This variable conditionally defines the C<HAS_GETPROTOBYNAME> 
  1635. symbol, which indicates to the C program that the 
  1636. getprotobyname() routine is available to look up protocols
  1637. by their name.
  1638.  
  1639. =item C<d_getpbynumber>
  1640.  
  1641. From F<d_getprotby.U>:
  1642.  
  1643. This variable conditionally defines the C<HAS_GETPROTOBYNUMBER> 
  1644. symbol, which indicates to the C program that the 
  1645. getprotobynumber() routine is available to look up protocols
  1646. by their number.
  1647.  
  1648. =item C<d_getpent>
  1649.  
  1650. From F<d_getpent.U>:
  1651.  
  1652. This variable conditionally defines C<HAS_GETPROTOENT> if getprotoent() is
  1653. available to look up protocols in some data base or another.
  1654.  
  1655. =item C<d_getpgid>
  1656.  
  1657. From F<d_getpgid.U>:
  1658.  
  1659. This variable conditionally defines the C<HAS_GETPGID> symbol, which
  1660. indicates to the C program that the getpgid(pid) function
  1661. is available to get the process group id.
  1662.  
  1663. =item C<d_getpgrp2>
  1664.  
  1665. From F<d_getpgrp2.U>:
  1666.  
  1667. This variable conditionally defines the HAS_GETPGRP2 symbol, which
  1668. indicates to the C program that the getpgrp2() (as in F<DG/C<UX>>) routine
  1669. is available to get the current process group.
  1670.  
  1671. =item C<d_getpgrp>
  1672.  
  1673. From F<d_getpgrp.U>:
  1674.  
  1675. This variable conditionally defines C<HAS_GETPGRP> if getpgrp() is
  1676. available to get the current process group.
  1677.  
  1678. =item C<d_getppid>
  1679.  
  1680. From F<d_getppid.U>:
  1681.  
  1682. This variable conditionally defines the C<HAS_GETPPID> symbol, which
  1683. indicates to the C program that the getppid() routine is available
  1684. to get the parent process C<ID>.
  1685.  
  1686. =item C<d_getprior>
  1687.  
  1688. From F<d_getprior.U>:
  1689.  
  1690. This variable conditionally defines C<HAS_GETPRIORITY> if getpriority()
  1691. is available to get a process's priority.
  1692.  
  1693. =item C<d_getprotobyname_r>
  1694.  
  1695. From F<d_getprotobyname_r.U>:
  1696.  
  1697. This variable conditionally defines the C<HAS_GETPROTOBYNAME_R> symbol,
  1698. which indicates to the C program that the getprotobyname_r()
  1699. routine is available.
  1700.  
  1701. =item C<d_getprotobynumber_r>
  1702.  
  1703. From F<d_getprotobynumber_r.U>:
  1704.  
  1705. This variable conditionally defines the C<HAS_GETPROTOBYNUMBER_R> symbol,
  1706. which indicates to the C program that the getprotobynumber_r()
  1707. routine is available.
  1708.  
  1709. =item C<d_getprotoent_r>
  1710.  
  1711. From F<d_getprotoent_r.U>:
  1712.  
  1713. This variable conditionally defines the C<HAS_GETPROTOENT_R> symbol,
  1714. which indicates to the C program that the getprotoent_r()
  1715. routine is available.
  1716.  
  1717. =item C<d_getprotoprotos>
  1718.  
  1719. From F<d_getprotoprotos.U>:
  1720.  
  1721. This variable conditionally defines the C<HAS_GETPROTO_PROTOS> symbol,
  1722. which indicates to the C program that <netdb.h> supplies
  1723. prototypes for the various getproto*() functions.  
  1724. See also F<netdbtype.U> for probing for various netdb types.
  1725.  
  1726. =item C<d_getprpwnam>
  1727.  
  1728. From F<d_getprpwnam.U>:
  1729.  
  1730. This variable conditionally defines C<HAS_GETPRPWNAM> if getprpwnam() is
  1731. available to retrieve protected (shadow) password entries by name.
  1732.  
  1733. =item C<d_getpwent>
  1734.  
  1735. From F<d_getpwent.U>:
  1736.  
  1737. This variable conditionally defines the C<HAS_GETPWENT> symbol, which
  1738. indicates to the C program that the getpwent() routine is available
  1739. for sequential access of the passwd database.
  1740.  
  1741. =item C<d_getpwent_r>
  1742.  
  1743. From F<d_getpwent_r.U>:
  1744.  
  1745. This variable conditionally defines the C<HAS_GETPWENT_R> symbol,
  1746. which indicates to the C program that the getpwent_r()
  1747. routine is available.
  1748.  
  1749. =item C<d_getpwnam_r>
  1750.  
  1751. From F<d_getpwnam_r.U>:
  1752.  
  1753. This variable conditionally defines the C<HAS_GETPWNAM_R> symbol,
  1754. which indicates to the C program that the getpwnam_r()
  1755. routine is available.
  1756.  
  1757. =item C<d_getpwuid_r>
  1758.  
  1759. From F<d_getpwuid_r.U>:
  1760.  
  1761. This variable conditionally defines the C<HAS_GETPWUID_R> symbol,
  1762. which indicates to the C program that the getpwuid_r()
  1763. routine is available.
  1764.  
  1765. =item C<d_getsbyname>
  1766.  
  1767. From F<d_getsrvby.U>:
  1768.  
  1769. This variable conditionally defines the C<HAS_GETSERVBYNAME> 
  1770. symbol, which indicates to the C program that the 
  1771. getservbyname() routine is available to look up services
  1772. by their name.
  1773.  
  1774. =item C<d_getsbyport>
  1775.  
  1776. From F<d_getsrvby.U>:
  1777.  
  1778. This variable conditionally defines the C<HAS_GETSERVBYPORT> 
  1779. symbol, which indicates to the C program that the 
  1780. getservbyport() routine is available to look up services
  1781. by their port.
  1782.  
  1783. =item C<d_getsent>
  1784.  
  1785. From F<d_getsent.U>:
  1786.  
  1787. This variable conditionally defines C<HAS_GETSERVENT> if getservent() is
  1788. available to look up network services in some data base or another.
  1789.  
  1790. =item C<d_getservbyname_r>
  1791.  
  1792. From F<d_getservbyname_r.U>:
  1793.  
  1794. This variable conditionally defines the C<HAS_GETSERVBYNAME_R> symbol,
  1795. which indicates to the C program that the getservbyname_r()
  1796. routine is available.
  1797.  
  1798. =item C<d_getservbyport_r>
  1799.  
  1800. From F<d_getservbyport_r.U>:
  1801.  
  1802. This variable conditionally defines the C<HAS_GETSERVBYPORT_R> symbol,
  1803. which indicates to the C program that the getservbyport_r()
  1804. routine is available.
  1805.  
  1806. =item C<d_getservent_r>
  1807.  
  1808. From F<d_getservent_r.U>:
  1809.  
  1810. This variable conditionally defines the C<HAS_GETSERVENT_R> symbol,
  1811. which indicates to the C program that the getservent_r()
  1812. routine is available.
  1813.  
  1814. =item C<d_getservprotos>
  1815.  
  1816. From F<d_getservprotos.U>:
  1817.  
  1818. This variable conditionally defines the C<HAS_GETSERV_PROTOS> symbol,
  1819. which indicates to the C program that <netdb.h> supplies
  1820. prototypes for the various getserv*() functions.  
  1821. See also F<netdbtype.U> for probing for various netdb types.
  1822.  
  1823. =item C<d_getspnam>
  1824.  
  1825. From F<d_getspnam.U>:
  1826.  
  1827. This variable conditionally defines C<HAS_GETSPNAM> if getspnam() is
  1828. available to retrieve SysV shadow password entries by name.
  1829.  
  1830. =item C<d_getspnam_r>
  1831.  
  1832. From F<d_getspnam_r.U>:
  1833.  
  1834. This variable conditionally defines the C<HAS_GETSPNAM_R> symbol,
  1835. which indicates to the C program that the getspnam_r()
  1836. routine is available.
  1837.  
  1838. =item C<d_gettimeod>
  1839.  
  1840. From F<d_ftime.U>:
  1841.  
  1842. This variable conditionally defines the C<HAS_GETTIMEOFDAY> symbol, which
  1843. indicates that the gettimeofday() system call exists (to obtain a
  1844. sub-second accuracy clock). You should probably include <sys/resource.h>.
  1845.  
  1846. =item C<d_gmtime_r>
  1847.  
  1848. From F<d_gmtime_r.U>:
  1849.  
  1850. This variable conditionally defines the C<HAS_GMTIME_R> symbol,
  1851. which indicates to the C program that the gmtime_r()
  1852. routine is available.
  1853.  
  1854. =item C<d_gnulibc>
  1855.  
  1856. From F<d_gnulibc.U>:
  1857.  
  1858. Defined if we're dealing with the C<GNU> C Library.
  1859.  
  1860. =item C<d_grpasswd>
  1861.  
  1862. From F<i_grp.U>:
  1863.  
  1864. This variable conditionally defines C<GRPASSWD>, which indicates
  1865. that struct group in <grp.h> contains gr_passwd.
  1866.  
  1867. =item C<d_hasmntopt>
  1868.  
  1869. From F<d_hasmntopt.U>:
  1870.  
  1871. This variable conditionally defines the C<HAS_HASMNTOPT> symbol, which
  1872. indicates to the C program that the hasmntopt() routine is available
  1873. to query the mount options of file systems.
  1874.  
  1875. =item C<d_htonl>
  1876.  
  1877. From F<d_htonl.U>:
  1878.  
  1879. This variable conditionally defines C<HAS_HTONL> if htonl() and its
  1880. friends are available to do network order byte swapping.
  1881.  
  1882. =item C<d_ilogbl>
  1883.  
  1884. From F<d_ilogbl.U>:
  1885.  
  1886. This variable conditionally defines the C<HAS_ILOGBL> symbol, which
  1887. indicates to the C program that the ilogbl() routine is available.
  1888. If scalbnl is also present we can emulate frexpl.
  1889.  
  1890. =item C<d_index>
  1891.  
  1892. From F<d_strchr.U>:
  1893.  
  1894. This variable conditionally defines C<HAS_INDEX> if index() and
  1895. rindex() are available for string searching.
  1896.  
  1897. =item C<d_inetaton>
  1898.  
  1899. From F<d_inetaton.U>:
  1900.  
  1901. This variable conditionally defines the C<HAS_INET_ATON> symbol, which
  1902. indicates to the C program that the inet_aton() function is available
  1903. to parse C<IP> address C<dotted-quad> strings.
  1904.  
  1905. =item C<d_int64_t>
  1906.  
  1907. From F<d_int64_t.U>:
  1908.  
  1909. This symbol will be defined if the C compiler supports int64_t.
  1910.  
  1911. =item C<d_isascii>
  1912.  
  1913. From F<d_isascii.U>:
  1914.  
  1915. This variable conditionally defines the C<HAS_ISASCII> constant,
  1916. which indicates to the C program that isascii() is available.
  1917.  
  1918. =item C<d_isfinite>
  1919.  
  1920. From F<d_isfinite.U>:
  1921.  
  1922. This variable conditionally defines the C<HAS_ISFINITE> symbol, which
  1923. indicates to the C program that the isfinite() routine is available.
  1924.  
  1925. =item C<d_isinf>
  1926.  
  1927. From F<d_isinf.U>:
  1928.  
  1929. This variable conditionally defines the C<HAS_ISINF> symbol, which
  1930. indicates to the C program that the isinf() routine is available.
  1931.  
  1932. =item C<d_isnan>
  1933.  
  1934. From F<d_isnan.U>:
  1935.  
  1936. This variable conditionally defines the C<HAS_ISNAN> symbol, which
  1937. indicates to the C program that the isnan() routine is available.
  1938.  
  1939. =item C<d_isnanl>
  1940.  
  1941. From F<d_isnanl.U>:
  1942.  
  1943. This variable conditionally defines the C<HAS_ISNANL> symbol, which
  1944. indicates to the C program that the isnanl() routine is available.
  1945.  
  1946. =item C<d_killpg>
  1947.  
  1948. From F<d_killpg.U>:
  1949.  
  1950. This variable conditionally defines the C<HAS_KILLPG> symbol, which
  1951. indicates to the C program that the killpg() routine is available
  1952. to kill process groups.
  1953.  
  1954. =item C<d_lchown>
  1955.  
  1956. From F<d_lchown.U>:
  1957.  
  1958. This variable conditionally defines the C<HAS_LCHOWN> symbol, which
  1959. indicates to the C program that the lchown() routine is available
  1960. to operate on a symbolic link (instead of following the link).
  1961.  
  1962. =item C<d_ldbl_dig>
  1963.  
  1964. From F<d_ldbl_dig.U>:
  1965.  
  1966. This variable conditionally defines d_ldbl_dig if this system's
  1967. header files provide C<LDBL_DIG>, which is the number of significant
  1968. digits in a long double precision number.
  1969.  
  1970. =item C<d_link>
  1971.  
  1972. From F<d_link.U>:
  1973.  
  1974. This variable conditionally defines C<HAS_LINK> if link() is
  1975. available to create hard links.
  1976.  
  1977. =item C<d_localtime_r>
  1978.  
  1979. From F<d_localtime_r.U>:
  1980.  
  1981. This variable conditionally defines the C<HAS_LOCALTIME_R> symbol,
  1982. which indicates to the C program that the localtime_r()
  1983. routine is available.
  1984.  
  1985. =item C<d_locconv>
  1986.  
  1987. From F<d_locconv.U>:
  1988.  
  1989. This variable conditionally defines C<HAS_LOCALECONV> if localeconv() is
  1990. available for numeric and monetary formatting conventions.
  1991.  
  1992. =item C<d_lockf>
  1993.  
  1994. From F<d_lockf.U>:
  1995.  
  1996. This variable conditionally defines C<HAS_LOCKF> if lockf() is
  1997. available to do file locking.
  1998.  
  1999. =item C<d_longdbl>
  2000.  
  2001. From F<d_longdbl.U>:
  2002.  
  2003. This variable conditionally defines C<HAS_LONG_DOUBLE> if 
  2004. the long double type is supported.
  2005.  
  2006. =item C<d_longlong>
  2007.  
  2008. From F<d_longlong.U>:
  2009.  
  2010. This variable conditionally defines C<HAS_LONG_LONG> if 
  2011. the long long type is supported.
  2012.  
  2013. =item C<d_lseekproto>
  2014.  
  2015. From F<d_lseekproto.U>:
  2016.  
  2017. This variable conditionally defines the C<HAS_LSEEK_PROTO> symbol,
  2018. which indicates to the C program that the system provides
  2019. a prototype for the lseek() function.  Otherwise, it is
  2020. up to the program to supply one.
  2021.  
  2022. =item C<d_lstat>
  2023.  
  2024. From F<d_lstat.U>:
  2025.  
  2026. This variable conditionally defines C<HAS_LSTAT> if lstat() is
  2027. available to do file stats on symbolic links.
  2028.  
  2029. =item C<d_madvise>
  2030.  
  2031. From F<d_madvise.U>:
  2032.  
  2033. This variable conditionally defines C<HAS_MADVISE> if madvise() is
  2034. available to map a file into memory.
  2035.  
  2036. =item C<d_mblen>
  2037.  
  2038. From F<d_mblen.U>:
  2039.  
  2040. This variable conditionally defines the C<HAS_MBLEN> symbol, which
  2041. indicates to the C program that the mblen() routine is available
  2042. to find the number of bytes in a multibye character.
  2043.  
  2044. =item C<d_mbstowcs>
  2045.  
  2046. From F<d_mbstowcs.U>:
  2047.  
  2048. This variable conditionally defines the C<HAS_MBSTOWCS> symbol, which
  2049. indicates to the C program that the mbstowcs() routine is available
  2050. to convert a multibyte string into a wide character string.
  2051.  
  2052. =item C<d_mbtowc>
  2053.  
  2054. From F<d_mbtowc.U>:
  2055.  
  2056. This variable conditionally defines the C<HAS_MBTOWC> symbol, which
  2057. indicates to the C program that the mbtowc() routine is available
  2058. to convert multibyte to a wide character.
  2059.  
  2060. =item C<d_memchr>
  2061.  
  2062. From F<d_memchr.U>:
  2063.  
  2064. This variable conditionally defines the C<HAS_MEMCHR> symbol, which
  2065. indicates to the C program that the memchr() routine is available
  2066. to locate characters within a C string.
  2067.  
  2068. =item C<d_memcmp>
  2069.  
  2070. From F<d_memcmp.U>:
  2071.  
  2072. This variable conditionally defines the C<HAS_MEMCMP> symbol, which
  2073. indicates to the C program that the memcmp() routine is available
  2074. to compare blocks of memory.
  2075.  
  2076. =item C<d_memcpy>
  2077.  
  2078. From F<d_memcpy.U>:
  2079.  
  2080. This variable conditionally defines the C<HAS_MEMCPY> symbol, which
  2081. indicates to the C program that the memcpy() routine is available
  2082. to copy blocks of memory.
  2083.  
  2084. =item C<d_memmove>
  2085.  
  2086. From F<d_memmove.U>:
  2087.  
  2088. This variable conditionally defines the C<HAS_MEMMOVE> symbol, which
  2089. indicates to the C program that the memmove() routine is available
  2090. to copy potentatially overlapping blocks of memory.
  2091.  
  2092. =item C<d_memset>
  2093.  
  2094. From F<d_memset.U>:
  2095.  
  2096. This variable conditionally defines the C<HAS_MEMSET> symbol, which
  2097. indicates to the C program that the memset() routine is available
  2098. to set blocks of memory.
  2099.  
  2100. =item C<d_mkdir>
  2101.  
  2102. From F<d_mkdir.U>:
  2103.  
  2104. This variable conditionally defines the C<HAS_MKDIR> symbol, which
  2105. indicates to the C program that the mkdir() routine is available
  2106. to create F<directories.>.
  2107.  
  2108. =item C<d_mkdtemp>
  2109.  
  2110. From F<d_mkdtemp.U>:
  2111.  
  2112. This variable conditionally defines the C<HAS_MKDTEMP> symbol, which
  2113. indicates to the C program that the mkdtemp() routine is available
  2114. to exclusively create a uniquely named temporary directory.
  2115.  
  2116. =item C<d_mkfifo>
  2117.  
  2118. From F<d_mkfifo.U>:
  2119.  
  2120. This variable conditionally defines the C<HAS_MKFIFO> symbol, which
  2121. indicates to the C program that the mkfifo() routine is available.
  2122.  
  2123. =item C<d_mkstemp>
  2124.  
  2125. From F<d_mkstemp.U>:
  2126.  
  2127. This variable conditionally defines the C<HAS_MKSTEMP> symbol, which
  2128. indicates to the C program that the mkstemp() routine is available
  2129. to exclusively create and open a uniquely named temporary file.
  2130.  
  2131. =item C<d_mkstemps>
  2132.  
  2133. From F<d_mkstemps.U>:
  2134.  
  2135. This variable conditionally defines the C<HAS_MKSTEMPS> symbol, which
  2136. indicates to the C program that the mkstemps() routine is available
  2137. to exclusively create and open a uniquely named (with a suffix)
  2138. temporary file.
  2139.  
  2140. =item C<d_mktime>
  2141.  
  2142. From F<d_mktime.U>:
  2143.  
  2144. This variable conditionally defines the C<HAS_MKTIME> symbol, which
  2145. indicates to the C program that the mktime() routine is available.
  2146.  
  2147. =item C<d_mmap>
  2148.  
  2149. From F<d_mmap.U>:
  2150.  
  2151. This variable conditionally defines C<HAS_MMAP> if mmap() is
  2152. available to map a file into memory.
  2153.  
  2154. =item C<d_modfl>
  2155.  
  2156. From F<d_modfl.U>:
  2157.  
  2158. This variable conditionally defines the C<HAS_MODFL> symbol, which
  2159. indicates to the C program that the modfl() routine is available.
  2160.  
  2161. =item C<d_modfl_pow32_bug>
  2162.  
  2163. From F<d_modfl.U>:
  2164.  
  2165. This variable conditionally defines the HAS_MODFL_POW32_BUG symbol,
  2166. which indicates that modfl() is broken for long doubles >= pow(2, 32).
  2167. For example from 4294967303.150000 one would get 4294967302.000000
  2168. and 1.150000.  The bug has been seen in certain versions of glibc,
  2169. release 2.2.2 is known to be okay.
  2170.  
  2171. =item C<d_modflproto>
  2172.  
  2173. From F<d_modfl.U>:
  2174.  
  2175. This symbol, if defined, indicates that the system provides
  2176. a prototype for the modfl() function.  Otherwise, it is up
  2177. to the program to supply one.  C99 says it should be
  2178. long double modfl(long double, long double *);
  2179.  
  2180. =item C<d_mprotect>
  2181.  
  2182. From F<d_mprotect.U>:
  2183.  
  2184. This variable conditionally defines C<HAS_MPROTECT> if mprotect() is
  2185. available to modify the access protection of a memory mapped file.
  2186.  
  2187. =item C<d_msg>
  2188.  
  2189. From F<d_msg.U>:
  2190.  
  2191. This variable conditionally defines the C<HAS_MSG> symbol, which
  2192. indicates that the entire msg*(2) library is present.
  2193.  
  2194. =item C<d_msg_ctrunc>
  2195.  
  2196. From F<d_socket.U>:
  2197.  
  2198. This variable conditionally defines the C<HAS_MSG_CTRUNC> symbol,
  2199. which indicates that the C<MSG_CTRUNC> is available.  #ifdef is
  2200. not enough because it may be an enum, glibc has been known to do this.
  2201.  
  2202. =item C<d_msg_dontroute>
  2203.  
  2204. From F<d_socket.U>:
  2205.  
  2206. This variable conditionally defines the C<HAS_MSG_DONTROUTE> symbol,
  2207. which indicates that the C<MSG_DONTROUTE> is available.  #ifdef is
  2208. not enough because it may be an enum, glibc has been known to do this.
  2209.  
  2210. =item C<d_msg_oob>
  2211.  
  2212. From F<d_socket.U>:
  2213.  
  2214. This variable conditionally defines the C<HAS_MSG_OOB> symbol,
  2215. which indicates that the C<MSG_OOB> is available.  #ifdef is
  2216. not enough because it may be an enum, glibc has been known to do this.
  2217.  
  2218. =item C<d_msg_peek>
  2219.  
  2220. From F<d_socket.U>:
  2221.  
  2222. This variable conditionally defines the C<HAS_MSG_PEEK> symbol,
  2223. which indicates that the C<MSG_PEEK> is available.  #ifdef is
  2224. not enough because it may be an enum, glibc has been known to do this.
  2225.  
  2226. =item C<d_msg_proxy>
  2227.  
  2228. From F<d_socket.U>:
  2229.  
  2230. This variable conditionally defines the C<HAS_MSG_PROXY> symbol,
  2231. which indicates that the C<MSG_PROXY> is available.  #ifdef is
  2232. not enough because it may be an enum, glibc has been known to do this.
  2233.  
  2234. =item C<d_msgctl>
  2235.  
  2236. From F<d_msgctl.U>:
  2237.  
  2238. This variable conditionally defines the C<HAS_MSGCTL> symbol, which
  2239. indicates to the C program that the msgctl() routine is available.
  2240.  
  2241. =item C<d_msgget>
  2242.  
  2243. From F<d_msgget.U>:
  2244.  
  2245. This variable conditionally defines the C<HAS_MSGGET> symbol, which
  2246. indicates to the C program that the msgget() routine is available.
  2247.  
  2248. =item C<d_msghdr_s>
  2249.  
  2250. From F<d_msghdr_s.U>:
  2251.  
  2252. This variable conditionally defines the C<HAS_STRUCT_MSGHDR> symbol,
  2253. which indicates that the struct msghdr is supported.
  2254.  
  2255. =item C<d_msgrcv>
  2256.  
  2257. From F<d_msgrcv.U>:
  2258.  
  2259. This variable conditionally defines the C<HAS_MSGRCV> symbol, which
  2260. indicates to the C program that the msgrcv() routine is available.
  2261.  
  2262. =item C<d_msgsnd>
  2263.  
  2264. From F<d_msgsnd.U>:
  2265.  
  2266. This variable conditionally defines the C<HAS_MSGSND> symbol, which
  2267. indicates to the C program that the msgsnd() routine is available.
  2268.  
  2269. =item C<d_msync>
  2270.  
  2271. From F<d_msync.U>:
  2272.  
  2273. This variable conditionally defines C<HAS_MSYNC> if msync() is
  2274. available to synchronize a mapped file.
  2275.  
  2276. =item C<d_munmap>
  2277.  
  2278. From F<d_munmap.U>:
  2279.  
  2280. This variable conditionally defines C<HAS_MUNMAP> if munmap() is
  2281. available to unmap a region mapped by mmap().
  2282.  
  2283. =item C<d_mymalloc>
  2284.  
  2285. From F<mallocsrc.U>:
  2286.  
  2287. This variable conditionally defines C<MYMALLOC> in case other parts
  2288. of the source want to take special action if C<MYMALLOC> is used.
  2289. This may include different sorts of profiling or error detection.
  2290.  
  2291. =item C<d_nanosleep>
  2292.  
  2293. From F<d_nanosleep.U>:
  2294.  
  2295. This variable conditionally defines C<HAS_NANOSLEEP>
  2296. if nanosleep() is available to sleep with 1E-9 sec accuracy.
  2297.  
  2298. =item C<d_nice>
  2299.  
  2300. From F<d_nice.U>:
  2301.  
  2302. This variable conditionally defines the C<HAS_NICE> symbol, which
  2303. indicates to the C program that the nice() routine is available.
  2304.  
  2305. =item C<d_nl_langinfo>
  2306.  
  2307. From F<d_nl_langinfo.U>:
  2308.  
  2309. This variable conditionally defines the C<HAS_NL_LANGINFO> symbol, which
  2310. indicates to the C program that the nl_langinfo() routine is available.
  2311.  
  2312. =item C<d_nv_preserves_uv>
  2313.  
  2314. From F<perlxv.U>:
  2315.  
  2316. This variable indicates whether a variable of type nvtype
  2317. can preserve all the bits a variable of type uvtype.
  2318.  
  2319. =item C<d_off64_t>
  2320.  
  2321. From F<d_off64_t.U>:
  2322.  
  2323. This symbol will be defined if the C compiler supports off64_t.
  2324.  
  2325. =item C<d_old_pthread_create_joinable>
  2326.  
  2327. From F<d_pthrattrj.U>:
  2328.  
  2329. This variable conditionally defines pthread_create_joinable.
  2330. undef if F<pthread.h> defines C<PTHREAD_CREATE_JOINABLE>.
  2331.  
  2332. =item C<d_oldpthreads>
  2333.  
  2334. From F<usethreads.U>:
  2335.  
  2336. This variable conditionally defines the C<OLD_PTHREADS_API> symbol,
  2337. and indicates that Perl should be built to use the old
  2338. draft C<POSIX> threads C<API>.  This is only potentially meaningful if
  2339. usethreads is set.
  2340.  
  2341. =item C<d_oldsock>
  2342.  
  2343. From F<d_socket.U>:
  2344.  
  2345. This variable conditionally defines the C<OLDSOCKET> symbol, which
  2346. indicates that the C<BSD> socket interface is based on 4.1c and not 4.2.
  2347.  
  2348. =item C<d_open3>
  2349.  
  2350. From F<d_open3.U>:
  2351.  
  2352. This variable conditionally defines the HAS_OPEN3 manifest constant,
  2353. which indicates to the C program that the 3 argument version of
  2354. the open(2) function is available.
  2355.  
  2356. =item C<d_pathconf>
  2357.  
  2358. From F<d_pathconf.U>:
  2359.  
  2360. This variable conditionally defines the C<HAS_PATHCONF> symbol, which
  2361. indicates to the C program that the pathconf() routine is available
  2362. to determine file-system related limits and options associated
  2363. with a given filename.
  2364.  
  2365. =item C<d_pause>
  2366.  
  2367. From F<d_pause.U>:
  2368.  
  2369. This variable conditionally defines the C<HAS_PAUSE> symbol, which
  2370. indicates to the C program that the pause() routine is available
  2371. to suspend a process until a signal is received.
  2372.  
  2373. =item C<d_perl_otherlibdirs>
  2374.  
  2375. From F<otherlibdirs.U>:
  2376.  
  2377. This variable conditionally defines C<PERL_OTHERLIBDIRS>, which
  2378. contains a colon-separated set of paths for the perl binary to
  2379. include in @C<INC>.  See also otherlibdirs.
  2380.  
  2381. =item C<d_phostname>
  2382.  
  2383. From F<d_gethname.U>:
  2384.  
  2385. This variable conditionally defines the C<HAS_PHOSTNAME> symbol, which
  2386. contains the shell command which, when fed to popen(), may be
  2387. used to derive the host name.
  2388.  
  2389. =item C<d_pipe>
  2390.  
  2391. From F<d_pipe.U>:
  2392.  
  2393. This variable conditionally defines the C<HAS_PIPE> symbol, which
  2394. indicates to the C program that the pipe() routine is available
  2395. to create an inter-process channel.
  2396.  
  2397. =item C<d_poll>
  2398.  
  2399. From F<d_poll.U>:
  2400.  
  2401. This variable conditionally defines the C<HAS_POLL> symbol, which
  2402. indicates to the C program that the poll() routine is available
  2403. to poll active file descriptors.
  2404.  
  2405. =item C<d_portable>
  2406.  
  2407. From F<d_portable.U>:
  2408.  
  2409. This variable conditionally defines the C<PORTABLE> symbol, which
  2410. indicates to the C program that it should not assume that it is
  2411. running on the machine it was compiled on.
  2412.  
  2413. =item C<d_PRId64>
  2414.  
  2415. From F<quadfio.U>:
  2416.  
  2417. This variable conditionally defines the PERL_PRId64 symbol, which
  2418. indiciates that stdio has a symbol to print 64-bit decimal numbers.
  2419.  
  2420. =item C<d_PRIeldbl>
  2421.  
  2422. From F<longdblfio.U>:
  2423.  
  2424. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2425. indiciates that stdio has a symbol to print long doubles.
  2426.  
  2427. =item C<d_PRIEUldbl>
  2428.  
  2429. From F<longdblfio.U>:
  2430.  
  2431. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2432. indiciates that stdio has a symbol to print long doubles.
  2433. The C<U> in the name is to separate this from d_PRIeldbl so that even
  2434. case-blind systems can see the difference.
  2435.  
  2436. =item C<d_PRIfldbl>
  2437.  
  2438. From F<longdblfio.U>:
  2439.  
  2440. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2441. indiciates that stdio has a symbol to print long doubles.
  2442.  
  2443. =item C<d_PRIFUldbl>
  2444.  
  2445. From F<longdblfio.U>:
  2446.  
  2447. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2448. indiciates that stdio has a symbol to print long doubles.
  2449. The C<U> in the name is to separate this from d_PRIfldbl so that even
  2450. case-blind systems can see the difference.
  2451.  
  2452. =item C<d_PRIgldbl>
  2453.  
  2454. From F<longdblfio.U>:
  2455.  
  2456. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2457. indiciates that stdio has a symbol to print long doubles.
  2458.  
  2459. =item C<d_PRIGUldbl>
  2460.  
  2461. From F<longdblfio.U>:
  2462.  
  2463. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2464. indiciates that stdio has a symbol to print long doubles.
  2465. The C<U> in the name is to separate this from d_PRIgldbl so that even
  2466. case-blind systems can see the difference.
  2467.  
  2468. =item C<d_PRIi64>
  2469.  
  2470. From F<quadfio.U>:
  2471.  
  2472. This variable conditionally defines the PERL_PRIi64 symbol, which
  2473. indiciates that stdio has a symbol to print 64-bit decimal numbers.
  2474.  
  2475. =item C<d_PRIo64>
  2476.  
  2477. From F<quadfio.U>:
  2478.  
  2479. This variable conditionally defines the PERL_PRIo64 symbol, which
  2480. indiciates that stdio has a symbol to print 64-bit octal numbers.
  2481.  
  2482. =item C<d_PRIu64>
  2483.  
  2484. From F<quadfio.U>:
  2485.  
  2486. This variable conditionally defines the PERL_PRIu64 symbol, which
  2487. indiciates that stdio has a symbol to print 64-bit unsigned decimal
  2488. numbers.
  2489.  
  2490. =item C<d_PRIx64>
  2491.  
  2492. From F<quadfio.U>:
  2493.  
  2494. This variable conditionally defines the PERL_PRIx64 symbol, which
  2495. indiciates that stdio has a symbol to print 64-bit hexadecimal numbers.
  2496.  
  2497. =item C<d_PRIXU64>
  2498.  
  2499. From F<quadfio.U>:
  2500.  
  2501. This variable conditionally defines the PERL_PRIXU64 symbol, which
  2502. indiciates that stdio has a symbol to print 64-bit hExADECimAl numbers.
  2503. The C<U> in the name is to separate this from d_PRIx64 so that even
  2504. case-blind systems can see the difference.
  2505.  
  2506. =item C<d_procselfexe>
  2507.  
  2508. From F<d_procselfexe.U>:
  2509.  
  2510. Defined if $procselfexe is symlink to the absolute
  2511. pathname of the executing program.
  2512.  
  2513. =item C<d_pthread_atfork>
  2514.  
  2515. From F<d_pthread_atfork.U>:
  2516.  
  2517. This variable conditionally defines the C<HAS_PTHREAD_ATFORK> symbol,
  2518. which indicates to the C program that the pthread_atfork()
  2519. routine is available.
  2520.  
  2521. =item C<d_pthread_attr_setscope>
  2522.  
  2523. From F<d_pthread_attr_ss.U>:
  2524.  
  2525. This variable conditionally defines C<HAS_PTHREAD_ATTR_SETSCOPE> if
  2526. pthread_attr_setscope() is available to set the contention scope
  2527. attribute of a thread attribute object.
  2528.  
  2529. =item C<d_pthread_yield>
  2530.  
  2531. From F<d_pthread_y.U>:
  2532.  
  2533. This variable conditionally defines the C<HAS_PTHREAD_YIELD>
  2534. symbol if the pthread_yield routine is available to yield
  2535. the execution of the current thread.
  2536.  
  2537. =item C<d_pwage>
  2538.  
  2539. From F<i_pwd.U>:
  2540.  
  2541. This variable conditionally defines C<PWAGE>, which indicates
  2542. that struct passwd contains pw_age.
  2543.  
  2544. =item C<d_pwchange>
  2545.  
  2546. From F<i_pwd.U>:
  2547.  
  2548. This variable conditionally defines C<PWCHANGE>, which indicates
  2549. that struct passwd contains pw_change.
  2550.  
  2551. =item C<d_pwclass>
  2552.  
  2553. From F<i_pwd.U>:
  2554.  
  2555. This variable conditionally defines C<PWCLASS>, which indicates
  2556. that struct passwd contains pw_class.
  2557.  
  2558. =item C<d_pwcomment>
  2559.  
  2560. From F<i_pwd.U>:
  2561.  
  2562. This variable conditionally defines C<PWCOMMENT>, which indicates
  2563. that struct passwd contains pw_comment.
  2564.  
  2565. =item C<d_pwexpire>
  2566.  
  2567. From F<i_pwd.U>:
  2568.  
  2569. This variable conditionally defines C<PWEXPIRE>, which indicates
  2570. that struct passwd contains pw_expire.
  2571.  
  2572. =item C<d_pwgecos>
  2573.  
  2574. From F<i_pwd.U>:
  2575.  
  2576. This variable conditionally defines C<PWGECOS>, which indicates
  2577. that struct passwd contains pw_gecos.
  2578.  
  2579. =item C<d_pwpasswd>
  2580.  
  2581. From F<i_pwd.U>:
  2582.  
  2583. This variable conditionally defines C<PWPASSWD>, which indicates
  2584. that struct passwd contains pw_passwd.
  2585.  
  2586. =item C<d_pwquota>
  2587.  
  2588. From F<i_pwd.U>:
  2589.  
  2590. This variable conditionally defines C<PWQUOTA>, which indicates
  2591. that struct passwd contains pw_quota.
  2592.  
  2593. =item C<d_qgcvt>
  2594.  
  2595. From F<d_qgcvt.U>:
  2596.  
  2597. This variable conditionally defines the C<HAS_QGCVT> symbol, which
  2598. indicates to the C program that the qgcvt() routine is available.
  2599.  
  2600. =item C<d_quad>
  2601.  
  2602. From F<quadtype.U>:
  2603.  
  2604. This variable, if defined, tells that there's a 64-bit integer type,
  2605. quadtype.
  2606.  
  2607. =item C<d_random_r>
  2608.  
  2609. From F<d_random_r.U>:
  2610.  
  2611. This variable conditionally defines the C<HAS_RANDOM_R> symbol,
  2612. which indicates to the C program that the random_r()
  2613. routine is available.
  2614.  
  2615. =item C<d_readdir64_r>
  2616.  
  2617. From F<d_readdir64_r.U>:
  2618.  
  2619. This variable conditionally defines the HAS_READDIR64_R symbol,
  2620. which indicates to the C program that the readdir64_r()
  2621. routine is available.
  2622.  
  2623. =item C<d_readdir>
  2624.  
  2625. From F<d_readdir.U>:
  2626.  
  2627. This variable conditionally defines C<HAS_READDIR> if readdir() is
  2628. available to read directory entries.
  2629.  
  2630. =item C<d_readdir_r>
  2631.  
  2632. From F<d_readdir_r.U>:
  2633.  
  2634. This variable conditionally defines the C<HAS_READDIR_R> symbol,
  2635. which indicates to the C program that the readdir_r()
  2636. routine is available.
  2637.  
  2638. =item C<d_readlink>
  2639.  
  2640. From F<d_readlink.U>:
  2641.  
  2642. This variable conditionally defines the C<HAS_READLINK> symbol, which
  2643. indicates to the C program that the readlink() routine is available
  2644. to read the value of a symbolic link.
  2645.  
  2646. =item C<d_readv>
  2647.  
  2648. From F<d_readv.U>:
  2649.  
  2650. This variable conditionally defines the C<HAS_READV> symbol, which
  2651. indicates to the C program that the readv() routine is available.
  2652.  
  2653. =item C<d_recvmsg>
  2654.  
  2655. From F<d_recvmsg.U>:
  2656.  
  2657. This variable conditionally defines the C<HAS_RECVMSG> symbol, which
  2658. indicates to the C program that the recvmsg() routine is available.
  2659.  
  2660. =item C<d_rename>
  2661.  
  2662. From F<d_rename.U>:
  2663.  
  2664. This variable conditionally defines the C<HAS_RENAME> symbol, which
  2665. indicates to the C program that the rename() routine is available
  2666. to rename files.
  2667.  
  2668. =item C<d_rewinddir>
  2669.  
  2670. From F<d_readdir.U>:
  2671.  
  2672. This variable conditionally defines C<HAS_REWINDDIR> if rewinddir() is
  2673. available.
  2674.  
  2675. =item C<d_rmdir>
  2676.  
  2677. From F<d_rmdir.U>:
  2678.  
  2679. This variable conditionally defines C<HAS_RMDIR> if rmdir() is
  2680. available to remove directories.
  2681.  
  2682. =item C<d_safebcpy>
  2683.  
  2684. From F<d_safebcpy.U>:
  2685.  
  2686. This variable conditionally defines the C<HAS_SAFE_BCOPY> symbol if
  2687. the bcopy() routine can do overlapping copies.  Normally, you
  2688. should probably use memmove().
  2689.  
  2690. =item C<d_safemcpy>
  2691.  
  2692. From F<d_safemcpy.U>:
  2693.  
  2694. This variable conditionally defines the C<HAS_SAFE_MEMCPY> symbol if
  2695. the memcpy() routine can do overlapping copies.
  2696. For overlapping copies, memmove() should be used, if available.
  2697.  
  2698. =item C<d_sanemcmp>
  2699.  
  2700. From F<d_sanemcmp.U>:
  2701.  
  2702. This variable conditionally defines the C<HAS_SANE_MEMCMP> symbol if
  2703. the memcpy() routine is available and can be used to compare relative
  2704. magnitudes of chars with their high bits set.
  2705.  
  2706. =item C<d_sbrkproto>
  2707.  
  2708. From F<d_sbrkproto.U>:
  2709.  
  2710. This variable conditionally defines the C<HAS_SBRK_PROTO> symbol,
  2711. which indicates to the C program that the system provides
  2712. a prototype for the sbrk() function.  Otherwise, it is
  2713. up to the program to supply one.
  2714.  
  2715. =item C<d_scalbnl>
  2716.  
  2717. From F<d_scalbnl.U>:
  2718.  
  2719. This variable conditionally defines the C<HAS_SCALBNL> symbol, which
  2720. indicates to the C program that the scalbnl() routine is available.
  2721. If ilogbl is also present we can emulate frexpl.
  2722.  
  2723. =item C<d_sched_yield>
  2724.  
  2725. From F<d_pthread_y.U>:
  2726.  
  2727. This variable conditionally defines the C<HAS_SCHED_YIELD>
  2728. symbol if the sched_yield routine is available to yield
  2729. the execution of the current thread.
  2730.  
  2731. =item C<d_scm_rights>
  2732.  
  2733. From F<d_socket.U>:
  2734.  
  2735. This variable conditionally defines the C<HAS_SCM_RIGHTS> symbol,
  2736. which indicates that the C<SCM_RIGHTS> is available.  #ifdef is
  2737. not enough because it may be an enum, glibc has been known to do this.
  2738.  
  2739. =item C<d_SCNfldbl>
  2740.  
  2741. From F<longdblfio.U>:
  2742.  
  2743. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2744. indiciates that stdio has a symbol to scan long doubles.
  2745.  
  2746. =item C<d_seekdir>
  2747.  
  2748. From F<d_readdir.U>:
  2749.  
  2750. This variable conditionally defines C<HAS_SEEKDIR> if seekdir() is
  2751. available.
  2752.  
  2753. =item C<d_select>
  2754.  
  2755. From F<d_select.U>:
  2756.  
  2757. This variable conditionally defines C<HAS_SELECT> if select() is
  2758. available to select active file descriptors. A <sys/time.h>
  2759. inclusion may be necessary for the timeout field.
  2760.  
  2761. =item C<d_sem>
  2762.  
  2763. From F<d_sem.U>:
  2764.  
  2765. This variable conditionally defines the C<HAS_SEM> symbol, which
  2766. indicates that the entire sem*(2) library is present.
  2767.  
  2768. =item C<d_semctl>
  2769.  
  2770. From F<d_semctl.U>:
  2771.  
  2772. This variable conditionally defines the C<HAS_SEMCTL> symbol, which
  2773. indicates to the C program that the semctl() routine is available.
  2774.  
  2775. =item C<d_semctl_semid_ds>
  2776.  
  2777. From F<d_union_semun.U>:
  2778.  
  2779. This variable conditionally defines C<USE_SEMCTL_SEMID_DS>, which
  2780. indicates that struct semid_ds * is to be used for semctl C<IPC_STAT>.
  2781.  
  2782. =item C<d_semctl_semun>
  2783.  
  2784. From F<d_union_semun.U>:
  2785.  
  2786. This variable conditionally defines C<USE_SEMCTL_SEMUN>, which
  2787. indicates that union semun is to be used for semctl C<IPC_STAT>.
  2788.  
  2789. =item C<d_semget>
  2790.  
  2791. From F<d_semget.U>:
  2792.  
  2793. This variable conditionally defines the C<HAS_SEMGET> symbol, which
  2794. indicates to the C program that the semget() routine is available.
  2795.  
  2796. =item C<d_semop>
  2797.  
  2798. From F<d_semop.U>:
  2799.  
  2800. This variable conditionally defines the C<HAS_SEMOP> symbol, which
  2801. indicates to the C program that the semop() routine is available.
  2802.  
  2803. =item C<d_sendmsg>
  2804.  
  2805. From F<d_sendmsg.U>:
  2806.  
  2807. This variable conditionally defines the C<HAS_SENDMSG> symbol, which
  2808. indicates to the C program that the sendmsg() routine is available.
  2809.  
  2810. =item C<d_setegid>
  2811.  
  2812. From F<d_setegid.U>:
  2813.  
  2814. This variable conditionally defines the C<HAS_SETEGID> symbol, which
  2815. indicates to the C program that the setegid() routine is available
  2816. to change the effective gid of the current program.
  2817.  
  2818. =item C<d_seteuid>
  2819.  
  2820. From F<d_seteuid.U>:
  2821.  
  2822. This variable conditionally defines the C<HAS_SETEUID> symbol, which
  2823. indicates to the C program that the seteuid() routine is available
  2824. to change the effective uid of the current program.
  2825.  
  2826. =item C<d_setgrent>
  2827.  
  2828. From F<d_setgrent.U>:
  2829.  
  2830. This variable conditionally defines the C<HAS_SETGRENT> symbol, which
  2831. indicates to the C program that the setgrent() routine is available
  2832. for initializing sequential access to the group database.
  2833.  
  2834. =item C<d_setgrent_r>
  2835.  
  2836. From F<d_setgrent_r.U>:
  2837.  
  2838. This variable conditionally defines the C<HAS_SETGRENT_R> symbol,
  2839. which indicates to the C program that the setgrent_r()
  2840. routine is available.
  2841.  
  2842. =item C<d_setgrps>
  2843.  
  2844. From F<d_setgrps.U>:
  2845.  
  2846. This variable conditionally defines the C<HAS_SETGROUPS> symbol, which
  2847. indicates to the C program that the setgroups() routine is available
  2848. to set the list of process groups.
  2849.  
  2850. =item C<d_sethent>
  2851.  
  2852. From F<d_sethent.U>:
  2853.  
  2854. This variable conditionally defines C<HAS_SETHOSTENT> if sethostent() is
  2855. available.
  2856.  
  2857. =item C<d_sethostent_r>
  2858.  
  2859. From F<d_sethostent_r.U>:
  2860.  
  2861. This variable conditionally defines the C<HAS_SETHOSTENT_R> symbol,
  2862. which indicates to the C program that the sethostent_r()
  2863. routine is available.
  2864.  
  2865. =item C<d_setitimer>
  2866.  
  2867. From F<d_setitimer.U>:
  2868.  
  2869. This variable conditionally defines the C<HAS_SETITIMER> symbol, which
  2870. indicates to the C program that the setitimer() routine is available.
  2871.  
  2872. =item C<d_setlinebuf>
  2873.  
  2874. From F<d_setlnbuf.U>:
  2875.  
  2876. This variable conditionally defines the C<HAS_SETLINEBUF> symbol, which
  2877. indicates to the C program that the setlinebuf() routine is available
  2878. to change stderr or stdout from block-buffered or unbuffered to a
  2879. line-buffered mode.
  2880.  
  2881. =item C<d_setlocale>
  2882.  
  2883. From F<d_setlocale.U>:
  2884.  
  2885. This variable conditionally defines C<HAS_SETLOCALE> if setlocale() is
  2886. available to handle locale-specific ctype implementations.
  2887.  
  2888. =item C<d_setlocale_r>
  2889.  
  2890. From F<d_setlocale_r.U>:
  2891.  
  2892. This variable conditionally defines the C<HAS_SETLOCALE_R> symbol,
  2893. which indicates to the C program that the setlocale_r()
  2894. routine is available.
  2895.  
  2896. =item C<d_setnent>
  2897.  
  2898. From F<d_setnent.U>:
  2899.  
  2900. This variable conditionally defines C<HAS_SETNETENT> if setnetent() is
  2901. available.
  2902.  
  2903. =item C<d_setnetent_r>
  2904.  
  2905. From F<d_setnetent_r.U>:
  2906.  
  2907. This variable conditionally defines the C<HAS_SETNETENT_R> symbol,
  2908. which indicates to the C program that the setnetent_r()
  2909. routine is available.
  2910.  
  2911. =item C<d_setpent>
  2912.  
  2913. From F<d_setpent.U>:
  2914.  
  2915. This variable conditionally defines C<HAS_SETPROTOENT> if setprotoent() is
  2916. available.
  2917.  
  2918. =item C<d_setpgid>
  2919.  
  2920. From F<d_setpgid.U>:
  2921.  
  2922. This variable conditionally defines the C<HAS_SETPGID> symbol if the
  2923. setpgid(pid, gpid) function is available to set process group C<ID>.
  2924.  
  2925. =item C<d_setpgrp2>
  2926.  
  2927. From F<d_setpgrp2.U>:
  2928.  
  2929. This variable conditionally defines the HAS_SETPGRP2 symbol, which
  2930. indicates to the C program that the setpgrp2() (as in F<DG/C<UX>>) routine
  2931. is available to set the current process group.
  2932.  
  2933. =item C<d_setpgrp>
  2934.  
  2935. From F<d_setpgrp.U>:
  2936.  
  2937. This variable conditionally defines C<HAS_SETPGRP> if setpgrp() is
  2938. available to set the current process group.
  2939.  
  2940. =item C<d_setprior>
  2941.  
  2942. From F<d_setprior.U>:
  2943.  
  2944. This variable conditionally defines C<HAS_SETPRIORITY> if setpriority()
  2945. is available to set a process's priority.
  2946.  
  2947. =item C<d_setproctitle>
  2948.  
  2949. From F<d_setproctitle.U>:
  2950.  
  2951. This variable conditionally defines the C<HAS_SETPROCTITLE> symbol,
  2952. which indicates to the C program that the setproctitle() routine
  2953. is available.
  2954.  
  2955. =item C<d_setprotoent_r>
  2956.  
  2957. From F<d_setprotoent_r.U>:
  2958.  
  2959. This variable conditionally defines the C<HAS_SETPROTOENT_R> symbol,
  2960. which indicates to the C program that the setprotoent_r()
  2961. routine is available.
  2962.  
  2963. =item C<d_setpwent>
  2964.  
  2965. From F<d_setpwent.U>:
  2966.  
  2967. This variable conditionally defines the C<HAS_SETPWENT> symbol, which
  2968. indicates to the C program that the setpwent() routine is available
  2969. for initializing sequential access to the passwd database.
  2970.  
  2971. =item C<d_setpwent_r>
  2972.  
  2973. From F<d_setpwent_r.U>:
  2974.  
  2975. This variable conditionally defines the C<HAS_SETPWENT_R> symbol,
  2976. which indicates to the C program that the setpwent_r()
  2977. routine is available.
  2978.  
  2979. =item C<d_setregid>
  2980.  
  2981. From F<d_setregid.U>:
  2982.  
  2983. This variable conditionally defines C<HAS_SETREGID> if setregid() is
  2984. available to change the real and effective gid of the current
  2985. process.
  2986.  
  2987. =item C<d_setresgid>
  2988.  
  2989. From F<d_setregid.U>:
  2990.  
  2991. This variable conditionally defines C<HAS_SETRESGID> if setresgid() is
  2992. available to change the real, effective and saved gid of the current
  2993. process.
  2994.  
  2995. =item C<d_setresuid>
  2996.  
  2997. From F<d_setreuid.U>:
  2998.  
  2999. This variable conditionally defines C<HAS_SETREUID> if setresuid() is
  3000. available to change the real, effective and saved uid of the current
  3001. process.
  3002.  
  3003. =item C<d_setreuid>
  3004.  
  3005. From F<d_setreuid.U>:
  3006.  
  3007. This variable conditionally defines C<HAS_SETREUID> if setreuid() is
  3008. available to change the real and effective uid of the current
  3009. process.
  3010.  
  3011. =item C<d_setrgid>
  3012.  
  3013. From F<d_setrgid.U>:
  3014.  
  3015. This variable conditionally defines the C<HAS_SETRGID> symbol, which
  3016. indicates to the C program that the setrgid() routine is available
  3017. to change the real gid of the current program.
  3018.  
  3019. =item C<d_setruid>
  3020.  
  3021. From F<d_setruid.U>:
  3022.  
  3023. This variable conditionally defines the C<HAS_SETRUID> symbol, which
  3024. indicates to the C program that the setruid() routine is available
  3025. to change the real uid of the current program.
  3026.  
  3027. =item C<d_setsent>
  3028.  
  3029. From F<d_setsent.U>:
  3030.  
  3031. This variable conditionally defines C<HAS_SETSERVENT> if setservent() is
  3032. available.
  3033.  
  3034. =item C<d_setservent_r>
  3035.  
  3036. From F<d_setservent_r.U>:
  3037.  
  3038. This variable conditionally defines the C<HAS_SETSERVENT_R> symbol,
  3039. which indicates to the C program that the setservent_r()
  3040. routine is available.
  3041.  
  3042. =item C<d_setsid>
  3043.  
  3044. From F<d_setsid.U>:
  3045.  
  3046. This variable conditionally defines C<HAS_SETSID> if setsid() is
  3047. available to set the process group C<ID>.
  3048.  
  3049. =item C<d_setvbuf>
  3050.  
  3051. From F<d_setvbuf.U>:
  3052.  
  3053. This variable conditionally defines the C<HAS_SETVBUF> symbol, which
  3054. indicates to the C program that the setvbuf() routine is available
  3055. to change buffering on an open stdio stream.
  3056.  
  3057. =item C<d_sfio>
  3058.  
  3059. From F<d_sfio.U>:
  3060.  
  3061. This variable conditionally defines the C<USE_SFIO> symbol,
  3062. and indicates whether sfio is available (and should be used).
  3063.  
  3064. =item C<d_shm>
  3065.  
  3066. From F<d_shm.U>:
  3067.  
  3068. This variable conditionally defines the C<HAS_SHM> symbol, which
  3069. indicates that the entire shm*(2) library is present.
  3070.  
  3071. =item C<d_shmat>
  3072.  
  3073. From F<d_shmat.U>:
  3074.  
  3075. This variable conditionally defines the C<HAS_SHMAT> symbol, which
  3076. indicates to the C program that the shmat() routine is available.
  3077.  
  3078. =item C<d_shmatprototype>
  3079.  
  3080. From F<d_shmat.U>:
  3081.  
  3082. This variable conditionally defines the C<HAS_SHMAT_PROTOTYPE> 
  3083. symbol, which indicates that F<sys/shm.h> has a prototype for
  3084. shmat.
  3085.  
  3086. =item C<d_shmctl>
  3087.  
  3088. From F<d_shmctl.U>:
  3089.  
  3090. This variable conditionally defines the C<HAS_SHMCTL> symbol, which
  3091. indicates to the C program that the shmctl() routine is available.
  3092.  
  3093. =item C<d_shmdt>
  3094.  
  3095. From F<d_shmdt.U>:
  3096.  
  3097. This variable conditionally defines the C<HAS_SHMDT> symbol, which
  3098. indicates to the C program that the shmdt() routine is available.
  3099.  
  3100. =item C<d_shmget>
  3101.  
  3102. From F<d_shmget.U>:
  3103.  
  3104. This variable conditionally defines the C<HAS_SHMGET> symbol, which
  3105. indicates to the C program that the shmget() routine is available.
  3106.  
  3107. =item C<d_sigaction>
  3108.  
  3109. From F<d_sigaction.U>:
  3110.  
  3111. This variable conditionally defines the C<HAS_SIGACTION> symbol, which
  3112. indicates that the Vr4 sigaction() routine is available.
  3113.  
  3114. =item C<d_sigprocmask>
  3115.  
  3116. From F<d_sigprocmask.U>:
  3117.  
  3118. This variable conditionally defines C<HAS_SIGPROCMASK>
  3119. if sigprocmask() is available to examine or change the signal mask
  3120. of the calling process.
  3121.  
  3122. =item C<d_sigsetjmp>
  3123.  
  3124. From F<d_sigsetjmp.U>:
  3125.  
  3126. This variable conditionally defines the C<HAS_SIGSETJMP> symbol,
  3127. which indicates that the sigsetjmp() routine is available to
  3128. call setjmp() and optionally save the process's signal mask.
  3129.  
  3130. =item C<d_sockatmark>
  3131.  
  3132. From F<d_sockatmark.U>:
  3133.  
  3134. This variable conditionally defines the C<HAS_SOCKATMARK> symbol, which
  3135. indicates to the C program that the sockatmark() routine is available.
  3136.  
  3137. =item C<d_sockatmarkproto>
  3138.  
  3139. From F<d_sockatmarkproto.U>:
  3140.  
  3141. This variable conditionally defines the C<HAS_SOCKATMARK_PROTO> symbol,
  3142. which indicates to the C program that the system provides
  3143. a prototype for the sockatmark() function.  Otherwise, it is
  3144. up to the program to supply one.
  3145.  
  3146. =item C<d_socket>
  3147.  
  3148. From F<d_socket.U>:
  3149.  
  3150. This variable conditionally defines C<HAS_SOCKET>, which indicates
  3151. that the C<BSD> socket interface is supported.
  3152.  
  3153. =item C<d_socklen_t>
  3154.  
  3155. From F<d_socklen_t.U>:
  3156.  
  3157. This symbol will be defined if the C compiler supports socklen_t.
  3158.  
  3159. =item C<d_sockpair>
  3160.  
  3161. From F<d_socket.U>:
  3162.  
  3163. This variable conditionally defines the C<HAS_SOCKETPAIR> symbol, which
  3164. indicates that the C<BSD> socketpair() is supported.
  3165.  
  3166. =item C<d_socks5_init>
  3167.  
  3168. From F<d_socks5_init.U>:
  3169.  
  3170. This variable conditionally defines the HAS_SOCKS5_INIT symbol, which
  3171. indicates to the C program that the socks5_init() routine is available.
  3172.  
  3173. =item C<d_sqrtl>
  3174.  
  3175. From F<d_sqrtl.U>:
  3176.  
  3177. This variable conditionally defines the C<HAS_SQRTL> symbol, which
  3178. indicates to the C program that the sqrtl() routine is available.
  3179.  
  3180. =item C<d_srand48_r>
  3181.  
  3182. From F<d_srand48_r.U>:
  3183.  
  3184. This variable conditionally defines the HAS_SRAND48_R symbol,
  3185. which indicates to the C program that the srand48_r()
  3186. routine is available.
  3187.  
  3188. =item C<d_srandom_r>
  3189.  
  3190. From F<d_srandom_r.U>:
  3191.  
  3192. This variable conditionally defines the C<HAS_SRANDOM_R> symbol,
  3193. which indicates to the C program that the srandom_r()
  3194. routine is available.
  3195.  
  3196. =item C<d_sresgproto>
  3197.  
  3198. From F<d_sresgproto.U>:
  3199.  
  3200. This variable conditionally defines the C<HAS_SETRESGID_PROTO> symbol,
  3201. which indicates to the C program that the system provides
  3202. a prototype for the setresgid() function.  Otherwise, it is
  3203. up to the program to supply one.
  3204.  
  3205. =item C<d_sresuproto>
  3206.  
  3207. From F<d_sresuproto.U>:
  3208.  
  3209. This variable conditionally defines the C<HAS_SETRESUID_PROTO> symbol,
  3210. which indicates to the C program that the system provides
  3211. a prototype for the setresuid() function.  Otherwise, it is
  3212. up to the program to supply one.
  3213.  
  3214. =item C<d_statblks>
  3215.  
  3216. From F<d_statblks.U>:
  3217.  
  3218. This variable conditionally defines C<USE_STAT_BLOCKS>
  3219. if this system has a stat structure declaring
  3220. st_blksize and st_blocks.
  3221.  
  3222. =item C<d_statfs_f_flags>
  3223.  
  3224. From F<d_statfs_f_flags.U>:
  3225.  
  3226. This variable conditionally defines the C<HAS_STRUCT_STATFS_F_FLAGS>
  3227. symbol, which indicates to struct statfs from has f_flags member.
  3228. This kind of struct statfs is coming from F<sys/mount.h> (C<BSD>),
  3229. not from F<sys/statfs.h> (C<SYSV>).
  3230.  
  3231. =item C<d_statfs_s>
  3232.  
  3233. From F<d_statfs_s.U>:
  3234.  
  3235. This variable conditionally defines the C<HAS_STRUCT_STATFS> symbol,
  3236. which indicates that the struct statfs is supported.
  3237.  
  3238. =item C<d_statvfs>
  3239.  
  3240. From F<d_statvfs.U>:
  3241.  
  3242. This variable conditionally defines the C<HAS_STATVFS> symbol, which
  3243. indicates to the C program that the statvfs() routine is available.
  3244.  
  3245. =item C<d_stdio_cnt_lval>
  3246.  
  3247. From F<d_stdstdio.U>:
  3248.  
  3249. This variable conditionally defines C<STDIO_CNT_LVALUE> if the
  3250. C<FILE_cnt> macro can be used as an lvalue.
  3251.  
  3252. =item C<d_stdio_ptr_lval>
  3253.  
  3254. From F<d_stdstdio.U>:
  3255.  
  3256. This variable conditionally defines C<STDIO_PTR_LVALUE> if the
  3257. C<FILE_ptr> macro can be used as an lvalue.
  3258.  
  3259. =item C<d_stdio_ptr_lval_nochange_cnt>
  3260.  
  3261. From F<d_stdstdio.U>:
  3262.  
  3263. This symbol is defined if using the C<FILE_ptr> macro as an lvalue
  3264. to increase the pointer by n leaves File_cnt(fp) unchanged.
  3265.  
  3266. =item C<d_stdio_ptr_lval_sets_cnt>
  3267.  
  3268. From F<d_stdstdio.U>:
  3269.  
  3270. This symbol is defined if using the C<FILE_ptr> macro as an lvalue
  3271. to increase the pointer by n has the side effect of decreasing the
  3272. value of File_cnt(fp) by n.
  3273.  
  3274. =item C<d_stdio_stream_array>
  3275.  
  3276. From F<stdio_streams.U>:
  3277.  
  3278. This variable tells whether there is an array holding
  3279. the stdio streams.
  3280.  
  3281. =item C<d_stdiobase>
  3282.  
  3283. From F<d_stdstdio.U>:
  3284.  
  3285. This variable conditionally defines C<USE_STDIO_BASE> if this system
  3286. has a C<FILE> structure declaring a usable _base field (or equivalent)
  3287. in F<stdio.h>.
  3288.  
  3289. =item C<d_stdstdio>
  3290.  
  3291. From F<d_stdstdio.U>:
  3292.  
  3293. This variable conditionally defines C<USE_STDIO_PTR> if this system
  3294. has a C<FILE> structure declaring usable _ptr and _cnt fields (or
  3295. equivalent) in F<stdio.h>.
  3296.  
  3297. =item C<d_strchr>
  3298.  
  3299. From F<d_strchr.U>:
  3300.  
  3301. This variable conditionally defines C<HAS_STRCHR> if strchr() and
  3302. strrchr() are available for string searching.
  3303.  
  3304. =item C<d_strcoll>
  3305.  
  3306. From F<d_strcoll.U>:
  3307.  
  3308. This variable conditionally defines C<HAS_STRCOLL> if strcoll() is
  3309. available to compare strings using collating information.
  3310.  
  3311. =item C<d_strctcpy>
  3312.  
  3313. From F<d_strctcpy.U>:
  3314.  
  3315. This variable conditionally defines the C<USE_STRUCT_COPY> symbol, which
  3316. indicates to the C program that this C compiler knows how to copy
  3317. structures.
  3318.  
  3319. =item C<d_strerrm>
  3320.  
  3321. From F<d_strerror.U>:
  3322.  
  3323. This variable holds what Strerrr is defined as to translate an error
  3324. code condition into an error message string. It could be C<strerror>
  3325. or a more C<complex> macro emulating strrror with sys_errlist[], or the
  3326. C<unknown> string when both strerror and sys_errlist are missing.
  3327.  
  3328. =item C<d_strerror>
  3329.  
  3330. From F<d_strerror.U>:
  3331.  
  3332. This variable conditionally defines C<HAS_STRERROR> if strerror() is
  3333. available to translate error numbers to strings.
  3334.  
  3335. =item C<d_strerror_r>
  3336.  
  3337. From F<d_strerror_r.U>:
  3338.  
  3339. This variable conditionally defines the C<HAS_STRERROR_R> symbol,
  3340. which indicates to the C program that the strerror_r()
  3341. routine is available.
  3342.  
  3343. =item C<d_strftime>
  3344.  
  3345. From F<d_strftime.U>:
  3346.  
  3347. This variable conditionally defines the C<HAS_STRFTIME> symbol, which
  3348. indicates to the C program that the strftime() routine is available.
  3349.  
  3350. =item C<d_strtod>
  3351.  
  3352. From F<d_strtod.U>:
  3353.  
  3354. This variable conditionally defines the C<HAS_STRTOD> symbol, which
  3355. indicates to the C program that the strtod() routine is available
  3356. to provide better numeric string conversion than atof().
  3357.  
  3358. =item C<d_strtol>
  3359.  
  3360. From F<d_strtol.U>:
  3361.  
  3362. This variable conditionally defines the C<HAS_STRTOL> symbol, which
  3363. indicates to the C program that the strtol() routine is available
  3364. to provide better numeric string conversion than atoi() and friends.
  3365.  
  3366. =item C<d_strtold>
  3367.  
  3368. From F<d_strtold.U>:
  3369.  
  3370. This variable conditionally defines the C<HAS_STRTOLD> symbol, which
  3371. indicates to the C program that the strtold() routine is available.
  3372.  
  3373. =item C<d_strtoll>
  3374.  
  3375. From F<d_strtoll.U>:
  3376.  
  3377. This variable conditionally defines the C<HAS_STRTOLL> symbol, which
  3378. indicates to the C program that the strtoll() routine is available.
  3379.  
  3380. =item C<d_strtoq>
  3381.  
  3382. From F<d_strtoq.U>:
  3383.  
  3384. This variable conditionally defines the C<HAS_STRTOQ> symbol, which
  3385. indicates to the C program that the strtoq() routine is available.
  3386.  
  3387. =item C<d_strtoul>
  3388.  
  3389. From F<d_strtoul.U>:
  3390.  
  3391. This variable conditionally defines the C<HAS_STRTOUL> symbol, which
  3392. indicates to the C program that the strtoul() routine is available
  3393. to provide conversion of strings to unsigned long.
  3394.  
  3395. =item C<d_strtoull>
  3396.  
  3397. From F<d_strtoull.U>:
  3398.  
  3399. This variable conditionally defines the C<HAS_STRTOULL> symbol, which
  3400. indicates to the C program that the strtoull() routine is available.
  3401.  
  3402. =item C<d_strtouq>
  3403.  
  3404. From F<d_strtouq.U>:
  3405.  
  3406. This variable conditionally defines the C<HAS_STRTOUQ> symbol, which
  3407. indicates to the C program that the strtouq() routine is available.
  3408.  
  3409. =item C<d_strxfrm>
  3410.  
  3411. From F<d_strxfrm.U>:
  3412.  
  3413. This variable conditionally defines C<HAS_STRXFRM> if strxfrm() is
  3414. available to transform strings.
  3415.  
  3416. =item C<d_suidsafe>
  3417.  
  3418. From F<d_dosuid.U>:
  3419.  
  3420. This variable conditionally defines C<SETUID_SCRIPTS_ARE_SECURE_NOW>
  3421. if setuid scripts can be secure.  This test looks in F</dev/fd/>.
  3422.  
  3423. =item C<d_symlink>
  3424.  
  3425. From F<d_symlink.U>:
  3426.  
  3427. This variable conditionally defines the C<HAS_SYMLINK> symbol, which
  3428. indicates to the C program that the symlink() routine is available
  3429. to create symbolic links.
  3430.  
  3431. =item C<d_syscall>
  3432.  
  3433. From F<d_syscall.U>:
  3434.  
  3435. This variable conditionally defines C<HAS_SYSCALL> if syscall() is
  3436. available call arbitrary system calls.
  3437.  
  3438. =item C<d_syscallproto>
  3439.  
  3440. From F<d_syscallproto.U>:
  3441.  
  3442. This variable conditionally defines the C<HAS_SYSCALL_PROTO> symbol,
  3443. which indicates to the C program that the system provides
  3444. a prototype for the syscall() function.  Otherwise, it is
  3445. up to the program to supply one.
  3446.  
  3447. =item C<d_sysconf>
  3448.  
  3449. From F<d_sysconf.U>:
  3450.  
  3451. This variable conditionally defines the C<HAS_SYSCONF> symbol, which
  3452. indicates to the C program that the sysconf() routine is available
  3453. to determine system related limits and options.
  3454.  
  3455. =item C<d_sysernlst>
  3456.  
  3457. From F<d_strerror.U>:
  3458.  
  3459. This variable conditionally defines C<HAS_SYS_ERRNOLIST> if sys_errnolist[]
  3460. is available to translate error numbers to the symbolic name.
  3461.  
  3462. =item C<d_syserrlst>
  3463.  
  3464. From F<d_strerror.U>:
  3465.  
  3466. This variable conditionally defines C<HAS_SYS_ERRLIST> if sys_errlist[] is
  3467. available to translate error numbers to strings.
  3468.  
  3469. =item C<d_system>
  3470.  
  3471. From F<d_system.U>:
  3472.  
  3473. This variable conditionally defines C<HAS_SYSTEM> if system() is
  3474. available to issue a shell command.
  3475.  
  3476. =item C<d_tcgetpgrp>
  3477.  
  3478. From F<d_tcgtpgrp.U>:
  3479.  
  3480. This variable conditionally defines the C<HAS_TCGETPGRP> symbol, which
  3481. indicates to the C program that the tcgetpgrp() routine is available.
  3482. to get foreground process group C<ID>.
  3483.  
  3484. =item C<d_tcsetpgrp>
  3485.  
  3486. From F<d_tcstpgrp.U>:
  3487.  
  3488. This variable conditionally defines the C<HAS_TCSETPGRP> symbol, which
  3489. indicates to the C program that the tcsetpgrp() routine is available
  3490. to set foreground process group C<ID>.
  3491.  
  3492. =item C<d_telldir>
  3493.  
  3494. From F<d_readdir.U>:
  3495.  
  3496. This variable conditionally defines C<HAS_TELLDIR> if telldir() is
  3497. available.
  3498.  
  3499. =item C<d_telldirproto>
  3500.  
  3501. From F<d_telldirproto.U>:
  3502.  
  3503. This variable conditionally defines the C<HAS_TELLDIR_PROTO> symbol,
  3504. which indicates to the C program that the system provides
  3505. a prototype for the telldir() function.  Otherwise, it is
  3506. up to the program to supply one.
  3507.  
  3508. =item C<d_time>
  3509.  
  3510. From F<d_time.U>:
  3511.  
  3512. This variable conditionally defines the C<HAS_TIME> symbol, which indicates
  3513. that the time() routine exists.  The time() routine is normaly
  3514. provided on C<UNIX> systems.
  3515.  
  3516. =item C<d_times>
  3517.  
  3518. From F<d_times.U>:
  3519.  
  3520. This variable conditionally defines the C<HAS_TIMES> symbol, which indicates
  3521. that the times() routine exists.  The times() routine is normaly
  3522. provided on C<UNIX> systems. You may have to include <sys/times.h>.
  3523.  
  3524. =item C<d_tm_tm_gmtoff>
  3525.  
  3526. From F<i_time.U>:
  3527.  
  3528. This variable conditionally defines C<HAS_TM_TM_GMTOFF>, which indicates
  3529. indicates to the C program that the struct tm has the tm_gmtoff field.
  3530.  
  3531. =item C<d_tm_tm_zone>
  3532.  
  3533. From F<i_time.U>:
  3534.  
  3535. This variable conditionally defines C<HAS_TM_TM_ZONE>, which indicates
  3536. indicates to the C program that the struct tm has the tm_zone field.
  3537.  
  3538. =item C<d_tmpnam_r>
  3539.  
  3540. From F<d_tmpnam_r.U>:
  3541.  
  3542. This variable conditionally defines the C<HAS_TMPNAM_R> symbol,
  3543. which indicates to the C program that the tmpnam_r()
  3544. routine is available.
  3545.  
  3546. =item C<d_truncate>
  3547.  
  3548. From F<d_truncate.U>:
  3549.  
  3550. This variable conditionally defines C<HAS_TRUNCATE> if truncate() is
  3551. available to truncate files.
  3552.  
  3553. =item C<d_ttyname_r>
  3554.  
  3555. From F<d_ttyname_r.U>:
  3556.  
  3557. This variable conditionally defines the C<HAS_TTYNAME_R> symbol,
  3558. which indicates to the C program that the ttyname_r()
  3559. routine is available.
  3560.  
  3561. =item C<d_tzname>
  3562.  
  3563. From F<d_tzname.U>:
  3564.  
  3565. This variable conditionally defines C<HAS_TZNAME> if tzname[] is
  3566. available to access timezone names.
  3567.  
  3568. =item C<d_u32align>
  3569.  
  3570. From F<d_u32align.U>:
  3571.  
  3572. This variable tells whether you must access character data
  3573. through U32-aligned pointers.
  3574.  
  3575. =item C<d_ualarm>
  3576.  
  3577. From F<d_ualarm.U>:
  3578.  
  3579. This variable conditionally defines the C<HAS_UALARM> symbol, which
  3580. indicates to the C program that the ualarm() routine is available.
  3581.  
  3582. =item C<d_umask>
  3583.  
  3584. From F<d_umask.U>:
  3585.  
  3586. This variable conditionally defines the C<HAS_UMASK> symbol, which
  3587. indicates to the C program that the umask() routine is available.
  3588. to set and get the value of the file creation mask.
  3589.  
  3590. =item C<d_uname>
  3591.  
  3592. From F<d_gethname.U>:
  3593.  
  3594. This variable conditionally defines the C<HAS_UNAME> symbol, which
  3595. indicates to the C program that the uname() routine may be
  3596. used to derive the host name.
  3597.  
  3598. =item C<d_union_semun>
  3599.  
  3600. From F<d_union_semun.U>:
  3601.  
  3602. This variable conditionally defines C<HAS_UNION_SEMUN> if the
  3603. union semun is defined by including <sys/sem.h>.
  3604.  
  3605. =item C<d_unordered>
  3606.  
  3607. From F<d_unordered.U>:
  3608.  
  3609. This variable conditionally defines the C<HAS_UNORDERED> symbol, which
  3610. indicates to the C program that the unordered() routine is available.
  3611.  
  3612. =item C<d_usleep>
  3613.  
  3614. From F<d_usleep.U>:
  3615.  
  3616. This variable conditionally defines C<HAS_USLEEP> if usleep() is
  3617. available to do high granularity sleeps.
  3618.  
  3619. =item C<d_usleepproto>
  3620.  
  3621. From F<d_usleepproto.U>:
  3622.  
  3623. This variable conditionally defines the C<HAS_USLEEP_PROTO> symbol,
  3624. which indicates to the C program that the system provides
  3625. a prototype for the usleep() function.  Otherwise, it is
  3626. up to the program to supply one.
  3627.  
  3628. =item C<d_ustat>
  3629.  
  3630. From F<d_ustat.U>:
  3631.  
  3632. This variable conditionally defines C<HAS_USTAT> if ustat() is
  3633. available to query file system statistics by dev_t.
  3634.  
  3635. =item C<d_vendorarch>
  3636.  
  3637. From F<vendorarch.U>:
  3638.  
  3639. This variable conditionally defined C<PERL_VENDORARCH>.
  3640.  
  3641. =item C<d_vendorbin>
  3642.  
  3643. From F<vendorbin.U>:
  3644.  
  3645. This variable conditionally defines C<PERL_VENDORBIN>.
  3646.  
  3647. =item C<d_vendorlib>
  3648.  
  3649. From F<vendorlib.U>:
  3650.  
  3651. This variable conditionally defines C<PERL_VENDORLIB>.
  3652.  
  3653. =item C<d_vendorscript>
  3654.  
  3655. From F<vendorscript.U>:
  3656.  
  3657. This variable conditionally defines C<PERL_VENDORSCRIPT>.
  3658.  
  3659. =item C<d_vfork>
  3660.  
  3661. From F<d_vfork.U>:
  3662.  
  3663. This variable conditionally defines the C<HAS_VFORK> symbol, which
  3664. indicates the vfork() routine is available.
  3665.  
  3666. =item C<d_void_closedir>
  3667.  
  3668. From F<d_closedir.U>:
  3669.  
  3670. This variable conditionally defines C<VOID_CLOSEDIR> if closedir()
  3671. does not return a value.
  3672.  
  3673. =item C<d_voidsig>
  3674.  
  3675. From F<d_voidsig.U>:
  3676.  
  3677. This variable conditionally defines C<VOIDSIG> if this system
  3678. declares "void (*signal(...))()" in F<signal.h>.  The old way was to
  3679. declare it as "int (*signal(...))()".
  3680.  
  3681. =item C<d_voidtty>
  3682.  
  3683. From F<i_sysioctl.U>:
  3684.  
  3685. This variable conditionally defines C<USE_IOCNOTTY> to indicate that the
  3686. ioctl() call with C<TIOCNOTTY> should be used to void tty association.
  3687. Otherwise (on C<USG> probably), it is enough to close the standard file
  3688. decriptors and do a setpgrp().
  3689.  
  3690. =item C<d_volatile>
  3691.  
  3692. From F<d_volatile.U>:
  3693.  
  3694. This variable conditionally defines the C<HASVOLATILE> symbol, which
  3695. indicates to the C program that this C compiler knows about the
  3696. volatile declaration.
  3697.  
  3698. =item C<d_vprintf>
  3699.  
  3700. From F<d_vprintf.U>:
  3701.  
  3702. This variable conditionally defines the C<HAS_VPRINTF> symbol, which
  3703. indicates to the C program that the vprintf() routine is available
  3704. to printf with a pointer to an argument list.
  3705.  
  3706. =item C<d_wait4>
  3707.  
  3708. From F<d_wait4.U>:
  3709.  
  3710. This variable conditionally defines the HAS_WAIT4 symbol, which
  3711. indicates the wait4() routine is available.
  3712.  
  3713. =item C<d_waitpid>
  3714.  
  3715. From F<d_waitpid.U>:
  3716.  
  3717. This variable conditionally defines C<HAS_WAITPID> if waitpid() is
  3718. available to wait for child process.
  3719.  
  3720. =item C<d_wcstombs>
  3721.  
  3722. From F<d_wcstombs.U>:
  3723.  
  3724. This variable conditionally defines the C<HAS_WCSTOMBS> symbol, which
  3725. indicates to the C program that the wcstombs() routine is available
  3726. to convert wide character strings to multibyte strings.
  3727.  
  3728. =item C<d_wctomb>
  3729.  
  3730. From F<d_wctomb.U>:
  3731.  
  3732. This variable conditionally defines the C<HAS_WCTOMB> symbol, which
  3733. indicates to the C program that the wctomb() routine is available
  3734. to convert a wide character to a multibyte.
  3735.  
  3736. =item C<d_writev>
  3737.  
  3738. From F<d_writev.U>:
  3739.  
  3740. This variable conditionally defines the C<HAS_WRITEV> symbol, which
  3741. indicates to the C program that the writev() routine is available.
  3742.  
  3743. =item C<d_xenix>
  3744.  
  3745. From F<Guess.U>:
  3746.  
  3747. This variable conditionally defines the symbol C<XENIX>, which alerts
  3748. the C program that it runs under Xenix.
  3749.  
  3750. =item C<date>
  3751.  
  3752. From F<Loc.U>:
  3753.  
  3754. This variable is used internally by Configure to determine the
  3755. full pathname (if any) of the date program.  After Configure runs,
  3756. the value is reset to a plain C<date> and is not useful.
  3757.  
  3758. =item C<db_hashtype>
  3759.  
  3760. From F<i_db.U>:
  3761.  
  3762. This variable contains the type of the hash structure element
  3763. in the <db.h> header file.  In older versions of C<DB>, it was
  3764. int, while in newer ones it is u_int32_t.
  3765.  
  3766. =item C<db_prefixtype>
  3767.  
  3768. From F<i_db.U>:
  3769.  
  3770. This variable contains the type of the prefix structure element
  3771. in the <db.h> header file.  In older versions of C<DB>, it was
  3772. int, while in newer ones it is size_t.
  3773.  
  3774. =item C<db_version_major>
  3775.  
  3776. From F<i_db.U>:
  3777.  
  3778. This variable contains the major version number of
  3779. Berkeley C<DB> found in the <db.h> header file.
  3780.  
  3781. =item C<db_version_minor>
  3782.  
  3783. From F<i_db.U>:
  3784.  
  3785. This variable contains the minor version number of
  3786. Berkeley C<DB> found in the <db.h> header file.
  3787. For C<DB> version 1 this is always 0.
  3788.  
  3789. =item C<db_version_patch>
  3790.  
  3791. From F<i_db.U>:
  3792.  
  3793. This variable contains the patch version number of
  3794. Berkeley C<DB> found in the <db.h> header file.
  3795. For C<DB> version 1 this is always 0.
  3796.  
  3797. =item C<defvoidused>
  3798.  
  3799. From F<voidflags.U>:
  3800.  
  3801. This variable contains the default value of the C<VOIDUSED> symbol (15).
  3802.  
  3803. =item C<direntrytype>
  3804.  
  3805. From F<i_dirent.U>:
  3806.  
  3807. This symbol is set to C<struct direct> or C<struct dirent> depending on
  3808. whether dirent is available or not. You should use this pseudo type to
  3809. portably declare your directory entries.
  3810.  
  3811. =item C<dlext>
  3812.  
  3813. From F<dlext.U>:
  3814.  
  3815. This variable contains the extension that is to be used for the
  3816. dynamically loaded modules that perl generaties.
  3817.  
  3818. =item C<dlsrc>
  3819.  
  3820. From F<dlsrc.U>:
  3821.  
  3822. This variable contains the name of the dynamic loading file that
  3823. will be used with the package.
  3824.  
  3825. =item C<doublesize>
  3826.  
  3827. From F<doublesize.U>:
  3828.  
  3829. This variable contains the value of the C<DOUBLESIZE> symbol, which
  3830. indicates to the C program how many bytes there are in a double.
  3831.  
  3832. =item C<drand01>
  3833.  
  3834. From F<randfunc.U>:
  3835.  
  3836. Indicates the macro to be used to generate normalized
  3837. random numbers.  Uses randfunc, often divided by
  3838. (double) (((unsigned long) 1 << randbits)) in order to
  3839. normalize the result.
  3840. In C programs, the macro C<Drand01> is mapped to drand01.
  3841.  
  3842. =item C<drand48_r_proto>
  3843.  
  3844. From F<d_drand48_r.U>:
  3845.  
  3846. This variable encodes the prototype of drand48_r.
  3847. It is zero if d_drand48_r is undef, and one of the
  3848. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_drand48_r
  3849. is defined.
  3850.  
  3851. =item C<dynamic_ext>
  3852.  
  3853. From F<Extensions.U>:
  3854.  
  3855. This variable holds a list of C<XS> extension files we want to
  3856. link dynamically into the package.  It is used by Makefile.
  3857.  
  3858. =back
  3859.  
  3860. =head2 e
  3861.  
  3862. =over 4
  3863.  
  3864. =item C<eagain>
  3865.  
  3866. From F<nblock_io.U>:
  3867.  
  3868. This variable bears the symbolic errno code set by read() when no
  3869. data is present on the file and non-blocking I/O was enabled (otherwise,
  3870. read() blocks naturally).
  3871.  
  3872. =item C<ebcdic>
  3873.  
  3874. From F<ebcdic.U>:
  3875.  
  3876. This variable conditionally defines C<EBCDIC> if this
  3877. system uses C<EBCDIC> encoding.  Among other things, this
  3878. means that the character ranges are not contiguous.
  3879. See F<trnl.U>
  3880.  
  3881. =item C<echo>
  3882.  
  3883. From F<Loc.U>:
  3884.  
  3885. This variable is used internally by Configure to determine the
  3886. full pathname (if any) of the echo program.  After Configure runs,
  3887. the value is reset to a plain C<echo> and is not useful.
  3888.  
  3889. =item C<egrep>
  3890.  
  3891. From F<Loc.U>:
  3892.  
  3893. This variable is used internally by Configure to determine the
  3894. full pathname (if any) of the egrep program.  After Configure runs,
  3895. the value is reset to a plain C<egrep> and is not useful.
  3896.  
  3897. =item C<emacs>
  3898.  
  3899. From F<Loc.U>:
  3900.  
  3901. This variable is defined but not used by Configure.
  3902. The value is a plain '' and is not useful.
  3903.  
  3904. =item C<endgrent_r_proto>
  3905.  
  3906. From F<d_endgrent_r.U>:
  3907.  
  3908. This variable encodes the prototype of endgrent_r.
  3909. It is zero if d_endgrent_r is undef, and one of the
  3910. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endgrent_r
  3911. is defined.
  3912.  
  3913. =item C<endhostent_r_proto>
  3914.  
  3915. From F<d_endhostent_r.U>:
  3916.  
  3917. This variable encodes the prototype of endhostent_r.
  3918. It is zero if d_endhostent_r is undef, and one of the
  3919. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endhostent_r
  3920. is defined.
  3921.  
  3922. =item C<endnetent_r_proto>
  3923.  
  3924. From F<d_endnetent_r.U>:
  3925.  
  3926. This variable encodes the prototype of endnetent_r.
  3927. It is zero if d_endnetent_r is undef, and one of the
  3928. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endnetent_r
  3929. is defined.
  3930.  
  3931. =item C<endprotoent_r_proto>
  3932.  
  3933. From F<d_endprotoent_r.U>:
  3934.  
  3935. This variable encodes the prototype of endprotoent_r.
  3936. It is zero if d_endprotoent_r is undef, and one of the
  3937. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endprotoent_r
  3938. is defined.
  3939.  
  3940. =item C<endpwent_r_proto>
  3941.  
  3942. From F<d_endpwent_r.U>:
  3943.  
  3944. This variable encodes the prototype of endpwent_r.
  3945. It is zero if d_endpwent_r is undef, and one of the
  3946. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endpwent_r
  3947. is defined.
  3948.  
  3949. =item C<endservent_r_proto>
  3950.  
  3951. From F<d_endservent_r.U>:
  3952.  
  3953. This variable encodes the prototype of endservent_r.
  3954. It is zero if d_endservent_r is undef, and one of the
  3955. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endservent_r
  3956. is defined.
  3957.  
  3958. =item C<eunicefix>
  3959.  
  3960. From F<Init.U>:
  3961.  
  3962. When running under Eunice this variable contains a command which will
  3963. convert a shell script to the proper form of text file for it to be
  3964. executable by the shell.  On other systems it is a no-op.
  3965.  
  3966. =item C<exe_ext>
  3967.  
  3968. From F<Unix.U>:
  3969.  
  3970. This is an old synonym for _exe.
  3971.  
  3972. =item C<expr>
  3973.  
  3974. From F<Loc.U>:
  3975.  
  3976. This variable is used internally by Configure to determine the
  3977. full pathname (if any) of the expr program.  After Configure runs,
  3978. the value is reset to a plain C<expr> and is not useful.
  3979.  
  3980. =item C<extensions>
  3981.  
  3982. From F<Extensions.U>:
  3983.  
  3984. This variable holds a list of all extension files (both C<XS> and
  3985. non-xs linked into the package.  It is propagated to F<Config.pm>
  3986. and is typically used to test whether a particular extesion 
  3987. is available.
  3988.  
  3989. =item C<extras>
  3990.  
  3991. From F<Extras.U>:
  3992.  
  3993. This variable holds a list of extra modules to install.
  3994.  
  3995. =back
  3996.  
  3997. =head2 f
  3998.  
  3999. =over 4
  4000.  
  4001. =item C<fflushall>
  4002.  
  4003. From F<fflushall.U>:
  4004.  
  4005. This symbol, if defined, tells that to flush
  4006. all pending stdio output one must loop through all
  4007. the stdio file handles stored in an array and fflush them.
  4008. Note that if fflushNULL is defined, fflushall will not
  4009. even be probed for and will be left undefined.
  4010.  
  4011. =item C<fflushNULL>
  4012.  
  4013. From F<fflushall.U>:
  4014.  
  4015. This symbol, if defined, tells that fflush(C<NULL>) does flush
  4016. all pending stdio output.
  4017.  
  4018. =item C<find>
  4019.  
  4020. From F<Loc.U>:
  4021.  
  4022. This variable is defined but not used by Configure.
  4023. The value is a plain '' and is not useful.
  4024.  
  4025. =item C<firstmakefile>
  4026.  
  4027. From F<Unix.U>:
  4028.  
  4029. This variable defines the first file searched by make.  On unix,
  4030. it is makefile (then Makefile).  On case-insensitive systems,
  4031. it might be something else.  This is only used to deal with
  4032. convoluted make depend tricks.
  4033.  
  4034. =item C<flex>
  4035.  
  4036. From F<Loc.U>:
  4037.  
  4038. This variable is defined but not used by Configure.
  4039. The value is a plain '' and is not useful.
  4040.  
  4041. =item C<fpossize>
  4042.  
  4043. From F<fpossize.U>:
  4044.  
  4045. This variable contains the size of a fpostype in bytes.
  4046.  
  4047. =item C<fpostype>
  4048.  
  4049. From F<fpostype.U>:
  4050.  
  4051. This variable defines Fpos_t to be something like fpos_t, long, 
  4052. uint, or whatever type is used to declare file positions in libc.
  4053.  
  4054. =item C<freetype>
  4055.  
  4056. From F<mallocsrc.U>:
  4057.  
  4058. This variable contains the return type of free().  It is usually
  4059. void, but occasionally int.
  4060.  
  4061. =item C<from>
  4062.  
  4063. From F<Cross.U>:
  4064.  
  4065. This variable contains the command used by Configure
  4066. to copy files from the target host.  Useful and available
  4067. only during Perl build.
  4068. The string C<:> if not cross-compiling.
  4069.  
  4070. =item C<full_ar>
  4071.  
  4072. From F<Loc_ar.U>:
  4073.  
  4074. This variable contains the full pathname to C<ar>, whether or
  4075. not the user has specified C<portability>.  This is only used
  4076. in the F<Makefile.SH>.
  4077.  
  4078. =item C<full_csh>
  4079.  
  4080. From F<d_csh.U>:
  4081.  
  4082. This variable contains the full pathname to C<csh>, whether or
  4083. not the user has specified C<portability>.  This is only used
  4084. in the compiled C program, and we assume that all systems which
  4085. can share this executable will have the same full pathname to
  4086. F<csh.>
  4087.  
  4088. =item C<full_sed>
  4089.  
  4090. From F<Loc_sed.U>:
  4091.  
  4092. This variable contains the full pathname to C<sed>, whether or
  4093. not the user has specified C<portability>.  This is only used
  4094. in the compiled C program, and we assume that all systems which
  4095. can share this executable will have the same full pathname to
  4096. F<sed.>
  4097.  
  4098. =back
  4099.  
  4100. =head2 g
  4101.  
  4102. =over 4
  4103.  
  4104. =item C<gccansipedantic>
  4105.  
  4106. From F<gccvers.U>:
  4107.  
  4108. If C<GNU> cc (gcc) is used, this variable will enable (if set) the
  4109. -ansi and -pedantic ccflags for building core files (through
  4110. cflags script). (See F<Porting/pumpkin.pod> for full description).
  4111.  
  4112. =item C<gccosandvers>
  4113.  
  4114. From F<gccvers.U>:
  4115.  
  4116. If C<GNU> cc (gcc) is used, this variable holds the operating system
  4117. and version used to compile gcc.  It is set to '' if not gcc,
  4118. or if nothing useful can be parsed as the os version.
  4119.  
  4120. =item C<gccversion>
  4121.  
  4122. From F<gccvers.U>:
  4123.  
  4124. If C<GNU> cc (gcc) is used, this variable holds C<1> or C<2> to
  4125. indicate whether the compiler is version 1 or 2.  This is used in
  4126. setting some of the default cflags.  It is set to '' if not gcc.
  4127.  
  4128. =item C<getgrent_r_proto>
  4129.  
  4130. From F<d_getgrent_r.U>:
  4131.  
  4132. This variable encodes the prototype of getgrent_r.
  4133. It is zero if d_getgrent_r is undef, and one of the
  4134. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getgrent_r
  4135. is defined.
  4136.  
  4137. =item C<getgrgid_r_proto>
  4138.  
  4139. From F<d_getgrgid_r.U>:
  4140.  
  4141. This variable encodes the prototype of getgrgid_r.
  4142. It is zero if d_getgrgid_r is undef, and one of the
  4143. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getgrgid_r
  4144. is defined.
  4145.  
  4146. =item C<getgrnam_r_proto>
  4147.  
  4148. From F<d_getgrnam_r.U>:
  4149.  
  4150. This variable encodes the prototype of getgrnam_r.
  4151. It is zero if d_getgrnam_r is undef, and one of the
  4152. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getgrnam_r
  4153. is defined.
  4154.  
  4155. =item C<gethostbyaddr_r_proto>
  4156.  
  4157. From F<d_gethostbyaddr_r.U>:
  4158.  
  4159. This variable encodes the prototype of gethostbyaddr_r.
  4160. It is zero if d_gethostbyaddr_r is undef, and one of the
  4161. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_gethostbyaddr_r
  4162. is defined.
  4163.  
  4164. =item C<gethostbyname_r_proto>
  4165.  
  4166. From F<d_gethostbyname_r.U>:
  4167.  
  4168. This variable encodes the prototype of gethostbyname_r.
  4169. It is zero if d_gethostbyname_r is undef, and one of the
  4170. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_gethostbyname_r
  4171. is defined.
  4172.  
  4173. =item C<gethostent_r_proto>
  4174.  
  4175. From F<d_gethostent_r.U>:
  4176.  
  4177. This variable encodes the prototype of gethostent_r.
  4178. It is zero if d_gethostent_r is undef, and one of the
  4179. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_gethostent_r
  4180. is defined.
  4181.  
  4182. =item C<getlogin_r_proto>
  4183.  
  4184. From F<d_getlogin_r.U>:
  4185.  
  4186. This variable encodes the prototype of getlogin_r.
  4187. It is zero if d_getlogin_r is undef, and one of the
  4188. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getlogin_r
  4189. is defined.
  4190.  
  4191. =item C<getnetbyaddr_r_proto>
  4192.  
  4193. From F<d_getnetbyaddr_r.U>:
  4194.  
  4195. This variable encodes the prototype of getnetbyaddr_r.
  4196. It is zero if d_getnetbyaddr_r is undef, and one of the
  4197. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getnetbyaddr_r
  4198. is defined.
  4199.  
  4200. =item C<getnetbyname_r_proto>
  4201.  
  4202. From F<d_getnetbyname_r.U>:
  4203.  
  4204. This variable encodes the prototype of getnetbyname_r.
  4205. It is zero if d_getnetbyname_r is undef, and one of the
  4206. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getnetbyname_r
  4207. is defined.
  4208.  
  4209. =item C<getnetent_r_proto>
  4210.  
  4211. From F<d_getnetent_r.U>:
  4212.  
  4213. This variable encodes the prototype of getnetent_r.
  4214. It is zero if d_getnetent_r is undef, and one of the
  4215. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getnetent_r
  4216. is defined.
  4217.  
  4218. =item C<getprotobyname_r_proto>
  4219.  
  4220. From F<d_getprotobyname_r.U>:
  4221.  
  4222. This variable encodes the prototype of getprotobyname_r.
  4223. It is zero if d_getprotobyname_r is undef, and one of the
  4224. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getprotobyname_r
  4225. is defined.
  4226.  
  4227. =item C<getprotobynumber_r_proto>
  4228.  
  4229. From F<d_getprotobynumber_r.U>:
  4230.  
  4231. This variable encodes the prototype of getprotobynumber_r.
  4232. It is zero if d_getprotobynumber_r is undef, and one of the
  4233. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getprotobynumber_r
  4234. is defined.
  4235.  
  4236. =item C<getprotoent_r_proto>
  4237.  
  4238. From F<d_getprotoent_r.U>:
  4239.  
  4240. This variable encodes the prototype of getprotoent_r.
  4241. It is zero if d_getprotoent_r is undef, and one of the
  4242. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getprotoent_r
  4243. is defined.
  4244.  
  4245. =item C<getpwent_r_proto>
  4246.  
  4247. From F<d_getpwent_r.U>:
  4248.  
  4249. This variable encodes the prototype of getpwent_r.
  4250. It is zero if d_getpwent_r is undef, and one of the
  4251. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getpwent_r
  4252. is defined.
  4253.  
  4254. =item C<getpwnam_r_proto>
  4255.  
  4256. From F<d_getpwnam_r.U>:
  4257.  
  4258. This variable encodes the prototype of getpwnam_r.
  4259. It is zero if d_getpwnam_r is undef, and one of the
  4260. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getpwnam_r
  4261. is defined.
  4262.  
  4263. =item C<getpwuid_r_proto>
  4264.  
  4265. From F<d_getpwuid_r.U>:
  4266.  
  4267. This variable encodes the prototype of getpwuid_r.
  4268. It is zero if d_getpwuid_r is undef, and one of the
  4269. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getpwuid_r
  4270. is defined.
  4271.  
  4272. =item C<getservbyname_r_proto>
  4273.  
  4274. From F<d_getservbyname_r.U>:
  4275.  
  4276. This variable encodes the prototype of getservbyname_r.
  4277. It is zero if d_getservbyname_r is undef, and one of the
  4278. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getservbyname_r
  4279. is defined.
  4280.  
  4281. =item C<getservbyport_r_proto>
  4282.  
  4283. From F<d_getservbyport_r.U>:
  4284.  
  4285. This variable encodes the prototype of getservbyport_r.
  4286. It is zero if d_getservbyport_r is undef, and one of the
  4287. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getservbyport_r
  4288. is defined.
  4289.  
  4290. =item C<getservent_r_proto>
  4291.  
  4292. From F<d_getservent_r.U>:
  4293.  
  4294. This variable encodes the prototype of getservent_r.
  4295. It is zero if d_getservent_r is undef, and one of the
  4296. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getservent_r
  4297. is defined.
  4298.  
  4299. =item C<getspnam_r_proto>
  4300.  
  4301. From F<d_getspnam_r.U>:
  4302.  
  4303. This variable encodes the prototype of getspnam_r.
  4304. It is zero if d_getspnam_r is undef, and one of the
  4305. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getspnam_r
  4306. is defined.
  4307.  
  4308. =item C<gidformat>
  4309.  
  4310. From F<gidf.U>:
  4311.  
  4312. This variable contains the format string used for printing a Gid_t.
  4313.  
  4314. =item C<gidsign>
  4315.  
  4316. From F<gidsign.U>:
  4317.  
  4318. This variable contains the signedness of a gidtype.
  4319. 1 for unsigned, -1 for signed.
  4320.  
  4321. =item C<gidsize>
  4322.  
  4323. From F<gidsize.U>:
  4324.  
  4325. This variable contains the size of a gidtype in bytes.
  4326.  
  4327. =item C<gidtype>
  4328.  
  4329. From F<gidtype.U>:
  4330.  
  4331. This variable defines Gid_t to be something like gid_t, int,
  4332. ushort, or whatever type is used to declare the return type
  4333. of getgid().  Typically, it is the type of group ids in the kernel.
  4334.  
  4335. =item C<glibpth>
  4336.  
  4337. From F<libpth.U>:
  4338.  
  4339. This variable holds the general path (space-separated) used to
  4340. find libraries.  It may contain directories that do not exist on
  4341. this platform, libpth is the cleaned-up version.
  4342.  
  4343. =item C<gmake>
  4344.  
  4345. From F<Loc.U>:
  4346.  
  4347. This variable is used internally by Configure to determine the
  4348. full pathname (if any) of the gmake program.  After Configure runs,
  4349. the value is reset to a plain C<gmake> and is not useful.
  4350.  
  4351. =item C<gmtime_r_proto>
  4352.  
  4353. From F<d_gmtime_r.U>:
  4354.  
  4355. This variable encodes the prototype of gmtime_r.
  4356. It is zero if d_gmtime_r is undef, and one of the
  4357. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_gmtime_r
  4358. is defined.
  4359.  
  4360. =item C<gnulibc_version>
  4361.  
  4362. From F<d_gnulibc.U>:
  4363.  
  4364. This variable contains the version number of the C<GNU> C library.
  4365. It is usually something like F<2.2.5>.  It is a plain '' if this
  4366. is not the C<GNU> C library, or if the version is unknown.
  4367.  
  4368. =item C<grep>
  4369.  
  4370. From F<Loc.U>:
  4371.  
  4372. This variable is used internally by Configure to determine the
  4373. full pathname (if any) of the grep program.  After Configure runs,
  4374. the value is reset to a plain C<grep> and is not useful.
  4375.  
  4376. =item C<groupcat>
  4377.  
  4378. From F<nis.U>:
  4379.  
  4380. This variable contains a command that produces the text of the
  4381. F</etc/group> file.  This is normally "cat F</etc/group>", but can be
  4382. "ypcat group" when C<NIS> is used.
  4383. On some systems, such as os390, there may be no equivalent
  4384. command, in which case this variable is unset.
  4385.  
  4386. =item C<groupstype>
  4387.  
  4388. From F<groupstype.U>:
  4389.  
  4390. This variable defines Groups_t to be something like gid_t, int, 
  4391. ushort, or whatever type is used for the second argument to
  4392. getgroups() and setgroups().  Usually, this is the same as
  4393. gidtype (gid_t), but sometimes it isn't.
  4394.  
  4395. =item C<gzip>
  4396.  
  4397. From F<Loc.U>:
  4398.  
  4399. This variable is used internally by Configure to determine the
  4400. full pathname (if any) of the gzip program.  After Configure runs,
  4401. the value is reset to a plain C<gzip> and is not useful.
  4402.  
  4403. =back
  4404.  
  4405. =head2 h
  4406.  
  4407. =over 4
  4408.  
  4409. =item C<h_fcntl>
  4410.  
  4411. From F<h_fcntl.U>:
  4412.  
  4413. This is variable gets set in various places to tell i_fcntl that
  4414. <fcntl.h> should be included.
  4415.  
  4416. =item C<h_sysfile>
  4417.  
  4418. From F<h_sysfile.U>:
  4419.  
  4420. This is variable gets set in various places to tell i_sys_file that
  4421. <sys/file.h> should be included.
  4422.  
  4423. =item C<hint>
  4424.  
  4425. From F<Oldconfig.U>:
  4426.  
  4427. Gives the type of hints used for previous answers. May be one of
  4428. C<default>, C<recommended> or C<previous>.
  4429.  
  4430. =item C<hostcat>
  4431.  
  4432. From F<nis.U>:
  4433.  
  4434. This variable contains a command that produces the text of the
  4435. F</etc/hosts> file.  This is normally "cat F</etc/hosts>", but can be
  4436. "ypcat hosts" when C<NIS> is used.
  4437. On some systems, such as os390, there may be no equivalent
  4438. command, in which case this variable is unset.
  4439.  
  4440. =item C<html1dir>
  4441.  
  4442. From F<html1dir.U>:
  4443.  
  4444. This variable contains the name of the directory in which html
  4445. source pages are to be put.  This directory is for pages
  4446. that describe whole programs, not libraries or modules.  It
  4447. is intended to correspond roughly to section 1 of the Unix
  4448. manuals.
  4449.  
  4450. =item C<html1direxp>
  4451.  
  4452. From F<html1dir.U>:
  4453.  
  4454. This variable is the same as the html1dir variable, but is filename
  4455. expanded at configuration time, for convenient use in makefiles.
  4456.  
  4457. =item C<html3dir>
  4458.  
  4459. From F<html3dir.U>:
  4460.  
  4461. This variable contains the name of the directory in which html
  4462. source pages are to be put.  This directory is for pages
  4463. that describe libraries or modules.  It is intended to
  4464. correspond roughly to section 3 of the Unix manuals.
  4465.  
  4466. =item C<html3direxp>
  4467.  
  4468. From F<html3dir.U>:
  4469.  
  4470. This variable is the same as the html3dir variable, but is filename
  4471. expanded at configuration time, for convenient use in makefiles.
  4472.  
  4473. =back
  4474.  
  4475. =head2 i
  4476.  
  4477. =over 4
  4478.  
  4479. =item C<i16size>
  4480.  
  4481. From F<perlxv.U>:
  4482.  
  4483. This variable is the size of an I16 in bytes.
  4484.  
  4485. =item C<i16type>
  4486.  
  4487. From F<perlxv.U>:
  4488.  
  4489. This variable contains the C type used for Perl's I16.
  4490.  
  4491. =item C<i32size>
  4492.  
  4493. From F<perlxv.U>:
  4494.  
  4495. This variable is the size of an I32 in bytes.
  4496.  
  4497. =item C<i32type>
  4498.  
  4499. From F<perlxv.U>:
  4500.  
  4501. This variable contains the C type used for Perl's I32.
  4502.  
  4503. =item C<i64size>
  4504.  
  4505. From F<perlxv.U>:
  4506.  
  4507. This variable is the size of an I64 in bytes.
  4508.  
  4509. =item C<i64type>
  4510.  
  4511. From F<perlxv.U>:
  4512.  
  4513. This variable contains the C type used for Perl's I64.
  4514.  
  4515. =item C<i8size>
  4516.  
  4517. From F<perlxv.U>:
  4518.  
  4519. This variable is the size of an I8 in bytes.
  4520.  
  4521. =item C<i8type>
  4522.  
  4523. From F<perlxv.U>:
  4524.  
  4525. This variable contains the C type used for Perl's I8.
  4526.  
  4527. =item C<i_arpainet>
  4528.  
  4529. From F<i_arpainet.U>:
  4530.  
  4531. This variable conditionally defines the C<I_ARPA_INET> symbol,
  4532. and indicates whether a C program should include <arpa/inet.h>.
  4533.  
  4534. =item C<i_bsdioctl>
  4535.  
  4536. From F<i_sysioctl.U>:
  4537.  
  4538. This variable conditionally defines the C<I_SYS_BSDIOCTL> symbol, which
  4539. indicates to the C program that <sys/bsdioctl.h> exists and should
  4540. be included.
  4541.  
  4542. =item C<i_crypt>
  4543.  
  4544. From F<i_crypt.U>:
  4545.  
  4546. This variable conditionally defines the C<I_CRYPT> symbol, and indicates
  4547. whether a C program should include <crypt.h>.
  4548.  
  4549. =item C<i_db>
  4550.  
  4551. From F<i_db.U>:
  4552.  
  4553. This variable conditionally defines the C<I_DB> symbol, and indicates
  4554. whether a C program may include Berkeley's C<DB> include file <db.h>.
  4555.  
  4556. =item C<i_dbm>
  4557.  
  4558. From F<i_dbm.U>:
  4559.  
  4560. This variable conditionally defines the C<I_DBM> symbol, which
  4561. indicates to the C program that <dbm.h> exists and should
  4562. be included.
  4563.  
  4564. =item C<i_dirent>
  4565.  
  4566. From F<i_dirent.U>:
  4567.  
  4568. This variable conditionally defines C<I_DIRENT>, which indicates
  4569. to the C program that it should include <dirent.h>.
  4570.  
  4571. =item C<i_dld>
  4572.  
  4573. From F<i_dld.U>:
  4574.  
  4575. This variable conditionally defines the C<I_DLD> symbol, which
  4576. indicates to the C program that <dld.h> (C<GNU> dynamic loading)
  4577. exists and should be included.
  4578.  
  4579. =item C<i_dlfcn>
  4580.  
  4581. From F<i_dlfcn.U>:
  4582.  
  4583. This variable conditionally defines the C<I_DLFCN> symbol, which
  4584. indicates to the C program that <dlfcn.h> exists and should
  4585. be included.
  4586.  
  4587. =item C<i_fcntl>
  4588.  
  4589. From F<i_fcntl.U>:
  4590.  
  4591. This variable controls the value of C<I_FCNTL> (which tells
  4592. the C program to include <fcntl.h>).
  4593.  
  4594. =item C<i_float>
  4595.  
  4596. From F<i_float.U>:
  4597.  
  4598. This variable conditionally defines the C<I_FLOAT> symbol, and indicates
  4599. whether a C program may include <float.h> to get symbols like C<DBL_MAX>
  4600. or C<DBL_MIN>, F<i.e>. machine dependent floating point values.
  4601.  
  4602. =item C<i_fp>
  4603.  
  4604. From F<i_fp.U>:
  4605.  
  4606. This variable conditionally defines the C<I_FP> symbol, and indicates
  4607. whether a C program should include <fp.h>.
  4608.  
  4609. =item C<i_fp_class>
  4610.  
  4611. From F<i_fp_class.U>:
  4612.  
  4613. This variable conditionally defines the C<I_FP_CLASS> symbol, and indicates
  4614. whether a C program should include <fp_class.h>.
  4615.  
  4616. =item C<i_gdbm>
  4617.  
  4618. From F<i_gdbm.U>:
  4619.  
  4620. This variable conditionally defines the C<I_GDBM> symbol, which
  4621. indicates to the C program that <gdbm.h> exists and should
  4622. be included.
  4623.  
  4624. =item C<i_grp>
  4625.  
  4626. From F<i_grp.U>:
  4627.  
  4628. This variable conditionally defines the C<I_GRP> symbol, and indicates
  4629. whether a C program should include <grp.h>.
  4630.  
  4631. =item C<i_ieeefp>
  4632.  
  4633. From F<i_ieeefp.U>:
  4634.  
  4635. This variable conditionally defines the C<I_IEEEFP> symbol, and indicates
  4636. whether a C program should include <ieeefp.h>.
  4637.  
  4638. =item C<i_inttypes>
  4639.  
  4640. From F<i_inttypes.U>:
  4641.  
  4642. This variable conditionally defines the C<I_INTTYPES> symbol,
  4643. and indicates whether a C program should include <inttypes.h>.
  4644.  
  4645. =item C<i_langinfo>
  4646.  
  4647. From F<i_langinfo.U>:
  4648.  
  4649. This variable conditionally defines the C<I_LANGINFO> symbol,
  4650. and indicates whether a C program should include <langinfo.h>.
  4651.  
  4652. =item C<i_libutil>
  4653.  
  4654. From F<i_libutil.U>:
  4655.  
  4656. This variable conditionally defines the C<I_LIBUTIL> symbol, and indicates
  4657. whether a C program should include <libutil.h>.
  4658.  
  4659. =item C<i_limits>
  4660.  
  4661. From F<i_limits.U>:
  4662.  
  4663. This variable conditionally defines the C<I_LIMITS> symbol, and indicates
  4664. whether a C program may include <limits.h> to get symbols like C<WORD_BIT>
  4665. and friends.
  4666.  
  4667. =item C<i_locale>
  4668.  
  4669. From F<i_locale.U>:
  4670.  
  4671. This variable conditionally defines the C<I_LOCALE> symbol,
  4672. and indicates whether a C program should include <locale.h>.
  4673.  
  4674. =item C<i_machcthr>
  4675.  
  4676. From F<i_machcthr.U>:
  4677.  
  4678. This variable conditionally defines the C<I_MACH_CTHREADS> symbol,
  4679. and indicates whether a C program should include <mach/cthreads.h>.
  4680.  
  4681. =item C<i_malloc>
  4682.  
  4683. From F<i_malloc.U>:
  4684.  
  4685. This variable conditionally defines the C<I_MALLOC> symbol, and indicates
  4686. whether a C program should include <malloc.h>.
  4687.  
  4688. =item C<i_math>
  4689.  
  4690. From F<i_math.U>:
  4691.  
  4692. This variable conditionally defines the C<I_MATH> symbol, and indicates
  4693. whether a C program may include <math.h>.
  4694.  
  4695. =item C<i_memory>
  4696.  
  4697. From F<i_memory.U>:
  4698.  
  4699. This variable conditionally defines the C<I_MEMORY> symbol, and indicates
  4700. whether a C program should include <memory.h>.
  4701.  
  4702. =item C<i_mntent>
  4703.  
  4704. From F<i_mntent.U>:
  4705.  
  4706. This variable conditionally defines the C<I_MNTENT> symbol, and indicates
  4707. whether a C program should include <mntent.h>.
  4708.  
  4709. =item C<i_ndbm>
  4710.  
  4711. From F<i_ndbm.U>:
  4712.  
  4713. This variable conditionally defines the C<I_NDBM> symbol, which
  4714. indicates to the C program that <ndbm.h> exists and should
  4715. be included.
  4716.  
  4717. =item C<i_netdb>
  4718.  
  4719. From F<i_netdb.U>:
  4720.  
  4721. This variable conditionally defines the C<I_NETDB> symbol, and indicates
  4722. whether a C program should include <netdb.h>.
  4723.  
  4724. =item C<i_neterrno>
  4725.  
  4726. From F<i_neterrno.U>:
  4727.  
  4728. This variable conditionally defines the C<I_NET_ERRNO> symbol, which
  4729. indicates to the C program that <net/errno.h> exists and should
  4730. be included.
  4731.  
  4732. =item C<i_netinettcp>
  4733.  
  4734. From F<i_netinettcp.U>:
  4735.  
  4736. This variable conditionally defines the C<I_NETINET_TCP> symbol,
  4737. and indicates whether a C program should include <netinet/tcp.h>.
  4738.  
  4739. =item C<i_niin>
  4740.  
  4741. From F<i_niin.U>:
  4742.  
  4743. This variable conditionally defines C<I_NETINET_IN>, which indicates
  4744. to the C program that it should include <netinet/in.h>. Otherwise,
  4745. you may try <sys/in.h>.
  4746.  
  4747. =item C<i_poll>
  4748.  
  4749. From F<i_poll.U>:
  4750.  
  4751. This variable conditionally defines the C<I_POLL> symbol, and indicates
  4752. whether a C program should include <poll.h>.
  4753.  
  4754. =item C<i_prot>
  4755.  
  4756. From F<i_prot.U>:
  4757.  
  4758. This variable conditionally defines the C<I_PROT> symbol, and indicates
  4759. whether a C program should include <prot.h>.
  4760.  
  4761. =item C<i_pthread>
  4762.  
  4763. From F<i_pthread.U>:
  4764.  
  4765. This variable conditionally defines the C<I_PTHREAD> symbol,
  4766. and indicates whether a C program should include <pthread.h>.
  4767.  
  4768. =item C<i_pwd>
  4769.  
  4770. From F<i_pwd.U>:
  4771.  
  4772. This variable conditionally defines C<I_PWD>, which indicates
  4773. to the C program that it should include <pwd.h>.
  4774.  
  4775. =item C<i_rpcsvcdbm>
  4776.  
  4777. From F<i_dbm.U>:
  4778.  
  4779. This variable conditionally defines the C<I_RPCSVC_DBM> symbol, which
  4780. indicates to the C program that <rpcsvc/dbm.h> exists and should
  4781. be included.  Some System V systems might need this instead of <dbm.h>.
  4782.  
  4783. =item C<i_sfio>
  4784.  
  4785. From F<i_sfio.U>:
  4786.  
  4787. This variable conditionally defines the C<I_SFIO> symbol,
  4788. and indicates whether a C program should include <sfio.h>.
  4789.  
  4790. =item C<i_sgtty>
  4791.  
  4792. From F<i_termio.U>:
  4793.  
  4794. This variable conditionally defines the C<I_SGTTY> symbol, which
  4795. indicates to the C program that it should include <sgtty.h> rather
  4796. than <termio.h>.
  4797.  
  4798. =item C<i_shadow>
  4799.  
  4800. From F<i_shadow.U>:
  4801.  
  4802. This variable conditionally defines the C<I_SHADOW> symbol, and indicates
  4803. whether a C program should include <shadow.h>.
  4804.  
  4805. =item C<i_socks>
  4806.  
  4807. From F<i_socks.U>:
  4808.  
  4809. This variable conditionally defines the C<I_SOCKS> symbol, and indicates
  4810. whether a C program should include <socks.h>.
  4811.  
  4812. =item C<i_stdarg>
  4813.  
  4814. From F<i_varhdr.U>:
  4815.  
  4816. This variable conditionally defines the C<I_STDARG> symbol, which
  4817. indicates to the C program that <stdarg.h> exists and should
  4818. be included.
  4819.  
  4820. =item C<i_stddef>
  4821.  
  4822. From F<i_stddef.U>:
  4823.  
  4824. This variable conditionally defines the C<I_STDDEF> symbol, which
  4825. indicates to the C program that <stddef.h> exists and should
  4826. be included.
  4827.  
  4828. =item C<i_stdlib>
  4829.  
  4830. From F<i_stdlib.U>:
  4831.  
  4832. This variable conditionally defines the C<I_STDLIB> symbol, which
  4833. indicates to the C program that <stdlib.h> exists and should
  4834. be included.
  4835.  
  4836. =item C<i_string>
  4837.  
  4838. From F<i_string.U>:
  4839.  
  4840. This variable conditionally defines the C<I_STRING> symbol, which
  4841. indicates that <string.h> should be included rather than <strings.h>.
  4842.  
  4843. =item C<i_sunmath>
  4844.  
  4845. From F<i_sunmath.U>:
  4846.  
  4847. This variable conditionally defines the C<I_SUNMATH> symbol, and indicates
  4848. whether a C program should include <sunmath.h>.
  4849.  
  4850. =item C<i_sysaccess>
  4851.  
  4852. From F<i_sysaccess.U>:
  4853.  
  4854. This variable conditionally defines the C<I_SYS_ACCESS> symbol,
  4855. and indicates whether a C program should include <sys/access.h>.
  4856.  
  4857. =item C<i_sysdir>
  4858.  
  4859. From F<i_sysdir.U>:
  4860.  
  4861. This variable conditionally defines the C<I_SYS_DIR> symbol, and indicates
  4862. whether a C program should include <sys/dir.h>.
  4863.  
  4864. =item C<i_sysfile>
  4865.  
  4866. From F<i_sysfile.U>:
  4867.  
  4868. This variable conditionally defines the C<I_SYS_FILE> symbol, and indicates
  4869. whether a C program should include <sys/file.h> to get C<R_OK> and friends.
  4870.  
  4871. =item C<i_sysfilio>
  4872.  
  4873. From F<i_sysioctl.U>:
  4874.  
  4875. This variable conditionally defines the C<I_SYS_FILIO> symbol, which
  4876. indicates to the C program that <sys/filio.h> exists and should
  4877. be included in preference to <sys/ioctl.h>.
  4878.  
  4879. =item C<i_sysin>
  4880.  
  4881. From F<i_niin.U>:
  4882.  
  4883. This variable conditionally defines C<I_SYS_IN>, which indicates
  4884. to the C program that it should include <sys/in.h> instead of
  4885. <netinet/in.h>.
  4886.  
  4887. =item C<i_sysioctl>
  4888.  
  4889. From F<i_sysioctl.U>:
  4890.  
  4891. This variable conditionally defines the C<I_SYS_IOCTL> symbol, which
  4892. indicates to the C program that <sys/ioctl.h> exists and should
  4893. be included.
  4894.  
  4895. =item C<i_syslog>
  4896.  
  4897. From F<i_syslog.U>:
  4898.  
  4899. This variable conditionally defines the C<I_SYSLOG> symbol,
  4900. and indicates whether a C program should include <syslog.h>.
  4901.  
  4902. =item C<i_sysmman>
  4903.  
  4904. From F<i_sysmman.U>:
  4905.  
  4906. This variable conditionally defines the C<I_SYS_MMAN> symbol, and
  4907. indicates whether a C program should include <sys/mman.h>.
  4908.  
  4909. =item C<i_sysmode>
  4910.  
  4911. From F<i_sysmode.U>:
  4912.  
  4913. This variable conditionally defines the C<I_SYSMODE> symbol,
  4914. and indicates whether a C program should include <sys/mode.h>.
  4915.  
  4916. =item C<i_sysmount>
  4917.  
  4918. From F<i_sysmount.U>:
  4919.  
  4920. This variable conditionally defines the C<I_SYSMOUNT> symbol,
  4921. and indicates whether a C program should include <sys/mount.h>.
  4922.  
  4923. =item C<i_sysndir>
  4924.  
  4925. From F<i_sysndir.U>:
  4926.  
  4927. This variable conditionally defines the C<I_SYS_NDIR> symbol, and indicates
  4928. whether a C program should include <sys/ndir.h>.
  4929.  
  4930. =item C<i_sysparam>
  4931.  
  4932. From F<i_sysparam.U>:
  4933.  
  4934. This variable conditionally defines the C<I_SYS_PARAM> symbol, and indicates
  4935. whether a C program should include <sys/param.h>.
  4936.  
  4937. =item C<i_sysresrc>
  4938.  
  4939. From F<i_sysresrc.U>:
  4940.  
  4941. This variable conditionally defines the C<I_SYS_RESOURCE> symbol,
  4942. and indicates whether a C program should include <sys/resource.h>.
  4943.  
  4944. =item C<i_syssecrt>
  4945.  
  4946. From F<i_syssecrt.U>:
  4947.  
  4948. This variable conditionally defines the C<I_SYS_SECURITY> symbol,
  4949. and indicates whether a C program should include <sys/security.h>.
  4950.  
  4951. =item C<i_sysselct>
  4952.  
  4953. From F<i_sysselct.U>:
  4954.  
  4955. This variable conditionally defines C<I_SYS_SELECT>, which indicates
  4956. to the C program that it should include <sys/select.h> in order to
  4957. get the definition of struct timeval.
  4958.  
  4959. =item C<i_syssockio>
  4960.  
  4961. From F<i_sysioctl.U>:
  4962.  
  4963. This variable conditionally defines C<I_SYS_SOCKIO> to indicate to the
  4964. C program that socket ioctl codes may be found in <sys/sockio.h>
  4965. instead of <sys/ioctl.h>.
  4966.  
  4967. =item C<i_sysstat>
  4968.  
  4969. From F<i_sysstat.U>:
  4970.  
  4971. This variable conditionally defines the C<I_SYS_STAT> symbol,
  4972. and indicates whether a C program should include <sys/stat.h>.
  4973.  
  4974. =item C<i_sysstatfs>
  4975.  
  4976. From F<i_sysstatfs.U>:
  4977.  
  4978. This variable conditionally defines the C<I_SYSSTATFS> symbol,
  4979. and indicates whether a C program should include <sys/statfs.h>.
  4980.  
  4981. =item C<i_sysstatvfs>
  4982.  
  4983. From F<i_sysstatvfs.U>:
  4984.  
  4985. This variable conditionally defines the C<I_SYSSTATVFS> symbol,
  4986. and indicates whether a C program should include <sys/statvfs.h>.
  4987.  
  4988. =item C<i_systime>
  4989.  
  4990. From F<i_time.U>:
  4991.  
  4992. This variable conditionally defines C<I_SYS_TIME>, which indicates
  4993. to the C program that it should include <sys/time.h>.
  4994.  
  4995. =item C<i_systimek>
  4996.  
  4997. From F<i_time.U>:
  4998.  
  4999. This variable conditionally defines C<I_SYS_TIME_KERNEL>, which
  5000. indicates to the C program that it should include <sys/time.h>
  5001. with C<KERNEL> defined.
  5002.  
  5003. =item C<i_systimes>
  5004.  
  5005. From F<i_systimes.U>:
  5006.  
  5007. This variable conditionally defines the C<I_SYS_TIMES> symbol, and indicates
  5008. whether a C program should include <sys/times.h>.
  5009.  
  5010. =item C<i_systypes>
  5011.  
  5012. From F<i_systypes.U>:
  5013.  
  5014. This variable conditionally defines the C<I_SYS_TYPES> symbol,
  5015. and indicates whether a C program should include <sys/types.h>.
  5016.  
  5017. =item C<i_sysuio>
  5018.  
  5019. From F<i_sysuio.U>:
  5020.  
  5021. This variable conditionally defines the C<I_SYSUIO> symbol, and indicates
  5022. whether a C program should include <sys/uio.h>.
  5023.  
  5024. =item C<i_sysun>
  5025.  
  5026. From F<i_sysun.U>:
  5027.  
  5028. This variable conditionally defines C<I_SYS_UN>, which indicates
  5029. to the C program that it should include <sys/un.h> to get C<UNIX>
  5030. domain socket definitions.
  5031.  
  5032. =item C<i_sysutsname>
  5033.  
  5034. From F<i_sysutsname.U>:
  5035.  
  5036. This variable conditionally defines the C<I_SYSUTSNAME> symbol,
  5037. and indicates whether a C program should include <sys/utsname.h>.
  5038.  
  5039. =item C<i_sysvfs>
  5040.  
  5041. From F<i_sysvfs.U>:
  5042.  
  5043. This variable conditionally defines the C<I_SYSVFS> symbol,
  5044. and indicates whether a C program should include <sys/vfs.h>.
  5045.  
  5046. =item C<i_syswait>
  5047.  
  5048. From F<i_syswait.U>:
  5049.  
  5050. This variable conditionally defines C<I_SYS_WAIT>, which indicates
  5051. to the C program that it should include <sys/wait.h>.
  5052.  
  5053. =item C<i_termio>
  5054.  
  5055. From F<i_termio.U>:
  5056.  
  5057. This variable conditionally defines the C<I_TERMIO> symbol, which
  5058. indicates to the C program that it should include <termio.h> rather
  5059. than <sgtty.h>.
  5060.  
  5061. =item C<i_termios>
  5062.  
  5063. From F<i_termio.U>:
  5064.  
  5065. This variable conditionally defines the C<I_TERMIOS> symbol, which
  5066. indicates to the C program that the C<POSIX> <termios.h> file is
  5067. to be included.
  5068.  
  5069. =item C<i_time>
  5070.  
  5071. From F<i_time.U>:
  5072.  
  5073. This variable conditionally defines C<I_TIME>, which indicates
  5074. to the C program that it should include <time.h>.
  5075.  
  5076. =item C<i_unistd>
  5077.  
  5078. From F<i_unistd.U>:
  5079.  
  5080. This variable conditionally defines the C<I_UNISTD> symbol, and indicates
  5081. whether a C program should include <unistd.h>.
  5082.  
  5083. =item C<i_ustat>
  5084.  
  5085. From F<i_ustat.U>:
  5086.  
  5087. This variable conditionally defines the C<I_USTAT> symbol, and indicates
  5088. whether a C program should include <ustat.h>.
  5089.  
  5090. =item C<i_utime>
  5091.  
  5092. From F<i_utime.U>:
  5093.  
  5094. This variable conditionally defines the C<I_UTIME> symbol, and indicates
  5095. whether a C program should include <utime.h>.
  5096.  
  5097. =item C<i_values>
  5098.  
  5099. From F<i_values.U>:
  5100.  
  5101. This variable conditionally defines the C<I_VALUES> symbol, and indicates
  5102. whether a C program may include <values.h> to get symbols like C<MAXLONG>
  5103. and friends.
  5104.  
  5105. =item C<i_varargs>
  5106.  
  5107. From F<i_varhdr.U>:
  5108.  
  5109. This variable conditionally defines C<I_VARARGS>, which indicates
  5110. to the C program that it should include <varargs.h>.
  5111.  
  5112. =item C<i_varhdr>
  5113.  
  5114. From F<i_varhdr.U>:
  5115.  
  5116. Contains the name of the header to be included to get va_dcl definition.
  5117. Typically one of F<varargs.h> or F<stdarg.h>.
  5118.  
  5119. =item C<i_vfork>
  5120.  
  5121. From F<i_vfork.U>:
  5122.  
  5123. This variable conditionally defines the C<I_VFORK> symbol, and indicates
  5124. whether a C program should include F<vfork.h>.
  5125.  
  5126. =item C<ignore_versioned_solibs>
  5127.  
  5128. From F<libs.U>:
  5129.  
  5130. This variable should be non-empty if non-versioned shared
  5131. libraries (F<libfoo.so.x.y>) are to be ignored (because they
  5132. cannot be linked against).
  5133.  
  5134. =item C<inc_version_list>
  5135.  
  5136. From F<inc_version_list.U>:
  5137.  
  5138. This variable specifies the list of subdirectories in over
  5139. which F<perl.c>:incpush() and F<lib/lib.pm> will automatically
  5140. search when adding directories to @C<INC>.  The elements in
  5141. the list are separated by spaces.  This is only useful
  5142. if you have a perl library directory tree structured like the
  5143. default one.  See C<INSTALL> for how this works.  The versioned
  5144. site_perl directory was introduced in 5.005, so that is the
  5145. lowest possible value.
  5146.  
  5147. =item C<inc_version_list_init>
  5148.  
  5149. From F<inc_version_list.U>:
  5150.  
  5151. This variable holds the same list as inc_version_list, but
  5152. each item is enclosed in double quotes and separated by commas, 
  5153. suitable for use in the C<PERL_INC_VERSION_LIST> initialization.
  5154.  
  5155. =item C<incpath>
  5156.  
  5157. From F<usrinc.U>:
  5158.  
  5159. This variable must preceed the normal include path to get hte
  5160. right one, as in F<$F<incpath/usr/include>> or F<$F<incpath/usr/lib>>.
  5161. Value can be "" or F</bsd43> on mips.
  5162.  
  5163. =item C<inews>
  5164.  
  5165. From F<Loc.U>:
  5166.  
  5167. This variable is defined but not used by Configure.
  5168. The value is a plain '' and is not useful.
  5169.  
  5170. =item C<installarchlib>
  5171.  
  5172. From F<archlib.U>:
  5173.  
  5174. This variable is really the same as archlibexp but may differ on
  5175. those systems using C<AFS>. For extra portability, only this variable
  5176. should be used in makefiles.
  5177.  
  5178. =item C<installbin>
  5179.  
  5180. From F<bin.U>:
  5181.  
  5182. This variable is the same as binexp unless C<AFS> is running in which case
  5183. the user is explicitely prompted for it. This variable should always
  5184. be used in your makefiles for maximum portability.
  5185.  
  5186. =item C<installhtml1dir>
  5187.  
  5188. From F<html1dir.U>:
  5189.  
  5190. This variable is really the same as html1direxp, unless you are 
  5191. using a different installprefix.  For extra portability, you 
  5192. should only use this variable within your makefiles.
  5193.  
  5194. =item C<installhtml3dir>
  5195.  
  5196. From F<html3dir.U>:
  5197.  
  5198. This variable is really the same as html3direxp, unless you are 
  5199. using a different installprefix.  For extra portability, you 
  5200. should only use this variable within your makefiles.
  5201.  
  5202. =item C<installman1dir>
  5203.  
  5204. From F<man1dir.U>:
  5205.  
  5206. This variable is really the same as man1direxp, unless you are using
  5207. C<AFS> in which case it points to the read/write location whereas
  5208. man1direxp only points to the read-only access location. For extra
  5209. portability, you should only use this variable within your makefiles.
  5210.  
  5211. =item C<installman3dir>
  5212.  
  5213. From F<man3dir.U>:
  5214.  
  5215. This variable is really the same as man3direxp, unless you are using
  5216. C<AFS> in which case it points to the read/write location whereas
  5217. man3direxp only points to the read-only access location. For extra
  5218. portability, you should only use this variable within your makefiles.
  5219.  
  5220. =item C<installprefix>
  5221.  
  5222. From F<installprefix.U>:
  5223.  
  5224. This variable holds the name of the directory below which 
  5225. "make install" will install the package.  For most users, this
  5226. is the same as prefix.  However, it is useful for
  5227. installing the software into a different (usually temporary)
  5228. location after which it can be bundled up and moved somehow
  5229. to the final location specified by prefix.
  5230.  
  5231. =item C<installprefixexp>
  5232.  
  5233. From F<installprefix.U>:
  5234.  
  5235. This variable holds the full absolute path of installprefix
  5236. with all F<~>-expansion done.
  5237.  
  5238. =item C<installprivlib>
  5239.  
  5240. From F<privlib.U>:
  5241.  
  5242. This variable is really the same as privlibexp but may differ on
  5243. those systems using C<AFS>. For extra portability, only this variable
  5244. should be used in makefiles.
  5245.  
  5246. =item C<installscript>
  5247.  
  5248. From F<scriptdir.U>:
  5249.  
  5250. This variable is usually the same as scriptdirexp, unless you are on
  5251. a system running C<AFS>, in which case they may differ slightly. You
  5252. should always use this variable within your makefiles for portability.
  5253.  
  5254. =item C<installsitearch>
  5255.  
  5256. From F<sitearch.U>:
  5257.  
  5258. This variable is really the same as sitearchexp but may differ on
  5259. those systems using C<AFS>. For extra portability, only this variable
  5260. should be used in makefiles.
  5261.  
  5262. =item C<installsitebin>
  5263.  
  5264. From F<sitebin.U>:
  5265.  
  5266. This variable is usually the same as sitebinexp, unless you are on
  5267. a system running C<AFS>, in which case they may differ slightly. You
  5268. should always use this variable within your makefiles for portability.
  5269.  
  5270. =item C<installsitehtml1dir>
  5271.  
  5272. From F<sitehtml1dir.U>:
  5273.  
  5274. This variable is really the same as sitehtml1direxp, unless you are using
  5275. C<AFS> in which case it points to the read/write location whereas
  5276. html1direxp only points to the read-only access location. For extra
  5277. portability, you should only use this variable within your makefiles.
  5278.  
  5279. =item C<installsitehtml3dir>
  5280.  
  5281. From F<sitehtml3dir.U>:
  5282.  
  5283. This variable is really the same as sitehtml3direxp, unless you are using
  5284. C<AFS> in which case it points to the read/write location whereas
  5285. html3direxp only points to the read-only access location. For extra
  5286. portability, you should only use this variable within your makefiles.
  5287.  
  5288. =item C<installsitelib>
  5289.  
  5290. From F<sitelib.U>:
  5291.  
  5292. This variable is really the same as sitelibexp but may differ on
  5293. those systems using C<AFS>. For extra portability, only this variable
  5294. should be used in makefiles.
  5295.  
  5296. =item C<installsiteman1dir>
  5297.  
  5298. From F<siteman1dir.U>:
  5299.  
  5300. This variable is really the same as siteman1direxp, unless you are using
  5301. C<AFS> in which case it points to the read/write location whereas
  5302. man1direxp only points to the read-only access location. For extra
  5303. portability, you should only use this variable within your makefiles.
  5304.  
  5305. =item C<installsiteman3dir>
  5306.  
  5307. From F<siteman3dir.U>:
  5308.  
  5309. This variable is really the same as siteman3direxp, unless you are using
  5310. C<AFS> in which case it points to the read/write location whereas
  5311. man3direxp only points to the read-only access location. For extra
  5312. portability, you should only use this variable within your makefiles.
  5313.  
  5314. =item C<installsitescript>
  5315.  
  5316. From F<sitescript.U>:
  5317.  
  5318. This variable is usually the same as sitescriptexp, unless you are on
  5319. a system running C<AFS>, in which case they may differ slightly. You
  5320. should always use this variable within your makefiles for portability.
  5321.  
  5322. =item C<installstyle>
  5323.  
  5324. From F<installstyle.U>:
  5325.  
  5326. This variable describes the C<style> of the perl installation.
  5327. This is intended to be useful for tools that need to
  5328. manipulate entire perl distributions.  Perl itself doesn't use
  5329. this to find its libraries -- the library directories are
  5330. stored directly in F<Config.pm>.  Currently, there are only two
  5331. styles:  C<lib> and F<lib/perl5>.  The default library locations
  5332. (e.g. privlib, sitelib) are either F<$prefix/lib> or
  5333. F<$prefix/lib/perl5>.  The former is useful if $prefix is a
  5334. directory dedicated to perl (e.g. F</opt/perl>), while the latter
  5335. is useful if $prefix is shared by many packages, e.g. if
  5336. $prefix=F</usr/local>.
  5337.  
  5338. Unfortunately, while this C<style> variable is used to set
  5339. defaults for all three directory hierarchies (core, vendor, and
  5340. site), there is no guarantee that the same style is actually
  5341. appropriate for all those directories.  For example, $prefix
  5342. might be F</opt/perl>, but $siteprefix might be F</usr/local>.
  5343. (Perhaps, in retrospect, the C<lib> style should never have been
  5344. supported, but it did seem like a nice idea at the time.)
  5345.  
  5346. The situation is even less clear for tools such as MakeMaker
  5347. that can be used to install additional modules into
  5348. non-standard places.  For example, if a user intends to install
  5349. a module into a private directory (perhaps by setting C<PREFIX> on
  5350. the F<Makefile.PL> command line), then there is no reason to
  5351. assume that the Configure-time $installstyle setting will be
  5352. relevant for that C<PREFIX>.
  5353.  
  5354. This may later be extended to include other information, so
  5355. be careful with pattern-matching on the results.
  5356.  
  5357. For compatibility with F<perl5.005> and earlier, the default
  5358. setting is based on whether or not $prefix contains the string
  5359. C<perl>.
  5360.  
  5361. =item C<installusrbinperl>
  5362.  
  5363. From F<instubperl.U>:
  5364.  
  5365. This variable tells whether Perl should be installed also as
  5366. F</usr/bin/perl> in addition to
  5367. F<$installbin/perl>
  5368.  
  5369. =item C<installvendorarch>
  5370.  
  5371. From F<vendorarch.U>:
  5372.  
  5373. This variable is really the same as vendorarchexp but may differ on
  5374. those systems using C<AFS>. For extra portability, only this variable
  5375. should be used in makefiles.
  5376.  
  5377. =item C<installvendorbin>
  5378.  
  5379. From F<vendorbin.U>:
  5380.  
  5381. This variable is really the same as vendorbinexp but may differ on
  5382. those systems using C<AFS>. For extra portability, only this variable
  5383. should be used in makefiles.
  5384.  
  5385. =item C<installvendorhtml1dir>
  5386.  
  5387. From F<vendorhtml1dir.U>:
  5388.  
  5389. This variable is really the same as vendorhtml1direxp but may differ on
  5390. those systems using C<AFS>. For extra portability, only this variable
  5391. should be used in makefiles.
  5392.  
  5393. =item C<installvendorhtml3dir>
  5394.  
  5395. From F<vendorhtml3dir.U>:
  5396.  
  5397. This variable is really the same as vendorhtml3direxp but may differ on
  5398. those systems using C<AFS>. For extra portability, only this variable
  5399. should be used in makefiles.
  5400.  
  5401. =item C<installvendorlib>
  5402.  
  5403. From F<vendorlib.U>:
  5404.  
  5405. This variable is really the same as vendorlibexp but may differ on
  5406. those systems using C<AFS>. For extra portability, only this variable
  5407. should be used in makefiles.
  5408.  
  5409. =item C<installvendorman1dir>
  5410.  
  5411. From F<vendorman1dir.U>:
  5412.  
  5413. This variable is really the same as vendorman1direxp but may differ on
  5414. those systems using C<AFS>. For extra portability, only this variable
  5415. should be used in makefiles.
  5416.  
  5417. =item C<installvendorman3dir>
  5418.  
  5419. From F<vendorman3dir.U>:
  5420.  
  5421. This variable is really the same as vendorman3direxp but may differ on
  5422. those systems using C<AFS>. For extra portability, only this variable
  5423. should be used in makefiles.
  5424.  
  5425. =item C<installvendorscript>
  5426.  
  5427. From F<vendorscript.U>:
  5428.  
  5429. This variable is really the same as vendorscriptexp but may differ on
  5430. those systems using C<AFS>. For extra portability, only this variable
  5431. should be used in makefiles.
  5432.  
  5433. =item C<intsize>
  5434.  
  5435. From F<intsize.U>:
  5436.  
  5437. This variable contains the value of the C<INTSIZE> symbol, which
  5438. indicates to the C program how many bytes there are in an int.
  5439.  
  5440. =item C<issymlink>
  5441.  
  5442. From F<issymlink.U>:
  5443.  
  5444. This variable holds the test command to test for a symbolic link
  5445. (if they are supported).  Typical values include C<test -h> and
  5446. C<test -L>.
  5447.  
  5448. =item C<ivdformat>
  5449.  
  5450. From F<perlxvf.U>:
  5451.  
  5452. This variable contains the format string used for printing
  5453. a Perl C<IV> as a signed decimal integer. 
  5454.  
  5455. =item C<ivsize>
  5456.  
  5457. From F<perlxv.U>:
  5458.  
  5459. This variable is the size of an C<IV> in bytes.
  5460.  
  5461. =item C<ivtype>
  5462.  
  5463. From F<perlxv.U>:
  5464.  
  5465. This variable contains the C type used for Perl's C<IV>.
  5466.  
  5467. =back
  5468.  
  5469. =head2 k
  5470.  
  5471. =over 4
  5472.  
  5473. =item C<known_extensions>
  5474.  
  5475. From F<Extensions.U>:
  5476.  
  5477. This variable holds a list of all C<XS> extensions included in 
  5478. the package.
  5479.  
  5480. =item C<ksh>
  5481.  
  5482. From F<Loc.U>:
  5483.  
  5484. This variable is defined but not used by Configure.
  5485. The value is a plain '' and is not useful.
  5486.  
  5487. =back
  5488.  
  5489. =head2 l
  5490.  
  5491. =over 4
  5492.  
  5493. =item C<ld>
  5494.  
  5495. From F<dlsrc.U>:
  5496.  
  5497. This variable indicates the program to be used to link
  5498. libraries for dynamic loading.  On some systems, it is C<ld>.
  5499. On C<ELF> systems, it should be $cc.  Mostly, we'll try to respect
  5500. the hint file setting.
  5501.  
  5502. =item C<lddlflags>
  5503.  
  5504. From F<dlsrc.U>:
  5505.  
  5506. This variable contains any special flags that might need to be
  5507. passed to $ld to create a shared library suitable for dynamic
  5508. loading.  It is up to the makefile to use it.  For hpux, it
  5509. should be C<-b>.  For sunos 4.1, it is empty.
  5510.  
  5511. =item C<ldflags>
  5512.  
  5513. From F<ccflags.U>:
  5514.  
  5515. This variable contains any additional C loader flags desired by
  5516. the user.  It is up to the Makefile to use this.
  5517.  
  5518. =item C<ldflags_uselargefiles>
  5519.  
  5520. From F<uselfs.U>:
  5521.  
  5522. This variable contains the loader flags needed by large file builds
  5523. and added to ldflags by hints files.
  5524.  
  5525. =item C<ldlibpthname>
  5526.  
  5527. From F<libperl.U>:
  5528.  
  5529. This variable holds the name of the shared library
  5530. search path, often C<LD_LIBRARY_PATH>.  To get an empty
  5531. string, the hints file must set this to C<none>.
  5532.  
  5533. =item C<less>
  5534.  
  5535. From F<Loc.U>:
  5536.  
  5537. This variable is used internally by Configure to determine the
  5538. full pathname (if any) of the less program.  After Configure runs,
  5539. the value is reset to a plain C<less> and is not useful.
  5540.  
  5541. =item C<lib_ext>
  5542.  
  5543. From F<Unix.U>:
  5544.  
  5545. This is an old synonym for _a.
  5546.  
  5547. =item C<libc>
  5548.  
  5549. From F<libc.U>:
  5550.  
  5551. This variable contains the location of the C library.
  5552.  
  5553. =item C<libperl>
  5554.  
  5555. From F<libperl.U>:
  5556.  
  5557. The perl executable is obtained by linking F<perlmain.c> with
  5558. libperl, any static extensions (usually just DynaLoader),
  5559. and any other libraries needed on this system.  libperl
  5560. is usually F<libperl.a>, but can also be F<libperl.so.xxx> if
  5561. the user wishes to build a perl executable with a shared
  5562. library.
  5563.  
  5564. =item C<libpth>
  5565.  
  5566. From F<libpth.U>:
  5567.  
  5568. This variable holds the general path (space-separated) used to find
  5569. libraries. It is intended to be used by other units.
  5570.  
  5571. =item C<libs>
  5572.  
  5573. From F<libs.U>:
  5574.  
  5575. This variable holds the additional libraries we want to use.
  5576. It is up to the Makefile to deal with it.  The list can be empty.
  5577.  
  5578. =item C<libsdirs>
  5579.  
  5580. From F<libs.U>:
  5581.  
  5582. This variable holds the directory names aka dirnames of the libraries
  5583. we found and accepted, duplicates are removed.
  5584.  
  5585. =item C<libsfiles>
  5586.  
  5587. From F<libs.U>:
  5588.  
  5589. This variable holds the filenames aka basenames of the libraries
  5590. we found and accepted.
  5591.  
  5592. =item C<libsfound>
  5593.  
  5594. From F<libs.U>:
  5595.  
  5596. This variable holds the full pathnames of the libraries
  5597. we found and accepted.
  5598.  
  5599. =item C<libspath>
  5600.  
  5601. From F<libs.U>:
  5602.  
  5603. This variable holds the directory names probed for libraries.
  5604.  
  5605. =item C<libswanted>
  5606.  
  5607. From F<Myinit.U>:
  5608.  
  5609. This variable holds a list of all the libraries we want to
  5610. search.  The order is chosen to pick up the c library
  5611. ahead of ucb or bsd libraries for SVR4.
  5612.  
  5613. =item C<libswanted_uselargefiles>
  5614.  
  5615. From F<uselfs.U>:
  5616.  
  5617. This variable contains the libraries needed by large file builds
  5618. and added to ldflags by hints files.  It is a space separated list
  5619. of the library names without the C<lib> prefix or any suffix, just
  5620. like F<libswanted.>.
  5621.  
  5622. =item C<line>
  5623.  
  5624. From F<Loc.U>:
  5625.  
  5626. This variable is defined but not used by Configure.
  5627. The value is a plain '' and is not useful.
  5628.  
  5629. =item C<lint>
  5630.  
  5631. From F<Loc.U>:
  5632.  
  5633. This variable is defined but not used by Configure.
  5634. The value is a plain '' and is not useful.
  5635.  
  5636. =item C<lkflags>
  5637.  
  5638. From F<ccflags.U>:
  5639.  
  5640. This variable contains any additional C partial linker flags desired by
  5641. the user.  It is up to the Makefile to use this.
  5642.  
  5643. =item C<ln>
  5644.  
  5645. From F<Loc.U>:
  5646.  
  5647. This variable is used internally by Configure to determine the
  5648. full pathname (if any) of the ln program.  After Configure runs,
  5649. the value is reset to a plain C<ln> and is not useful.
  5650.  
  5651. =item C<lns>
  5652.  
  5653. From F<lns.U>:
  5654.  
  5655. This variable holds the name of the command to make 
  5656. symbolic links (if they are supported).  It can be used
  5657. in the Makefile. It is either C<ln -s> or C<ln>
  5658.  
  5659. =item C<localtime_r_proto>
  5660.  
  5661. From F<d_localtime_r.U>:
  5662.  
  5663. This variable encodes the prototype of localtime_r.
  5664. It is zero if d_localtime_r is undef, and one of the
  5665. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_localtime_r
  5666. is defined.
  5667.  
  5668. =item C<locincpth>
  5669.  
  5670. From F<ccflags.U>:
  5671.  
  5672. This variable contains a list of additional directories to be
  5673. searched by the compiler.  The appropriate C<-I> directives will
  5674. be added to ccflags.  This is intended to simplify setting
  5675. local directories from the Configure command line.
  5676. It's not much, but it parallels the loclibpth stuff in F<libpth.U>.
  5677.  
  5678. =item C<loclibpth>
  5679.  
  5680. From F<libpth.U>:
  5681.  
  5682. This variable holds the paths (space-separated) used to find local
  5683. libraries.  It is prepended to libpth, and is intended to be easily
  5684. set from the command line.
  5685.  
  5686. =item C<longdblsize>
  5687.  
  5688. From F<d_longdbl.U>:
  5689.  
  5690. This variable contains the value of the C<LONG_DOUBLESIZE> symbol, which
  5691. indicates to the C program how many bytes there are in a long double,
  5692. if this system supports long doubles.
  5693.  
  5694. =item C<longlongsize>
  5695.  
  5696. From F<d_longlong.U>:
  5697.  
  5698. This variable contains the value of the C<LONGLONGSIZE> symbol, which
  5699. indicates to the C program how many bytes there are in a long long,
  5700. if this system supports long long.
  5701.  
  5702. =item C<longsize>
  5703.  
  5704. From F<intsize.U>:
  5705.  
  5706. This variable contains the value of the C<LONGSIZE> symbol, which
  5707. indicates to the C program how many bytes there are in a long.
  5708.  
  5709. =item C<lp>
  5710.  
  5711. From F<Loc.U>:
  5712.  
  5713. This variable is defined but not used by Configure.
  5714. The value is a plain '' and is not useful.
  5715.  
  5716. =item C<lpr>
  5717.  
  5718. From F<Loc.U>:
  5719.  
  5720. This variable is defined but not used by Configure.
  5721. The value is a plain '' and is not useful.
  5722.  
  5723. =item C<ls>
  5724.  
  5725. From F<Loc.U>:
  5726.  
  5727. This variable is used internally by Configure to determine the
  5728. full pathname (if any) of the ls program.  After Configure runs,
  5729. the value is reset to a plain C<ls> and is not useful.
  5730.  
  5731. =item C<lseeksize>
  5732.  
  5733. From F<lseektype.U>:
  5734.  
  5735. This variable defines lseektype to be something like off_t, long, 
  5736. or whatever type is used to declare lseek offset's type in the
  5737. kernel (which also appears to be lseek's return type).
  5738.  
  5739. =item C<lseektype>
  5740.  
  5741. From F<lseektype.U>:
  5742.  
  5743. This variable defines lseektype to be something like off_t, long, 
  5744. or whatever type is used to declare lseek offset's type in the
  5745. kernel (which also appears to be lseek's return type).
  5746.  
  5747. =back
  5748.  
  5749. =head2 m
  5750.  
  5751. =over 4
  5752.  
  5753. =item C<mail>
  5754.  
  5755. From F<Loc.U>:
  5756.  
  5757. This variable is defined but not used by Configure.
  5758. The value is a plain '' and is not useful.
  5759.  
  5760. =item C<mailx>
  5761.  
  5762. From F<Loc.U>:
  5763.  
  5764. This variable is defined but not used by Configure.
  5765. The value is a plain '' and is not useful.
  5766.  
  5767. =item C<make>
  5768.  
  5769. From F<Loc.U>:
  5770.  
  5771. This variable is used internally by Configure to determine the
  5772. full pathname (if any) of the make program.  After Configure runs,
  5773. the value is reset to a plain C<make> and is not useful.
  5774.  
  5775. =item C<make_set_make>
  5776.  
  5777. From F<make.U>:
  5778.  
  5779. Some versions of C<make> set the variable C<MAKE>.  Others do not.
  5780. This variable contains the string to be included in F<Makefile.SH>
  5781. so that C<MAKE> is set if needed, and not if not needed.
  5782. Possible values are:
  5783.  
  5784. make_set_make=C<#>        # If your make program handles this for you,
  5785.  
  5786. make_set_make=C<MAKE=$make>    # if it doesn't.
  5787.  
  5788. This uses a comment character to distinguish a
  5789. C<set> value (from a previous F<config.sh> or Configure C<-D> option)
  5790. from an uncomputed value.
  5791.  
  5792. =item C<mallocobj>
  5793.  
  5794. From F<mallocsrc.U>:
  5795.  
  5796. This variable contains the name of the F<malloc.o> that this package
  5797. generates, if that F<malloc.o> is preferred over the system malloc.
  5798. Otherwise the value is null.  This variable is intended for generating
  5799. Makefiles.  See mallocsrc.
  5800.  
  5801. =item C<mallocsrc>
  5802.  
  5803. From F<mallocsrc.U>:
  5804.  
  5805. This variable contains the name of the F<malloc.c> that comes with
  5806. the package, if that F<malloc.c> is preferred over the system malloc.
  5807. Otherwise the value is null.  This variable is intended for generating
  5808. Makefiles.
  5809.  
  5810. =item C<malloctype>
  5811.  
  5812. From F<mallocsrc.U>:
  5813.  
  5814. This variable contains the kind of ptr returned by malloc and realloc.
  5815.  
  5816. =item C<man1dir>
  5817.  
  5818. From F<man1dir.U>:
  5819.  
  5820. This variable contains the name of the directory in which manual
  5821. source pages are to be put.  It is the responsibility of the
  5822. F<Makefile.SH> to get the value of this into the proper command.
  5823. You must be prepared to do the F<~name> expansion yourself.
  5824.  
  5825. =item C<man1direxp>
  5826.  
  5827. From F<man1dir.U>:
  5828.  
  5829. This variable is the same as the man1dir variable, but is filename
  5830. expanded at configuration time, for convenient use in makefiles.
  5831.  
  5832. =item C<man1ext>
  5833.  
  5834. From F<man1dir.U>:
  5835.  
  5836. This variable contains the extension that the manual page should
  5837. have: one of C<n>, C<l>, or C<1>.  The Makefile must supply the F<.>.
  5838. See man1dir.
  5839.  
  5840. =item C<man3dir>
  5841.  
  5842. From F<man3dir.U>:
  5843.  
  5844. This variable contains the name of the directory in which manual
  5845. source pages are to be put.  It is the responsibility of the
  5846. F<Makefile.SH> to get the value of this into the proper command.
  5847. You must be prepared to do the F<~name> expansion yourself.
  5848.  
  5849. =item C<man3direxp>
  5850.  
  5851. From F<man3dir.U>:
  5852.  
  5853. This variable is the same as the man3dir variable, but is filename
  5854. expanded at configuration time, for convenient use in makefiles.
  5855.  
  5856. =item C<man3ext>
  5857.  
  5858. From F<man3dir.U>:
  5859.  
  5860. This variable contains the extension that the manual page should
  5861. have: one of C<n>, C<l>, or C<3>.  The Makefile must supply the F<.>.
  5862. See man3dir.
  5863.  
  5864. =back
  5865.  
  5866. =head2 M
  5867.  
  5868. =over 4
  5869.  
  5870. =item C<Mcc>
  5871.  
  5872. From F<Loc.U>:
  5873.  
  5874. This variable is used internally by Configure to determine the
  5875. full pathname (if any) of the Mcc program.  After Configure runs,
  5876. the value is reset to a plain C<Mcc> and is not useful.
  5877.  
  5878. =item C<mips_type>
  5879.  
  5880. From F<usrinc.U>:
  5881.  
  5882. This variable holds the environment type for the mips system.
  5883. Possible values are "BSD 4.3" and "System V".
  5884.  
  5885. =item C<mistrustnm>
  5886.  
  5887. From F<Csym.U>:
  5888.  
  5889. This variable can be used to establish a fallthrough for the cases
  5890. where nm fails to find a symbol.  If usenm is false or usenm is true
  5891. and mistrustnm is false, this variable has no effect.  If usenm is true
  5892. and mistrustnm is C<compile>, a test program will be compiled to try to
  5893. find any symbol that can't be located via nm lookup.  If mistrustnm is
  5894. C<run>, the test program will be run as well as being compiled.
  5895.  
  5896. =item C<mkdir>
  5897.  
  5898. From F<Loc.U>:
  5899.  
  5900. This variable is used internally by Configure to determine the
  5901. full pathname (if any) of the mkdir program.  After Configure runs,
  5902. the value is reset to a plain C<mkdir> and is not useful.
  5903.  
  5904. =item C<mmaptype>
  5905.  
  5906. From F<d_mmap.U>:
  5907.  
  5908. This symbol contains the type of pointer returned by mmap()
  5909. (and simultaneously the type of the first argument).
  5910. It can be C<void *> or C<caddr_t>.
  5911.  
  5912. =item C<modetype>
  5913.  
  5914. From F<modetype.U>:
  5915.  
  5916. This variable defines modetype to be something like mode_t, 
  5917. int, unsigned short, or whatever type is used to declare file 
  5918. modes for system calls.
  5919.  
  5920. =item C<more>
  5921.  
  5922. From F<Loc.U>:
  5923.  
  5924. This variable is used internally by Configure to determine the
  5925. full pathname (if any) of the more program.  After Configure runs,
  5926. the value is reset to a plain C<more> and is not useful.
  5927.  
  5928. =item C<multiarch>
  5929.  
  5930. From F<multiarch.U>:
  5931.  
  5932. This variable conditionally defines the C<MULTIARCH> symbol
  5933. which signifies the presence of multiplatform files.
  5934. This is normally set by hints files.
  5935.  
  5936. =item C<mv>
  5937.  
  5938. From F<Loc.U>:
  5939.  
  5940. This variable is defined but not used by Configure.
  5941. The value is a plain '' and is not useful.
  5942.  
  5943. =item C<myarchname>
  5944.  
  5945. From F<archname.U>:
  5946.  
  5947. This variable holds the architecture name computed by Configure in
  5948. a previous run. It is not intended to be perused by any user and
  5949. should never be set in a hint file.
  5950.  
  5951. =item C<mydomain>
  5952.  
  5953. From F<myhostname.U>:
  5954.  
  5955. This variable contains the eventual value of the C<MYDOMAIN> symbol,
  5956. which is the domain of the host the program is going to run on.
  5957. The domain must be appended to myhostname to form a complete host name.
  5958. The dot comes with mydomain, and need not be supplied by the program.
  5959.  
  5960. =item C<myhostname>
  5961.  
  5962. From F<myhostname.U>:
  5963.  
  5964. This variable contains the eventual value of the C<MYHOSTNAME> symbol,
  5965. which is the name of the host the program is going to run on.
  5966. The domain is not kept with hostname, but must be gotten from mydomain.
  5967. The dot comes with mydomain, and need not be supplied by the program.
  5968.  
  5969. =item C<myuname>
  5970.  
  5971. From F<Oldconfig.U>:
  5972.  
  5973. The output of C<uname -a> if available, otherwise the hostname. On Xenix,
  5974. pseudo variables assignments in the output are stripped, thank you. The
  5975. whole thing is then lower-cased.
  5976.  
  5977. =back
  5978.  
  5979. =head2 n
  5980.  
  5981. =over 4
  5982.  
  5983. =item C<n>
  5984.  
  5985. From F<n.U>:
  5986.  
  5987. This variable contains the C<-n> flag if that is what causes the echo
  5988. command to suppress newline.  Otherwise it is null.  Correct usage is
  5989. $echo $n "prompt for a question: $c".
  5990.  
  5991. =item C<need_va_copy>
  5992.  
  5993. From F<need_va_copy.U>:
  5994.  
  5995. This symbol, if defined, indicates that the system stores
  5996. the variable argument list datatype, va_list, in a format
  5997. that cannot be copied by simple assignment, so that some
  5998. other means must be used when copying is required.
  5999. As such systems vary in their provision (or non-provision)
  6000. of copying mechanisms, F<handy.h> defines a platform-
  6001. C<independent> macro, Perl_va_copy(src, dst), to do the job.
  6002.  
  6003. =item C<netdb_hlen_type>
  6004.  
  6005. From F<netdbtype.U>:
  6006.  
  6007. This variable holds the type used for the 2nd argument to
  6008. gethostbyaddr().  Usually, this is int or size_t or unsigned.
  6009. This is only useful if you have gethostbyaddr(), naturally.
  6010.  
  6011. =item C<netdb_host_type>
  6012.  
  6013. From F<netdbtype.U>:
  6014.  
  6015. This variable holds the type used for the 1st argument to
  6016. gethostbyaddr().  Usually, this is char * or void *,  possibly
  6017. with or without a const prefix.
  6018. This is only useful if you have gethostbyaddr(), naturally.
  6019.  
  6020. =item C<netdb_name_type>
  6021.  
  6022. From F<netdbtype.U>:
  6023.  
  6024. This variable holds the type used for the argument to
  6025. gethostbyname().  Usually, this is char * or const char *.
  6026. This is only useful if you have gethostbyname(), naturally.
  6027.  
  6028. =item C<netdb_net_type>
  6029.  
  6030. From F<netdbtype.U>:
  6031.  
  6032. This variable holds the type used for the 1st argument to
  6033. getnetbyaddr().  Usually, this is int or long.
  6034. This is only useful if you have getnetbyaddr(), naturally.
  6035.  
  6036. =item C<nm>
  6037.  
  6038. From F<Loc.U>:
  6039.  
  6040. This variable is used internally by Configure to determine the
  6041. full pathname (if any) of the nm program.  After Configure runs,
  6042. the value is reset to a plain C<nm> and is not useful.
  6043.  
  6044. =item C<nm_opt>
  6045.  
  6046. From F<usenm.U>:
  6047.  
  6048. This variable holds the options that may be necessary for nm.
  6049.  
  6050. =item C<nm_so_opt>
  6051.  
  6052. From F<usenm.U>:
  6053.  
  6054. This variable holds the options that may be necessary for nm
  6055. to work on a shared library but that can not be used on an
  6056. archive library.  Currently, this is only used by Linux, where
  6057. nm --dynamic is *required* to get symbols from an C<ELF> library which
  6058. has been stripped, but nm --dynamic is *fatal* on an archive library.
  6059. Maybe Linux should just always set usenm=false.
  6060.  
  6061. =item C<nonxs_ext>
  6062.  
  6063. From F<Extensions.U>:
  6064.  
  6065. This variable holds a list of all non-xs extensions included
  6066. in the package.  All of them will be built.
  6067.  
  6068. =item C<nroff>
  6069.  
  6070. From F<Loc.U>:
  6071.  
  6072. This variable is used internally by Configure to determine the
  6073. full pathname (if any) of the nroff program.  After Configure runs,
  6074. the value is reset to a plain C<nroff> and is not useful.
  6075.  
  6076. =item C<nv_preserves_uv_bits>
  6077.  
  6078. From F<perlxv.U>:
  6079.  
  6080. This variable indicates how many of bits type uvtype
  6081. a variable nvtype can preserve.
  6082.  
  6083. =item C<nveformat>
  6084.  
  6085. From F<perlxvf.U>:
  6086.  
  6087. This variable contains the format string used for printing
  6088. a Perl C<NV> using %e-ish floating point format.
  6089.  
  6090. =item C<nvEUformat>
  6091.  
  6092. From F<perlxvf.U>:
  6093.  
  6094. This variable contains the format string used for printing
  6095. a Perl C<NV> using %E-ish floating point format.
  6096.  
  6097. =item C<nvfformat>
  6098.  
  6099. From F<perlxvf.U>:
  6100.  
  6101. This variable confains the format string used for printing
  6102. a Perl C<NV> using %f-ish floating point format.
  6103.  
  6104. =item C<nvFUformat>
  6105.  
  6106. From F<perlxvf.U>:
  6107.  
  6108. This variable confains the format string used for printing
  6109. a Perl C<NV> using %F-ish floating point format.
  6110.  
  6111. =item C<nvgformat>
  6112.  
  6113. From F<perlxvf.U>:
  6114.  
  6115. This variable contains the format string used for printing
  6116. a Perl C<NV> using %g-ish floating point format.
  6117.  
  6118. =item C<nvGUformat>
  6119.  
  6120. From F<perlxvf.U>:
  6121.  
  6122. This variable contains the format string used for printing
  6123. a Perl C<NV> using %G-ish floating point format.
  6124.  
  6125. =item C<nvsize>
  6126.  
  6127. From F<perlxv.U>:
  6128.  
  6129. This variable is the size of an C<NV> in bytes.
  6130.  
  6131. =item C<nvtype>
  6132.  
  6133. From F<perlxv.U>:
  6134.  
  6135. This variable contains the C type used for Perl's C<NV>.
  6136.  
  6137. =back
  6138.  
  6139. =head2 o
  6140.  
  6141. =over 4
  6142.  
  6143. =item C<o_nonblock>
  6144.  
  6145. From F<nblock_io.U>:
  6146.  
  6147. This variable bears the symbol value to be used during open() or fcntl()
  6148. to turn on non-blocking I/O for a file descriptor. If you wish to switch
  6149. between blocking and non-blocking, you may try ioctl(C<FIOSNBIO>) instead,
  6150. but that is only supported by some devices.
  6151.  
  6152. =item C<obj_ext>
  6153.  
  6154. From F<Unix.U>:
  6155.  
  6156. This is an old synonym for _o.
  6157.  
  6158. =item C<old_pthread_create_joinable>
  6159.  
  6160. From F<d_pthrattrj.U>:
  6161.  
  6162. This variable defines the constant to use for creating joinable
  6163. (aka undetached) pthreads.  Unused if F<pthread.h> defines
  6164. C<PTHREAD_CREATE_JOINABLE>.  If used, possible values are
  6165. C<PTHREAD_CREATE_UNDETACHED> and C<__UNDETACHED>.
  6166.  
  6167. =item C<optimize>
  6168.  
  6169. From F<ccflags.U>:
  6170.  
  6171. This variable contains any F<optimizer/debugger> flag that should be used.
  6172. It is up to the Makefile to use it.
  6173.  
  6174. =item C<orderlib>
  6175.  
  6176. From F<orderlib.U>:
  6177.  
  6178. This variable is C<true> if the components of libraries must be ordered
  6179. (with `lorder $* | tsort`) before placing them in an archive.  Set to
  6180. C<false> if ranlib or ar can generate random libraries.
  6181.  
  6182. =item C<osname>
  6183.  
  6184. From F<Oldconfig.U>:
  6185.  
  6186. This variable contains the operating system name (e.g. sunos,
  6187. solaris, hpux, etc.).  It can be useful later on for setting
  6188. defaults.  Any spaces are replaced with underscores.  It is set
  6189. to a null string if we can't figure it out.
  6190.  
  6191. =item C<osvers>
  6192.  
  6193. From F<Oldconfig.U>:
  6194.  
  6195. This variable contains the operating system version (e.g.
  6196. 4.1.3, 5.2, etc.).  It is primarily used for helping select
  6197. an appropriate hints file, but might be useful elsewhere for
  6198. setting defaults.  It is set to '' if we can't figure it out.
  6199. We try to be flexible about how much of the version number
  6200. to keep, e.g. if 4.1.1, 4.1.2, and 4.1.3 are essentially the
  6201. same for this package, hints files might just be F<os_4.0> or
  6202. F<os_4.1>, etc., not keeping separate files for each little release.
  6203.  
  6204. =item C<otherlibdirs>
  6205.  
  6206. From F<otherlibdirs.U>:
  6207.  
  6208. This variable contains a colon-separated set of paths for the perl
  6209. binary to search for additional library files or modules.
  6210. These directories will be tacked to the end of @C<INC>.
  6211. Perl will automatically search below each path for version-
  6212. and architecture-specific directories.  See inc_version_list
  6213. for more details.
  6214. A value of C< > means C<none> and is used to preserve this value
  6215. for the next run through Configure.
  6216.  
  6217. =back
  6218.  
  6219. =head2 p
  6220.  
  6221. =over 4
  6222.  
  6223. =item C<package>
  6224.  
  6225. From F<package.U>:
  6226.  
  6227. This variable contains the name of the package being constructed.
  6228. It is primarily intended for the use of later Configure units.
  6229.  
  6230. =item C<pager>
  6231.  
  6232. From F<pager.U>:
  6233.  
  6234. This variable contains the name of the preferred pager on the system.
  6235. Usual values are (the full pathnames of) more, less, pg, or cat.
  6236.  
  6237. =item C<passcat>
  6238.  
  6239. From F<nis.U>:
  6240.  
  6241. This variable contains a command that produces the text of the
  6242. F</etc/passwd> file.  This is normally "cat F</etc/passwd>", but can be
  6243. "ypcat passwd" when C<NIS> is used.
  6244. On some systems, such as os390, there may be no equivalent
  6245. command, in which case this variable is unset.
  6246.  
  6247. =item C<patchlevel>
  6248.  
  6249. From F<patchlevel.U>:
  6250.  
  6251. The patchlevel level of this package.
  6252. The value of patchlevel comes from the F<patchlevel.h> file.
  6253. In a version number such as 5.6.1, this is the C<6>.
  6254. In F<patchlevel.h>, this is referred to as C<PERL_VERSION>.
  6255.  
  6256. =item C<path_sep>
  6257.  
  6258. From F<Unix.U>:
  6259.  
  6260. This is an old synonym for p_ in F<Head.U>, the character
  6261. used to separate elements in the command shell search C<PATH>.
  6262.  
  6263. =item C<perl5>
  6264.  
  6265. From F<perl5.U>:
  6266.  
  6267. This variable contains the full path (if any) to a previously
  6268. installed F<perl5.005> or later suitable for running the script
  6269. to determine inc_version_list.
  6270.  
  6271. =item C<perl>
  6272.  
  6273. From F<Loc.U>:
  6274.  
  6275. This variable is defined but not used by Configure.
  6276. The value is a plain '' and is not useful.
  6277.  
  6278. =item C<perl_patchlevel>
  6279.  
  6280. From F<patchlevel.U>:
  6281.  
  6282. This is the Perl patch level, a numeric change identifier,
  6283. as defined by whichever source code maintenance system
  6284. is used to maintain the patches; currently Perforce.
  6285. It does not correlate with the Perl version numbers or
  6286. the maintenance versus development dichotomy except
  6287. by also being increasing.
  6288.  
  6289. =back
  6290.  
  6291. =head2 P
  6292.  
  6293. =over 4
  6294.  
  6295. =item C<PERL_REVISION>
  6296.  
  6297. From F<Oldsyms.U>:
  6298.  
  6299. In a Perl version number such as 5.6.2, this is the 5.
  6300. This value is manually set in F<patchlevel.h>
  6301.  
  6302. =item C<PERL_SUBVERSION>
  6303.  
  6304. From F<Oldsyms.U>:
  6305.  
  6306. In a Perl version number such as 5.6.2, this is the 2.
  6307. Values greater than 50 represent potentially unstable
  6308. development subversions.
  6309. This value is manually set in F<patchlevel.h>
  6310.  
  6311. =item C<PERL_VERSION>
  6312.  
  6313. From F<Oldsyms.U>:
  6314.  
  6315. In a Perl version number such as 5.6.2, this is the 6.
  6316. This value is manually set in F<patchlevel.h>
  6317.  
  6318. =item C<perladmin>
  6319.  
  6320. From F<perladmin.U>:
  6321.  
  6322. Electronic mail address of the perl5 administrator.
  6323.  
  6324. =item C<perllibs>
  6325.  
  6326. From F<End.U>:
  6327.  
  6328. The list of libraries needed by Perl only (any libraries needed
  6329. by extensions only will by dropped, if using dynamic loading).
  6330.  
  6331. =item C<perlpath>
  6332.  
  6333. From F<perlpath.U>:
  6334.  
  6335. This variable contains the eventual value of the C<PERLPATH> symbol,
  6336. which contains the name of the perl interpreter to be used in
  6337. shell scripts and in the "eval C<exec>" idiom.  This variable is
  6338. not necessarily the pathname of the file containing the perl
  6339. interpreter; you must append the executable extension (_exe) if
  6340. it is not already present.  Note that Perl code that runs during
  6341. the Perl build process cannot reference this variable, as Perl
  6342. may not have been installed, or even if installed, may be a
  6343. different version of Perl.
  6344.  
  6345. =item C<pg>
  6346.  
  6347. From F<Loc.U>:
  6348.  
  6349. This variable is used internally by Configure to determine the
  6350. full pathname (if any) of the pg program.  After Configure runs,
  6351. the value is reset to a plain C<pg> and is not useful.
  6352.  
  6353. =item C<phostname>
  6354.  
  6355. From F<myhostname.U>:
  6356.  
  6357. This variable contains the eventual value of the C<PHOSTNAME> symbol,
  6358. which is a command that can be fed to popen() to get the host name.
  6359. The program should probably not presume that the domain is or isn't
  6360. there already.
  6361.  
  6362. =item C<pidtype>
  6363.  
  6364. From F<pidtype.U>:
  6365.  
  6366. This variable defines C<PIDTYPE> to be something like pid_t, int, 
  6367. ushort, or whatever type is used to declare process ids in the kernel.
  6368.  
  6369. =item C<plibpth>
  6370.  
  6371. From F<libpth.U>:
  6372.  
  6373. Holds the private path used by Configure to find out the libraries.
  6374. Its value is prepend to libpth. This variable takes care of special
  6375. machines, like the mips.  Usually, it should be empty.
  6376.  
  6377. =item C<pm_apiversion>
  6378.  
  6379. From F<xs_apiversion.U>:
  6380.  
  6381. This variable contains the version of the oldest perl
  6382. compatible with the present perl.  (That is, pure perl modules
  6383. written for $pm_apiversion will still work for the current
  6384. version).  F<perl.c>:incpush() and F<lib/lib.pm> will automatically
  6385. search in $sitelib for older directories across major versions
  6386. back to pm_apiversion.  This is only useful if you have a perl
  6387. library directory tree structured like the default one.  The
  6388. versioned site_perl library was introduced in 5.005, so that's
  6389. the default setting for this variable.  It's hard to imagine
  6390. it changing before Perl6.  It is included here for symmetry
  6391. with xs_apiveprsion -- the searching algorithms will
  6392. (presumably) be similar.
  6393. See the C<INSTALL> file for how this works.
  6394.  
  6395. =item C<pmake>
  6396.  
  6397. From F<Loc.U>:
  6398.  
  6399. This variable is defined but not used by Configure.
  6400. The value is a plain '' and is not useful.
  6401.  
  6402. =item C<pr>
  6403.  
  6404. From F<Loc.U>:
  6405.  
  6406. This variable is defined but not used by Configure.
  6407. The value is a plain '' and is not useful.
  6408.  
  6409. =item C<prefix>
  6410.  
  6411. From F<prefix.U>:
  6412.  
  6413. This variable holds the name of the directory below which the
  6414. user will install the package.  Usually, this is F</usr/local>, and
  6415. executables go in F</usr/local/bin>, library stuff in F</usr/local/lib>,
  6416. man pages in F</usr/local/man>, etc.  It is only used to set defaults
  6417. for things in F<bin.U>, F<mansrc.U>, F<privlib.U>, or F<scriptdir.U>.
  6418.  
  6419. =item C<prefixexp>
  6420.  
  6421. From F<prefix.U>:
  6422.  
  6423. This variable holds the full absolute path of the directory below
  6424. which the user will install the package.  Derived from prefix.
  6425.  
  6426. =item C<privlib>
  6427.  
  6428. From F<privlib.U>:
  6429.  
  6430. This variable contains the eventual value of the C<PRIVLIB> symbol,
  6431. which is the name of the private library for this package.  It may
  6432. have a F<~> on the front. It is up to the makefile to eventually create
  6433. this directory while performing installation (with F<~> substitution).
  6434.  
  6435. =item C<privlibexp>
  6436.  
  6437. From F<privlib.U>:
  6438.  
  6439. This variable is the F<~name> expanded version of privlib, so that you
  6440. may use it directly in Makefiles or shell scripts.
  6441.  
  6442. =item C<procselfexe>
  6443.  
  6444. From F<d_procselfexe.U>:
  6445.  
  6446. If d_procselfexe is defined, $procselfexe is the filename
  6447. of the symbolic link pointing to the absolute pathname of
  6448. the executing program.
  6449.  
  6450. =item C<prototype>
  6451.  
  6452. From F<prototype.U>:
  6453.  
  6454. This variable holds the eventual value of C<CAN_PROTOTYPE>, which
  6455. indicates the C compiler can handle funciton prototypes.
  6456.  
  6457. =item C<ptrsize>
  6458.  
  6459. From F<ptrsize.U>:
  6460.  
  6461. This variable contains the value of the C<PTRSIZE> symbol, which
  6462. indicates to the C program how many bytes there are in a pointer.
  6463.  
  6464. =back
  6465.  
  6466. =head2 q
  6467.  
  6468. =over 4
  6469.  
  6470. =item C<quadkind>
  6471.  
  6472. From F<quadtype.U>:
  6473.  
  6474. This variable, if defined, encodes the type of a quad:
  6475. 1 = int, 2 = long, 3 = long long, 4 = int64_t.
  6476.  
  6477. =item C<quadtype>
  6478.  
  6479. From F<quadtype.U>:
  6480.  
  6481. This variable defines Quad_t to be something like long, int, 
  6482. long long, int64_t, or whatever type is used for 64-bit integers.
  6483.  
  6484. =back
  6485.  
  6486. =head2 r
  6487.  
  6488. =over 4
  6489.  
  6490. =item C<randbits>
  6491.  
  6492. From F<randfunc.U>:
  6493.  
  6494. Indicates how many bits are produced by the function used to
  6495. generate normalized random numbers.
  6496.  
  6497. =item C<randfunc>
  6498.  
  6499. From F<randfunc.U>:
  6500.  
  6501. Indicates the name of the random number function to use.
  6502. Values include drand48, random, and rand. In C programs,
  6503. the C<Drand01> macro is defined to generate uniformly distributed
  6504. random numbers over the range [0., 1.[ (see drand01 and nrand).
  6505.  
  6506. =item C<random_r_proto>
  6507.  
  6508. From F<d_random_r.U>:
  6509.  
  6510. This variable encodes the prototype of random_r.
  6511. It is zero if d_random_r is undef, and one of the
  6512. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_random_r
  6513. is defined.
  6514.  
  6515. =item C<randseedtype>
  6516.  
  6517. From F<randfunc.U>:
  6518.  
  6519. Indicates the type of the argument of the seedfunc.
  6520.  
  6521. =item C<ranlib>
  6522.  
  6523. From F<orderlib.U>:
  6524.  
  6525. This variable is set to the pathname of the ranlib program, if it is
  6526. needed to generate random libraries.  Set to C<:> if ar can generate
  6527. random libraries or if random libraries are not supported
  6528.  
  6529. =item C<rd_nodata>
  6530.  
  6531. From F<nblock_io.U>:
  6532.  
  6533. This variable holds the return code from read() when no data is
  6534. present. It should be -1, but some systems return 0 when C<O_NDELAY> is
  6535. used, which is a shame because you cannot make the difference between
  6536. no data and an F<EOF.>. Sigh!
  6537.  
  6538. =item C<readdir64_r_proto>
  6539.  
  6540. From F<d_readdir64_r.U>:
  6541.  
  6542. This variable encodes the prototype of readdir64_r.
  6543. It is zero if d_readdir64_r is undef, and one of the
  6544. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_readdir64_r
  6545. is defined.
  6546.  
  6547. =item C<readdir_r_proto>
  6548.  
  6549. From F<d_readdir_r.U>:
  6550.  
  6551. This variable encodes the prototype of readdir_r.
  6552. It is zero if d_readdir_r is undef, and one of the
  6553. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_readdir_r
  6554. is defined.
  6555.  
  6556. =item C<revision>
  6557.  
  6558. From F<patchlevel.U>:
  6559.  
  6560. The value of revision comes from the F<patchlevel.h> file.
  6561. In a version number such as 5.6.1, this is the C<5>.
  6562. In F<patchlevel.h>, this is referred to as C<PERL_REVISION>.
  6563.  
  6564. =item C<rm>
  6565.  
  6566. From F<Loc.U>:
  6567.  
  6568. This variable is used internally by Configure to determine the
  6569. full pathname (if any) of the rm program.  After Configure runs,
  6570. the value is reset to a plain C<rm> and is not useful.
  6571.  
  6572. =item C<rmail>
  6573.  
  6574. From F<Loc.U>:
  6575.  
  6576. This variable is defined but not used by Configure.
  6577. The value is a plain '' and is not useful.
  6578.  
  6579. =item C<run>
  6580.  
  6581. From F<Cross.U>:
  6582.  
  6583. This variable contains the command used by Configure
  6584. to copy and execute a cross-compiled executable in the
  6585. target host.  Useful and available only during Perl build.
  6586. Empty string '' if not cross-compiling.
  6587.  
  6588. =item C<runnm>
  6589.  
  6590. From F<usenm.U>:
  6591.  
  6592. This variable contains C<true> or C<false> depending whether the
  6593. nm extraction should be performed or not, according to the value
  6594. of usenm and the flags on the Configure command line.
  6595.  
  6596. =back
  6597.  
  6598. =head2 s
  6599.  
  6600. =over 4
  6601.  
  6602. =item C<sched_yield>
  6603.  
  6604. From F<d_pthread_y.U>:
  6605.  
  6606. This variable defines the way to yield the execution
  6607. of the current thread.
  6608.  
  6609. =item C<scriptdir>
  6610.  
  6611. From F<scriptdir.U>:
  6612.  
  6613. This variable holds the name of the directory in which the user wants
  6614. to put publicly scripts for the package in question.  It is either
  6615. the same directory as for binaries, or a special one that can be
  6616. mounted across different architectures, like F</usr/share>. Programs
  6617. must be prepared to deal with F<~name> expansion.
  6618.  
  6619. =item C<scriptdirexp>
  6620.  
  6621. From F<scriptdir.U>:
  6622.  
  6623. This variable is the same as scriptdir, but is filename expanded
  6624. at configuration time, for programs not wanting to bother with it.
  6625.  
  6626. =item C<sed>
  6627.  
  6628. From F<Loc.U>:
  6629.  
  6630. This variable is used internally by Configure to determine the
  6631. full pathname (if any) of the sed program.  After Configure runs,
  6632. the value is reset to a plain C<sed> and is not useful.
  6633.  
  6634. =item C<seedfunc>
  6635.  
  6636. From F<randfunc.U>:
  6637.  
  6638. Indicates the random number generating seed function.
  6639. Values include srand48, srandom, and srand.
  6640.  
  6641. =item C<selectminbits>
  6642.  
  6643. From F<selectminbits.U>:
  6644.  
  6645. This variable holds the minimum number of bits operated by select.
  6646. That is, if you do select(n, ...), how many bits at least will be
  6647. cleared in the masks if some activity is detected.  Usually this
  6648. is either n or 32*ceil(F<n/32>), especially many little-endians do
  6649. the latter.  This is only useful if you have select(), naturally.
  6650.  
  6651. =item C<selecttype>
  6652.  
  6653. From F<selecttype.U>:
  6654.  
  6655. This variable holds the type used for the 2nd, 3rd, and 4th
  6656. arguments to select.  Usually, this is C<fd_set *>, if C<HAS_FD_SET>
  6657. is defined, and C<int *> otherwise.  This is only useful if you 
  6658. have select(), naturally.
  6659.  
  6660. =item C<sendmail>
  6661.  
  6662. From F<Loc.U>:
  6663.  
  6664. This variable is defined but not used by Configure.
  6665. The value is a plain '' and is not useful.
  6666.  
  6667. =item C<setgrent_r_proto>
  6668.  
  6669. From F<d_setgrent_r.U>:
  6670.  
  6671. This variable encodes the prototype of setgrent_r.
  6672. It is zero if d_setgrent_r is undef, and one of the
  6673. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setgrent_r
  6674. is defined.
  6675.  
  6676. =item C<sethostent_r_proto>
  6677.  
  6678. From F<d_sethostent_r.U>:
  6679.  
  6680. This variable encodes the prototype of sethostent_r.
  6681. It is zero if d_sethostent_r is undef, and one of the
  6682. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_sethostent_r
  6683. is defined.
  6684.  
  6685. =item C<setlocale_r_proto>
  6686.  
  6687. From F<d_setlocale_r.U>:
  6688.  
  6689. This variable encodes the prototype of setlocale_r.
  6690. It is zero if d_setlocale_r is undef, and one of the
  6691. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setlocale_r
  6692. is defined.
  6693.  
  6694. =item C<setnetent_r_proto>
  6695.  
  6696. From F<d_setnetent_r.U>:
  6697.  
  6698. This variable encodes the prototype of setnetent_r.
  6699. It is zero if d_setnetent_r is undef, and one of the
  6700. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setnetent_r
  6701. is defined.
  6702.  
  6703. =item C<setprotoent_r_proto>
  6704.  
  6705. From F<d_setprotoent_r.U>:
  6706.  
  6707. This variable encodes the prototype of setprotoent_r.
  6708. It is zero if d_setprotoent_r is undef, and one of the
  6709. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setprotoent_r
  6710. is defined.
  6711.  
  6712. =item C<setpwent_r_proto>
  6713.  
  6714. From F<d_setpwent_r.U>:
  6715.  
  6716. This variable encodes the prototype of setpwent_r.
  6717. It is zero if d_setpwent_r is undef, and one of the
  6718. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setpwent_r
  6719. is defined.
  6720.  
  6721. =item C<setservent_r_proto>
  6722.  
  6723. From F<d_setservent_r.U>:
  6724.  
  6725. This variable encodes the prototype of setservent_r.
  6726. It is zero if d_setservent_r is undef, and one of the
  6727. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setservent_r
  6728. is defined.
  6729.  
  6730. =item C<sh>
  6731.  
  6732. From F<sh.U>:
  6733.  
  6734. This variable contains the full pathname of the shell used
  6735. on this system to execute Bourne shell scripts.  Usually, this will be
  6736. F</bin/sh>, though it's possible that some systems will have F</bin/ksh>,
  6737. F</bin/pdksh>, F</bin/ash>, F</bin/bash>, or even something such as
  6738. D:F</bin/sh.exe>.
  6739. This unit comes before F<Options.U>, so you can't set sh with a C<-D>
  6740. option, though you can override this (and startsh)
  6741. with C<-O -Dsh=F</bin/whatever> -Dstartsh=whatever>
  6742.  
  6743. =item C<shar>
  6744.  
  6745. From F<Loc.U>:
  6746.  
  6747. This variable is defined but not used by Configure.
  6748. The value is a plain '' and is not useful.
  6749.  
  6750. =item C<sharpbang>
  6751.  
  6752. From F<spitshell.U>:
  6753.  
  6754. This variable contains the string #! if this system supports that
  6755. construct.
  6756.  
  6757. =item C<shmattype>
  6758.  
  6759. From F<d_shmat.U>:
  6760.  
  6761. This symbol contains the type of pointer returned by shmat().
  6762. It can be C<void *> or C<char *>.
  6763.  
  6764. =item C<shortsize>
  6765.  
  6766. From F<intsize.U>:
  6767.  
  6768. This variable contains the value of the C<SHORTSIZE> symbol which
  6769. indicates to the C program how many bytes there are in a short.
  6770.  
  6771. =item C<shrpenv>
  6772.  
  6773. From F<libperl.U>:
  6774.  
  6775. If the user builds a shared F<libperl.so>, then we need to tell the
  6776. C<perl> executable where it will be able to find the installed F<libperl.so>. 
  6777. One way to do this on some systems is to set the environment variable
  6778. C<LD_RUN_PATH> to the directory that will be the final location of the
  6779. shared F<libperl.so>.  The makefile can use this with something like
  6780. $shrpenv $(C<CC>) -o perl F<perlmain.o> $libperl $libs
  6781. Typical values are
  6782. shrpenv="env C<LD_RUN_PATH>=F<$archlibexp/C<CORE>>"
  6783. or
  6784. shrpenv=''
  6785. See the main perl F<Makefile.SH> for actual working usage.
  6786. Alternatively, we might be able to use a command line option such
  6787. as -R F<$archlibexp/C<CORE>> (Solaris) or -Wl,-rpath
  6788. F<$archlibexp/C<CORE>> (Linux).
  6789.  
  6790. =item C<shsharp>
  6791.  
  6792. From F<spitshell.U>:
  6793.  
  6794. This variable tells further Configure units whether your sh can
  6795. handle # comments.
  6796.  
  6797. =item C<sig_count>
  6798.  
  6799. From F<sig_name.U>:
  6800.  
  6801. This variable holds a number larger than the largest valid
  6802. signal number.  This is usually the same as the C<NSIG> macro.
  6803.  
  6804. =item C<sig_name>
  6805.  
  6806. From F<sig_name.U>:
  6807.  
  6808. This variable holds the signal names, space separated. The leading
  6809. C<SIG> in signal name is removed.  A C<ZERO> is prepended to the list.
  6810. This is currently not used, sig_name_init is used instead.
  6811.  
  6812. =item C<sig_name_init>
  6813.  
  6814. From F<sig_name.U>:
  6815.  
  6816. This variable holds the signal names, enclosed in double quotes and
  6817. separated by commas, suitable for use in the C<SIG_NAME> definition 
  6818. below.  A C<ZERO> is prepended to the list, and the list is 
  6819. terminated with a plain 0.  The leading C<SIG> in signal names
  6820. is removed. See sig_num.
  6821.  
  6822. =item C<sig_num>
  6823.  
  6824. From F<sig_name.U>:
  6825.  
  6826. This variable holds the signal numbers, space separated. A C<ZERO> is
  6827. prepended to the list (corresponding to the fake C<SIGZERO>).
  6828. Those numbers correspond to  the value of the signal listed
  6829. in the same place within the sig_name list.
  6830. This is currently not used, sig_num_init is used instead.
  6831.  
  6832. =item C<sig_num_init>
  6833.  
  6834. From F<sig_name.U>:
  6835.  
  6836. This variable holds the signal numbers, enclosed in double quotes and
  6837. separated by commas, suitable for use in the C<SIG_NUM> definition 
  6838. below.  A C<ZERO> is prepended to the list, and the list is 
  6839. terminated with a plain 0.
  6840.  
  6841. =item C<sig_size>
  6842.  
  6843. From F<sig_name.U>:
  6844.  
  6845. This variable contains the number of elements of the sig_name
  6846. and sig_num arrays.
  6847.  
  6848. =item C<signal_t>
  6849.  
  6850. From F<d_voidsig.U>:
  6851.  
  6852. This variable holds the type of the signal handler (void or int).
  6853.  
  6854. =item C<sitearch>
  6855.  
  6856. From F<sitearch.U>:
  6857.  
  6858. This variable contains the eventual value of the C<SITEARCH> symbol,
  6859. which is the name of the private library for this package.  It may
  6860. have a F<~> on the front. It is up to the makefile to eventually create
  6861. this directory while performing installation (with F<~> substitution).
  6862. The standard distribution will put nothing in this directory.
  6863. After perl has been installed, users may install their own local
  6864. architecture-dependent modules in this directory with
  6865. MakeMaker F<Makefile.PL>
  6866. or equivalent.  See C<INSTALL> for details.
  6867.  
  6868. =item C<sitearchexp>
  6869.  
  6870. From F<sitearch.U>:
  6871.  
  6872. This variable is the F<~name> expanded version of sitearch, so that you
  6873. may use it directly in Makefiles or shell scripts.
  6874.  
  6875. =item C<sitebin>
  6876.  
  6877. From F<sitebin.U>:
  6878.  
  6879. This variable holds the name of the directory in which the user wants
  6880. to put add-on publicly executable files for the package in question.  It
  6881. is most often a local directory such as F</usr/local/bin>. Programs using
  6882. this variable must be prepared to deal with F<~name> substitution.
  6883. The standard distribution will put nothing in this directory.
  6884. After perl has been installed, users may install their own local
  6885. executables in this directory with
  6886. MakeMaker F<Makefile.PL>
  6887. or equivalent.  See C<INSTALL> for details.
  6888.  
  6889. =item C<sitebinexp>
  6890.  
  6891. From F<sitebin.U>:
  6892.  
  6893. This is the same as the sitebin variable, but is filename expanded at
  6894. configuration time, for use in your makefiles.
  6895.  
  6896. =item C<sitehtml1dir>
  6897.  
  6898. From F<sitehtml1dir.U>:
  6899.  
  6900. This variable contains the name of the directory in which site-specific
  6901. html source pages are to be put.  It is the responsibility of the
  6902. F<Makefile.SH> to get the value of this into the proper command.
  6903. You must be prepared to do the F<~name> expansion yourself.
  6904. The standard distribution will put nothing in this directory.
  6905. After perl has been installed, users may install their own local
  6906. html pages in this directory with
  6907. MakeMaker F<Makefile.PL>
  6908. or equivalent.  See C<INSTALL> for details.
  6909.  
  6910. =item C<sitehtml1direxp>
  6911.  
  6912. From F<sitehtml1dir.U>:
  6913.  
  6914. This variable is the same as the sitehtml1dir variable, but is filename
  6915. expanded at configuration time, for convenient use in makefiles.
  6916.  
  6917. =item C<sitehtml3dir>
  6918.  
  6919. From F<sitehtml3dir.U>:
  6920.  
  6921. This variable contains the name of the directory in which site-specific
  6922. library html source pages are to be put.  It is the responsibility of the
  6923. F<Makefile.SH> to get the value of this into the proper command.
  6924. You must be prepared to do the F<~name> expansion yourself.
  6925. The standard distribution will put nothing in this directory.
  6926. After perl has been installed, users may install their own local
  6927. library html pages in this directory with
  6928. MakeMaker F<Makefile.PL>
  6929. or equivalent.  See C<INSTALL> for details.
  6930.  
  6931. =item C<sitehtml3direxp>
  6932.  
  6933. From F<sitehtml3dir.U>:
  6934.  
  6935. This variable is the same as the sitehtml3dir variable, but is filename
  6936. expanded at configuration time, for convenient use in makefiles.
  6937.  
  6938. =item C<sitelib>
  6939.  
  6940. From F<sitelib.U>:
  6941.  
  6942. This variable contains the eventual value of the C<SITELIB> symbol,
  6943. which is the name of the private library for this package.  It may
  6944. have a F<~> on the front. It is up to the makefile to eventually create
  6945. this directory while performing installation (with F<~> substitution).
  6946. The standard distribution will put nothing in this directory.
  6947. After perl has been installed, users may install their own local
  6948. architecture-independent modules in this directory with
  6949. MakeMaker F<Makefile.PL>
  6950. or equivalent.  See C<INSTALL> for details.
  6951.  
  6952. =item C<sitelib_stem>
  6953.  
  6954. From F<sitelib.U>:
  6955.  
  6956. This variable is $sitelibexp with any trailing version-specific component
  6957. removed.  The elements in inc_version_list (F<inc_version_list.U>) can
  6958. be tacked onto this variable to generate a list of directories to search.
  6959.  
  6960. =item C<sitelibexp>
  6961.  
  6962. From F<sitelib.U>:
  6963.  
  6964. This variable is the F<~name> expanded version of sitelib, so that you
  6965. may use it directly in Makefiles or shell scripts.
  6966.  
  6967. =item C<siteman1dir>
  6968.  
  6969. From F<siteman1dir.U>:
  6970.  
  6971. This variable contains the name of the directory in which site-specific
  6972. manual source pages are to be put.  It is the responsibility of the
  6973. F<Makefile.SH> to get the value of this into the proper command.
  6974. You must be prepared to do the F<~name> expansion yourself.
  6975. The standard distribution will put nothing in this directory.
  6976. After perl has been installed, users may install their own local
  6977. man1 pages in this directory with
  6978. MakeMaker F<Makefile.PL>
  6979. or equivalent.  See C<INSTALL> for details.
  6980.  
  6981. =item C<siteman1direxp>
  6982.  
  6983. From F<siteman1dir.U>:
  6984.  
  6985. This variable is the same as the siteman1dir variable, but is filename
  6986. expanded at configuration time, for convenient use in makefiles.
  6987.  
  6988. =item C<siteman3dir>
  6989.  
  6990. From F<siteman3dir.U>:
  6991.  
  6992. This variable contains the name of the directory in which site-specific
  6993. library man source pages are to be put.  It is the responsibility of the
  6994. F<Makefile.SH> to get the value of this into the proper command.
  6995. You must be prepared to do the F<~name> expansion yourself.
  6996. The standard distribution will put nothing in this directory.
  6997. After perl has been installed, users may install their own local
  6998. man3 pages in this directory with
  6999. MakeMaker F<Makefile.PL>
  7000. or equivalent.  See C<INSTALL> for details.
  7001.  
  7002. =item C<siteman3direxp>
  7003.  
  7004. From F<siteman3dir.U>:
  7005.  
  7006. This variable is the same as the siteman3dir variable, but is filename
  7007. expanded at configuration time, for convenient use in makefiles.
  7008.  
  7009. =item C<siteprefix>
  7010.  
  7011. From F<siteprefix.U>:
  7012.  
  7013. This variable holds the full absolute path of the directory below
  7014. which the user will install add-on packages.
  7015. See C<INSTALL> for usage and examples.
  7016.  
  7017. =item C<siteprefixexp>
  7018.  
  7019. From F<siteprefix.U>:
  7020.  
  7021. This variable holds the full absolute path of the directory below
  7022. which the user will install add-on packages.  Derived from siteprefix.
  7023.  
  7024. =item C<sitescript>
  7025.  
  7026. From F<sitescript.U>:
  7027.  
  7028. This variable holds the name of the directory in which the user wants
  7029. to put add-on publicly executable files for the package in question.  It
  7030. is most often a local directory such as F</usr/local/bin>. Programs using
  7031. this variable must be prepared to deal with F<~name> substitution.
  7032. The standard distribution will put nothing in this directory.
  7033. After perl has been installed, users may install their own local
  7034. scripts in this directory with
  7035. MakeMaker F<Makefile.PL>
  7036. or equivalent.  See C<INSTALL> for details.
  7037.  
  7038. =item C<sitescriptexp>
  7039.  
  7040. From F<sitescript.U>:
  7041.  
  7042. This is the same as the sitescript variable, but is filename expanded at
  7043. configuration time, for use in your makefiles.
  7044.  
  7045. =item C<sizesize>
  7046.  
  7047. From F<sizesize.U>:
  7048.  
  7049. This variable contains the size of a sizetype in bytes.
  7050.  
  7051. =item C<sizetype>
  7052.  
  7053. From F<sizetype.U>:
  7054.  
  7055. This variable defines sizetype to be something like size_t, 
  7056. unsigned long, or whatever type is used to declare length 
  7057. parameters for string functions.
  7058.  
  7059. =item C<sleep>
  7060.  
  7061. From F<Loc.U>:
  7062.  
  7063. This variable is defined but not used by Configure.
  7064. The value is a plain '' and is not useful.
  7065.  
  7066. =item C<smail>
  7067.  
  7068. From F<Loc.U>:
  7069.  
  7070. This variable is defined but not used by Configure.
  7071. The value is a plain '' and is not useful.
  7072.  
  7073. =item C<so>
  7074.  
  7075. From F<so.U>:
  7076.  
  7077. This variable holds the extension used to identify shared libraries
  7078. (also known as shared objects) on the system. Usually set to C<so>.
  7079.  
  7080. =item C<sockethdr>
  7081.  
  7082. From F<d_socket.U>:
  7083.  
  7084. This variable has any cpp C<-I> flags needed for socket support.
  7085.  
  7086. =item C<socketlib>
  7087.  
  7088. From F<d_socket.U>:
  7089.  
  7090. This variable has the names of any libraries needed for socket support.
  7091.  
  7092. =item C<socksizetype>
  7093.  
  7094. From F<socksizetype.U>:
  7095.  
  7096. This variable holds the type used for the size argument
  7097. for various socket calls like accept.  Usual values include
  7098. socklen_t, size_t, and int.
  7099.  
  7100. =item C<sort>
  7101.  
  7102. From F<Loc.U>:
  7103.  
  7104. This variable is used internally by Configure to determine the
  7105. full pathname (if any) of the sort program.  After Configure runs,
  7106. the value is reset to a plain C<sort> and is not useful.
  7107.  
  7108. =item C<spackage>
  7109.  
  7110. From F<package.U>:
  7111.  
  7112. This variable contains the name of the package being constructed,
  7113. with the first letter uppercased, F<i.e>. suitable for starting
  7114. sentences.
  7115.  
  7116. =item C<spitshell>
  7117.  
  7118. From F<spitshell.U>:
  7119.  
  7120. This variable contains the command necessary to spit out a runnable
  7121. shell on this system.  It is either cat or a grep C<-v> for # comments.
  7122.  
  7123. =item C<sPRId64>
  7124.  
  7125. From F<quadfio.U>:
  7126.  
  7127. This variable, if defined, contains the string used by stdio to
  7128. format 64-bit decimal numbers (format C<d>) for output.
  7129.  
  7130. =item C<sPRIeldbl>
  7131.  
  7132. From F<longdblfio.U>:
  7133.  
  7134. This variable, if defined, contains the string used by stdio to
  7135. format long doubles (format C<e>) for output.
  7136.  
  7137. =item C<sPRIEUldbl>
  7138.  
  7139. From F<longdblfio.U>:
  7140.  
  7141. This variable, if defined, contains the string used by stdio to
  7142. format long doubles (format C<E>) for output.
  7143. The C<U> in the name is to separate this from sPRIeldbl so that even
  7144. case-blind systems can see the difference.
  7145.  
  7146. =item C<sPRIfldbl>
  7147.  
  7148. From F<longdblfio.U>:
  7149.  
  7150. This variable, if defined, contains the string used by stdio to
  7151. format long doubles (format C<f>) for output.
  7152.  
  7153. =item C<sPRIFUldbl>
  7154.  
  7155. From F<longdblfio.U>:
  7156.  
  7157. This variable, if defined, contains the string used by stdio to
  7158. format long doubles (format C<F>) for output.
  7159. The C<U> in the name is to separate this from sPRIfldbl so that even
  7160. case-blind systems can see the difference.
  7161.  
  7162. =item C<sPRIgldbl>
  7163.  
  7164. From F<longdblfio.U>:
  7165.  
  7166. This variable, if defined, contains the string used by stdio to
  7167. format long doubles (format C<g>) for output.
  7168.  
  7169. =item C<sPRIGUldbl>
  7170.  
  7171. From F<longdblfio.U>:
  7172.  
  7173. This variable, if defined, contains the string used by stdio to
  7174. format long doubles (format C<G>) for output.
  7175. The C<U> in the name is to separate this from sPRIgldbl so that even
  7176. case-blind systems can see the difference.
  7177.  
  7178. =item C<sPRIi64>
  7179.  
  7180. From F<quadfio.U>:
  7181.  
  7182. This variable, if defined, contains the string used by stdio to
  7183. format 64-bit decimal numbers (format C<i>) for output.
  7184.  
  7185. =item C<sPRIo64>
  7186.  
  7187. From F<quadfio.U>:
  7188.  
  7189. This variable, if defined, contains the string used by stdio to
  7190. format 64-bit octal numbers (format C<o>) for output.
  7191.  
  7192. =item C<sPRIu64>
  7193.  
  7194. From F<quadfio.U>:
  7195.  
  7196. This variable, if defined, contains the string used by stdio to
  7197. format 64-bit unsigned decimal numbers (format C<u>) for output.
  7198.  
  7199. =item C<sPRIx64>
  7200.  
  7201. From F<quadfio.U>:
  7202.  
  7203. This variable, if defined, contains the string used by stdio to
  7204. format 64-bit hexadecimal numbers (format C<x>) for output.
  7205.  
  7206. =item C<sPRIXU64>
  7207.  
  7208. From F<quadfio.U>:
  7209.  
  7210. This variable, if defined, contains the string used by stdio to
  7211. format 64-bit hExADECimAl numbers (format C<X>) for output.
  7212. The C<U> in the name is to separate this from sPRIx64 so that even
  7213. case-blind systems can see the difference.
  7214.  
  7215. =item C<srand48_r_proto>
  7216.  
  7217. From F<d_srand48_r.U>:
  7218.  
  7219. This variable encodes the prototype of srand48_r.
  7220. It is zero if d_srand48_r is undef, and one of the
  7221. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_srand48_r
  7222. is defined.
  7223.  
  7224. =item C<srandom_r_proto>
  7225.  
  7226. From F<d_srandom_r.U>:
  7227.  
  7228. This variable encodes the prototype of srandom_r.
  7229. It is zero if d_srandom_r is undef, and one of the
  7230. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_srandom_r
  7231. is defined.
  7232.  
  7233. =item C<src>
  7234.  
  7235. From F<src.U>:
  7236.  
  7237. This variable holds the path to the package source. It is up to
  7238. the Makefile to use this variable and set C<VPATH> accordingly to
  7239. find the sources remotely.
  7240.  
  7241. =item C<sSCNfldbl>
  7242.  
  7243. From F<longdblfio.U>:
  7244.  
  7245. This variable, if defined, contains the string used by stdio to
  7246. format long doubles (format C<f>) for input.
  7247.  
  7248. =item C<ssizetype>
  7249.  
  7250. From F<ssizetype.U>:
  7251.  
  7252. This variable defines ssizetype to be something like ssize_t, 
  7253. long or int.  It is used by functions that return a count 
  7254. of bytes or an error condition.  It must be a signed type.
  7255. We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
  7256.  
  7257. =item C<startperl>
  7258.  
  7259. From F<startperl.U>:
  7260.  
  7261. This variable contains the string to put on the front of a perl
  7262. script to make sure (hopefully) that it runs with perl and not some
  7263. shell. Of course, that leading line must be followed by the classical
  7264. perl idiom:
  7265. eval 'exec perl -S $0 ${1+C<$@>}'
  7266. if $running_under_some_shell;
  7267. to guarantee perl startup should the shell execute the script. Note
  7268. that this magic incatation is not understood by csh.
  7269.  
  7270. =item C<startsh>
  7271.  
  7272. From F<startsh.U>:
  7273.  
  7274. This variable contains the string to put on the front of a shell
  7275. script to make sure (hopefully) that it runs with sh and not some
  7276. other shell.
  7277.  
  7278. =item C<static_ext>
  7279.  
  7280. From F<Extensions.U>:
  7281.  
  7282. This variable holds a list of C<XS> extension files we want to
  7283. link statically into the package.  It is used by Makefile.
  7284.  
  7285. =item C<stdchar>
  7286.  
  7287. From F<stdchar.U>:
  7288.  
  7289. This variable conditionally defines C<STDCHAR> to be the type of char
  7290. used in F<stdio.h>.  It has the values "unsigned char" or C<char>.
  7291.  
  7292. =item C<stdio_base>
  7293.  
  7294. From F<d_stdstdio.U>:
  7295.  
  7296. This variable defines how, given a C<FILE> pointer, fp, to access the
  7297. _base field (or equivalent) of F<stdio.h>'s C<FILE> structure.  This will
  7298. be used to define the macro FILE_base(fp).
  7299.  
  7300. =item C<stdio_bufsiz>
  7301.  
  7302. From F<d_stdstdio.U>:
  7303.  
  7304. This variable defines how, given a C<FILE> pointer, fp, to determine
  7305. the number of bytes store in the I/O buffer pointer to by the
  7306. _base field (or equivalent) of F<stdio.h>'s C<FILE> structure.  This will
  7307. be used to define the macro FILE_bufsiz(fp).
  7308.  
  7309. =item C<stdio_cnt>
  7310.  
  7311. From F<d_stdstdio.U>:
  7312.  
  7313. This variable defines how, given a C<FILE> pointer, fp, to access the
  7314. _cnt field (or equivalent) of F<stdio.h>'s C<FILE> structure.  This will
  7315. be used to define the macro FILE_cnt(fp).
  7316.  
  7317. =item C<stdio_filbuf>
  7318.  
  7319. From F<d_stdstdio.U>:
  7320.  
  7321. This variable defines how, given a C<FILE> pointer, fp, to tell
  7322. stdio to refill its internal buffers (?).  This will
  7323. be used to define the macro FILE_filbuf(fp).
  7324.  
  7325. =item C<stdio_ptr>
  7326.  
  7327. From F<d_stdstdio.U>:
  7328.  
  7329. This variable defines how, given a C<FILE> pointer, fp, to access the
  7330. _ptr field (or equivalent) of F<stdio.h>'s C<FILE> structure.  This will
  7331. be used to define the macro FILE_ptr(fp).
  7332.  
  7333. =item C<stdio_stream_array>
  7334.  
  7335. From F<stdio_streams.U>:
  7336.  
  7337. This variable tells the name of the array holding the stdio streams.
  7338. Usual values include _iob, __iob, and __sF.
  7339.  
  7340. =item C<strerror_r_proto>
  7341.  
  7342. From F<d_strerror_r.U>:
  7343.  
  7344. This variable encodes the prototype of strerror_r.
  7345. It is zero if d_strerror_r is undef, and one of the
  7346. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_strerror_r
  7347. is defined.
  7348.  
  7349. =item C<strings>
  7350.  
  7351. From F<i_string.U>:
  7352.  
  7353. This variable holds the full path of the string header that will be
  7354. used. Typically F</usr/include/string.h> or F</usr/include/strings.h>.
  7355.  
  7356. =item C<submit>
  7357.  
  7358. From F<Loc.U>:
  7359.  
  7360. This variable is defined but not used by Configure.
  7361. The value is a plain '' and is not useful.
  7362.  
  7363. =item C<subversion>
  7364.  
  7365. From F<patchlevel.U>:
  7366.  
  7367. The subversion level of this package.
  7368. The value of subversion comes from the F<patchlevel.h> file.
  7369. In a version number such as 5.6.1, this is the C<1>.
  7370. In F<patchlevel.h>, this is referred to as C<PERL_SUBVERSION>.
  7371. This is unique to perl.
  7372.  
  7373. =item C<sysman>
  7374.  
  7375. From F<sysman.U>:
  7376.  
  7377. This variable holds the place where the manual is located on this
  7378. system. It is not the place where the user wants to put his manual
  7379. pages. Rather it is the place where Configure may look to find manual
  7380. for unix commands (section 1 of the manual usually). See mansrc.
  7381.  
  7382. =back
  7383.  
  7384. =head2 t
  7385.  
  7386. =over 4
  7387.  
  7388. =item C<tail>
  7389.  
  7390. From F<Loc.U>:
  7391.  
  7392. This variable is defined but not used by Configure.
  7393. The value is a plain '' and is not useful.
  7394.  
  7395. =item C<tar>
  7396.  
  7397. From F<Loc.U>:
  7398.  
  7399. This variable is defined but not used by Configure.
  7400. The value is a plain '' and is not useful.
  7401.  
  7402. =item C<targetarch>
  7403.  
  7404. From F<Cross.U>:
  7405.  
  7406. If cross-compiling, this variable contains the target architecture.
  7407. If not, this will be empty.
  7408.  
  7409. =item C<tbl>
  7410.  
  7411. From F<Loc.U>:
  7412.  
  7413. This variable is defined but not used by Configure.
  7414. The value is a plain '' and is not useful.
  7415.  
  7416. =item C<tee>
  7417.  
  7418. From F<Loc.U>:
  7419.  
  7420. This variable is defined but not used by Configure.
  7421. The value is a plain '' and is not useful.
  7422.  
  7423. =item C<test>
  7424.  
  7425. From F<Loc.U>:
  7426.  
  7427. This variable is used internally by Configure to determine the
  7428. full pathname (if any) of the test program.  After Configure runs,
  7429. the value is reset to a plain C<test> and is not useful.
  7430.  
  7431. =item C<timeincl>
  7432.  
  7433. From F<i_time.U>:
  7434.  
  7435. This variable holds the full path of the included time header(s).
  7436.  
  7437. =item C<timetype>
  7438.  
  7439. From F<d_time.U>:
  7440.  
  7441. This variable holds the type returned by time(). It can be long,
  7442. or time_t on C<BSD> sites (in which case <sys/types.h> should be
  7443. included). Anyway, the type Time_t should be used.
  7444.  
  7445. =item C<tmpnam_r_proto>
  7446.  
  7447. From F<d_tmpnam_r.U>:
  7448.  
  7449. This variable encodes the prototype of tmpnam_r.
  7450. It is zero if d_tmpnam_r is undef, and one of the
  7451. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_tmpnam_r
  7452. is defined.
  7453.  
  7454. =item C<to>
  7455.  
  7456. From F<Cross.U>:
  7457.  
  7458. This variable contains the command used by Configure
  7459. to copy to from the target host.  Useful and available
  7460. only during Perl build.
  7461. The string C<:> if not cross-compiling.
  7462.  
  7463. =item C<touch>
  7464.  
  7465. From F<Loc.U>:
  7466.  
  7467. This variable is used internally by Configure to determine the
  7468. full pathname (if any) of the touch program.  After Configure runs,
  7469. the value is reset to a plain C<touch> and is not useful.
  7470.  
  7471. =item C<tr>
  7472.  
  7473. From F<Loc.U>:
  7474.  
  7475. This variable is used internally by Configure to determine the
  7476. full pathname (if any) of the tr program.  After Configure runs,
  7477. the value is reset to a plain C<tr> and is not useful.
  7478.  
  7479. =item C<trnl>
  7480.  
  7481. From F<trnl.U>:
  7482.  
  7483. This variable contains the value to be passed to the tr(1)
  7484. command to transliterate a newline.  Typical values are
  7485. C<\012> and C<\n>.  This is needed for C<EBCDIC> systems where
  7486. newline is not necessarily C<\012>.
  7487.  
  7488. =item C<troff>
  7489.  
  7490. From F<Loc.U>:
  7491.  
  7492. This variable is defined but not used by Configure.
  7493. The value is a plain '' and is not useful.
  7494.  
  7495. =item C<ttyname_r_proto>
  7496.  
  7497. From F<d_ttyname_r.U>:
  7498.  
  7499. This variable encodes the prototype of ttyname_r.
  7500. It is zero if d_ttyname_r is undef, and one of the
  7501. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_ttyname_r
  7502. is defined.
  7503.  
  7504. =back
  7505.  
  7506. =head2 u
  7507.  
  7508. =over 4
  7509.  
  7510. =item C<u16size>
  7511.  
  7512. From F<perlxv.U>:
  7513.  
  7514. This variable is the size of an U16 in bytes.
  7515.  
  7516. =item C<u16type>
  7517.  
  7518. From F<perlxv.U>:
  7519.  
  7520. This variable contains the C type used for Perl's U16.
  7521.  
  7522. =item C<u32size>
  7523.  
  7524. From F<perlxv.U>:
  7525.  
  7526. This variable is the size of an U32 in bytes.
  7527.  
  7528. =item C<u32type>
  7529.  
  7530. From F<perlxv.U>:
  7531.  
  7532. This variable contains the C type used for Perl's U32.
  7533.  
  7534. =item C<u64size>
  7535.  
  7536. From F<perlxv.U>:
  7537.  
  7538. This variable is the size of an U64 in bytes.
  7539.  
  7540. =item C<u64type>
  7541.  
  7542. From F<perlxv.U>:
  7543.  
  7544. This variable contains the C type used for Perl's U64.
  7545.  
  7546. =item C<u8size>
  7547.  
  7548. From F<perlxv.U>:
  7549.  
  7550. This variable is the size of an U8 in bytes.
  7551.  
  7552. =item C<u8type>
  7553.  
  7554. From F<perlxv.U>:
  7555.  
  7556. This variable contains the C type used for Perl's U8.
  7557.  
  7558. =item C<uidformat>
  7559.  
  7560. From F<uidf.U>:
  7561.  
  7562. This variable contains the format string used for printing a Uid_t.
  7563.  
  7564. =item C<uidsign>
  7565.  
  7566. From F<uidsign.U>:
  7567.  
  7568. This variable contains the signedness of a uidtype.
  7569. 1 for unsigned, -1 for signed.
  7570.  
  7571. =item C<uidsize>
  7572.  
  7573. From F<uidsize.U>:
  7574.  
  7575. This variable contains the size of a uidtype in bytes.
  7576.  
  7577. =item C<uidtype>
  7578.  
  7579. From F<uidtype.U>:
  7580.  
  7581. This variable defines Uid_t to be something like uid_t, int, 
  7582. ushort, or whatever type is used to declare user ids in the kernel.
  7583.  
  7584. =item C<uname>
  7585.  
  7586. From F<Loc.U>:
  7587.  
  7588. This variable is used internally by Configure to determine the
  7589. full pathname (if any) of the uname program.  After Configure runs,
  7590. the value is reset to a plain C<uname> and is not useful.
  7591.  
  7592. =item C<uniq>
  7593.  
  7594. From F<Loc.U>:
  7595.  
  7596. This variable is used internally by Configure to determine the
  7597. full pathname (if any) of the uniq program.  After Configure runs,
  7598. the value is reset to a plain C<uniq> and is not useful.
  7599.  
  7600. =item C<uquadtype>
  7601.  
  7602. From F<quadtype.U>:
  7603.  
  7604. This variable defines Uquad_t to be something like unsigned long,
  7605. unsigned int, unsigned long long, uint64_t, or whatever type is
  7606. used for 64-bit integers.
  7607.  
  7608. =item C<use5005threads>
  7609.  
  7610. From F<usethreads.U>:
  7611.  
  7612. This variable conditionally defines the USE_5005THREADS symbol,
  7613. and indicates that Perl should be built to use the 5.005-based
  7614. threading implementation.
  7615.  
  7616. =item C<use64bitall>
  7617.  
  7618. From F<use64bits.U>:
  7619.  
  7620. This variable conditionally defines the USE_64_BIT_ALL symbol,
  7621. and indicates that 64-bit integer types should be used
  7622. when available.  The maximal possible
  7623. 64-bitness is employed: LP64 or ILP64, meaning that you will
  7624. be able to use more than 2 gigabytes of memory.  This mode is
  7625. even more binary incompatible than USE_64_BIT_INT. You may not
  7626. be able to run the resulting executable in a 32-bit C<CPU> at all or
  7627. you may need at least to reboot your C<OS> to 64-bit mode.
  7628.  
  7629. =item C<use64bitint>
  7630.  
  7631. From F<use64bits.U>:
  7632.  
  7633. This variable conditionally defines the USE_64_BIT_INT symbol,
  7634. and indicates that 64-bit integer types should be used
  7635. when available.  The minimal possible 64-bitness
  7636. is employed, just enough to get 64-bit integers into Perl.
  7637. This may mean using for example "long longs", while your memory
  7638. may still be limited to 2 gigabytes.
  7639.  
  7640. =item C<usecrosscompile>
  7641.  
  7642. From F<Cross.U>:
  7643.  
  7644. This variable conditionally defines the C<USE_CROSS_COMPILE> symbol,
  7645. and indicates that Perl has been cross-compiled.
  7646.  
  7647. =item C<usedl>
  7648.  
  7649. From F<dlsrc.U>:
  7650.  
  7651. This variable indicates if the system supports dynamic
  7652. loading of some sort.  See also dlsrc and dlobj.
  7653.  
  7654. =item C<usefaststdio>
  7655.  
  7656. From F<usefaststdio.U>:
  7657.  
  7658. This variable conditionally defines the C<USE_FAST_STDIO> symbol,
  7659. and indicates that Perl should be built to use C<fast stdio>.
  7660. Defaults to define in Perls 5.8 and earlier, to undef later.
  7661.  
  7662. =item C<useithreads>
  7663.  
  7664. From F<usethreads.U>:
  7665.  
  7666. This variable conditionally defines the C<USE_ITHREADS> symbol,
  7667. and indicates that Perl should be built to use the interpreter-based
  7668. threading implementation.
  7669.  
  7670. =item C<uselargefiles>
  7671.  
  7672. From F<uselfs.U>:
  7673.  
  7674. This variable conditionally defines the C<USE_LARGE_FILES> symbol,
  7675. and indicates that large file interfaces should be used when
  7676. available.
  7677.  
  7678. =item C<uselongdouble>
  7679.  
  7680. From F<uselongdbl.U>:
  7681.  
  7682. This variable conditionally defines the C<USE_LONG_DOUBLE> symbol,
  7683. and indicates that long doubles should be used when available.
  7684.  
  7685. =item C<usemorebits>
  7686.  
  7687. From F<usemorebits.U>:
  7688.  
  7689. This variable conditionally defines the C<USE_MORE_BITS> symbol,
  7690. and indicates that explicit 64-bit interfaces and long doubles
  7691. should be used when available.
  7692.  
  7693. =item C<usemultiplicity>
  7694.  
  7695. From F<usemultiplicity.U>:
  7696.  
  7697. This variable conditionally defines the C<MULTIPLICITY> symbol,
  7698. and indicates that Perl should be built to use multiplicity.
  7699.  
  7700. =item C<usemymalloc>
  7701.  
  7702. From F<mallocsrc.U>:
  7703.  
  7704. This variable contains y if the malloc that comes with this package
  7705. is desired over the system's version of malloc.  People often include
  7706. special versions of malloc for effiency, but such versions are often
  7707. less portable.  See also mallocsrc and mallocobj.
  7708. If this is C<y>, then -lmalloc is removed from $libs.
  7709.  
  7710. =item C<usenm>
  7711.  
  7712. From F<usenm.U>:
  7713.  
  7714. This variable contains C<true> or C<false> depending whether the
  7715. nm extraction is wanted or not.
  7716.  
  7717. =item C<useopcode>
  7718.  
  7719. From F<Extensions.U>:
  7720.  
  7721. This variable holds either C<true> or C<false> to indicate
  7722. whether the Opcode extension should be used.  The sole
  7723. use for this currently is to allow an easy mechanism
  7724. for users to skip the Opcode extension from the Configure
  7725. command line.
  7726.  
  7727. =item C<useperlio>
  7728.  
  7729. From F<useperlio.U>:
  7730.  
  7731. This variable conditionally defines the C<USE_PERLIO> symbol,
  7732. and indicates that the PerlIO abstraction should be
  7733. used throughout.
  7734.  
  7735. =item C<useposix>
  7736.  
  7737. From F<Extensions.U>:
  7738.  
  7739. This variable holds either C<true> or C<false> to indicate
  7740. whether the C<POSIX> extension should be used.  The sole
  7741. use for this currently is to allow an easy mechanism
  7742. for hints files to indicate that C<POSIX> will not compile
  7743. on a particular system.
  7744.  
  7745. =item C<usereentrant>
  7746.  
  7747. From F<usethreads.U>:
  7748.  
  7749. This variable conditionally defines the C<USE_REENTRANT_API> symbol,
  7750. which indicates that the thread code may try to use the various
  7751. _r versions of library functions.  This is only potentially
  7752. meaningful if usethreads is set and is very experimental, it is
  7753. not even prompted for.
  7754.  
  7755. =item C<usesfio>
  7756.  
  7757. From F<d_sfio.U>:
  7758.  
  7759. This variable is set to true when the user agrees to use sfio.
  7760. It is set to false when sfio is not available or when the user
  7761. explicitely requests not to use sfio.  It is here primarily so
  7762. that command-line settings can override the auto-detection of
  7763. d_sfio without running into a "WHOA THERE".
  7764.  
  7765. =item C<useshrplib>
  7766.  
  7767. From F<libperl.U>:
  7768.  
  7769. This variable is set to C<true> if the user wishes
  7770. to build a shared libperl, and C<false> otherwise.
  7771.  
  7772. =item C<usesocks>
  7773.  
  7774. From F<usesocks.U>:
  7775.  
  7776. This variable conditionally defines the C<USE_SOCKS> symbol,
  7777. and indicates that Perl should be built to use C<SOCKS>.
  7778.  
  7779. =item C<usethreads>
  7780.  
  7781. From F<usethreads.U>:
  7782.  
  7783. This variable conditionally defines the C<USE_THREADS> symbol,
  7784. and indicates that Perl should be built to use threads.
  7785.  
  7786. =item C<usevendorprefix>
  7787.  
  7788. From F<vendorprefix.U>:
  7789.  
  7790. This variable tells whether the vendorprefix
  7791. and consequently other vendor* paths are in use.
  7792.  
  7793. =item C<usevfork>
  7794.  
  7795. From F<d_vfork.U>:
  7796.  
  7797. This variable is set to true when the user accepts to use vfork.
  7798. It is set to false when no vfork is available or when the user
  7799. explicitely requests not to use vfork.
  7800.  
  7801. =item C<usrinc>
  7802.  
  7803. From F<usrinc.U>:
  7804.  
  7805. This variable holds the path of the include files, which is
  7806. usually F</usr/include>. It is mainly used by other Configure units.
  7807.  
  7808. =item C<uuname>
  7809.  
  7810. From F<Loc.U>:
  7811.  
  7812. This variable is defined but not used by Configure.
  7813. The value is a plain '' and is not useful.
  7814.  
  7815. =item C<uvoformat>
  7816.  
  7817. From F<perlxvf.U>:
  7818.  
  7819. This variable contains the format string used for printing
  7820. a Perl C<UV> as an unsigned octal integer. 
  7821.  
  7822. =item C<uvsize>
  7823.  
  7824. From F<perlxv.U>:
  7825.  
  7826. This variable is the size of a C<UV> in bytes.
  7827.  
  7828. =item C<uvtype>
  7829.  
  7830. From F<perlxv.U>:
  7831.  
  7832. This variable contains the C type used for Perl's C<UV>.
  7833.  
  7834. =item C<uvuformat>
  7835.  
  7836. From F<perlxvf.U>:
  7837.  
  7838. This variable contains the format string used for printing
  7839. a Perl C<UV> as an unsigned decimal integer. 
  7840.  
  7841. =item C<uvxformat>
  7842.  
  7843. From F<perlxvf.U>:
  7844.  
  7845. This variable contains the format string used for printing
  7846. a Perl C<UV> as an unsigned hexadecimal integer in lowercase abcdef.
  7847.  
  7848. =item C<uvXUformat>
  7849.  
  7850. From F<perlxvf.U>:
  7851.  
  7852. This variable contains the format string used for printing
  7853. a Perl C<UV> as an unsigned hexadecimal integer in uppercase C<ABCDEF>.
  7854.  
  7855. =back
  7856.  
  7857. =head2 v
  7858.  
  7859. =over 4
  7860.  
  7861. =item C<vendorarch>
  7862.  
  7863. From F<vendorarch.U>:
  7864.  
  7865. This variable contains the value of the C<PERL_VENDORARCH> symbol.
  7866. It may have a F<~> on the front. 
  7867. The standard distribution will put nothing in this directory.
  7868. Vendors who distribute perl may wish to place their own
  7869. architecture-dependent modules and extensions in this directory with
  7870. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor 
  7871. or equivalent.  See C<INSTALL> for details.
  7872.  
  7873. =item C<vendorarchexp>
  7874.  
  7875. From F<vendorarch.U>:
  7876.  
  7877. This variable is the F<~name> expanded version of vendorarch, so that you
  7878. may use it directly in Makefiles or shell scripts.
  7879.  
  7880. =item C<vendorbin>
  7881.  
  7882. From F<vendorbin.U>:
  7883.  
  7884. This variable contains the eventual value of the C<VENDORBIN> symbol.
  7885. It may have a F<~> on the front.
  7886. The standard distribution will put nothing in this directory.
  7887. Vendors who distribute perl may wish to place additional
  7888. binaries in this directory with
  7889. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor 
  7890. or equivalent.  See C<INSTALL> for details.
  7891.  
  7892. =item C<vendorbinexp>
  7893.  
  7894. From F<vendorbin.U>:
  7895.  
  7896. This variable is the F<~name> expanded version of vendorbin, so that you
  7897. may use it directly in Makefiles or shell scripts.
  7898.  
  7899. =item C<vendorhtml1dir>
  7900.  
  7901. From F<vendorhtml1dir.U>:
  7902.  
  7903. This variable contains the name of the directory for html 
  7904. pages.  It may have a F<~> on the front.
  7905. The standard distribution will put nothing in this directory.
  7906. Vendors who distribute perl may wish to place their own
  7907. html pages in this directory with
  7908. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor 
  7909. or equivalent.  See C<INSTALL> for details.
  7910.  
  7911. =item C<vendorhtml1direxp>
  7912.  
  7913. From F<vendorhtml1dir.U>:
  7914.  
  7915. This variable is the F<~name> expanded version of vendorhtml1dir, so that you
  7916. may use it directly in Makefiles or shell scripts.
  7917.  
  7918. =item C<vendorhtml3dir>
  7919.  
  7920. From F<vendorhtml3dir.U>:
  7921.  
  7922. This variable contains the name of the directory for html 
  7923. library pages.  It may have a F<~> on the front.
  7924. The standard distribution will put nothing in this directory.
  7925. Vendors who distribute perl may wish to place their own
  7926. html pages for modules and extensions in this directory with
  7927. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor 
  7928. or equivalent.  See C<INSTALL> for details.
  7929.  
  7930. =item C<vendorhtml3direxp>
  7931.  
  7932. From F<vendorhtml3dir.U>:
  7933.  
  7934. This variable is the F<~name> expanded version of vendorhtml3dir, so that you
  7935. may use it directly in Makefiles or shell scripts.
  7936.  
  7937. =item C<vendorlib>
  7938.  
  7939. From F<vendorlib.U>:
  7940.  
  7941. This variable contains the eventual value of the C<VENDORLIB> symbol,
  7942. which is the name of the private library for this package.
  7943. The standard distribution will put nothing in this directory.
  7944. Vendors who distribute perl may wish to place their own
  7945. modules in this directory with
  7946. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor 
  7947. or equivalent.  See C<INSTALL> for details.
  7948.  
  7949. =item C<vendorlib_stem>
  7950.  
  7951. From F<vendorlib.U>:
  7952.  
  7953. This variable is $vendorlibexp with any trailing version-specific component
  7954. removed.  The elements in inc_version_list (F<inc_version_list.U>) can
  7955. be tacked onto this variable to generate a list of directories to search.
  7956.  
  7957. =item C<vendorlibexp>
  7958.  
  7959. From F<vendorlib.U>:
  7960.  
  7961. This variable is the F<~name> expanded version of vendorlib, so that you
  7962. may use it directly in Makefiles or shell scripts.
  7963.  
  7964. =item C<vendorman1dir>
  7965.  
  7966. From F<vendorman1dir.U>:
  7967.  
  7968. This variable contains the name of the directory for man1 
  7969. pages.  It may have a F<~> on the front.
  7970. The standard distribution will put nothing in this directory.
  7971. Vendors who distribute perl may wish to place their own
  7972. man1 pages in this directory with
  7973. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor 
  7974. or equivalent.  See C<INSTALL> for details.
  7975.  
  7976. =item C<vendorman1direxp>
  7977.  
  7978. From F<vendorman1dir.U>:
  7979.  
  7980. This variable is the F<~name> expanded version of vendorman1dir, so that you
  7981. may use it directly in Makefiles or shell scripts.
  7982.  
  7983. =item C<vendorman3dir>
  7984.  
  7985. From F<vendorman3dir.U>:
  7986.  
  7987. This variable contains the name of the directory for man3 
  7988. pages.  It may have a F<~> on the front.
  7989. The standard distribution will put nothing in this directory.
  7990. Vendors who distribute perl may wish to place their own
  7991. man3 pages in this directory with
  7992. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor 
  7993. or equivalent.  See C<INSTALL> for details.
  7994.  
  7995. =item C<vendorman3direxp>
  7996.  
  7997. From F<vendorman3dir.U>:
  7998.  
  7999. This variable is the F<~name> expanded version of vendorman3dir, so that you
  8000. may use it directly in Makefiles or shell scripts.
  8001.  
  8002. =item C<vendorprefix>
  8003.  
  8004. From F<vendorprefix.U>:
  8005.  
  8006. This variable holds the full absolute path of the directory below
  8007. which the vendor will install add-on packages.
  8008. See C<INSTALL> for usage and examples.
  8009.  
  8010. =item C<vendorprefixexp>
  8011.  
  8012. From F<vendorprefix.U>:
  8013.  
  8014. This variable holds the full absolute path of the directory below
  8015. which the vendor will install add-on packages.  Derived from vendorprefix.
  8016.  
  8017. =item C<vendorscript>
  8018.  
  8019. From F<vendorscript.U>:
  8020.  
  8021. This variable contains the eventual value of the C<VENDORSCRIPT> symbol.
  8022. It may have a F<~> on the front.
  8023. The standard distribution will put nothing in this directory.
  8024. Vendors who distribute perl may wish to place additional
  8025. executable scripts in this directory with
  8026. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor 
  8027. or equivalent.  See C<INSTALL> for details.
  8028.  
  8029. =item C<vendorscriptexp>
  8030.  
  8031. From F<vendorscript.U>:
  8032.  
  8033. This variable is the F<~name> expanded version of vendorscript, so that you
  8034. may use it directly in Makefiles or shell scripts.
  8035.  
  8036. =item C<version>
  8037.  
  8038. From F<patchlevel.U>:
  8039.  
  8040. The full version number of this package, such as 5.6.1 (or 5_6_1).
  8041. This combines revision, patchlevel, and subversion to get the
  8042. full version number, including any possible subversions.
  8043. This is suitable for use as a directory name, and hence is
  8044. filesystem dependent.
  8045.  
  8046. =item C<version_patchlevel_string>
  8047.  
  8048. From F<patchlevel.U>:
  8049.  
  8050. This is a string combining version, subversion and
  8051. perl_patchlevel (if perl_patchlevel is non-zero).  
  8052. It is typically something like 
  8053. 'version 7 subversion 1'  or
  8054. 'version 7 subversion 1 patchlevel 11224'
  8055. It is computed here to avoid duplication of code in F<myconfig.SH>
  8056. and F<lib/Config.pm>. 
  8057.  
  8058. =item C<versiononly>
  8059.  
  8060. From F<versiononly.U>:
  8061.  
  8062. If set, this symbol indicates that only the version-specific
  8063. components of a perl installation should be installed.
  8064. This may be useful for making a test installation of a new
  8065. version without disturbing the existing installation.
  8066. Setting versiononly is equivalent to setting installperl's -v option.
  8067. In particular, the non-versioned scripts and programs such as
  8068. a2p, c2ph, h2xs, pod2*, and perldoc are not installed
  8069. (see C<INSTALL> for a more complete list).  Nor are the man
  8070. pages installed.
  8071. Usually, this is undef.
  8072.  
  8073. =item C<vi>
  8074.  
  8075. From F<Loc.U>:
  8076.  
  8077. This variable is defined but not used by Configure.
  8078. The value is a plain '' and is not useful.
  8079.  
  8080. =item C<voidflags>
  8081.  
  8082. From F<voidflags.U>:
  8083.  
  8084. This variable contains the eventual value of the C<VOIDFLAGS> symbol,
  8085. which indicates how much support of the void type is given by this
  8086. compiler.  See C<VOIDFLAGS> for more info.
  8087.  
  8088. =back
  8089.  
  8090. =head2 x
  8091.  
  8092. =over 4
  8093.  
  8094. =item C<xlibpth>
  8095.  
  8096. From F<libpth.U>:
  8097.  
  8098. This variable holds extra path (space-separated) used to find
  8099. libraries on this platform, for example C<CPU>-specific libraries
  8100. (on multi-C<CPU> platforms) may be listed here.
  8101.  
  8102. =item C<xs_apiversion>
  8103.  
  8104. From F<xs_apiversion.U>:
  8105.  
  8106. This variable contains the version of the oldest perl binary
  8107. compatible with the present perl.  F<perl.c>:incpush() and
  8108. F<lib/lib.pm> will automatically search in $sitearch for older
  8109. directories across major versions back to xs_apiversion.
  8110. This is only useful if you have a perl library directory tree
  8111. structured like the default one.
  8112. See C<INSTALL> for how this works.
  8113. The versioned site_perl directory was introduced in 5.005,
  8114. so that is the lowest possible value.
  8115. Since this can depend on compile time options
  8116. it is set by Configure.  Other non-default sources
  8117. of potential incompatibility, such as multiplicity, threads,
  8118. debugging, 64bits, sfio, etc., are not checked for currently,
  8119. though in principle we could go snooping around in old
  8120. F<Config.pm> files.
  8121.  
  8122. =back
  8123.  
  8124. =head2 y
  8125.  
  8126. =over 4
  8127.  
  8128. =item C<yacc>
  8129.  
  8130. From F<yacc.U>:
  8131.  
  8132. This variable holds the name of the compiler compiler we
  8133. want to use in the Makefile. It can be yacc, byacc, or bison -y.
  8134.  
  8135. =item C<yaccflags>
  8136.  
  8137. From F<yacc.U>:
  8138.  
  8139. This variable contains any additional yacc flags desired by the
  8140. user.  It is up to the Makefile to use this.
  8141.  
  8142. =back
  8143.  
  8144. =head2 z
  8145.  
  8146. =over 4
  8147.  
  8148. =item C<zcat>
  8149.  
  8150. From F<Loc.U>:
  8151.  
  8152. This variable is defined but not used by Configure.
  8153. The value is a plain '' and is not useful.
  8154.  
  8155. =item C<zip>
  8156.  
  8157. From F<Loc.U>:
  8158.  
  8159. This variable is used internally by Configure to determine the
  8160. full pathname (if any) of the zip program.  After Configure runs,
  8161. the value is reset to a plain C<zip> and is not useful.
  8162.  
  8163.  
  8164. =back
  8165.  
  8166. =head1 NOTE
  8167.  
  8168. This module contains a good example of how to use tie to implement a
  8169. cache and an example of how to make a tied variable readonly to those
  8170. outside of it.
  8171.  
  8172. =cut
  8173.  
  8174.