home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _2aeec6b988715d5c07a52db8f1472a9e < prev    next >
Text File  |  2000-03-23  |  243KB  |  5,417 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Config - access Perl configuration information</TITLE>
  5. <LINK REL="stylesheet" HREF="../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Config - access Perl configuration information</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#example">EXAMPLE</A></LI>
  26.     <LI><A HREF="#warning">WARNING</A></LI>
  27.     <LI><A HREF="#glossary">GLOSSARY</A></LI>
  28.     <UL>
  29.  
  30.         <LI><A HREF="#_">_</A></LI>
  31.         <LI><A HREF="#a">a</A></LI>
  32.         <LI><A HREF="#b">b</A></LI>
  33.         <LI><A HREF="#c">c</A></LI>
  34.         <LI><A HREF="#c">C</A></LI>
  35.         <LI><A HREF="#d">d</A></LI>
  36.         <LI><A HREF="#e">e</A></LI>
  37.         <LI><A HREF="#f">f</A></LI>
  38.         <LI><A HREF="#g">g</A></LI>
  39.         <LI><A HREF="#h">h</A></LI>
  40.         <LI><A HREF="#i">i</A></LI>
  41.         <LI><A HREF="#k">k</A></LI>
  42.         <LI><A HREF="#l">l</A></LI>
  43.         <LI><A HREF="#m">m</A></LI>
  44.         <LI><A HREF="#m">M</A></LI>
  45.         <LI><A HREF="#n">n</A></LI>
  46.         <LI><A HREF="#o">o</A></LI>
  47.         <LI><A HREF="#p">p</A></LI>
  48.         <LI><A HREF="#p">P</A></LI>
  49.         <LI><A HREF="#q">q</A></LI>
  50.         <LI><A HREF="#r">r</A></LI>
  51.         <LI><A HREF="#s">s</A></LI>
  52.         <LI><A HREF="#t">t</A></LI>
  53.         <LI><A HREF="#u">u</A></LI>
  54.         <LI><A HREF="#v">v</A></LI>
  55.         <LI><A HREF="#x">x</A></LI>
  56.         <LI><A HREF="#z">z</A></LI>
  57.     </UL>
  58.  
  59.     <LI><A HREF="#note">NOTE</A></LI>
  60. </UL>
  61. <!-- INDEX END -->
  62.  
  63. <HR>
  64. <P>
  65. <H1><A NAME="name">NAME</A></H1>
  66. <P>Config - access Perl configuration information</P>
  67. <P>
  68. <HR>
  69. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  70. <UL>
  71. <LI>Linux</LI>
  72. <LI>Solaris</LI>
  73. <LI>Windows</LI>
  74. </UL>
  75. <HR>
  76. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  77. <PRE>
  78.     use Config;
  79.     if ($Config{'cc'} =~ /gcc/) {
  80.         print "built by gcc\n";
  81.     }</PRE>
  82. <PRE>
  83.     use Config qw(myconfig config_sh config_vars);</PRE>
  84. <PRE>
  85.     print myconfig();</PRE>
  86. <PRE>
  87.     print config_sh();</PRE>
  88. <PRE>
  89.     config_vars(qw(osname archname));</PRE>
  90. <P>
  91. <HR>
  92. <H1><A NAME="description">DESCRIPTION</A></H1>
  93. <P>The Config module contains all the information that was available to
  94. the <CODE>Configure</CODE> program at Perl build time (over 900 values).</P>
  95. <P>Shell variables from the <EM>config.sh</EM> file (written by Configure) are
  96. stored in the readonly-variable <CODE>%Config</CODE>, indexed by their names.</P>
  97. <P>Values stored in config.sh as 'undef' are returned as undefined
  98. values.  The perl <A HREF="../lib/Pod/perlfunc.html#item_exists"><CODE>exists</CODE></A> function can be used to check if a
  99. named variable exists.</P>
  100. <DL>
  101. <DT><STRONG><A NAME="item_myconfig"><CODE>myconfig()</CODE></A></STRONG><BR>
  102. <DD>
  103. Returns a textual summary of the major perl configuration values.
  104. See also <CODE>-V</CODE> in <A HREF="../lib/Pod/perlrun.html#switches">Switches in the perlrun manpage</A>.
  105. <P></P>
  106. <DT><STRONG><A NAME="item_config_sh"><CODE>config_sh()</CODE></A></STRONG><BR>
  107. <DD>
  108. Returns the entire perl configuration information in the form of the
  109. original config.sh shell variable assignment script.
  110. <P></P>
  111. <DT><STRONG><A NAME="item_config_vars"><CODE>config_vars(@names)</CODE></A></STRONG><BR>
  112. <DD>
  113. Prints to STDOUT the values of the named configuration variable. Each is
  114. printed on a separate line in the form:
  115. <PRE>
  116.   name='value';</PRE>
  117. <P>Names which are unknown are output as <CODE>name='UNKNOWN';</CODE>.
  118. See also <CODE>-V:name</CODE> in <A HREF="../lib/Pod/perlrun.html#switches">Switches in the perlrun manpage</A>.</P>
  119. <P></P></DL>
  120. <P>
  121. <HR>
  122. <H1><A NAME="example">EXAMPLE</A></H1>
  123. <P>Here's a more sophisticated example of using %Config:</P>
  124. <PRE>
  125.     use Config;
  126.     use strict;</PRE>
  127. <PRE>
  128.     my %sig_num;
  129.     my @sig_name;
  130.     unless($Config{sig_name} && $Config{sig_num}) {
  131.         die "No sigs?";
  132.     } else {
  133.         my @names = split ' ', $Config{sig_name};
  134.         @sig_num{@names} = split ' ', $Config{sig_num};
  135.         foreach (@names) {
  136.             $sig_name[$sig_num{$_}] ||= $_;
  137.         }   
  138.     }</PRE>
  139. <PRE>
  140.     print "signal #17 = $sig_name[17]\n";
  141.     if ($sig_num{ALRM}) { 
  142.         print "SIGALRM is $sig_num{ALRM}\n";
  143.     }</PRE>
  144. <P>
  145. <HR>
  146. <H1><A NAME="warning">WARNING</A></H1>
  147. <P>Because this information is not stored within the perl executable
  148. itself it is possible (but unlikely) that the information does not
  149. relate to the actual perl binary which is being used to access it.</P>
  150. <P>The Config module is installed into the architecture and version
  151. specific library directory ($Config{installarchlib}) and it checks the
  152. perl version number when loaded.</P>
  153. <P>The values stored in config.sh may be either single-quoted or
  154. double-quoted. Double-quoted strings are handy for those cases where you
  155. need to include escape sequences in the strings. To avoid runtime variable
  156. interpolation, any <CODE>$</CODE> and <CODE>@</CODE> characters are replaced by <CODE>\$</CODE> and
  157. <CODE>\@</CODE>, respectively. This isn't foolproof, of course, so don't embed <CODE>\$</CODE>
  158. or <CODE>\@</CODE> in double-quoted strings unless you're willing to deal with the
  159. consequences. (The slashes will end up escaped and the <CODE>$</CODE> or <CODE>@</CODE> will
  160. trigger variable interpolation)</P>
  161. <P>
  162. <HR>
  163. <H1><A NAME="glossary">GLOSSARY</A></H1>
  164. <P>Most <CODE>Config</CODE> variables are determined by the <CODE>Configure</CODE> script
  165. on platforms supported by it (which is most UNIX platforms).  Some
  166. platforms have custom-made <CODE>Config</CODE> variables, and may thus not have
  167. some of the variables described below, or may have extraneous variables
  168. specific to that particular port.  See the port specific documentation
  169. in such cases.</P>
  170. <P>
  171. <H2><A NAME="_">_</A></H2>
  172. <DL>
  173. <DT><STRONG><A NAME="item__a"><CODE>_a</CODE></A></STRONG><BR>
  174. <DD>
  175. From <EM>Unix.U</EM>:
  176. <P>This variable defines the extension used for ordinary libraries.
  177. For unix, it is <EM>.a</EM>.  The <EM>.</EM> is included.  Other possible
  178. values include <EM>.lib</EM>.</P>
  179. <P></P>
  180. <DT><STRONG><A NAME="item__exe"><CODE>_exe</CODE></A></STRONG><BR>
  181. <DD>
  182. From <EM>Unix.U</EM>:
  183. <P>This variable defines the extension used for executable files.
  184. For unix it is empty.  Other possible values include <EM>.exe</EM>.</P>
  185. <P></P>
  186. <DT><STRONG><A NAME="item__o"><CODE>_o</CODE></A></STRONG><BR>
  187. <DD>
  188. From <EM>Unix.U</EM>:
  189. <P>This variable defines the extension used for object files.
  190. For unix, it is <EM>.o</EM>.  The <EM>.</EM> is included.  Other possible
  191. values include <EM>.obj</EM>.</P>
  192. <P></P></DL>
  193. <P>
  194. <H2><A NAME="a">a</A></H2>
  195. <DL>
  196. <DT><STRONG><A NAME="item_afs"><CODE>afs</CODE></A></STRONG><BR>
  197. <DD>
  198. From <EM>afs.U</EM>:
  199. <P>This variable is set to <CODE>true</CODE> if <CODE>AFS</CODE> (Andrew File System) is used
  200. on the system, <CODE>false</CODE> otherwise.  It is possible to override this
  201. with a hint value or command line option, but you'd better know
  202. what you are doing.</P>
  203. <P></P>
  204. <DT><STRONG><A NAME="item_alignbytes"><CODE>alignbytes</CODE></A></STRONG><BR>
  205. <DD>
  206. From <EM>alignbytes.U</EM>:
  207. <P>This variable holds the number of bytes required to align a
  208. double-- or a long double when applicable. Usual values are
  209. 2, 4 and 8.  The default is eight, for safety.</P>
  210. <P></P>
  211. <DT><STRONG><A NAME="item_ansi2knr"><CODE>ansi2knr</CODE></A></STRONG><BR>
  212. <DD>
  213. From <EM>ansi2knr.U</EM>:
  214. <P>This variable is set if the user needs to run ansi2knr.  
  215. Currently, this is not supported, so we just abort.</P>
  216. <P></P>
  217. <DT><STRONG><A NAME="item_aphostname"><CODE>aphostname</CODE></A></STRONG><BR>
  218. <DD>
  219. From <EM>d_gethname.U</EM>:
  220. <P>This variable contains the command which can be used to compute the
  221. host name. The command is fully qualified by its absolute path, to make
  222. it safe when used by a process with super-user privileges.</P>
  223. <P></P>
  224. <DT><STRONG><A NAME="item_api_revision"><CODE>api_revision</CODE></A></STRONG><BR>
  225. <DD>
  226. From <EM>patchlevel.U</EM>:
  227. <P>The three variables, api_revision, api_version, and
  228. api_subversion, specify the version of the oldest perl binary
  229. compatible with the present perl.  In a full version string
  230. such as <EM>5.6.1</EM>, api_revision is the <CODE>5</CODE>.
  231. Prior to 5.5.640, the format was a floating point number,
  232. like 5.00563.</P>
  233. <PRE>
  234.         F<perl.c>:incpush() and F<lib/lib.pm> will automatically search in</PRE>
  235. <PRE>
  236.         $F<sitelib/.>. for older directories back to the limit specified
  237. by these api_ variables.  This is only useful if you have a
  238. perl library directory tree structured like the default one.
  239. See C<INSTALL> for how this works.  The versioned site_perl
  240. directory was introduced in 5.005, so that is the lowest
  241. possible value.  The version list appropriate for the current
  242. system is determined in F<inc_version_list.U>.</PRE>
  243. <PRE>
  244.         C<XXX> To do:  Since compatibility can depend on compile time</PRE>
  245. <PRE>
  246.         options (such as bincompat, longlong, F<etc.>) it should
  247. (perhaps) be set by Configure, but currently it isn't.
  248. Currently, we read a hard-wired value from F<patchlevel.h>.
  249. Perhaps what we ought to do is take the hard-wired value from
  250. F<patchlevel.h> but then modify it if the current Configure
  251. options warrant.  F<patchlevel.h> then would use an #ifdef guard.</PRE>
  252. <P></P>
  253. <DT><STRONG><A NAME="item_api_subversion"><CODE>api_subversion</CODE></A></STRONG><BR>
  254. <DD>
  255. From <EM>patchlevel.U</EM>:
  256. <P>The three variables, api_revision, api_version, and
  257. api_subversion, specify the version of the oldest perl binary
  258. compatible with the present perl.  In a full version string
  259. such as <EM>5.6.1</EM>, api_subversion is the <CODE>1</CODE>.  See api_revision for
  260. full details.</P>
  261. <P></P>
  262. <DT><STRONG><A NAME="item_api_version"><CODE>api_version</CODE></A></STRONG><BR>
  263. <DD>
  264. From <EM>patchlevel.U</EM>:
  265. <P>The three variables, api_revision, api_version, and
  266. api_subversion, specify the version of the oldest perl binary
  267. compatible with the present perl.  In a full version string
  268. such as <EM>5.6.1</EM>, api_version is the <CODE>6</CODE>.  See api_revision for
  269. full details.  As a special case, 5.5.0 is rendered in the
  270. old-style as 5.005.  (In the 5.005_0x maintenance series,
  271. this was the only versioned directory in $<EM>sitelib.</EM>)</P>
  272. <P></P>
  273. <DT><STRONG><A NAME="item_api_versionstring"><CODE>api_versionstring</CODE></A></STRONG><BR>
  274. <DD>
  275. From <EM>patchlevel.U</EM>:
  276. <P>This variable combines api_revision, api_version, and
  277. api_subversion in a format such as 5.6.1 (or 5_6_1) suitable
  278. for use as a directory name.  This is filesystem dependent.</P>
  279. <P></P>
  280. <DT><STRONG><A NAME="item_ar"><CODE>ar</CODE></A></STRONG><BR>
  281. <DD>
  282. From <EM>Loc.U</EM>:
  283. <P>This variable is used internally by Configure to determine the
  284. full pathname (if any) of the ar program.  After Configure runs,
  285. the value is reset to a plain <A HREF="#item_ar"><CODE>ar</CODE></A> and is not useful.</P>
  286. <P></P>
  287. <DT><STRONG><A NAME="item_archlib"><CODE>archlib</CODE></A></STRONG><BR>
  288. <DD>
  289. From <EM>archlib.U</EM>:
  290. <P>This variable holds the name of the directory in which the user wants
  291. to put architecture-dependent public library files for $package.
  292. It is most often a local directory such as <EM>/usr/local/lib</EM>.
  293. Programs using this variable must be prepared to deal
  294. with filename expansion.</P>
  295. <P></P>
  296. <DT><STRONG><A NAME="item_archlibexp"><CODE>archlibexp</CODE></A></STRONG><BR>
  297. <DD>
  298. From <EM>archlib.U</EM>:
  299. <P>This variable is the same as the archlib variable, but is
  300. filename expanded at configuration time, for convenient use.</P>
  301. <P></P>
  302. <DT><STRONG><A NAME="item_archname64"><CODE>archname64</CODE></A></STRONG><BR>
  303. <DD>
  304. From <EM>use64bits.U</EM>:
  305. <P>This variable is used for the 64-bitness part of $archname.</P>
  306. <P></P>
  307. <DT><STRONG><A NAME="item_archname"><CODE>archname</CODE></A></STRONG><BR>
  308. <DD>
  309. From <EM>archname.U</EM>:
  310. <P>This variable is a short name to characterize the current
  311. architecture.  It is used mainly to construct the default archlib.</P>
  312. <P></P>
  313. <DT><STRONG><A NAME="item_archobjs"><CODE>archobjs</CODE></A></STRONG><BR>
  314. <DD>
  315. From <EM>Unix.U</EM>:
  316. <P>This variable defines any additional objects that must be linked
  317. in with the program on this architecture.  On unix, it is usually
  318. empty.  It is typically used to include emulations of unix calls
  319. or other facilities.  For perl on <EM>OS/2</EM>, for example, this would
  320. include <EM>os2/os2.obj</EM>.</P>
  321. <P></P>
  322. <DT><STRONG><A NAME="item_awk"><CODE>awk</CODE></A></STRONG><BR>
  323. <DD>
  324. From <EM>Loc.U</EM>:
  325. <P>This variable is used internally by Configure to determine the
  326. full pathname (if any) of the awk program.  After Configure runs,
  327. the value is reset to a plain <A HREF="#item_awk"><CODE>awk</CODE></A> and is not useful.</P>
  328. <P></P></DL>
  329. <P>
  330. <H2><A NAME="b">b</A></H2>
  331. <DL>
  332. <DT><STRONG><A NAME="item_baserev"><CODE>baserev</CODE></A></STRONG><BR>
  333. <DD>
  334. From <EM>baserev.U</EM>:
  335. <P>The base revision level of this package, from the <EM>.package</EM> file.</P>
  336. <P></P>
  337. <DT><STRONG><A NAME="item_bash"><CODE>bash</CODE></A></STRONG><BR>
  338. <DD>
  339. From <EM>Loc.U</EM>:
  340. <P>This variable is defined but not used by Configure.
  341. The value is a plain '' and is not useful.</P>
  342. <P></P>
  343. <DT><STRONG><A NAME="item_bin"><CODE>bin</CODE></A></STRONG><BR>
  344. <DD>
  345. From <EM>bin.U</EM>:
  346. <P>This variable holds the name of the directory in which the user wants
  347. to put publicly executable images for the package in question.  It
  348. is most often a local directory such as <EM>/usr/local/bin</EM>. Programs using
  349. this variable must be prepared to deal with <EM>~name</EM> substitution.</P>
  350. <P></P>
  351. <DT><STRONG><A NAME="item_bincompat5005"><CODE>bincompat5005</CODE></A></STRONG><BR>
  352. <DD>
  353. From <EM>bincompat5005.U</EM>:
  354. <P>This variable contains y if this version of Perl should be
  355. binary-compatible with Perl 5.005.</P>
  356. <P></P>
  357. <DT><STRONG><A NAME="item_binexp"><CODE>binexp</CODE></A></STRONG><BR>
  358. <DD>
  359. From <EM>bin.U</EM>:
  360. <P>This is the same as the bin variable, but is filename expanded at
  361. configuration time, for use in your makefiles.</P>
  362. <P></P>
  363. <DT><STRONG><A NAME="item_bison"><CODE>bison</CODE></A></STRONG><BR>
  364. <DD>
  365. From <EM>Loc.U</EM>:
  366. <P>This variable is defined but not used by Configure.
  367. The value is a plain '' and is not useful.</P>
  368. <P></P>
  369. <DT><STRONG><A NAME="item_byacc"><CODE>byacc</CODE></A></STRONG><BR>
  370. <DD>
  371. From <EM>Loc.U</EM>:
  372. <P>This variable is used internally by Configure to determine the
  373. full pathname (if any) of the byacc program.  After Configure runs,
  374. the value is reset to a plain <A HREF="#item_byacc"><CODE>byacc</CODE></A> and is not useful.</P>
  375. <P></P>
  376. <DT><STRONG><A NAME="item_byteorder"><CODE>byteorder</CODE></A></STRONG><BR>
  377. <DD>
  378. From <EM>byteorder.U</EM>:
  379. <P>This variable holds the byte order. In the following, larger digits
  380. indicate more significance.  The variable byteorder is either 4321
  381. on a big-endian machine, or 1234 on a little-endian, or 87654321
  382. on a Cray ... or 3412 with weird order !</P>
  383. <P></P></DL>
  384. <P>
  385. <H2><A NAME="c">c</A></H2>
  386. <DL>
  387. <DT><STRONG><A NAME="item_c"><CODE>c</CODE></A></STRONG><BR>
  388. <DD>
  389. From <EM>n.U</EM>:
  390. <P>This variable contains the \c string if that is what causes the echo
  391. command to suppress newline.  Otherwise it is null.  Correct usage is
  392. $echo $n ``prompt for a question: $c''.</P>
  393. <P></P>
  394. <DT><STRONG><A NAME="item_castflags"><CODE>castflags</CODE></A></STRONG><BR>
  395. <DD>
  396. From <EM>d_castneg.U</EM>:
  397. <P>This variable contains a flag that precise difficulties the
  398. compiler has casting odd floating values to unsigned long:
  399. 0 = ok
  400. 1 = couldn't cast < 0
  401. 2 = couldn't cast >= 0x80000000
  402. 4 = couldn't cast in argument expression list</P>
  403. <P></P>
  404. <DT><STRONG><A NAME="item_cat"><CODE>cat</CODE></A></STRONG><BR>
  405. <DD>
  406. From <EM>Loc.U</EM>:
  407. <P>This variable is used internally by Configure to determine the
  408. full pathname (if any) of the cat program.  After Configure runs,
  409. the value is reset to a plain <A HREF="#item_cat"><CODE>cat</CODE></A> and is not useful.</P>
  410. <P></P>
  411. <DT><STRONG><A NAME="item_cc"><CODE>cc</CODE></A></STRONG><BR>
  412. <DD>
  413. From <EM>cc.U</EM>:
  414. <P>This variable holds the name of a command to execute a C compiler which
  415. can resolve multiple global references that happen to have the same
  416. name.  Usual values are <A HREF="#item_cc"><CODE>cc</CODE></A>, <A HREF="#item_Mcc"><CODE>Mcc</CODE></A>, <CODE>cc -M</CODE>, and <CODE>gcc</CODE>.</P>
  417. <P></P>
  418. <DT><STRONG><A NAME="item_cccdlflags"><CODE>cccdlflags</CODE></A></STRONG><BR>
  419. <DD>
  420. From <EM>dlsrc.U</EM>:
  421. <P>This variable contains any special flags that might need to be
  422. passed with <CODE>cc -c</CODE> 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.</P>
  425. <P></P>
  426. <DT><STRONG><A NAME="item_ccdlflags"><CODE>ccdlflags</CODE></A></STRONG><BR>
  427. <DD>
  428. From <EM>dlsrc.U</EM>:
  429. <P>This variable contains any special flags that might need to be
  430. passed to cc to link with a shared library for dynamic loading.
  431. It is up to the makefile to use it.  For sunos 4.1, it should
  432. be empty.</P>
  433. <P></P>
  434. <DT><STRONG><A NAME="item_ccflags"><CODE>ccflags</CODE></A></STRONG><BR>
  435. <DD>
  436. From <EM>ccflags.U</EM>:
  437. <P>This variable contains any additional C compiler flags desired by
  438. the user.  It is up to the Makefile to use this.</P>
  439. <P></P>
  440. <DT><STRONG><A NAME="item_ccsymbols"><CODE>ccsymbols</CODE></A></STRONG><BR>
  441. <DD>
  442. From <EM>Cppsym.U</EM>:
  443. <P>The variable contains the symbols defined by the C compiler alone.
  444. The symbols defined by cpp or by cc when it calls cpp are not in
  445. this list, see cppsymbols and cppccsymbols.
  446. The list is a space-separated list of symbol=value tokens.</P>
  447. <P></P>
  448. <DT><STRONG><A NAME="item_cf_by"><CODE>cf_by</CODE></A></STRONG><BR>
  449. <DD>
  450. From <EM>cf_who.U</EM>:
  451. <P>Login name of the person who ran the Configure script and answered the
  452. questions. This is used to tag both <EM>config.sh</EM> and <EM>config_h.SH</EM>.</P>
  453. <P></P>
  454. <DT><STRONG><A NAME="item_cf_email"><CODE>cf_email</CODE></A></STRONG><BR>
  455. <DD>
  456. From <EM>cf_email.U</EM>:
  457. <P>Electronic mail address of the person who ran Configure. This can be
  458. used by units that require the user's e-mail, like <EM>MailList.U</EM>.</P>
  459. <P></P>
  460. <DT><STRONG><A NAME="item_cf_time"><CODE>cf_time</CODE></A></STRONG><BR>
  461. <DD>
  462. From <EM>cf_who.U</EM>:
  463. <P>Holds the output of the <A HREF="#item_date"><CODE>date</CODE></A> command when the configuration file was
  464. produced. This is used to tag both <EM>config.sh</EM> and <EM>config_h.SH</EM>.</P>
  465. <P></P>
  466. <DT><STRONG><A NAME="item_charsize"><CODE>charsize</CODE></A></STRONG><BR>
  467. <DD>
  468. From <EM>charsize.U</EM>:
  469. <P>This variable contains the value of the <CODE>CHARSIZE</CODE> symbol, which
  470. indicates to the C program how many bytes there are in a character.</P>
  471. <P></P>
  472. <DT><STRONG><A NAME="item_chgrp"><CODE>chgrp</CODE></A></STRONG><BR>
  473. <DD>
  474. From <EM>Loc.U</EM>:
  475. <P>This variable is defined but not used by Configure.
  476. The value is a plain '' and is not useful.</P>
  477. <P></P>
  478. <DT><STRONG><A NAME="item_chmod"><CODE>chmod</CODE></A></STRONG><BR>
  479. <DD>
  480. From <EM>Loc.U</EM>:
  481. <P>This variable is defined but not used by Configure.
  482. The value is a plain '' and is not useful.</P>
  483. <P></P>
  484. <DT><STRONG><A NAME="item_chown"><CODE>chown</CODE></A></STRONG><BR>
  485. <DD>
  486. From <EM>Loc.U</EM>:
  487. <P>This variable is defined but not used by Configure.
  488. The value is a plain '' and is not useful.</P>
  489. <P></P>
  490. <DT><STRONG><A NAME="item_clocktype"><CODE>clocktype</CODE></A></STRONG><BR>
  491. <DD>
  492. From <EM>d_times.U</EM>:
  493. <P>This variable holds the type returned by times(). It can be long,
  494. or clock_t on <CODE>BSD</CODE> sites (in which case <sys/types.h> should be
  495. included).</P>
  496. <P></P>
  497. <DT><STRONG><A NAME="item_comm"><CODE>comm</CODE></A></STRONG><BR>
  498. <DD>
  499. From <EM>Loc.U</EM>:
  500. <P>This variable is used internally by Configure to determine the
  501. full pathname (if any) of the comm program.  After Configure runs,
  502. the value is reset to a plain <A HREF="#item_comm"><CODE>comm</CODE></A> and is not useful.</P>
  503. <P></P>
  504. <DT><STRONG><A NAME="item_compress"><CODE>compress</CODE></A></STRONG><BR>
  505. <DD>
  506. From <EM>Loc.U</EM>:
  507. <P>This variable is defined but not used by Configure.
  508. The value is a plain '' and is not useful.</P>
  509. <P></P></DL>
  510. <P>
  511. <H2><A NAME="c">C</A></H2>
  512. <DL>
  513. <DT><STRONG><A NAME="item_CONFIGDOTSH"><CODE>CONFIGDOTSH</CODE></A></STRONG><BR>
  514. <DD>
  515. From <EM>Oldsyms.U</EM>:
  516. <P>This is set to <CODE>true</CODE> in <EM>config.sh</EM> so that a shell script
  517. sourcing <EM>config.sh</EM> can tell if it has been sourced already.</P>
  518. <P></P>
  519. <DT><STRONG><A NAME="item_contains"><CODE>contains</CODE></A></STRONG><BR>
  520. <DD>
  521. From <EM>contains.U</EM>:
  522. <P>This variable holds the command to do a grep with a proper return
  523. status.  On most sane systems it is simply <A HREF="#item_grep"><CODE>grep</CODE></A>.  On insane systems
  524. it is a grep followed by a cat followed by a test.  This variable
  525. is primarily for the use of other Configure units.</P>
  526. <P></P>
  527. <DT><STRONG><A NAME="item_cp"><CODE>cp</CODE></A></STRONG><BR>
  528. <DD>
  529. From <EM>Loc.U</EM>:
  530. <P>This variable is used internally by Configure to determine the
  531. full pathname (if any) of the cp program.  After Configure runs,
  532. the value is reset to a plain <A HREF="#item_cp"><CODE>cp</CODE></A> and is not useful.</P>
  533. <P></P>
  534. <DT><STRONG><A NAME="item_cpio"><CODE>cpio</CODE></A></STRONG><BR>
  535. <DD>
  536. From <EM>Loc.U</EM>:
  537. <P>This variable is defined but not used by Configure.
  538. The value is a plain '' and is not useful.</P>
  539. <P></P>
  540. <DT><STRONG><A NAME="item_cpp"><CODE>cpp</CODE></A></STRONG><BR>
  541. <DD>
  542. From <EM>Loc.U</EM>:
  543. <P>This variable is used internally by Configure to determine the
  544. full pathname (if any) of the cpp program.  After Configure runs,
  545. the value is reset to a plain <A HREF="#item_cpp"><CODE>cpp</CODE></A> and is not useful.</P>
  546. <P></P>
  547. <DT><STRONG><A NAME="item_cpp_stuff"><CODE>cpp_stuff</CODE></A></STRONG><BR>
  548. <DD>
  549. From <EM>cpp_stuff.U</EM>:
  550. <P>This variable contains an identification of the catenation mechanism
  551. used by the C preprocessor.</P>
  552. <P></P>
  553. <DT><STRONG><A NAME="item_cppccsymbols"><CODE>cppccsymbols</CODE></A></STRONG><BR>
  554. <DD>
  555. From <EM>Cppsym.U</EM>:
  556. <P>The variable contains the symbols defined by the C compiler
  557. when it calls cpp.  The symbols defined by the cc alone or cpp
  558. alone are not in this list, see ccsymbols and cppsymbols.
  559. The list is a space-separated list of symbol=value tokens.</P>
  560. <P></P>
  561. <DT><STRONG><A NAME="item_cppflags"><CODE>cppflags</CODE></A></STRONG><BR>
  562. <DD>
  563. From <EM>ccflags.U</EM>:
  564. <P>This variable holds the flags that will be passed to the C pre-
  565. processor. It is up to the Makefile to use it.</P>
  566. <P></P>
  567. <DT><STRONG><A NAME="item_cpplast"><CODE>cpplast</CODE></A></STRONG><BR>
  568. <DD>
  569. From <EM>cppstdin.U</EM>:
  570. <P>This variable has the same functionality as cppminus, only it applies
  571. to cpprun and not cppstdin.</P>
  572. <P></P>
  573. <DT><STRONG><A NAME="item_cppminus"><CODE>cppminus</CODE></A></STRONG><BR>
  574. <DD>
  575. From <EM>cppstdin.U</EM>:
  576. <P>This variable contains the second part of the string which will invoke
  577. the C preprocessor on the standard input and produce to standard
  578. output.  This variable will have the value <CODE>-</CODE> if cppstdin needs
  579. a minus to specify standard input, otherwise the value is ``''.</P>
  580. <P></P>
  581. <DT><STRONG><A NAME="item_cpprun"><CODE>cpprun</CODE></A></STRONG><BR>
  582. <DD>
  583. From <EM>cppstdin.U</EM>:
  584. <P>This variable contains the command which will invoke a C preprocessor
  585. on standard input and put the output to stdout. It is guaranteed not
  586. to be a wrapper and may be a null string if no preprocessor can be
  587. made directly available. This preprocessor might be different from the
  588. one used by the C compiler. Don't forget to append cpplast after the
  589. preprocessor options.</P>
  590. <P></P>
  591. <DT><STRONG><A NAME="item_cppstdin"><CODE>cppstdin</CODE></A></STRONG><BR>
  592. <DD>
  593. From <EM>cppstdin.U</EM>:
  594. <P>This variable contains the command which will invoke the C
  595. preprocessor on standard input and put the output to stdout.
  596. It is primarily used by other Configure units that ask about
  597. preprocessor symbols.</P>
  598. <P></P>
  599. <DT><STRONG><A NAME="item_cppsymbols"><CODE>cppsymbols</CODE></A></STRONG><BR>
  600. <DD>
  601. From <EM>Cppsym.U</EM>:
  602. <P>The variable contains the symbols defined by the C preprocessor
  603. alone.  The symbols defined by cc or by cc when it calls cpp are
  604. not in this list, see ccsymbols and cppccsymbols.
  605. The list is a space-separated list of symbol=value tokens.</P>
  606. <P></P>
  607. <DT><STRONG><A NAME="item_crosscompile"><CODE>crosscompile</CODE></A></STRONG><BR>
  608. <DD>
  609. From <EM>crosscompile.U</EM>:
  610. <P>This variable conditionally defines the <CODE>CROSSCOMPILE</CODE> symbol
  611. which signifies that the build process is be a cross-compilation.
  612. This is normally set by hints files or from Configure command line.</P>
  613. <P></P>
  614. <DT><STRONG><A NAME="item_cryptlib"><CODE>cryptlib</CODE></A></STRONG><BR>
  615. <DD>
  616. From <EM>d_crypt.U</EM>:
  617. <P>This variable holds -lcrypt or the path to a <EM>libcrypt.a</EM> archive if
  618. the <A HREF="../lib/Pod/perlfunc.html#item_crypt"><CODE>crypt()</CODE></A> function is not defined in the standard C library. It is
  619. up to the Makefile to use this.</P>
  620. <P></P>
  621. <DT><STRONG><A NAME="item_csh"><CODE>csh</CODE></A></STRONG><BR>
  622. <DD>
  623. From <EM>Loc.U</EM>:
  624. <P>This variable is used internally by Configure to determine the
  625. full pathname (if any) of the csh program.  After Configure runs,
  626. the value is reset to a plain <A HREF="#item_csh"><CODE>csh</CODE></A> and is not useful.</P>
  627. <P></P></DL>
  628. <P>
  629. <H2><A NAME="d">d</A></H2>
  630. <DL>
  631. <DT><STRONG><A NAME="item_d_access"><CODE>d_access</CODE></A></STRONG><BR>
  632. <DD>
  633. From <EM>d_access.U</EM>:
  634. <P>This variable conditionally defines <CODE>HAS_ACCESS</CODE> if the <CODE>access()</CODE> system
  635. call is available to check for access permissions using real IDs.</P>
  636. <P></P>
  637. <DT><STRONG><A NAME="item_d_accessx"><CODE>d_accessx</CODE></A></STRONG><BR>
  638. <DD>
  639. From <EM>d_accessx.U</EM>:
  640. <P>This variable conditionally defines the <CODE>HAS_ACCESSX</CODE> symbol, which
  641. indicates to the C program that the <CODE>accessx()</CODE> routine is available.</P>
  642. <P></P>
  643. <DT><STRONG><A NAME="item_d_alarm"><CODE>d_alarm</CODE></A></STRONG><BR>
  644. <DD>
  645. From <EM>d_alarm.U</EM>:
  646. <P>This variable conditionally defines the <CODE>HAS_ALARM</CODE> symbol, which
  647. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_alarm"><CODE>alarm()</CODE></A> routine is available.</P>
  648. <P></P>
  649. <DT><STRONG><A NAME="item_d_archlib"><CODE>d_archlib</CODE></A></STRONG><BR>
  650. <DD>
  651. From <EM>archlib.U</EM>:
  652. <P>This variable conditionally defines <CODE>ARCHLIB</CODE> to hold the pathname
  653. of architecture-dependent library files for $package.  If
  654. $archlib is the same as $privlib, then this is set to undef.</P>
  655. <P></P>
  656. <DT><STRONG><A NAME="item_d_atolf"><CODE>d_atolf</CODE></A></STRONG><BR>
  657. <DD>
  658. From <EM>atolf.U</EM>:
  659. <P>This variable conditionally defines the <CODE>HAS_ATOLF</CODE> symbol, which
  660. indicates to the C program that the <CODE>atolf()</CODE> routine is available.</P>
  661. <P></P>
  662. <DT><STRONG><A NAME="item_d_atoll"><CODE>d_atoll</CODE></A></STRONG><BR>
  663. <DD>
  664. From <EM>atoll.U</EM>:
  665. <P>This variable conditionally defines the <CODE>HAS_ATOLL</CODE> symbol, which
  666. indicates to the C program that the <CODE>atoll()</CODE> routine is available.</P>
  667. <P></P>
  668. <DT><STRONG><A NAME="item_d_attribut"><CODE>d_attribut</CODE></A></STRONG><BR>
  669. <DD>
  670. From <EM>d_attribut.U</EM>:
  671. <P>This variable conditionally defines <CODE>HASATTRIBUTE</CODE>, which
  672. indicates the C compiler can check for function attributes,
  673. such as printf formats.</P>
  674. <P></P>
  675. <DT><STRONG><A NAME="item_d_bcmp"><CODE>d_bcmp</CODE></A></STRONG><BR>
  676. <DD>
  677. From <EM>d_bcmp.U</EM>:
  678. <P>This variable conditionally defines the <CODE>HAS_BCMP</CODE> symbol if
  679. the <CODE>bcmp()</CODE> routine is available to compare strings.</P>
  680. <P></P>
  681. <DT><STRONG><A NAME="item_d_bcopy"><CODE>d_bcopy</CODE></A></STRONG><BR>
  682. <DD>
  683. From <EM>d_bcopy.U</EM>:
  684. <P>This variable conditionally defines the <CODE>HAS_BCOPY</CODE> symbol if
  685. the <CODE>bcopy()</CODE> routine is available to copy strings.</P>
  686. <P></P>
  687. <DT><STRONG><A NAME="item_d_bincompat5005"><CODE>d_bincompat5005</CODE></A></STRONG><BR>
  688. <DD>
  689. From <EM>bincompat5005.U</EM>:
  690. <P>This variable conditionally defines BINCOMPAT5005 so that <EM>embed.h</EM>
  691. can take special action if this version of Perl should be
  692. binary-compatible with Perl 5.005.  This is impossible for builds
  693. that use features like threads and multiplicity it is always $undef
  694. for those versions.</P>
  695. <P></P>
  696. <DT><STRONG><A NAME="item_d_bsd"><CODE>d_bsd</CODE></A></STRONG><BR>
  697. <DD>
  698. From <EM>Guess.U</EM>:
  699. <P>This symbol conditionally defines the symbol <CODE>BSD</CODE> when running on a
  700. <CODE>BSD</CODE> system.</P>
  701. <P></P>
  702. <DT><STRONG><A NAME="item_d_bsdgetpgrp"><CODE>d_bsdgetpgrp</CODE></A></STRONG><BR>
  703. <DD>
  704. From <EM>d_getpgrp.U</EM>:
  705. <P>This variable conditionally defines <CODE>USE_BSD_GETPGRP</CODE> if
  706. getpgrp needs one arguments whereas <CODE>USG</CODE> one needs none.</P>
  707. <P></P>
  708. <DT><STRONG><A NAME="item_d_bsdsetpgrp"><CODE>d_bsdsetpgrp</CODE></A></STRONG><BR>
  709. <DD>
  710. From <EM>d_setpgrp.U</EM>:
  711. <P>This variable conditionally defines <CODE>USE_BSD_SETPGRP</CODE> if
  712. setpgrp needs two arguments whereas <CODE>USG</CODE> one needs none.
  713. See also d_setpgid for a <CODE>POSIX</CODE> interface.</P>
  714. <P></P>
  715. <DT><STRONG><A NAME="item_d_bzero"><CODE>d_bzero</CODE></A></STRONG><BR>
  716. <DD>
  717. From <EM>d_bzero.U</EM>:
  718. <P>This variable conditionally defines the <CODE>HAS_BZERO</CODE> symbol if
  719. the <CODE>bzero()</CODE> routine is available to set memory to 0.</P>
  720. <P></P>
  721. <DT><STRONG><A NAME="item_d_casti32"><CODE>d_casti32</CODE></A></STRONG><BR>
  722. <DD>
  723. From <EM>d_casti32.U</EM>:
  724. <P>This variable conditionally defines CASTI32, which indicates
  725. whether the C compiler can cast large floats to 32-bit ints.</P>
  726. <P></P>
  727. <DT><STRONG><A NAME="item_d_castneg"><CODE>d_castneg</CODE></A></STRONG><BR>
  728. <DD>
  729. From <EM>d_castneg.U</EM>:
  730. <P>This variable conditionally defines <CODE>CASTNEG</CODE>, which indicates
  731. wether the C compiler can cast negative float to unsigned.</P>
  732. <P></P>
  733. <DT><STRONG><A NAME="item_d_charvspr"><CODE>d_charvspr</CODE></A></STRONG><BR>
  734. <DD>
  735. From <EM>d_vprintf.U</EM>:
  736. <P>This variable conditionally defines <CODE>CHARVSPRINTF</CODE> if this system
  737. has vsprintf returning type (char*).  The trend seems to be to
  738. declare it as ``int vsprintf()''.</P>
  739. <P></P>
  740. <DT><STRONG><A NAME="item_d_chown"><CODE>d_chown</CODE></A></STRONG><BR>
  741. <DD>
  742. From <EM>d_chown.U</EM>:
  743. <P>This variable conditionally defines the <CODE>HAS_CHOWN</CODE> symbol, which
  744. indicates to the C program that the <A HREF="#item_chown"><CODE>chown()</CODE></A> routine is available.</P>
  745. <P></P>
  746. <DT><STRONG><A NAME="item_d_chroot"><CODE>d_chroot</CODE></A></STRONG><BR>
  747. <DD>
  748. From <EM>d_chroot.U</EM>:
  749. <P>This variable conditionally defines the <CODE>HAS_CHROOT</CODE> symbol, which
  750. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_chroot"><CODE>chroot()</CODE></A> routine is available.</P>
  751. <P></P>
  752. <DT><STRONG><A NAME="item_d_chsize"><CODE>d_chsize</CODE></A></STRONG><BR>
  753. <DD>
  754. From <EM>d_chsize.U</EM>:
  755. <P>This variable conditionally defines the <CODE>CHSIZE</CODE> symbol, which
  756. indicates to the C program that the <CODE>chsize()</CODE> routine is available
  757. to truncate files.  You might need a -lx to get this routine.</P>
  758. <P></P>
  759. <DT><STRONG><A NAME="item_d_closedir"><CODE>d_closedir</CODE></A></STRONG><BR>
  760. <DD>
  761. From <EM>d_closedir.U</EM>:
  762. <P>This variable conditionally defines <CODE>HAS_CLOSEDIR</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_closedir"><CODE>closedir()</CODE></A> is
  763. available.</P>
  764. <P></P>
  765. <DT><STRONG><A NAME="item_d_const"><CODE>d_const</CODE></A></STRONG><BR>
  766. <DD>
  767. From <EM>d_const.U</EM>:
  768. <P>This variable conditionally defines the <CODE>HASCONST</CODE> symbol, which
  769. indicates to the C program that this C compiler knows about the
  770. const type.</P>
  771. <P></P>
  772. <DT><STRONG><A NAME="item_d_crypt"><CODE>d_crypt</CODE></A></STRONG><BR>
  773. <DD>
  774. From <EM>d_crypt.U</EM>:
  775. <P>This variable conditionally defines the <CODE>CRYPT</CODE> symbol, which
  776. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_crypt"><CODE>crypt()</CODE></A> routine is available
  777. to encrypt passwords and the like.</P>
  778. <P></P>
  779. <DT><STRONG><A NAME="item_d_csh"><CODE>d_csh</CODE></A></STRONG><BR>
  780. <DD>
  781. From <EM>d_csh.U</EM>:
  782. <P>This variable conditionally defines the <CODE>CSH</CODE> symbol, which
  783. indicates to the C program that the C-shell exists.</P>
  784. <P></P>
  785. <DT><STRONG><A NAME="item_d_cuserid"><CODE>d_cuserid</CODE></A></STRONG><BR>
  786. <DD>
  787. From <EM>d_cuserid.U</EM>:
  788. <P>This variable conditionally defines the <CODE>HAS_CUSERID</CODE> symbol, which
  789. indicates to the C program that the <CODE>cuserid()</CODE> routine is available
  790. to get character login names.</P>
  791. <P></P>
  792. <DT><STRONG><A NAME="item_d_dbl_dig"><CODE>d_dbl_dig</CODE></A></STRONG><BR>
  793. <DD>
  794. From <EM>d_dbl_dig.U</EM>:
  795. <P>This variable conditionally defines d_dbl_dig if this system's
  796. header files provide <CODE>DBL_DIG</CODE>, which is the number of significant
  797. digits in a double precision number.</P>
  798. <P></P>
  799. <DT><STRONG><A NAME="item_d_difftime"><CODE>d_difftime</CODE></A></STRONG><BR>
  800. <DD>
  801. From <EM>d_difftime.U</EM>:
  802. <P>This variable conditionally defines the <CODE>HAS_DIFFTIME</CODE> symbol, which
  803. indicates to the C program that the <CODE>difftime()</CODE> routine is available.</P>
  804. <P></P>
  805. <DT><STRONG><A NAME="item_d_dirnamlen"><CODE>d_dirnamlen</CODE></A></STRONG><BR>
  806. <DD>
  807. From <EM>i_dirent.U</EM>:
  808. <P>This variable conditionally defines <CODE>DIRNAMLEN</CODE>, which indicates
  809. to the C program that the length of directory entry names is
  810. provided by a d_namelen field.</P>
  811. <P></P>
  812. <DT><STRONG><A NAME="item_d_dlerror"><CODE>d_dlerror</CODE></A></STRONG><BR>
  813. <DD>
  814. From <EM>d_dlerror.U</EM>:
  815. <P>This variable conditionally defines the <CODE>HAS_DLERROR</CODE> symbol, which
  816. indicates to the C program that the <CODE>dlerror()</CODE> routine is available.</P>
  817. <P></P>
  818. <DT><STRONG><A NAME="item_d_dlopen"><CODE>d_dlopen</CODE></A></STRONG><BR>
  819. <DD>
  820. From <EM>d_dlopen.U</EM>:
  821. <P>This variable conditionally defines the <CODE>HAS_DLOPEN</CODE> symbol, which
  822. indicates to the C program that the <CODE>dlopen()</CODE> routine is available.</P>
  823. <P></P>
  824. <DT><STRONG><A NAME="item_d_dlsymun"><CODE>d_dlsymun</CODE></A></STRONG><BR>
  825. <DD>
  826. From <EM>d_dlsymun.U</EM>:
  827. <P>This variable conditionally defines <CODE>DLSYM_NEEDS_UNDERSCORE</CODE>, which
  828. indicates that we need to prepend an underscore to the symbol
  829. name before calling dlsym().</P>
  830. <P></P>
  831. <DT><STRONG><A NAME="item_d_dosuid"><CODE>d_dosuid</CODE></A></STRONG><BR>
  832. <DD>
  833. From <EM>d_dosuid.U</EM>:
  834. <P>This variable conditionally defines the symbol <CODE>DOSUID</CODE>, which
  835. tells the C program that it should insert setuid emulation code
  836. on hosts which have setuid #! scripts disabled.</P>
  837. <P></P>
  838. <DT><STRONG><A NAME="item_d_drand48proto"><CODE>d_drand48proto</CODE></A></STRONG><BR>
  839. <DD>
  840. From <EM>d_drand48proto.U</EM>:
  841. <P>This variable conditionally defines the HAS_DRAND48_PROTO symbol,
  842. which indicates to the C program that the system provides
  843. a prototype for the <CODE>drand48()</CODE> function.  Otherwise, it is
  844. up to the program to supply one.</P>
  845. <P></P>
  846. <DT><STRONG><A NAME="item_d_dup2"><CODE>d_dup2</CODE></A></STRONG><BR>
  847. <DD>
  848. From <EM>d_dup2.U</EM>:
  849. <P>This variable conditionally defines HAS_DUP2 if <CODE>dup2()</CODE> is
  850. available to duplicate file descriptors.</P>
  851. <P></P>
  852. <DT><STRONG><A NAME="item_d_eaccess"><CODE>d_eaccess</CODE></A></STRONG><BR>
  853. <DD>
  854. From <EM>d_eaccess.U</EM>:
  855. <P>This variable conditionally defines the <CODE>HAS_EACCESS</CODE> symbol, which
  856. indicates to the C program that the <CODE>eaccess()</CODE> routine is available.</P>
  857. <P></P>
  858. <DT><STRONG><A NAME="item_d_endgrent"><CODE>d_endgrent</CODE></A></STRONG><BR>
  859. <DD>
  860. From <EM>d_endgrent.U</EM>:
  861. <P>This variable conditionally defines the <CODE>HAS_ENDGRENT</CODE> symbol, which
  862. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_endgrent"><CODE>endgrent()</CODE></A> routine is available
  863. for sequential access of the group database.</P>
  864. <P></P>
  865. <DT><STRONG><A NAME="item_d_endhent"><CODE>d_endhent</CODE></A></STRONG><BR>
  866. <DD>
  867. From <EM>d_endhent.U</EM>:
  868. <P>This variable conditionally defines <CODE>HAS_ENDHOSTENT</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_endhostent"><CODE>endhostent()</CODE></A> is
  869. available to close whatever was being used for host queries.</P>
  870. <P></P>
  871. <DT><STRONG><A NAME="item_d_endnent"><CODE>d_endnent</CODE></A></STRONG><BR>
  872. <DD>
  873. From <EM>d_endnent.U</EM>:
  874. <P>This variable conditionally defines <CODE>HAS_ENDNETENT</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_endnetent"><CODE>endnetent()</CODE></A> is
  875. available to close whatever was being used for network queries.</P>
  876. <P></P>
  877. <DT><STRONG><A NAME="item_d_endpent"><CODE>d_endpent</CODE></A></STRONG><BR>
  878. <DD>
  879. From <EM>d_endpent.U</EM>:
  880. <P>This variable conditionally defines <CODE>HAS_ENDPROTOENT</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_endprotoent"><CODE>endprotoent()</CODE></A> is
  881. available to close whatever was being used for protocol queries.</P>
  882. <P></P>
  883. <DT><STRONG><A NAME="item_d_endpwent"><CODE>d_endpwent</CODE></A></STRONG><BR>
  884. <DD>
  885. From <EM>d_endpwent.U</EM>:
  886. <P>This variable conditionally defines the <CODE>HAS_ENDPWENT</CODE> symbol, which
  887. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_endpwent"><CODE>endpwent()</CODE></A> routine is available
  888. for sequential access of the passwd database.</P>
  889. <P></P>
  890. <DT><STRONG><A NAME="item_d_endsent"><CODE>d_endsent</CODE></A></STRONG><BR>
  891. <DD>
  892. From <EM>d_endsent.U</EM>:
  893. <P>This variable conditionally defines <CODE>HAS_ENDSERVENT</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_endservent"><CODE>endservent()</CODE></A> is
  894. available to close whatever was being used for service queries.</P>
  895. <P></P>
  896. <DT><STRONG><A NAME="item_d_endspent"><CODE>d_endspent</CODE></A></STRONG><BR>
  897. <DD>
  898. From <EM>d_endspent.U</EM>:
  899. <P>This variable conditionally defines <CODE>HAS_ENDSPENT</CODE> if <CODE>endspent()</CODE> is
  900. available to finalize the scan of SysV shadow password entries.</P>
  901. <P></P>
  902. <DT><STRONG><A NAME="item_d_eofnblk"><CODE>d_eofnblk</CODE></A></STRONG><BR>
  903. <DD>
  904. From <EM>nblock_io.U</EM>:
  905. <P>This variable conditionally defines <CODE>EOF_NONBLOCK</CODE> if <CODE>EOF</CODE> can be seen
  906. when reading from a non-blocking <EM>I/O</EM> source.</P>
  907. <P></P>
  908. <DT><STRONG><A NAME="item_d_eunice"><CODE>d_eunice</CODE></A></STRONG><BR>
  909. <DD>
  910. From <EM>Guess.U</EM>:
  911. <P>This variable conditionally defines the symbols <CODE>EUNICE</CODE> and <CODE>VAX</CODE>, which
  912. alerts the C program that it must deal with ideosyncracies of <A HREF="../lib/Pod/perlrun.html#item_VMS"><CODE>VMS</CODE></A>.</P>
  913. <P></P>
  914. <DT><STRONG><A NAME="item_d_fchmod"><CODE>d_fchmod</CODE></A></STRONG><BR>
  915. <DD>
  916. From <EM>d_fchmod.U</EM>:
  917. <P>This variable conditionally defines the <CODE>HAS_FCHMOD</CODE> symbol, which
  918. indicates to the C program that the <CODE>fchmod()</CODE> routine is available
  919. to change mode of opened files.</P>
  920. <P></P>
  921. <DT><STRONG><A NAME="item_d_fchown"><CODE>d_fchown</CODE></A></STRONG><BR>
  922. <DD>
  923. From <EM>d_fchown.U</EM>:
  924. <P>This variable conditionally defines the <CODE>HAS_FCHOWN</CODE> symbol, which
  925. indicates to the C program that the <CODE>fchown()</CODE> routine is available
  926. to change ownership of opened files.</P>
  927. <P></P>
  928. <DT><STRONG><A NAME="item_d_fcntl"><CODE>d_fcntl</CODE></A></STRONG><BR>
  929. <DD>
  930. From <EM>d_fcntl.U</EM>:
  931. <P>This variable conditionally defines the <CODE>HAS_FCNTL</CODE> symbol, and indicates
  932. whether the <A HREF="../lib/Pod/perlfunc.html#item_fcntl"><CODE>fcntl()</CODE></A> function exists</P>
  933. <P></P>
  934. <DT><STRONG><A NAME="item_d_fd_macros"><CODE>d_fd_macros</CODE></A></STRONG><BR>
  935. <DD>
  936. From <EM>d_fd_set.U</EM>:
  937. <P>This variable contains the eventual value of the <CODE>HAS_FD_MACROS</CODE> symbol,
  938. which indicates if your C compiler knows about the macros which
  939. manipulate an fd_set.</P>
  940. <P></P>
  941. <DT><STRONG><A NAME="item_d_fd_set"><CODE>d_fd_set</CODE></A></STRONG><BR>
  942. <DD>
  943. From <EM>d_fd_set.U</EM>:
  944. <P>This variable contains the eventual value of the <CODE>HAS_FD_SET</CODE> symbol,
  945. which indicates if your C compiler knows about the fd_set typedef.</P>
  946. <P></P>
  947. <DT><STRONG><A NAME="item_d_fds_bits"><CODE>d_fds_bits</CODE></A></STRONG><BR>
  948. <DD>
  949. From <EM>d_fd_set.U</EM>:
  950. <P>This variable contains the eventual value of the <CODE>HAS_FDS_BITS</CODE> symbol,
  951. which indicates if your fd_set typedef contains the fds_bits member.
  952. If you have an fd_set typedef, but the dweebs who installed it did
  953. a half-fast job and neglected to provide the macros to manipulate
  954. an fd_set, <CODE>HAS_FDS_BITS</CODE> will let us know how to fix the gaffe.</P>
  955. <P></P>
  956. <DT><STRONG><A NAME="item_d_fgetpos"><CODE>d_fgetpos</CODE></A></STRONG><BR>
  957. <DD>
  958. From <EM>d_fgetpos.U</EM>:
  959. <P>This variable conditionally defines <CODE>HAS_FGETPOS</CODE> if <CODE>fgetpos()</CODE> is
  960. available to get the file position indicator.</P>
  961. <P></P>
  962. <DT><STRONG><A NAME="item_d_flexfnam"><CODE>d_flexfnam</CODE></A></STRONG><BR>
  963. <DD>
  964. From <EM>d_flexfnam.U</EM>:
  965. <P>This variable conditionally defines the <CODE>FLEXFILENAMES</CODE> symbol, which
  966. indicates that the system supports filenames longer than 14 characters.</P>
  967. <P></P>
  968. <DT><STRONG><A NAME="item_d_flock"><CODE>d_flock</CODE></A></STRONG><BR>
  969. <DD>
  970. From <EM>d_flock.U</EM>:
  971. <P>This variable conditionally defines <CODE>HAS_FLOCK</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_flock"><CODE>flock()</CODE></A> is
  972. available to do file locking.</P>
  973. <P></P>
  974. <DT><STRONG><A NAME="item_d_fork"><CODE>d_fork</CODE></A></STRONG><BR>
  975. <DD>
  976. From <EM>d_fork.U</EM>:
  977. <P>This variable conditionally defines the <CODE>HAS_FORK</CODE> symbol, which
  978. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_fork"><CODE>fork()</CODE></A> routine is available.</P>
  979. <P></P>
  980. <DT><STRONG><A NAME="item_d_fpathconf"><CODE>d_fpathconf</CODE></A></STRONG><BR>
  981. <DD>
  982. From <EM>d_pathconf.U</EM>:
  983. <P>This variable conditionally defines the <CODE>HAS_FPATHCONF</CODE> symbol, which
  984. indicates to the C program that the <CODE>pathconf()</CODE> routine is available
  985. to determine file-system related limits and options associated
  986. with a given open file descriptor.</P>
  987. <P></P>
  988. <DT><STRONG><A NAME="item_d_fpos64_t"><CODE>d_fpos64_t</CODE></A></STRONG><BR>
  989. <DD>
  990. From <EM>d_fpos64_t.U</EM>:
  991. <P>This symbol will be defined if the C compiler supports fpos64_t.</P>
  992. <P></P>
  993. <DT><STRONG><A NAME="item_d_fs_data_s"><CODE>d_fs_data_s</CODE></A></STRONG><BR>
  994. <DD>
  995. From <EM>d_fs_data_s.U</EM>:
  996. <P>This variable conditionally defines the <CODE>HAS_STRUCT_FS_DATA</CODE> symbol,
  997. which indicates that the struct fs_data is supported.</P>
  998. <P></P>
  999. <DT><STRONG><A NAME="item_d_fseeko"><CODE>d_fseeko</CODE></A></STRONG><BR>
  1000. <DD>
  1001. From <EM>d_fseeko.U</EM>:
  1002. <P>This variable conditionally defines the <CODE>HAS_FSEEKO</CODE> symbol, which
  1003. indicates to the C program that the <CODE>fseeko()</CODE> routine is available.</P>
  1004. <P></P>
  1005. <DT><STRONG><A NAME="item_d_fsetpos"><CODE>d_fsetpos</CODE></A></STRONG><BR>
  1006. <DD>
  1007. From <EM>d_fsetpos.U</EM>:
  1008. <P>This variable conditionally defines <CODE>HAS_FSETPOS</CODE> if <CODE>fsetpos()</CODE> is
  1009. available to set the file position indicator.</P>
  1010. <P></P>
  1011. <DT><STRONG><A NAME="item_d_fstatfs"><CODE>d_fstatfs</CODE></A></STRONG><BR>
  1012. <DD>
  1013. From <EM>d_fstatfs.U</EM>:
  1014. <P>This variable conditionally defines the <CODE>HAS_FSTATFS</CODE> symbol, which
  1015. indicates to the C program that the <CODE>fstatfs()</CODE> routine is available.</P>
  1016. <P></P>
  1017. <DT><STRONG><A NAME="item_d_fstatvfs"><CODE>d_fstatvfs</CODE></A></STRONG><BR>
  1018. <DD>
  1019. From <EM>d_statvfs.U</EM>:
  1020. <P>This variable conditionally defines the <CODE>HAS_FSTATVFS</CODE> symbol, which
  1021. indicates to the C program that the <CODE>fstatvfs()</CODE> routine is available.</P>
  1022. <P></P>
  1023. <DT><STRONG><A NAME="item_d_ftello"><CODE>d_ftello</CODE></A></STRONG><BR>
  1024. <DD>
  1025. From <EM>d_ftello.U</EM>:
  1026. <P>This variable conditionally defines the <CODE>HAS_FTELLO</CODE> symbol, which
  1027. indicates to the C program that the <CODE>ftello()</CODE> routine is available.</P>
  1028. <P></P>
  1029. <DT><STRONG><A NAME="item_d_ftime"><CODE>d_ftime</CODE></A></STRONG><BR>
  1030. <DD>
  1031. From <EM>d_ftime.U</EM>:
  1032. <P>This variable conditionally defines the <CODE>HAS_FTIME</CODE> symbol, which indicates
  1033. that the <CODE>ftime()</CODE> routine exists.  The <CODE>ftime()</CODE> routine is basically
  1034. a sub-second accuracy clock.</P>
  1035. <P></P>
  1036. <DT><STRONG><A NAME="item_d_Gconvert"><CODE>d_Gconvert</CODE></A></STRONG><BR>
  1037. <DD>
  1038. From <EM>d_gconvert.U</EM>:
  1039. <P>This variable holds what Gconvert is defined as to convert
  1040. floating point numbers into strings. It could be <CODE>gconvert</CODE>
  1041. or a more <CODE>complex</CODE> macro emulating gconvert with <CODE>gcvt()</CODE> or sprintf.
  1042. Possible values are:
  1043. d_Gconvert=<CODE>gconvert((x),(n),(t),(b))</CODE>
  1044. d_Gconvert=<CODE>gcvt((x),(n),(b))</CODE>
  1045. d_Gconvert=<A HREF="../lib/Pod/perlfunc.html#item_sprintf"><CODE>sprintf((b),%.*g,(n),(x))</CODE></A></P>
  1046. <P></P>
  1047. <DT><STRONG><A NAME="item_d_getcwd"><CODE>d_getcwd</CODE></A></STRONG><BR>
  1048. <DD>
  1049. From <EM>d_getcwd.U</EM>:
  1050. <P>This variable conditionally defines the <CODE>HAS_GETCWD</CODE> symbol, which
  1051. indicates to the C program that the <CODE>getcwd()</CODE> routine is available
  1052. to get the current working directory.</P>
  1053. <P></P>
  1054. <DT><STRONG><A NAME="item_d_getfsstat"><CODE>d_getfsstat</CODE></A></STRONG><BR>
  1055. <DD>
  1056. From <EM>d_getfsstat.U</EM>:
  1057. <P>This variable conditionally defines the <CODE>HAS_GETFSSTAT</CODE> symbol, which
  1058. indicates to the C program that the <CODE>getfsstat()</CODE> routine is available.</P>
  1059. <P></P>
  1060. <DT><STRONG><A NAME="item_d_getgrent"><CODE>d_getgrent</CODE></A></STRONG><BR>
  1061. <DD>
  1062. From <EM>d_getgrent.U</EM>:
  1063. <P>This variable conditionally defines the <CODE>HAS_GETGRENT</CODE> symbol, which
  1064. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_getgrent"><CODE>getgrent()</CODE></A> routine is available
  1065. for sequential access of the group database.</P>
  1066. <P></P>
  1067. <DT><STRONG><A NAME="item_d_getgrps"><CODE>d_getgrps</CODE></A></STRONG><BR>
  1068. <DD>
  1069. From <EM>d_getgrps.U</EM>:
  1070. <P>This variable conditionally defines the <CODE>HAS_GETGROUPS</CODE> symbol, which
  1071. indicates to the C program that the <CODE>getgroups()</CODE> routine is available
  1072. to get the list of process groups.</P>
  1073. <P></P>
  1074. <DT><STRONG><A NAME="item_d_gethbyaddr"><CODE>d_gethbyaddr</CODE></A></STRONG><BR>
  1075. <DD>
  1076. From <EM>d_gethbyad.U</EM>:
  1077. <P>This variable conditionally defines the <CODE>HAS_GETHOSTBYADDR</CODE> symbol, which
  1078. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_gethostbyaddr"><CODE>gethostbyaddr()</CODE></A> routine is available
  1079. to look up hosts by their <CODE>IP</CODE> addresses.</P>
  1080. <P></P>
  1081. <DT><STRONG><A NAME="item_d_gethbyname"><CODE>d_gethbyname</CODE></A></STRONG><BR>
  1082. <DD>
  1083. From <EM>d_gethbynm.U</EM>:
  1084. <P>This variable conditionally defines the <CODE>HAS_GETHOSTBYNAME</CODE> symbol, which
  1085. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_gethostbyname"><CODE>gethostbyname()</CODE></A> routine is available
  1086. to look up host names in some data base or other.</P>
  1087. <P></P>
  1088. <DT><STRONG><A NAME="item_d_gethent"><CODE>d_gethent</CODE></A></STRONG><BR>
  1089. <DD>
  1090. From <EM>d_gethent.U</EM>:
  1091. <P>This variable conditionally defines <CODE>HAS_GETHOSTENT</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_gethostent"><CODE>gethostent()</CODE></A> is
  1092. available to look up host names in some data base or another.</P>
  1093. <P></P>
  1094. <DT><STRONG><A NAME="item_d_gethname"><CODE>d_gethname</CODE></A></STRONG><BR>
  1095. <DD>
  1096. From <EM>d_gethname.U</EM>:
  1097. <P>This variable conditionally defines the <CODE>HAS_GETHOSTNAME</CODE> symbol, which
  1098. indicates to the C program that the <CODE>gethostname()</CODE> routine may be
  1099. used to derive the host name.</P>
  1100. <P></P>
  1101. <DT><STRONG><A NAME="item_d_gethostprotos"><CODE>d_gethostprotos</CODE></A></STRONG><BR>
  1102. <DD>
  1103. From <EM>d_gethostprotos.U</EM>:
  1104. <P>This variable conditionally defines the <CODE>HAS_GETHOST_PROTOS</CODE> symbol,
  1105. which indicates to the C program that <netdb.h> supplies
  1106. prototypes for the various gethost*() functions.  
  1107. See also <EM>netdbtype.U</EM> for probing for various netdb types.</P>
  1108. <P></P>
  1109. <DT><STRONG><A NAME="item_d_getlogin"><CODE>d_getlogin</CODE></A></STRONG><BR>
  1110. <DD>
  1111. From <EM>d_getlogin.U</EM>:
  1112. <P>This variable conditionally defines the <CODE>HAS_GETLOGIN</CODE> symbol, which
  1113. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_getlogin"><CODE>getlogin()</CODE></A> routine is available
  1114. to get the login name.</P>
  1115. <P></P>
  1116. <DT><STRONG><A NAME="item_d_getmnt"><CODE>d_getmnt</CODE></A></STRONG><BR>
  1117. <DD>
  1118. From <EM>d_getmnt.U</EM>:
  1119. <P>This variable conditionally defines the <CODE>HAS_GETMNT</CODE> symbol, which
  1120. indicates to the C program that the <CODE>getmnt()</CODE> routine is available
  1121. to retrieve one or more mount info blocks by filename.</P>
  1122. <P></P>
  1123. <DT><STRONG><A NAME="item_d_getmntent"><CODE>d_getmntent</CODE></A></STRONG><BR>
  1124. <DD>
  1125. From <EM>d_getmntent.U</EM>:
  1126. <P>This variable conditionally defines the <CODE>HAS_GETMNTENT</CODE> symbol, which
  1127. indicates to the C program that the <CODE>getmntent()</CODE> routine is available
  1128. to iterate through mounted files to get their mount info.</P>
  1129. <P></P>
  1130. <DT><STRONG><A NAME="item_d_getnbyaddr"><CODE>d_getnbyaddr</CODE></A></STRONG><BR>
  1131. <DD>
  1132. From <EM>d_getnbyad.U</EM>:
  1133. <P>This variable conditionally defines the <CODE>HAS_GETNETBYADDR</CODE> symbol, which
  1134. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_getnetbyaddr"><CODE>getnetbyaddr()</CODE></A> routine is available
  1135. to look up networks by their <CODE>IP</CODE> addresses.</P>
  1136. <P></P>
  1137. <DT><STRONG><A NAME="item_d_getnbyname"><CODE>d_getnbyname</CODE></A></STRONG><BR>
  1138. <DD>
  1139. From <EM>d_getnbynm.U</EM>:
  1140. <P>This variable conditionally defines the <CODE>HAS_GETNETBYNAME</CODE> symbol, which
  1141. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_getnetbyname"><CODE>getnetbyname()</CODE></A> routine is available
  1142. to look up networks by their names.</P>
  1143. <P></P>
  1144. <DT><STRONG><A NAME="item_d_getnent"><CODE>d_getnent</CODE></A></STRONG><BR>
  1145. <DD>
  1146. From <EM>d_getnent.U</EM>:
  1147. <P>This variable conditionally defines <CODE>HAS_GETNETENT</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_getnetent"><CODE>getnetent()</CODE></A> is
  1148. available to look up network names in some data base or another.</P>
  1149. <P></P>
  1150. <DT><STRONG><A NAME="item_d_getnetprotos"><CODE>d_getnetprotos</CODE></A></STRONG><BR>
  1151. <DD>
  1152. From <EM>d_getnetprotos.U</EM>:
  1153. <P>This variable conditionally defines the <CODE>HAS_GETNET_PROTOS</CODE> symbol,
  1154. which indicates to the C program that <netdb.h> supplies
  1155. prototypes for the various getnet*() functions.  
  1156. See also <EM>netdbtype.U</EM> for probing for various netdb types.</P>
  1157. <P></P>
  1158. <DT><STRONG><A NAME="item_d_getpbyname"><CODE>d_getpbyname</CODE></A></STRONG><BR>
  1159. <DD>
  1160. From <EM>d_getprotby.U</EM>:
  1161. <P>This variable conditionally defines the <CODE>HAS_GETPROTOBYNAME</CODE> 
  1162. symbol, which indicates to the C program that the 
  1163. <A HREF="../lib/Pod/perlfunc.html#item_getprotobyname"><CODE>getprotobyname()</CODE></A> routine is available to look up protocols
  1164. by their name.</P>
  1165. <P></P>
  1166. <DT><STRONG><A NAME="item_d_getpbynumber"><CODE>d_getpbynumber</CODE></A></STRONG><BR>
  1167. <DD>
  1168. From <EM>d_getprotby.U</EM>:
  1169. <P>This variable conditionally defines the <CODE>HAS_GETPROTOBYNUMBER</CODE> 
  1170. symbol, which indicates to the C program that the 
  1171. <A HREF="../lib/Pod/perlfunc.html#item_getprotobynumber"><CODE>getprotobynumber()</CODE></A> routine is available to look up protocols
  1172. by their number.</P>
  1173. <P></P>
  1174. <DT><STRONG><A NAME="item_d_getpent"><CODE>d_getpent</CODE></A></STRONG><BR>
  1175. <DD>
  1176. From <EM>d_getpent.U</EM>:
  1177. <P>This variable conditionally defines <CODE>HAS_GETPROTOENT</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_getprotoent"><CODE>getprotoent()</CODE></A> is
  1178. available to look up protocols in some data base or another.</P>
  1179. <P></P>
  1180. <DT><STRONG><A NAME="item_d_getpgid"><CODE>d_getpgid</CODE></A></STRONG><BR>
  1181. <DD>
  1182. From <EM>d_getpgid.U</EM>:
  1183. <P>This variable conditionally defines the <CODE>HAS_GETPGID</CODE> symbol, which
  1184. indicates to the C program that the <CODE>getpgid(pid)</CODE> function
  1185. is available to get the process group id.</P>
  1186. <P></P>
  1187. <DT><STRONG><A NAME="item_d_getpgrp2"><CODE>d_getpgrp2</CODE></A></STRONG><BR>
  1188. <DD>
  1189. From <EM>d_getpgrp2.U</EM>:
  1190. <P>This variable conditionally defines the HAS_GETPGRP2 symbol, which
  1191. indicates to the C program that the <CODE>getpgrp2()</CODE> (as in <EM>DG/<CODE>UX</CODE></EM>) routine
  1192. is available to get the current process group.</P>
  1193. <P></P>
  1194. <DT><STRONG><A NAME="item_d_getpgrp"><CODE>d_getpgrp</CODE></A></STRONG><BR>
  1195. <DD>
  1196. From <EM>d_getpgrp.U</EM>:
  1197. <P>This variable conditionally defines <CODE>HAS_GETPGRP</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_getpgrp"><CODE>getpgrp()</CODE></A> is
  1198. available to get the current process group.</P>
  1199. <P></P>
  1200. <DT><STRONG><A NAME="item_d_getppid"><CODE>d_getppid</CODE></A></STRONG><BR>
  1201. <DD>
  1202. From <EM>d_getppid.U</EM>:
  1203. <P>This variable conditionally defines the <CODE>HAS_GETPPID</CODE> symbol, which
  1204. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_getppid"><CODE>getppid()</CODE></A> routine is available
  1205. to get the parent process <CODE>ID</CODE>.</P>
  1206. <P></P>
  1207. <DT><STRONG><A NAME="item_d_getprior"><CODE>d_getprior</CODE></A></STRONG><BR>
  1208. <DD>
  1209. From <EM>d_getprior.U</EM>:
  1210. <P>This variable conditionally defines <CODE>HAS_GETPRIORITY</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_getpriority"><CODE>getpriority()</CODE></A>
  1211. is available to get a process's priority.</P>
  1212. <P></P>
  1213. <DT><STRONG><A NAME="item_d_getprotoprotos"><CODE>d_getprotoprotos</CODE></A></STRONG><BR>
  1214. <DD>
  1215. From <EM>d_getprotoprotos.U</EM>:
  1216. <P>This variable conditionally defines the <CODE>HAS_GETPROTO_PROTOS</CODE> symbol,
  1217. which indicates to the C program that <netdb.h> supplies
  1218. prototypes for the various getproto*() functions.  
  1219. See also <EM>netdbtype.U</EM> for probing for various netdb types.</P>
  1220. <P></P>
  1221. <DT><STRONG><A NAME="item_d_getpwent"><CODE>d_getpwent</CODE></A></STRONG><BR>
  1222. <DD>
  1223. From <EM>d_getpwent.U</EM>:
  1224. <P>This variable conditionally defines the <CODE>HAS_GETPWENT</CODE> symbol, which
  1225. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_getpwent"><CODE>getpwent()</CODE></A> routine is available
  1226. for sequential access of the passwd database.</P>
  1227. <P></P>
  1228. <DT><STRONG><A NAME="item_d_getsbyname"><CODE>d_getsbyname</CODE></A></STRONG><BR>
  1229. <DD>
  1230. From <EM>d_getsrvby.U</EM>:
  1231. <P>This variable conditionally defines the <CODE>HAS_GETSERVBYNAME</CODE> 
  1232. symbol, which indicates to the C program that the 
  1233. <A HREF="../lib/Pod/perlfunc.html#item_getservbyname"><CODE>getservbyname()</CODE></A> routine is available to look up services
  1234. by their name.</P>
  1235. <P></P>
  1236. <DT><STRONG><A NAME="item_d_getsbyport"><CODE>d_getsbyport</CODE></A></STRONG><BR>
  1237. <DD>
  1238. From <EM>d_getsrvby.U</EM>:
  1239. <P>This variable conditionally defines the <CODE>HAS_GETSERVBYPORT</CODE> 
  1240. symbol, which indicates to the C program that the 
  1241. <A HREF="../lib/Pod/perlfunc.html#item_getservbyport"><CODE>getservbyport()</CODE></A> routine is available to look up services
  1242. by their port.</P>
  1243. <P></P>
  1244. <DT><STRONG><A NAME="item_d_getsent"><CODE>d_getsent</CODE></A></STRONG><BR>
  1245. <DD>
  1246. From <EM>d_getsent.U</EM>:
  1247. <P>This variable conditionally defines <CODE>HAS_GETSERVENT</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_getservent"><CODE>getservent()</CODE></A> is
  1248. available to look up network services in some data base or another.</P>
  1249. <P></P>
  1250. <DT><STRONG><A NAME="item_d_getservprotos"><CODE>d_getservprotos</CODE></A></STRONG><BR>
  1251. <DD>
  1252. From <EM>d_getservprotos.U</EM>:
  1253. <P>This variable conditionally defines the <CODE>HAS_GETSERV_PROTOS</CODE> symbol,
  1254. which indicates to the C program that <netdb.h> supplies
  1255. prototypes for the various getserv*() functions.  
  1256. See also <EM>netdbtype.U</EM> for probing for various netdb types.</P>
  1257. <P></P>
  1258. <DT><STRONG><A NAME="item_d_getspent"><CODE>d_getspent</CODE></A></STRONG><BR>
  1259. <DD>
  1260. From <EM>d_getspent.U</EM>:
  1261. <P>This variable conditionally defines <CODE>HAS_GETSPENT</CODE> if <CODE>getspent()</CODE> is
  1262. available to retrieve SysV shadow password entries sequentially.</P>
  1263. <P></P>
  1264. <DT><STRONG><A NAME="item_d_getspnam"><CODE>d_getspnam</CODE></A></STRONG><BR>
  1265. <DD>
  1266. From <EM>d_getspnam.U</EM>:
  1267. <P>This variable conditionally defines <CODE>HAS_GETSPNAM</CODE> if <CODE>getspnam()</CODE> is
  1268. available to retrieve SysV shadow password entries by name.</P>
  1269. <P></P>
  1270. <DT><STRONG><A NAME="item_d_gettimeod"><CODE>d_gettimeod</CODE></A></STRONG><BR>
  1271. <DD>
  1272. From <EM>d_ftime.U</EM>:
  1273. <P>This variable conditionally defines the <CODE>HAS_GETTIMEOFDAY</CODE> symbol, which
  1274. indicates that the <CODE>gettimeofday()</CODE> system call exists (to obtain a
  1275. sub-second accuracy clock). You should probably include <sys/resource.h>.</P>
  1276. <P></P>
  1277. <DT><STRONG><A NAME="item_d_gnulibc"><CODE>d_gnulibc</CODE></A></STRONG><BR>
  1278. <DD>
  1279. From <EM>d_gnulibc.U</EM>:
  1280. <P>Defined if we're dealing with the <CODE>GNU</CODE> C Library.</P>
  1281. <P></P>
  1282. <DT><STRONG><A NAME="item_d_grpasswd"><CODE>d_grpasswd</CODE></A></STRONG><BR>
  1283. <DD>
  1284. From <EM>i_grp.U</EM>:
  1285. <P>This variable conditionally defines <CODE>GRPASSWD</CODE>, which indicates
  1286. that struct group in <grp.h> contains gr_passwd.</P>
  1287. <P></P>
  1288. <DT><STRONG><A NAME="item_d_hasmntopt"><CODE>d_hasmntopt</CODE></A></STRONG><BR>
  1289. <DD>
  1290. From <EM>d_hasmntopt.U</EM>:
  1291. <P>This variable conditionally defines the <CODE>HAS_HASMNTOPT</CODE> symbol, which
  1292. indicates to the C program that the <CODE>hasmntopt()</CODE> routine is available
  1293. to query the mount options of file systems.</P>
  1294. <P></P>
  1295. <DT><STRONG><A NAME="item_d_htonl"><CODE>d_htonl</CODE></A></STRONG><BR>
  1296. <DD>
  1297. From <EM>d_htonl.U</EM>:
  1298. <P>This variable conditionally defines <CODE>HAS_HTONL</CODE> if <CODE>htonl()</CODE> and its
  1299. friends are available to do network order byte swapping.</P>
  1300. <P></P>
  1301. <DT><STRONG><A NAME="item_d_iconv"><CODE>d_iconv</CODE></A></STRONG><BR>
  1302. <DD>
  1303. From <EM>d_iconv.U</EM>:
  1304. <P>This variable conditionally defines the <CODE>HAS_ICONV</CODE> symbol, which
  1305. indicates to the C program that the <CODE>iconv()</CODE> routine is available.</P>
  1306. <P></P>
  1307. <DT><STRONG><A NAME="item_d_index"><CODE>d_index</CODE></A></STRONG><BR>
  1308. <DD>
  1309. From <EM>d_strchr.U</EM>:
  1310. <P>This variable conditionally defines <CODE>HAS_INDEX</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_index"><CODE>index()</CODE></A> and
  1311. <A HREF="../lib/Pod/perlfunc.html#item_rindex"><CODE>rindex()</CODE></A> are available for string searching.</P>
  1312. <P></P>
  1313. <DT><STRONG><A NAME="item_d_inetaton"><CODE>d_inetaton</CODE></A></STRONG><BR>
  1314. <DD>
  1315. From <EM>d_inetaton.U</EM>:
  1316. <P>This variable conditionally defines the <CODE>HAS_INET_ATON</CODE> symbol, which
  1317. indicates to the C program that the <CODE>inet_aton()</CODE> function is available
  1318. to parse <CODE>IP</CODE> address <CODE>dotted-quad</CODE> strings.</P>
  1319. <P></P>
  1320. <DT><STRONG><A NAME="item_d_int64_t"><CODE>d_int64_t</CODE></A></STRONG><BR>
  1321. <DD>
  1322. From <EM>d_int64_t.U</EM>:
  1323. <P>This symbol will be defined if the C compiler supports int64_t.</P>
  1324. <P></P>
  1325. <DT><STRONG><A NAME="item_d_isascii"><CODE>d_isascii</CODE></A></STRONG><BR>
  1326. <DD>
  1327. From <EM>d_isascii.U</EM>:
  1328. <P>This variable conditionally defines the <CODE>HAS_ISASCII</CODE> constant,
  1329. which indicates to the C program that <CODE>isascii()</CODE> is available.</P>
  1330. <P></P>
  1331. <DT><STRONG><A NAME="item_d_killpg"><CODE>d_killpg</CODE></A></STRONG><BR>
  1332. <DD>
  1333. From <EM>d_killpg.U</EM>:
  1334. <P>This variable conditionally defines the <CODE>HAS_KILLPG</CODE> symbol, which
  1335. indicates to the C program that the <CODE>killpg()</CODE> routine is available
  1336. to kill process groups.</P>
  1337. <P></P>
  1338. <DT><STRONG><A NAME="item_d_lchown"><CODE>d_lchown</CODE></A></STRONG><BR>
  1339. <DD>
  1340. From <EM>d_lchown.U</EM>:
  1341. <P>This variable conditionally defines the <CODE>HAS_LCHOWN</CODE> symbol, which
  1342. indicates to the C program that the <CODE>lchown()</CODE> routine is available
  1343. to operate on a symbolic link (instead of following the link).</P>
  1344. <P></P>
  1345. <DT><STRONG><A NAME="item_d_ldbl_dig"><CODE>d_ldbl_dig</CODE></A></STRONG><BR>
  1346. <DD>
  1347. From <EM>d_ldbl_dig.U</EM>:
  1348. <P>This variable conditionally defines d_ldbl_dig if this system's
  1349. header files provide <CODE>LDBL_DIG</CODE>, which is the number of significant
  1350. digits in a long double precision number.</P>
  1351. <P></P>
  1352. <DT><STRONG><A NAME="item_d_link"><CODE>d_link</CODE></A></STRONG><BR>
  1353. <DD>
  1354. From <EM>d_link.U</EM>:
  1355. <P>This variable conditionally defines <CODE>HAS_LINK</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_link"><CODE>link()</CODE></A> is
  1356. available to create hard links.</P>
  1357. <P></P>
  1358. <DT><STRONG><A NAME="item_d_locconv"><CODE>d_locconv</CODE></A></STRONG><BR>
  1359. <DD>
  1360. From <EM>d_locconv.U</EM>:
  1361. <P>This variable conditionally defines <CODE>HAS_LOCALECONV</CODE> if <CODE>localeconv()</CODE> is
  1362. available for numeric and monetary formatting conventions.</P>
  1363. <P></P>
  1364. <DT><STRONG><A NAME="item_d_lockf"><CODE>d_lockf</CODE></A></STRONG><BR>
  1365. <DD>
  1366. From <EM>d_lockf.U</EM>:
  1367. <P>This variable conditionally defines <CODE>HAS_LOCKF</CODE> if <CODE>lockf()</CODE> is
  1368. available to do file locking.</P>
  1369. <P></P>
  1370. <DT><STRONG><A NAME="item_d_longdbl"><CODE>d_longdbl</CODE></A></STRONG><BR>
  1371. <DD>
  1372. From <EM>d_longdbl.U</EM>:
  1373. <P>This variable conditionally defines <CODE>HAS_LONG_DOUBLE</CODE> if 
  1374. the long double type is supported.</P>
  1375. <P></P>
  1376. <DT><STRONG><A NAME="item_d_longlong"><CODE>d_longlong</CODE></A></STRONG><BR>
  1377. <DD>
  1378. From <EM>d_longlong.U</EM>:
  1379. <P>This variable conditionally defines <CODE>HAS_LONG_LONG</CODE> if 
  1380. the long long type is supported.</P>
  1381. <P></P>
  1382. <DT><STRONG><A NAME="item_d_lseekproto"><CODE>d_lseekproto</CODE></A></STRONG><BR>
  1383. <DD>
  1384. From <EM>d_lseekproto.U</EM>:
  1385. <P>This variable conditionally defines the <CODE>HAS_LSEEK_PROTO</CODE> symbol,
  1386. which indicates to the C program that the system provides
  1387. a prototype for the <CODE>lseek()</CODE> function.  Otherwise, it is
  1388. up to the program to supply one.</P>
  1389. <P></P>
  1390. <DT><STRONG><A NAME="item_d_lstat"><CODE>d_lstat</CODE></A></STRONG><BR>
  1391. <DD>
  1392. From <EM>d_lstat.U</EM>:
  1393. <P>This variable conditionally defines <CODE>HAS_LSTAT</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_lstat"><CODE>lstat()</CODE></A> is
  1394. available to do file stats on symbolic links.</P>
  1395. <P></P>
  1396. <DT><STRONG><A NAME="item_d_madvise"><CODE>d_madvise</CODE></A></STRONG><BR>
  1397. <DD>
  1398. From <EM>d_madvise.U</EM>:
  1399. <P>This variable conditionally defines <CODE>HAS_MADVISE</CODE> if <CODE>madvise()</CODE> is
  1400. available to map a file into memory.</P>
  1401. <P></P>
  1402. <DT><STRONG><A NAME="item_d_mblen"><CODE>d_mblen</CODE></A></STRONG><BR>
  1403. <DD>
  1404. From <EM>d_mblen.U</EM>:
  1405. <P>This variable conditionally defines the <CODE>HAS_MBLEN</CODE> symbol, which
  1406. indicates to the C program that the <CODE>mblen()</CODE> routine is available
  1407. to find the number of bytes in a multibye character.</P>
  1408. <P></P>
  1409. <DT><STRONG><A NAME="item_d_mbstowcs"><CODE>d_mbstowcs</CODE></A></STRONG><BR>
  1410. <DD>
  1411. From <EM>d_mbstowcs.U</EM>:
  1412. <P>This variable conditionally defines the <CODE>HAS_MBSTOWCS</CODE> symbol, which
  1413. indicates to the C program that the <CODE>mbstowcs()</CODE> routine is available
  1414. to convert a multibyte string into a wide character string.</P>
  1415. <P></P>
  1416. <DT><STRONG><A NAME="item_d_mbtowc"><CODE>d_mbtowc</CODE></A></STRONG><BR>
  1417. <DD>
  1418. From <EM>d_mbtowc.U</EM>:
  1419. <P>This variable conditionally defines the <CODE>HAS_MBTOWC</CODE> symbol, which
  1420. indicates to the C program that the <CODE>mbtowc()</CODE> routine is available
  1421. to convert multibyte to a wide character.</P>
  1422. <P></P>
  1423. <DT><STRONG><A NAME="item_d_memchr"><CODE>d_memchr</CODE></A></STRONG><BR>
  1424. <DD>
  1425. From <EM>d_memchr.U</EM>:
  1426. <P>This variable conditionally defines the <CODE>HAS_MEMCHR</CODE> symbol, which
  1427. indicates to the C program that the <CODE>memchr()</CODE> routine is available
  1428. to locate characters within a C string.</P>
  1429. <P></P>
  1430. <DT><STRONG><A NAME="item_d_memcmp"><CODE>d_memcmp</CODE></A></STRONG><BR>
  1431. <DD>
  1432. From <EM>d_memcmp.U</EM>:
  1433. <P>This variable conditionally defines the <CODE>HAS_MEMCMP</CODE> symbol, which
  1434. indicates to the C program that the <CODE>memcmp()</CODE> routine is available
  1435. to compare blocks of memory.</P>
  1436. <P></P>
  1437. <DT><STRONG><A NAME="item_d_memcpy"><CODE>d_memcpy</CODE></A></STRONG><BR>
  1438. <DD>
  1439. From <EM>d_memcpy.U</EM>:
  1440. <P>This variable conditionally defines the <CODE>HAS_MEMCPY</CODE> symbol, which
  1441. indicates to the C program that the <CODE>memcpy()</CODE> routine is available
  1442. to copy blocks of memory.</P>
  1443. <P></P>
  1444. <DT><STRONG><A NAME="item_d_memmove"><CODE>d_memmove</CODE></A></STRONG><BR>
  1445. <DD>
  1446. From <EM>d_memmove.U</EM>:
  1447. <P>This variable conditionally defines the <CODE>HAS_MEMMOVE</CODE> symbol, which
  1448. indicates to the C program that the <CODE>memmove()</CODE> routine is available
  1449. to copy potentatially overlapping blocks of memory.</P>
  1450. <P></P>
  1451. <DT><STRONG><A NAME="item_d_memset"><CODE>d_memset</CODE></A></STRONG><BR>
  1452. <DD>
  1453. From <EM>d_memset.U</EM>:
  1454. <P>This variable conditionally defines the <CODE>HAS_MEMSET</CODE> symbol, which
  1455. indicates to the C program that the <CODE>memset()</CODE> routine is available
  1456. to set blocks of memory.</P>
  1457. <P></P>
  1458. <DT><STRONG><A NAME="item_d_mkdir"><CODE>d_mkdir</CODE></A></STRONG><BR>
  1459. <DD>
  1460. From <EM>d_mkdir.U</EM>:
  1461. <P>This variable conditionally defines the <CODE>HAS_MKDIR</CODE> symbol, which
  1462. indicates to the C program that the <A HREF="#item_mkdir"><CODE>mkdir()</CODE></A> routine is available
  1463. to create <EM>directories.</EM>.</P>
  1464. <P></P>
  1465. <DT><STRONG><A NAME="item_d_mkdtemp"><CODE>d_mkdtemp</CODE></A></STRONG><BR>
  1466. <DD>
  1467. From <EM>d_mkdtemp.U</EM>:
  1468. <P>This variable conditionally defines the <CODE>HAS_MKDTEMP</CODE> symbol, which
  1469. indicates to the C program that the <CODE>mkdtemp()</CODE> routine is available
  1470. to exclusively create a uniquely named temporary directory.</P>
  1471. <P></P>
  1472. <DT><STRONG><A NAME="item_d_mkfifo"><CODE>d_mkfifo</CODE></A></STRONG><BR>
  1473. <DD>
  1474. From <EM>d_mkfifo.U</EM>:
  1475. <P>This variable conditionally defines the <CODE>HAS_MKFIFO</CODE> symbol, which
  1476. indicates to the C program that the <CODE>mkfifo()</CODE> routine is available.</P>
  1477. <P></P>
  1478. <DT><STRONG><A NAME="item_d_mkstemp"><CODE>d_mkstemp</CODE></A></STRONG><BR>
  1479. <DD>
  1480. From <EM>d_mkstemp.U</EM>:
  1481. <P>This variable conditionally defines the <CODE>HAS_MKSTEMP</CODE> symbol, which
  1482. indicates to the C program that the <CODE>mkstemp()</CODE> routine is available
  1483. to exclusively create and open a uniquely named temporary file.</P>
  1484. <P></P>
  1485. <DT><STRONG><A NAME="item_d_mkstemps"><CODE>d_mkstemps</CODE></A></STRONG><BR>
  1486. <DD>
  1487. From <EM>d_mkstemps.U</EM>:
  1488. <P>This variable conditionally defines the <CODE>HAS_MKSTEMPS</CODE> symbol, which
  1489. indicates to the C program that the <CODE>mkstemps()</CODE> routine is available
  1490. to exclusively create and open a uniquely named (with a suffix)
  1491. temporary file.</P>
  1492. <P></P>
  1493. <DT><STRONG><A NAME="item_d_mktime"><CODE>d_mktime</CODE></A></STRONG><BR>
  1494. <DD>
  1495. From <EM>d_mktime.U</EM>:
  1496. <P>This variable conditionally defines the <CODE>HAS_MKTIME</CODE> symbol, which
  1497. indicates to the C program that the <CODE>mktime()</CODE> routine is available.</P>
  1498. <P></P>
  1499. <DT><STRONG><A NAME="item_d_mmap"><CODE>d_mmap</CODE></A></STRONG><BR>
  1500. <DD>
  1501. From <EM>d_mmap.U</EM>:
  1502. <P>This variable conditionally defines <CODE>HAS_MMAP</CODE> if <CODE>mmap()</CODE> is
  1503. available to map a file into memory.</P>
  1504. <P></P>
  1505. <DT><STRONG><A NAME="item_d_mprotect"><CODE>d_mprotect</CODE></A></STRONG><BR>
  1506. <DD>
  1507. From <EM>d_mprotect.U</EM>:
  1508. <P>This variable conditionally defines <CODE>HAS_MPROTECT</CODE> if <CODE>mprotect()</CODE> is
  1509. available to modify the access protection of a memory mapped file.</P>
  1510. <P></P>
  1511. <DT><STRONG><A NAME="item_d_msg"><CODE>d_msg</CODE></A></STRONG><BR>
  1512. <DD>
  1513. From <EM>d_msg.U</EM>:
  1514. <P>This variable conditionally defines the <CODE>HAS_MSG</CODE> symbol, which
  1515. indicates that the entire msg*(2) library is present.</P>
  1516. <P></P>
  1517. <DT><STRONG><A NAME="item_d_msg_ctrunc"><CODE>d_msg_ctrunc</CODE></A></STRONG><BR>
  1518. <DD>
  1519. From <EM>d_socket.U</EM>:
  1520. <P>This variable conditionally defines the <CODE>HAS_MSG_CTRUNC</CODE> symbol,
  1521. which indicates that the <CODE>MSG_CTRUNC</CODE> is available.  #ifdef is
  1522. not enough because it may be an enum, glibc has been known to do this.</P>
  1523. <P></P>
  1524. <DT><STRONG><A NAME="item_d_msg_dontroute"><CODE>d_msg_dontroute</CODE></A></STRONG><BR>
  1525. <DD>
  1526. From <EM>d_socket.U</EM>:
  1527. <P>This variable conditionally defines the <CODE>HAS_MSG_DONTROUTE</CODE> symbol,
  1528. which indicates that the <CODE>MSG_DONTROUTE</CODE> is available.  #ifdef is
  1529. not enough because it may be an enum, glibc has been known to do this.</P>
  1530. <P></P>
  1531. <DT><STRONG><A NAME="item_d_msg_oob"><CODE>d_msg_oob</CODE></A></STRONG><BR>
  1532. <DD>
  1533. From <EM>d_socket.U</EM>:
  1534. <P>This variable conditionally defines the <CODE>HAS_MSG_OOB</CODE> symbol,
  1535. which indicates that the <CODE>MSG_OOB</CODE> is available.  #ifdef is
  1536. not enough because it may be an enum, glibc has been known to do this.</P>
  1537. <P></P>
  1538. <DT><STRONG><A NAME="item_d_msg_peek"><CODE>d_msg_peek</CODE></A></STRONG><BR>
  1539. <DD>
  1540. From <EM>d_socket.U</EM>:
  1541. <P>This variable conditionally defines the <CODE>HAS_MSG_PEEK</CODE> symbol,
  1542. which indicates that the <CODE>MSG_PEEK</CODE> is available.  #ifdef is
  1543. not enough because it may be an enum, glibc has been known to do this.</P>
  1544. <P></P>
  1545. <DT><STRONG><A NAME="item_d_msg_proxy"><CODE>d_msg_proxy</CODE></A></STRONG><BR>
  1546. <DD>
  1547. From <EM>d_socket.U</EM>:
  1548. <P>This variable conditionally defines the <CODE>HAS_MSG_PROXY</CODE> symbol,
  1549. which indicates that the <CODE>MSG_PROXY</CODE> is available.  #ifdef is
  1550. not enough because it may be an enum, glibc has been known to do this.</P>
  1551. <P></P>
  1552. <DT><STRONG><A NAME="item_d_msgctl"><CODE>d_msgctl</CODE></A></STRONG><BR>
  1553. <DD>
  1554. From <EM>d_msgctl.U</EM>:
  1555. <P>This variable conditionally defines the <CODE>HAS_MSGCTL</CODE> symbol, which
  1556. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_msgctl"><CODE>msgctl()</CODE></A> routine is available.</P>
  1557. <P></P>
  1558. <DT><STRONG><A NAME="item_d_msgget"><CODE>d_msgget</CODE></A></STRONG><BR>
  1559. <DD>
  1560. From <EM>d_msgget.U</EM>:
  1561. <P>This variable conditionally defines the <CODE>HAS_MSGGET</CODE> symbol, which
  1562. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_msgget"><CODE>msgget()</CODE></A> routine is available.</P>
  1563. <P></P>
  1564. <DT><STRONG><A NAME="item_d_msgrcv"><CODE>d_msgrcv</CODE></A></STRONG><BR>
  1565. <DD>
  1566. From <EM>d_msgrcv.U</EM>:
  1567. <P>This variable conditionally defines the <CODE>HAS_MSGRCV</CODE> symbol, which
  1568. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_msgrcv"><CODE>msgrcv()</CODE></A> routine is available.</P>
  1569. <P></P>
  1570. <DT><STRONG><A NAME="item_d_msgsnd"><CODE>d_msgsnd</CODE></A></STRONG><BR>
  1571. <DD>
  1572. From <EM>d_msgsnd.U</EM>:
  1573. <P>This variable conditionally defines the <CODE>HAS_MSGSND</CODE> symbol, which
  1574. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_msgsnd"><CODE>msgsnd()</CODE></A> routine is available.</P>
  1575. <P></P>
  1576. <DT><STRONG><A NAME="item_d_msync"><CODE>d_msync</CODE></A></STRONG><BR>
  1577. <DD>
  1578. From <EM>d_msync.U</EM>:
  1579. <P>This variable conditionally defines <CODE>HAS_MSYNC</CODE> if <CODE>msync()</CODE> is
  1580. available to synchronize a mapped file.</P>
  1581. <P></P>
  1582. <DT><STRONG><A NAME="item_d_munmap"><CODE>d_munmap</CODE></A></STRONG><BR>
  1583. <DD>
  1584. From <EM>d_munmap.U</EM>:
  1585. <P>This variable conditionally defines <CODE>HAS_MUNMAP</CODE> if <CODE>munmap()</CODE> is
  1586. available to unmap a region mapped by mmap().</P>
  1587. <P></P>
  1588. <DT><STRONG><A NAME="item_d_mymalloc"><CODE>d_mymalloc</CODE></A></STRONG><BR>
  1589. <DD>
  1590. From <EM>mallocsrc.U</EM>:
  1591. <P>This variable conditionally defines <CODE>MYMALLOC</CODE> in case other parts
  1592. of the source want to take special action if <CODE>MYMALLOC</CODE> is used.
  1593. This may include different sorts of profiling or error detection.</P>
  1594. <P></P>
  1595. <DT><STRONG><A NAME="item_d_nice"><CODE>d_nice</CODE></A></STRONG><BR>
  1596. <DD>
  1597. From <EM>d_nice.U</EM>:
  1598. <P>This variable conditionally defines the <CODE>HAS_NICE</CODE> symbol, which
  1599. indicates to the C program that the <CODE>nice()</CODE> routine is available.</P>
  1600. <P></P>
  1601. <DT><STRONG><A NAME="item_d_nv_preserves_uv"><CODE>d_nv_preserves_uv</CODE></A></STRONG><BR>
  1602. <DD>
  1603. From <EM>perlxv.U</EM>:
  1604. <P>This variable indicates whether a variable of type nvtype
  1605. can preserve all the bits a variable of type uvtype.</P>
  1606. <P></P>
  1607. <DT><STRONG><A NAME="item_d_off64_t"><CODE>d_off64_t</CODE></A></STRONG><BR>
  1608. <DD>
  1609. From <EM>d_off64_t.U</EM>:
  1610. <P>This symbol will be defined if the C compiler supports off64_t.</P>
  1611. <P></P>
  1612. <DT><STRONG><A NAME="item_d_old_pthread_create_joinable"><CODE>d_old_pthread_create_joinable</CODE></A></STRONG><BR>
  1613. <DD>
  1614. From <EM>d_pthrattrj.U</EM>:
  1615. <P>This variable conditionally defines pthread_create_joinable.
  1616. undef if <EM>pthread.h</EM> defines <CODE>PTHREAD_CREATE_JOINABLE</CODE>.</P>
  1617. <P></P>
  1618. <DT><STRONG><A NAME="item_d_oldpthreads"><CODE>d_oldpthreads</CODE></A></STRONG><BR>
  1619. <DD>
  1620. From <EM>usethreads.U</EM>:
  1621. <P>This variable conditionally defines the <CODE>OLD_PTHREADS_API</CODE> symbol,
  1622. and indicates that Perl should be built to use the old
  1623. draft <CODE>POSIX</CODE> threads <CODE>API</CODE>.  This is only potentially meaningful if
  1624. usethreads is set.</P>
  1625. <P></P>
  1626. <DT><STRONG><A NAME="item_d_oldsock"><CODE>d_oldsock</CODE></A></STRONG><BR>
  1627. <DD>
  1628. From <EM>d_socket.U</EM>:
  1629. <P>This variable conditionally defines the <CODE>OLDSOCKET</CODE> symbol, which
  1630. indicates that the <CODE>BSD</CODE> socket interface is based on 4.1c and not 4.2.</P>
  1631. <P></P>
  1632. <DT><STRONG><A NAME="item_d_open3"><CODE>d_open3</CODE></A></STRONG><BR>
  1633. <DD>
  1634. From <EM>d_open3.U</EM>:
  1635. <P>This variable conditionally defines the HAS_OPEN3 manifest constant,
  1636. which indicates to the C program that the 3 argument version of
  1637. the <A HREF="../lib/Pod/perlfunc.html#item_open"><CODE>open(2)</CODE></A> function is available.</P>
  1638. <P></P>
  1639. <DT><STRONG><A NAME="item_d_pathconf"><CODE>d_pathconf</CODE></A></STRONG><BR>
  1640. <DD>
  1641. From <EM>d_pathconf.U</EM>:
  1642. <P>This variable conditionally defines the <CODE>HAS_PATHCONF</CODE> symbol, which
  1643. indicates to the C program that the <CODE>pathconf()</CODE> routine is available
  1644. to determine file-system related limits and options associated
  1645. with a given filename.</P>
  1646. <P></P>
  1647. <DT><STRONG><A NAME="item_d_pause"><CODE>d_pause</CODE></A></STRONG><BR>
  1648. <DD>
  1649. From <EM>d_pause.U</EM>:
  1650. <P>This variable conditionally defines the <CODE>HAS_PAUSE</CODE> symbol, which
  1651. indicates to the C program that the <CODE>pause()</CODE> routine is available
  1652. to suspend a process until a signal is received.</P>
  1653. <P></P>
  1654. <DT><STRONG><A NAME="item_d_phostname"><CODE>d_phostname</CODE></A></STRONG><BR>
  1655. <DD>
  1656. From <EM>d_gethname.U</EM>:
  1657. <P>This variable conditionally defines the <CODE>HAS_PHOSTNAME</CODE> symbol, which
  1658. contains the shell command which, when fed to popen(), may be
  1659. used to derive the host name.</P>
  1660. <P></P>
  1661. <DT><STRONG><A NAME="item_d_pipe"><CODE>d_pipe</CODE></A></STRONG><BR>
  1662. <DD>
  1663. From <EM>d_pipe.U</EM>:
  1664. <P>This variable conditionally defines the <CODE>HAS_PIPE</CODE> symbol, which
  1665. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_pipe"><CODE>pipe()</CODE></A> routine is available
  1666. to create an inter-process channel.</P>
  1667. <P></P>
  1668. <DT><STRONG><A NAME="item_d_poll"><CODE>d_poll</CODE></A></STRONG><BR>
  1669. <DD>
  1670. From <EM>d_poll.U</EM>:
  1671. <P>This variable conditionally defines the <CODE>HAS_POLL</CODE> symbol, which
  1672. indicates to the C program that the <CODE>poll()</CODE> routine is available
  1673. to poll active file descriptors.</P>
  1674. <P></P>
  1675. <DT><STRONG><A NAME="item_d_portable"><CODE>d_portable</CODE></A></STRONG><BR>
  1676. <DD>
  1677. From <EM>d_portable.U</EM>:
  1678. <P>This variable conditionally defines the <CODE>PORTABLE</CODE> symbol, which
  1679. indicates to the C program that it should not assume that it is
  1680. running on the machine it was compiled on.</P>
  1681. <P></P>
  1682. <DT><STRONG><A NAME="item_d_PRId64"><CODE>d_PRId64</CODE></A></STRONG><BR>
  1683. <DD>
  1684. From <EM>quadfio.U</EM>:
  1685. <P>This variable conditionally defines the PERL_PRId64 symbol, which
  1686. indiciates that stdio has a symbol to print 64-bit decimal numbers.</P>
  1687. <P></P>
  1688. <DT><STRONG><A NAME="item_d_PRIeldbl"><CODE>d_PRIeldbl</CODE></A></STRONG><BR>
  1689. <DD>
  1690. From <EM>longdblfio.U</EM>:
  1691. <P>This variable conditionally defines the PERL_PRIfldlbl symbol, which
  1692. indiciates that stdio has a symbol to print long doubles.</P>
  1693. <P></P>
  1694. <DT><STRONG><A NAME="item_d_PRIEldbl"><CODE>d_PRIEldbl</CODE></A></STRONG><BR>
  1695. <DD>
  1696. From <EM>longdblfio.U</EM>:
  1697. <P>This variable conditionally defines the PERL_PRIfldlbl symbol, which
  1698. indiciates that stdio has a symbol to print long doubles.</P>
  1699. <P></P>
  1700. <DT><STRONG><A NAME="item_d_PRIfldbl"><CODE>d_PRIfldbl</CODE></A></STRONG><BR>
  1701. <DD>
  1702. From <EM>longdblfio.U</EM>:
  1703. <P>This variable conditionally defines the PERL_PRIfldlbl symbol, which
  1704. indiciates that stdio has a symbol to print long doubles.</P>
  1705. <P></P>
  1706. <DT><STRONG><A NAME="item_d_PRIFldbl"><CODE>d_PRIFldbl</CODE></A></STRONG><BR>
  1707. <DD>
  1708. From <EM>longdblfio.U</EM>:
  1709. <P>This variable conditionally defines the PERL_PRIfldlbl symbol, which
  1710. indiciates that stdio has a symbol to print long doubles.</P>
  1711. <P></P>
  1712. <DT><STRONG><A NAME="item_d_PRIgldbl"><CODE>d_PRIgldbl</CODE></A></STRONG><BR>
  1713. <DD>
  1714. From <EM>longdblfio.U</EM>:
  1715. <P>This variable conditionally defines the PERL_PRIfldlbl symbol, which
  1716. indiciates that stdio has a symbol to print long doubles.</P>
  1717. <P></P>
  1718. <DT><STRONG><A NAME="item_d_PRIGldbl"><CODE>d_PRIGldbl</CODE></A></STRONG><BR>
  1719. <DD>
  1720. From <EM>longdblfio.U</EM>:
  1721. <P>This variable conditionally defines the PERL_PRIfldlbl symbol, which
  1722. indiciates that stdio has a symbol to print long doubles.</P>
  1723. <P></P>
  1724. <DT><STRONG><A NAME="item_d_PRIi64"><CODE>d_PRIi64</CODE></A></STRONG><BR>
  1725. <DD>
  1726. From <EM>quadfio.U</EM>:
  1727. <P>This variable conditionally defines the PERL_PRIi64 symbol, which
  1728. indiciates that stdio has a symbol to print 64-bit decimal numbers.</P>
  1729. <P></P>
  1730. <DT><STRONG><A NAME="item_d_PRIo64"><CODE>d_PRIo64</CODE></A></STRONG><BR>
  1731. <DD>
  1732. From <EM>quadfio.U</EM>:
  1733. <P>This variable conditionally defines the PERL_PRIo64 symbol, which
  1734. indiciates that stdio has a symbol to print 64-bit octal numbers.</P>
  1735. <P></P>
  1736. <DT><STRONG><A NAME="item_d_PRIu64"><CODE>d_PRIu64</CODE></A></STRONG><BR>
  1737. <DD>
  1738. From <EM>quadfio.U</EM>:
  1739. <P>This variable conditionally defines the PERL_PRIu64 symbol, which
  1740. indiciates that stdio has a symbol to print 64-bit unsigned decimal
  1741. numbers.</P>
  1742. <P></P>
  1743. <DT><STRONG><A NAME="item_d_PRIx64"><CODE>d_PRIx64</CODE></A></STRONG><BR>
  1744. <DD>
  1745. From <EM>quadfio.U</EM>:
  1746. <P>This variable conditionally defines the PERL_PRIx64 symbol, which
  1747. indiciates that stdio has a symbol to print 64-bit hexadecimal numbers.</P>
  1748. <P></P>
  1749. <DT><STRONG><A NAME="item_d_PRIX64"><CODE>d_PRIX64</CODE></A></STRONG><BR>
  1750. <DD>
  1751. From <EM>quadfio.U</EM>:
  1752. <P>This variable conditionally defines the PERL_PRIX64 symbol, which
  1753. indiciates that stdio has a symbol to print 64-bit hExADECimAl numbers.</P>
  1754. <P></P>
  1755. <DT><STRONG><A NAME="item_d_pthread_yield"><CODE>d_pthread_yield</CODE></A></STRONG><BR>
  1756. <DD>
  1757. From <EM>d_pthread_y.U</EM>:
  1758. <P>This variable conditionally defines the <CODE>HAS_PTHREAD_YIELD</CODE>
  1759. symbol if the pthread_yield routine is available to yield
  1760. the execution of the current thread.</P>
  1761. <P></P>
  1762. <DT><STRONG><A NAME="item_d_pwage"><CODE>d_pwage</CODE></A></STRONG><BR>
  1763. <DD>
  1764. From <EM>i_pwd.U</EM>:
  1765. <P>This variable conditionally defines <CODE>PWAGE</CODE>, which indicates
  1766. that struct passwd contains pw_age.</P>
  1767. <P></P>
  1768. <DT><STRONG><A NAME="item_d_pwchange"><CODE>d_pwchange</CODE></A></STRONG><BR>
  1769. <DD>
  1770. From <EM>i_pwd.U</EM>:
  1771. <P>This variable conditionally defines <CODE>PWCHANGE</CODE>, which indicates
  1772. that struct passwd contains pw_change.</P>
  1773. <P></P>
  1774. <DT><STRONG><A NAME="item_d_pwclass"><CODE>d_pwclass</CODE></A></STRONG><BR>
  1775. <DD>
  1776. From <EM>i_pwd.U</EM>:
  1777. <P>This variable conditionally defines <CODE>PWCLASS</CODE>, which indicates
  1778. that struct passwd contains pw_class.</P>
  1779. <P></P>
  1780. <DT><STRONG><A NAME="item_d_pwcomment"><CODE>d_pwcomment</CODE></A></STRONG><BR>
  1781. <DD>
  1782. From <EM>i_pwd.U</EM>:
  1783. <P>This variable conditionally defines <CODE>PWCOMMENT</CODE>, which indicates
  1784. that struct passwd contains pw_comment.</P>
  1785. <P></P>
  1786. <DT><STRONG><A NAME="item_d_pwexpire"><CODE>d_pwexpire</CODE></A></STRONG><BR>
  1787. <DD>
  1788. From <EM>i_pwd.U</EM>:
  1789. <P>This variable conditionally defines <CODE>PWEXPIRE</CODE>, which indicates
  1790. that struct passwd contains pw_expire.</P>
  1791. <P></P>
  1792. <DT><STRONG><A NAME="item_d_pwgecos"><CODE>d_pwgecos</CODE></A></STRONG><BR>
  1793. <DD>
  1794. From <EM>i_pwd.U</EM>:
  1795. <P>This variable conditionally defines <CODE>PWGECOS</CODE>, which indicates
  1796. that struct passwd contains pw_gecos.</P>
  1797. <P></P>
  1798. <DT><STRONG><A NAME="item_d_pwpasswd"><CODE>d_pwpasswd</CODE></A></STRONG><BR>
  1799. <DD>
  1800. From <EM>i_pwd.U</EM>:
  1801. <P>This variable conditionally defines <CODE>PWPASSWD</CODE>, which indicates
  1802. that struct passwd contains pw_passwd.</P>
  1803. <P></P>
  1804. <DT><STRONG><A NAME="item_d_pwquota"><CODE>d_pwquota</CODE></A></STRONG><BR>
  1805. <DD>
  1806. From <EM>i_pwd.U</EM>:
  1807. <P>This variable conditionally defines <CODE>PWQUOTA</CODE>, which indicates
  1808. that struct passwd contains pw_quota.</P>
  1809. <P></P>
  1810. <DT><STRONG><A NAME="item_d_qgcvt"><CODE>d_qgcvt</CODE></A></STRONG><BR>
  1811. <DD>
  1812. From <EM>d_qgcvt.U</EM>:
  1813. <P>This variable conditionally defines the <CODE>HAS_QGCVT</CODE> symbol, which
  1814. indicates to the C program that the <CODE>qgcvt()</CODE> routine is available.</P>
  1815. <P></P>
  1816. <DT><STRONG><A NAME="item_d_quad"><CODE>d_quad</CODE></A></STRONG><BR>
  1817. <DD>
  1818. From <EM>quadtype.U</EM>:
  1819. <P>This variable, if defined, tells that there's a 64-bit integer type,
  1820. quadtype.</P>
  1821. <P></P>
  1822. <DT><STRONG><A NAME="item_d_readdir"><CODE>d_readdir</CODE></A></STRONG><BR>
  1823. <DD>
  1824. From <EM>d_readdir.U</EM>:
  1825. <P>This variable conditionally defines <CODE>HAS_READDIR</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_readdir"><CODE>readdir()</CODE></A> is
  1826. available to read directory entries.</P>
  1827. <P></P>
  1828. <DT><STRONG><A NAME="item_d_readlink"><CODE>d_readlink</CODE></A></STRONG><BR>
  1829. <DD>
  1830. From <EM>d_readlink.U</EM>:
  1831. <P>This variable conditionally defines the <CODE>HAS_READLINK</CODE> symbol, which
  1832. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_readlink"><CODE>readlink()</CODE></A> routine is available
  1833. to read the value of a symbolic link.</P>
  1834. <P></P>
  1835. <DT><STRONG><A NAME="item_d_rename"><CODE>d_rename</CODE></A></STRONG><BR>
  1836. <DD>
  1837. From <EM>d_rename.U</EM>:
  1838. <P>This variable conditionally defines the <CODE>HAS_RENAME</CODE> symbol, which
  1839. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_rename"><CODE>rename()</CODE></A> routine is available
  1840. to rename files.</P>
  1841. <P></P>
  1842. <DT><STRONG><A NAME="item_d_rewinddir"><CODE>d_rewinddir</CODE></A></STRONG><BR>
  1843. <DD>
  1844. From <EM>d_readdir.U</EM>:
  1845. <P>This variable conditionally defines <CODE>HAS_REWINDDIR</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_rewinddir"><CODE>rewinddir()</CODE></A> is
  1846. available.</P>
  1847. <P></P>
  1848. <DT><STRONG><A NAME="item_d_rmdir"><CODE>d_rmdir</CODE></A></STRONG><BR>
  1849. <DD>
  1850. From <EM>d_rmdir.U</EM>:
  1851. <P>This variable conditionally defines <CODE>HAS_RMDIR</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_rmdir"><CODE>rmdir()</CODE></A> is
  1852. available to remove directories.</P>
  1853. <P></P>
  1854. <DT><STRONG><A NAME="item_d_safebcpy"><CODE>d_safebcpy</CODE></A></STRONG><BR>
  1855. <DD>
  1856. From <EM>d_safebcpy.U</EM>:
  1857. <P>This variable conditionally defines the <CODE>HAS_SAFE_BCOPY</CODE> symbol if
  1858. the <CODE>bcopy()</CODE> routine can do overlapping copies.</P>
  1859. <P></P>
  1860. <DT><STRONG><A NAME="item_d_safemcpy"><CODE>d_safemcpy</CODE></A></STRONG><BR>
  1861. <DD>
  1862. From <EM>d_safemcpy.U</EM>:
  1863. <P>This variable conditionally defines the <CODE>HAS_SAFE_MEMCPY</CODE> symbol if
  1864. the <CODE>memcpy()</CODE> routine can do overlapping copies.</P>
  1865. <P></P>
  1866. <DT><STRONG><A NAME="item_d_sanemcmp"><CODE>d_sanemcmp</CODE></A></STRONG><BR>
  1867. <DD>
  1868. From <EM>d_sanemcmp.U</EM>:
  1869. <P>This variable conditionally defines the <CODE>HAS_SANE_MEMCMP</CODE> symbol if
  1870. the <CODE>memcpy()</CODE> routine is available and can be used to compare relative
  1871. magnitudes of chars with their high bits set.</P>
  1872. <P></P>
  1873. <DT><STRONG><A NAME="item_d_sched_yield"><CODE>d_sched_yield</CODE></A></STRONG><BR>
  1874. <DD>
  1875. From <EM>d_pthread_y.U</EM>:
  1876. <P>This variable conditionally defines the <CODE>HAS_SCHED_YIELD</CODE>
  1877. symbol if the sched_yield routine is available to yield
  1878. the execution of the current thread.</P>
  1879. <P></P>
  1880. <DT><STRONG><A NAME="item_d_scm_rights"><CODE>d_scm_rights</CODE></A></STRONG><BR>
  1881. <DD>
  1882. From <EM>d_socket.U</EM>:
  1883. <P>This variable conditionally defines the <CODE>HAS_SCM_RIGHTS</CODE> symbol,
  1884. which indicates that the <CODE>SCM_RIGHTS</CODE> is available.  #ifdef is
  1885. not enough because it may be an enum, glibc has been known to do this.</P>
  1886. <P></P>
  1887. <DT><STRONG><A NAME="item_d_seekdir"><CODE>d_seekdir</CODE></A></STRONG><BR>
  1888. <DD>
  1889. From <EM>d_readdir.U</EM>:
  1890. <P>This variable conditionally defines <CODE>HAS_SEEKDIR</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_seekdir"><CODE>seekdir()</CODE></A> is
  1891. available.</P>
  1892. <P></P>
  1893. <DT><STRONG><A NAME="item_d_select"><CODE>d_select</CODE></A></STRONG><BR>
  1894. <DD>
  1895. From <EM>d_select.U</EM>:
  1896. <P>This variable conditionally defines <CODE>HAS_SELECT</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_select"><CODE>select()</CODE></A> is
  1897. available to select active file descriptors. A <sys/time.h>
  1898. inclusion may be necessary for the timeout field.</P>
  1899. <P></P>
  1900. <DT><STRONG><A NAME="item_d_sem"><CODE>d_sem</CODE></A></STRONG><BR>
  1901. <DD>
  1902. From <EM>d_sem.U</EM>:
  1903. <P>This variable conditionally defines the <CODE>HAS_SEM</CODE> symbol, which
  1904. indicates that the entire sem*(2) library is present.</P>
  1905. <P></P>
  1906. <DT><STRONG><A NAME="item_d_semctl"><CODE>d_semctl</CODE></A></STRONG><BR>
  1907. <DD>
  1908. From <EM>d_semctl.U</EM>:
  1909. <P>This variable conditionally defines the <CODE>HAS_SEMCTL</CODE> symbol, which
  1910. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_semctl"><CODE>semctl()</CODE></A> routine is available.</P>
  1911. <P></P>
  1912. <DT><STRONG><A NAME="item_d_semctl_semid_ds"><CODE>d_semctl_semid_ds</CODE></A></STRONG><BR>
  1913. <DD>
  1914. From <EM>d_union_semun.U</EM>:
  1915. <P>This variable conditionally defines <CODE>USE_SEMCTL_SEMID_DS</CODE>, which
  1916. indicates that struct semid_ds * is to be used for semctl <CODE>IPC_STAT</CODE>.</P>
  1917. <P></P>
  1918. <DT><STRONG><A NAME="item_d_semctl_semun"><CODE>d_semctl_semun</CODE></A></STRONG><BR>
  1919. <DD>
  1920. From <EM>d_union_semun.U</EM>:
  1921. <P>This variable conditionally defines <CODE>USE_SEMCTL_SEMUN</CODE>, which
  1922. indicates that union semun is to be used for semctl <CODE>IPC_STAT</CODE>.</P>
  1923. <P></P>
  1924. <DT><STRONG><A NAME="item_d_semget"><CODE>d_semget</CODE></A></STRONG><BR>
  1925. <DD>
  1926. From <EM>d_semget.U</EM>:
  1927. <P>This variable conditionally defines the <CODE>HAS_SEMGET</CODE> symbol, which
  1928. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_semget"><CODE>semget()</CODE></A> routine is available.</P>
  1929. <P></P>
  1930. <DT><STRONG><A NAME="item_d_semop"><CODE>d_semop</CODE></A></STRONG><BR>
  1931. <DD>
  1932. From <EM>d_semop.U</EM>:
  1933. <P>This variable conditionally defines the <CODE>HAS_SEMOP</CODE> symbol, which
  1934. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_semop"><CODE>semop()</CODE></A> routine is available.</P>
  1935. <P></P>
  1936. <DT><STRONG><A NAME="item_d_setegid"><CODE>d_setegid</CODE></A></STRONG><BR>
  1937. <DD>
  1938. From <EM>d_setegid.U</EM>:
  1939. <P>This variable conditionally defines the <CODE>HAS_SETEGID</CODE> symbol, which
  1940. indicates to the C program that the <CODE>setegid()</CODE> routine is available
  1941. to change the effective gid of the current program.</P>
  1942. <P></P>
  1943. <DT><STRONG><A NAME="item_d_seteuid"><CODE>d_seteuid</CODE></A></STRONG><BR>
  1944. <DD>
  1945. From <EM>d_seteuid.U</EM>:
  1946. <P>This variable conditionally defines the <CODE>HAS_SETEUID</CODE> symbol, which
  1947. indicates to the C program that the <CODE>seteuid()</CODE> routine is available
  1948. to change the effective uid of the current program.</P>
  1949. <P></P>
  1950. <DT><STRONG><A NAME="item_d_setgrent"><CODE>d_setgrent</CODE></A></STRONG><BR>
  1951. <DD>
  1952. From <EM>d_setgrent.U</EM>:
  1953. <P>This variable conditionally defines the <CODE>HAS_SETGRENT</CODE> symbol, which
  1954. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_setgrent"><CODE>setgrent()</CODE></A> routine is available
  1955. for initializing sequential access to the group database.</P>
  1956. <P></P>
  1957. <DT><STRONG><A NAME="item_d_setgrps"><CODE>d_setgrps</CODE></A></STRONG><BR>
  1958. <DD>
  1959. From <EM>d_setgrps.U</EM>:
  1960. <P>This variable conditionally defines the <CODE>HAS_SETGROUPS</CODE> symbol, which
  1961. indicates to the C program that the <CODE>setgroups()</CODE> routine is available
  1962. to set the list of process groups.</P>
  1963. <P></P>
  1964. <DT><STRONG><A NAME="item_d_sethent"><CODE>d_sethent</CODE></A></STRONG><BR>
  1965. <DD>
  1966. From <EM>d_sethent.U</EM>:
  1967. <P>This variable conditionally defines <CODE>HAS_SETHOSTENT</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_sethostent"><CODE>sethostent()</CODE></A> is
  1968. available.</P>
  1969. <P></P>
  1970. <DT><STRONG><A NAME="item_d_setlinebuf"><CODE>d_setlinebuf</CODE></A></STRONG><BR>
  1971. <DD>
  1972. From <EM>d_setlnbuf.U</EM>:
  1973. <P>This variable conditionally defines the <CODE>HAS_SETLINEBUF</CODE> symbol, which
  1974. indicates to the C program that the <CODE>setlinebuf()</CODE> routine is available
  1975. to change stderr or stdout from block-buffered or unbuffered to a
  1976. line-buffered mode.</P>
  1977. <P></P>
  1978. <DT><STRONG><A NAME="item_d_setlocale"><CODE>d_setlocale</CODE></A></STRONG><BR>
  1979. <DD>
  1980. From <EM>d_setlocale.U</EM>:
  1981. <P>This variable conditionally defines <CODE>HAS_SETLOCALE</CODE> if <CODE>setlocale()</CODE> is
  1982. available to handle locale-specific ctype implementations.</P>
  1983. <P></P>
  1984. <DT><STRONG><A NAME="item_d_setnent"><CODE>d_setnent</CODE></A></STRONG><BR>
  1985. <DD>
  1986. From <EM>d_setnent.U</EM>:
  1987. <P>This variable conditionally defines <CODE>HAS_SETNETENT</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_setnetent"><CODE>setnetent()</CODE></A> is
  1988. available.</P>
  1989. <P></P>
  1990. <DT><STRONG><A NAME="item_d_setpent"><CODE>d_setpent</CODE></A></STRONG><BR>
  1991. <DD>
  1992. From <EM>d_setpent.U</EM>:
  1993. <P>This variable conditionally defines <CODE>HAS_SETPROTOENT</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_setprotoent"><CODE>setprotoent()</CODE></A> is
  1994. available.</P>
  1995. <P></P>
  1996. <DT><STRONG><A NAME="item_d_setpgid"><CODE>d_setpgid</CODE></A></STRONG><BR>
  1997. <DD>
  1998. From <EM>d_setpgid.U</EM>:
  1999. <P>This variable conditionally defines the <CODE>HAS_SETPGID</CODE> symbol if the
  2000. setpgid(pid, gpid) function is available to set process group <CODE>ID</CODE>.</P>
  2001. <P></P>
  2002. <DT><STRONG><A NAME="item_d_setpgrp2"><CODE>d_setpgrp2</CODE></A></STRONG><BR>
  2003. <DD>
  2004. From <EM>d_setpgrp2.U</EM>:
  2005. <P>This variable conditionally defines the HAS_SETPGRP2 symbol, which
  2006. indicates to the C program that the <CODE>setpgrp2()</CODE> (as in <EM>DG/<CODE>UX</CODE></EM>) routine
  2007. is available to set the current process group.</P>
  2008. <P></P>
  2009. <DT><STRONG><A NAME="item_d_setpgrp"><CODE>d_setpgrp</CODE></A></STRONG><BR>
  2010. <DD>
  2011. From <EM>d_setpgrp.U</EM>:
  2012. <P>This variable conditionally defines <CODE>HAS_SETPGRP</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_setpgrp"><CODE>setpgrp()</CODE></A> is
  2013. available to set the current process group.</P>
  2014. <P></P>
  2015. <DT><STRONG><A NAME="item_d_setprior"><CODE>d_setprior</CODE></A></STRONG><BR>
  2016. <DD>
  2017. From <EM>d_setprior.U</EM>:
  2018. <P>This variable conditionally defines <CODE>HAS_SETPRIORITY</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_setpriority"><CODE>setpriority()</CODE></A>
  2019. is available to set a process's priority.</P>
  2020. <P></P>
  2021. <DT><STRONG><A NAME="item_d_setpwent"><CODE>d_setpwent</CODE></A></STRONG><BR>
  2022. <DD>
  2023. From <EM>d_setpwent.U</EM>:
  2024. <P>This variable conditionally defines the <CODE>HAS_SETPWENT</CODE> symbol, which
  2025. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_setpwent"><CODE>setpwent()</CODE></A> routine is available
  2026. for initializing sequential access to the passwd database.</P>
  2027. <P></P>
  2028. <DT><STRONG><A NAME="item_d_setregid"><CODE>d_setregid</CODE></A></STRONG><BR>
  2029. <DD>
  2030. From <EM>d_setregid.U</EM>:
  2031. <P>This variable conditionally defines <CODE>HAS_SETREGID</CODE> if <CODE>setregid()</CODE> is
  2032. available to change the real and effective gid of the current
  2033. process.</P>
  2034. <P></P>
  2035. <DT><STRONG><A NAME="item_d_setresgid"><CODE>d_setresgid</CODE></A></STRONG><BR>
  2036. <DD>
  2037. From <EM>d_setregid.U</EM>:
  2038. <P>This variable conditionally defines <CODE>HAS_SETRESGID</CODE> if <CODE>setresgid()</CODE> is
  2039. available to change the real, effective and saved gid of the current
  2040. process.</P>
  2041. <P></P>
  2042. <DT><STRONG><A NAME="item_d_setresuid"><CODE>d_setresuid</CODE></A></STRONG><BR>
  2043. <DD>
  2044. From <EM>d_setreuid.U</EM>:
  2045. <P>This variable conditionally defines <CODE>HAS_SETREUID</CODE> if <CODE>setresuid()</CODE> is
  2046. available to change the real, effective and saved uid of the current
  2047. process.</P>
  2048. <P></P>
  2049. <DT><STRONG><A NAME="item_d_setreuid"><CODE>d_setreuid</CODE></A></STRONG><BR>
  2050. <DD>
  2051. From <EM>d_setreuid.U</EM>:
  2052. <P>This variable conditionally defines <CODE>HAS_SETREUID</CODE> if <CODE>setreuid()</CODE> is
  2053. available to change the real and effective uid of the current
  2054. process.</P>
  2055. <P></P>
  2056. <DT><STRONG><A NAME="item_d_setrgid"><CODE>d_setrgid</CODE></A></STRONG><BR>
  2057. <DD>
  2058. From <EM>d_setrgid.U</EM>:
  2059. <P>This variable conditionally defines the <CODE>HAS_SETRGID</CODE> symbol, which
  2060. indicates to the C program that the <CODE>setrgid()</CODE> routine is available
  2061. to change the real gid of the current program.</P>
  2062. <P></P>
  2063. <DT><STRONG><A NAME="item_d_setruid"><CODE>d_setruid</CODE></A></STRONG><BR>
  2064. <DD>
  2065. From <EM>d_setruid.U</EM>:
  2066. <P>This variable conditionally defines the <CODE>HAS_SETRUID</CODE> symbol, which
  2067. indicates to the C program that the <CODE>setruid()</CODE> routine is available
  2068. to change the real uid of the current program.</P>
  2069. <P></P>
  2070. <DT><STRONG><A NAME="item_d_setsent"><CODE>d_setsent</CODE></A></STRONG><BR>
  2071. <DD>
  2072. From <EM>d_setsent.U</EM>:
  2073. <P>This variable conditionally defines <CODE>HAS_SETSERVENT</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_setservent"><CODE>setservent()</CODE></A> is
  2074. available.</P>
  2075. <P></P>
  2076. <DT><STRONG><A NAME="item_d_setsid"><CODE>d_setsid</CODE></A></STRONG><BR>
  2077. <DD>
  2078. From <EM>d_setsid.U</EM>:
  2079. <P>This variable conditionally defines <CODE>HAS_SETSID</CODE> if <CODE>setsid()</CODE> is
  2080. available to set the process group <CODE>ID</CODE>.</P>
  2081. <P></P>
  2082. <DT><STRONG><A NAME="item_d_setspent"><CODE>d_setspent</CODE></A></STRONG><BR>
  2083. <DD>
  2084. From <EM>d_setspent.U</EM>:
  2085. <P>This variable conditionally defines <CODE>HAS_SETSPENT</CODE> if <CODE>setspent()</CODE> is
  2086. available to initialize the scan of SysV shadow password entries.</P>
  2087. <P></P>
  2088. <DT><STRONG><A NAME="item_d_setvbuf"><CODE>d_setvbuf</CODE></A></STRONG><BR>
  2089. <DD>
  2090. From <EM>d_setvbuf.U</EM>:
  2091. <P>This variable conditionally defines the <CODE>HAS_SETVBUF</CODE> symbol, which
  2092. indicates to the C program that the <CODE>setvbuf()</CODE> routine is available
  2093. to change buffering on an open stdio stream.</P>
  2094. <P></P>
  2095. <DT><STRONG><A NAME="item_d_sfio"><CODE>d_sfio</CODE></A></STRONG><BR>
  2096. <DD>
  2097. From <EM>d_sfio.U</EM>:
  2098. <P>This variable conditionally defines the <CODE>USE_SFIO</CODE> symbol,
  2099. and indicates whether sfio is available (and should be used).</P>
  2100. <P></P>
  2101. <DT><STRONG><A NAME="item_d_shm"><CODE>d_shm</CODE></A></STRONG><BR>
  2102. <DD>
  2103. From <EM>d_shm.U</EM>:
  2104. <P>This variable conditionally defines the <CODE>HAS_SHM</CODE> symbol, which
  2105. indicates that the entire shm*(2) library is present.</P>
  2106. <P></P>
  2107. <DT><STRONG><A NAME="item_d_shmat"><CODE>d_shmat</CODE></A></STRONG><BR>
  2108. <DD>
  2109. From <EM>d_shmat.U</EM>:
  2110. <P>This variable conditionally defines the <CODE>HAS_SHMAT</CODE> symbol, which
  2111. indicates to the C program that the <CODE>shmat()</CODE> routine is available.</P>
  2112. <P></P>
  2113. <DT><STRONG><A NAME="item_d_shmatprototype"><CODE>d_shmatprototype</CODE></A></STRONG><BR>
  2114. <DD>
  2115. From <EM>d_shmat.U</EM>:
  2116. <P>This variable conditionally defines the <CODE>HAS_SHMAT_PROTOTYPE</CODE> 
  2117. symbol, which indicates that <EM>sys/shm.h</EM> has a prototype for
  2118. shmat.</P>
  2119. <P></P>
  2120. <DT><STRONG><A NAME="item_d_shmctl"><CODE>d_shmctl</CODE></A></STRONG><BR>
  2121. <DD>
  2122. From <EM>d_shmctl.U</EM>:
  2123. <P>This variable conditionally defines the <CODE>HAS_SHMCTL</CODE> symbol, which
  2124. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_shmctl"><CODE>shmctl()</CODE></A> routine is available.</P>
  2125. <P></P>
  2126. <DT><STRONG><A NAME="item_d_shmdt"><CODE>d_shmdt</CODE></A></STRONG><BR>
  2127. <DD>
  2128. From <EM>d_shmdt.U</EM>:
  2129. <P>This variable conditionally defines the <CODE>HAS_SHMDT</CODE> symbol, which
  2130. indicates to the C program that the <CODE>shmdt()</CODE> routine is available.</P>
  2131. <P></P>
  2132. <DT><STRONG><A NAME="item_d_shmget"><CODE>d_shmget</CODE></A></STRONG><BR>
  2133. <DD>
  2134. From <EM>d_shmget.U</EM>:
  2135. <P>This variable conditionally defines the <CODE>HAS_SHMGET</CODE> symbol, which
  2136. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_shmget"><CODE>shmget()</CODE></A> routine is available.</P>
  2137. <P></P>
  2138. <DT><STRONG><A NAME="item_d_sigaction"><CODE>d_sigaction</CODE></A></STRONG><BR>
  2139. <DD>
  2140. From <EM>d_sigaction.U</EM>:
  2141. <P>This variable conditionally defines the <CODE>HAS_SIGACTION</CODE> symbol, which
  2142. indicates that the Vr4 <CODE>sigaction()</CODE> routine is available.</P>
  2143. <P></P>
  2144. <DT><STRONG><A NAME="item_d_sigsetjmp"><CODE>d_sigsetjmp</CODE></A></STRONG><BR>
  2145. <DD>
  2146. From <EM>d_sigsetjmp.U</EM>:
  2147. <P>This variable conditionally defines the <CODE>HAS_SIGSETJMP</CODE> symbol,
  2148. which indicates that the <CODE>sigsetjmp()</CODE> routine is available to
  2149. call <CODE>setjmp()</CODE> and optionally save the process's signal mask.</P>
  2150. <P></P>
  2151. <DT><STRONG><A NAME="item_d_socket"><CODE>d_socket</CODE></A></STRONG><BR>
  2152. <DD>
  2153. From <EM>d_socket.U</EM>:
  2154. <P>This variable conditionally defines <CODE>HAS_SOCKET</CODE>, which indicates
  2155. that the <CODE>BSD</CODE> socket interface is supported.</P>
  2156. <P></P>
  2157. <DT><STRONG><A NAME="item_d_socklen_t"><CODE>d_socklen_t</CODE></A></STRONG><BR>
  2158. <DD>
  2159. From <EM>d_socklen_t.U</EM>:
  2160. <P>This symbol will be defined if the C compiler supports socklen_t.</P>
  2161. <P></P>
  2162. <DT><STRONG><A NAME="item_d_sockpair"><CODE>d_sockpair</CODE></A></STRONG><BR>
  2163. <DD>
  2164. From <EM>d_socket.U</EM>:
  2165. <P>This variable conditionally defines the <CODE>HAS_SOCKETPAIR</CODE> symbol, which
  2166. indicates that the <CODE>BSD</CODE> <A HREF="../lib/Pod/perlfunc.html#item_socketpair"><CODE>socketpair()</CODE></A> is supported.</P>
  2167. <P></P>
  2168. <DT><STRONG><A NAME="item_d_sqrtl"><CODE>d_sqrtl</CODE></A></STRONG><BR>
  2169. <DD>
  2170. From <EM>d_sqrtl.U</EM>:
  2171. <P>This variable conditionally defines the <CODE>HAS_SQRTL</CODE> symbol, which
  2172. indicates to the C program that the <CODE>sqrtl()</CODE> routine is available.</P>
  2173. <P></P>
  2174. <DT><STRONG><A NAME="item_d_statblks"><CODE>d_statblks</CODE></A></STRONG><BR>
  2175. <DD>
  2176. From <EM>d_statblks.U</EM>:
  2177. <P>This variable conditionally defines <CODE>USE_STAT_BLOCKS</CODE>
  2178. if this system has a stat structure declaring
  2179. st_blksize and st_blocks.</P>
  2180. <P></P>
  2181. <DT><STRONG><A NAME="item_d_statfs_f_flags"><CODE>d_statfs_f_flags</CODE></A></STRONG><BR>
  2182. <DD>
  2183. From <EM>d_statfs_f_flags.U</EM>:
  2184. <P>This variable conditionally defines the <CODE>HAS_STRUCT_STATFS_F_FLAGS</CODE>
  2185. symbol, which indicates to struct statfs from has f_flags member.
  2186. This kind of struct statfs is coming from <EM>sys/mount.h</EM> (<CODE>BSD</CODE>),
  2187. not from <EM>sys/statfs.h</EM> (<CODE>SYSV</CODE>).</P>
  2188. <P></P>
  2189. <DT><STRONG><A NAME="item_d_statfs_s"><CODE>d_statfs_s</CODE></A></STRONG><BR>
  2190. <DD>
  2191. From <EM>d_statfs_s.U</EM>:
  2192. <P>This variable conditionally defines the <CODE>HAS_STRUCT_STATFS</CODE> symbol,
  2193. which indicates that the struct statfs is supported.</P>
  2194. <P></P>
  2195. <DT><STRONG><A NAME="item_d_statvfs"><CODE>d_statvfs</CODE></A></STRONG><BR>
  2196. <DD>
  2197. From <EM>d_statvfs.U</EM>:
  2198. <P>This variable conditionally defines the <CODE>HAS_STATVFS</CODE> symbol, which
  2199. indicates to the C program that the <CODE>statvfs()</CODE> routine is available.</P>
  2200. <P></P>
  2201. <DT><STRONG><A NAME="item_d_stdio_cnt_lval"><CODE>d_stdio_cnt_lval</CODE></A></STRONG><BR>
  2202. <DD>
  2203. From <EM>d_stdstdio.U</EM>:
  2204. <P>This variable conditionally defines <CODE>STDIO_CNT_LVALUE</CODE> if the
  2205. <CODE>FILE_cnt</CODE> macro can be used as an lvalue.</P>
  2206. <P></P>
  2207. <DT><STRONG><A NAME="item_d_stdio_ptr_lval"><CODE>d_stdio_ptr_lval</CODE></A></STRONG><BR>
  2208. <DD>
  2209. From <EM>d_stdstdio.U</EM>:
  2210. <P>This variable conditionally defines <CODE>STDIO_PTR_LVALUE</CODE> if the
  2211. <CODE>FILE_ptr</CODE> macro can be used as an lvalue.</P>
  2212. <P></P>
  2213. <DT><STRONG><A NAME="item_d_stdio_stream_array"><CODE>d_stdio_stream_array</CODE></A></STRONG><BR>
  2214. <DD>
  2215. From <EM>stdio_streams.U</EM>:
  2216. <P>This variable tells whether there is an array holding
  2217. the stdio streams.</P>
  2218. <P></P>
  2219. <DT><STRONG><A NAME="item_d_stdiobase"><CODE>d_stdiobase</CODE></A></STRONG><BR>
  2220. <DD>
  2221. From <EM>d_stdstdio.U</EM>:
  2222. <P>This variable conditionally defines <CODE>USE_STDIO_BASE</CODE> if this system
  2223. has a <CODE>FILE</CODE> structure declaring a usable _base field (or equivalent)
  2224. in <EM>stdio.h</EM>.</P>
  2225. <P></P>
  2226. <DT><STRONG><A NAME="item_d_stdstdio"><CODE>d_stdstdio</CODE></A></STRONG><BR>
  2227. <DD>
  2228. From <EM>d_stdstdio.U</EM>:
  2229. <P>This variable conditionally defines <CODE>USE_STDIO_PTR</CODE> if this system
  2230. has a <CODE>FILE</CODE> structure declaring usable _ptr and _cnt fields (or
  2231. equivalent) in <EM>stdio.h</EM>.</P>
  2232. <P></P>
  2233. <DT><STRONG><A NAME="item_d_strchr"><CODE>d_strchr</CODE></A></STRONG><BR>
  2234. <DD>
  2235. From <EM>d_strchr.U</EM>:
  2236. <P>This variable conditionally defines <CODE>HAS_STRCHR</CODE> if <CODE>strchr()</CODE> and
  2237. <CODE>strrchr()</CODE> are available for string searching.</P>
  2238. <P></P>
  2239. <DT><STRONG><A NAME="item_d_strcoll"><CODE>d_strcoll</CODE></A></STRONG><BR>
  2240. <DD>
  2241. From <EM>d_strcoll.U</EM>:
  2242. <P>This variable conditionally defines <CODE>HAS_STRCOLL</CODE> if <CODE>strcoll()</CODE> is
  2243. available to compare strings using collating information.</P>
  2244. <P></P>
  2245. <DT><STRONG><A NAME="item_d_strctcpy"><CODE>d_strctcpy</CODE></A></STRONG><BR>
  2246. <DD>
  2247. From <EM>d_strctcpy.U</EM>:
  2248. <P>This variable conditionally defines the <CODE>USE_STRUCT_COPY</CODE> symbol, which
  2249. indicates to the C program that this C compiler knows how to copy
  2250. structures.</P>
  2251. <P></P>
  2252. <DT><STRONG><A NAME="item_d_strerrm"><CODE>d_strerrm</CODE></A></STRONG><BR>
  2253. <DD>
  2254. From <EM>d_strerror.U</EM>:
  2255. <P>This variable holds what Strerrr is defined as to translate an error
  2256. code condition into an error message string. It could be <CODE>strerror</CODE>
  2257. or a more <CODE>complex</CODE> macro emulating strrror with sys_errlist[], or the
  2258. <CODE>unknown</CODE> string when both strerror and sys_errlist are missing.</P>
  2259. <P></P>
  2260. <DT><STRONG><A NAME="item_d_strerror"><CODE>d_strerror</CODE></A></STRONG><BR>
  2261. <DD>
  2262. From <EM>d_strerror.U</EM>:
  2263. <P>This variable conditionally defines <CODE>HAS_STRERROR</CODE> if <CODE>strerror()</CODE> is
  2264. available to translate error numbers to strings.</P>
  2265. <P></P>
  2266. <DT><STRONG><A NAME="item_d_strtod"><CODE>d_strtod</CODE></A></STRONG><BR>
  2267. <DD>
  2268. From <EM>d_strtod.U</EM>:
  2269. <P>This variable conditionally defines the <CODE>HAS_STRTOD</CODE> symbol, which
  2270. indicates to the C program that the <CODE>strtod()</CODE> routine is available
  2271. to provide better numeric string conversion than atof().</P>
  2272. <P></P>
  2273. <DT><STRONG><A NAME="item_d_strtol"><CODE>d_strtol</CODE></A></STRONG><BR>
  2274. <DD>
  2275. From <EM>d_strtol.U</EM>:
  2276. <P>This variable conditionally defines the <CODE>HAS_STRTOL</CODE> symbol, which
  2277. indicates to the C program that the <CODE>strtol()</CODE> routine is available
  2278. to provide better numeric string conversion than <CODE>atoi()</CODE> and friends.</P>
  2279. <P></P>
  2280. <DT><STRONG><A NAME="item_d_strtold"><CODE>d_strtold</CODE></A></STRONG><BR>
  2281. <DD>
  2282. From <EM>d_strtold.U</EM>:
  2283. <P>This variable conditionally defines the <CODE>HAS_STRTOLD</CODE> symbol, which
  2284. indicates to the C program that the <CODE>strtold()</CODE> routine is available.</P>
  2285. <P></P>
  2286. <DT><STRONG><A NAME="item_d_strtoll"><CODE>d_strtoll</CODE></A></STRONG><BR>
  2287. <DD>
  2288. From <EM>d_strtoll.U</EM>:
  2289. <P>This variable conditionally defines the <CODE>HAS_STRTOLL</CODE> symbol, which
  2290. indicates to the C program that the <CODE>strtoll()</CODE> routine is available.</P>
  2291. <P></P>
  2292. <DT><STRONG><A NAME="item_d_strtoul"><CODE>d_strtoul</CODE></A></STRONG><BR>
  2293. <DD>
  2294. From <EM>d_strtoul.U</EM>:
  2295. <P>This variable conditionally defines the <CODE>HAS_STRTOUL</CODE> symbol, which
  2296. indicates to the C program that the <CODE>strtoul()</CODE> routine is available
  2297. to provide conversion of strings to unsigned long.</P>
  2298. <P></P>
  2299. <DT><STRONG><A NAME="item_d_strtoull"><CODE>d_strtoull</CODE></A></STRONG><BR>
  2300. <DD>
  2301. From <EM>d_strtoull.U</EM>:
  2302. <P>This variable conditionally defines the <CODE>HAS_STRTOULL</CODE> symbol, which
  2303. indicates to the C program that the <CODE>strtoull()</CODE> routine is available.</P>
  2304. <P></P>
  2305. <DT><STRONG><A NAME="item_d_strtouq"><CODE>d_strtouq</CODE></A></STRONG><BR>
  2306. <DD>
  2307. From <EM>d_strtouq.U</EM>:
  2308. <P>This variable conditionally defines the <CODE>HAS_STRTOUQ</CODE> symbol, which
  2309. indicates to the C program that the <CODE>strtouq()</CODE> routine is available.</P>
  2310. <P></P>
  2311. <DT><STRONG><A NAME="item_d_strxfrm"><CODE>d_strxfrm</CODE></A></STRONG><BR>
  2312. <DD>
  2313. From <EM>d_strxfrm.U</EM>:
  2314. <P>This variable conditionally defines <CODE>HAS_STRXFRM</CODE> if <CODE>strxfrm()</CODE> is
  2315. available to transform strings.</P>
  2316. <P></P>
  2317. <DT><STRONG><A NAME="item_d_suidsafe"><CODE>d_suidsafe</CODE></A></STRONG><BR>
  2318. <DD>
  2319. From <EM>d_dosuid.U</EM>:
  2320. <P>This variable conditionally defines <CODE>SETUID_SCRIPTS_ARE_SECURE_NOW</CODE>
  2321. if setuid scripts can be secure.  This test looks in <EM>/dev/fd/</EM>.</P>
  2322. <P></P>
  2323. <DT><STRONG><A NAME="item_d_symlink"><CODE>d_symlink</CODE></A></STRONG><BR>
  2324. <DD>
  2325. From <EM>d_symlink.U</EM>:
  2326. <P>This variable conditionally defines the <CODE>HAS_SYMLINK</CODE> symbol, which
  2327. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_symlink"><CODE>symlink()</CODE></A> routine is available
  2328. to create symbolic links.</P>
  2329. <P></P>
  2330. <DT><STRONG><A NAME="item_d_syscall"><CODE>d_syscall</CODE></A></STRONG><BR>
  2331. <DD>
  2332. From <EM>d_syscall.U</EM>:
  2333. <P>This variable conditionally defines <CODE>HAS_SYSCALL</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_syscall"><CODE>syscall()</CODE></A> is
  2334. available call arbitrary system calls.</P>
  2335. <P></P>
  2336. <DT><STRONG><A NAME="item_d_sysconf"><CODE>d_sysconf</CODE></A></STRONG><BR>
  2337. <DD>
  2338. From <EM>d_sysconf.U</EM>:
  2339. <P>This variable conditionally defines the <CODE>HAS_SYSCONF</CODE> symbol, which
  2340. indicates to the C program that the <CODE>sysconf()</CODE> routine is available
  2341. to determine system related limits and options.</P>
  2342. <P></P>
  2343. <DT><STRONG><A NAME="item_d_sysernlst"><CODE>d_sysernlst</CODE></A></STRONG><BR>
  2344. <DD>
  2345. From <EM>d_strerror.U</EM>:
  2346. <P>This variable conditionally defines <CODE>HAS_SYS_ERRNOLIST</CODE> if sys_errnolist[]
  2347. is available to translate error numbers to the symbolic name.</P>
  2348. <P></P>
  2349. <DT><STRONG><A NAME="item_d_syserrlst"><CODE>d_syserrlst</CODE></A></STRONG><BR>
  2350. <DD>
  2351. From <EM>d_strerror.U</EM>:
  2352. <P>This variable conditionally defines <CODE>HAS_SYS_ERRLIST</CODE> if sys_errlist[] is
  2353. available to translate error numbers to strings.</P>
  2354. <P></P>
  2355. <DT><STRONG><A NAME="item_d_system"><CODE>d_system</CODE></A></STRONG><BR>
  2356. <DD>
  2357. From <EM>d_system.U</EM>:
  2358. <P>This variable conditionally defines <CODE>HAS_SYSTEM</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_system"><CODE>system()</CODE></A> is
  2359. available to issue a shell command.</P>
  2360. <P></P>
  2361. <DT><STRONG><A NAME="item_d_tcgetpgrp"><CODE>d_tcgetpgrp</CODE></A></STRONG><BR>
  2362. <DD>
  2363. From <EM>d_tcgtpgrp.U</EM>:
  2364. <P>This variable conditionally defines the <CODE>HAS_TCGETPGRP</CODE> symbol, which
  2365. indicates to the C program that the <CODE>tcgetpgrp()</CODE> routine is available.
  2366. to get foreground process group <CODE>ID</CODE>.</P>
  2367. <P></P>
  2368. <DT><STRONG><A NAME="item_d_tcsetpgrp"><CODE>d_tcsetpgrp</CODE></A></STRONG><BR>
  2369. <DD>
  2370. From <EM>d_tcstpgrp.U</EM>:
  2371. <P>This variable conditionally defines the <CODE>HAS_TCSETPGRP</CODE> symbol, which
  2372. indicates to the C program that the <CODE>tcsetpgrp()</CODE> routine is available
  2373. to set foreground process group <CODE>ID</CODE>.</P>
  2374. <P></P>
  2375. <DT><STRONG><A NAME="item_d_telldir"><CODE>d_telldir</CODE></A></STRONG><BR>
  2376. <DD>
  2377. From <EM>d_readdir.U</EM>:
  2378. <P>This variable conditionally defines <CODE>HAS_TELLDIR</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_telldir"><CODE>telldir()</CODE></A> is
  2379. available.</P>
  2380. <P></P>
  2381. <DT><STRONG><A NAME="item_d_telldirproto"><CODE>d_telldirproto</CODE></A></STRONG><BR>
  2382. <DD>
  2383. From <EM>d_telldirproto.U</EM>:
  2384. <P>This variable conditionally defines the <CODE>HAS_TELLDIR_PROTO</CODE> symbol,
  2385. which indicates to the C program that the system provides
  2386. a prototype for the <A HREF="../lib/Pod/perlfunc.html#item_telldir"><CODE>telldir()</CODE></A> function.  Otherwise, it is
  2387. up to the program to supply one.</P>
  2388. <P></P>
  2389. <DT><STRONG><A NAME="item_d_time"><CODE>d_time</CODE></A></STRONG><BR>
  2390. <DD>
  2391. From <EM>d_time.U</EM>:
  2392. <P>This variable conditionally defines the <CODE>HAS_TIME</CODE> symbol, which indicates
  2393. that the <A HREF="../lib/Pod/perlfunc.html#item_time"><CODE>time()</CODE></A> routine exists.  The <A HREF="../lib/Pod/perlfunc.html#item_time"><CODE>time()</CODE></A> routine is normaly
  2394. provided on <CODE>UNIX</CODE> systems.</P>
  2395. <P></P>
  2396. <DT><STRONG><A NAME="item_d_times"><CODE>d_times</CODE></A></STRONG><BR>
  2397. <DD>
  2398. From <EM>d_times.U</EM>:
  2399. <P>This variable conditionally defines the <CODE>HAS_TIMES</CODE> symbol, which indicates
  2400. that the <A HREF="../lib/Pod/perlfunc.html#item_times"><CODE>times()</CODE></A> routine exists.  The <A HREF="../lib/Pod/perlfunc.html#item_times"><CODE>times()</CODE></A> routine is normaly
  2401. provided on <CODE>UNIX</CODE> systems. You may have to include <sys/times.h>.</P>
  2402. <P></P>
  2403. <DT><STRONG><A NAME="item_d_truncate"><CODE>d_truncate</CODE></A></STRONG><BR>
  2404. <DD>
  2405. From <EM>d_truncate.U</EM>:
  2406. <P>This variable conditionally defines <CODE>HAS_TRUNCATE</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_truncate"><CODE>truncate()</CODE></A> is
  2407. available to truncate files.</P>
  2408. <P></P>
  2409. <DT><STRONG><A NAME="item_d_tzname"><CODE>d_tzname</CODE></A></STRONG><BR>
  2410. <DD>
  2411. From <EM>d_tzname.U</EM>:
  2412. <P>This variable conditionally defines <CODE>HAS_TZNAME</CODE> if tzname[] is
  2413. available to access timezone names.</P>
  2414. <P></P>
  2415. <DT><STRONG><A NAME="item_d_umask"><CODE>d_umask</CODE></A></STRONG><BR>
  2416. <DD>
  2417. From <EM>d_umask.U</EM>:
  2418. <P>This variable conditionally defines the <CODE>HAS_UMASK</CODE> symbol, which
  2419. indicates to the C program that the <A HREF="../lib/Pod/perlfunc.html#item_umask"><CODE>umask()</CODE></A> routine is available.
  2420. to set and get the value of the file creation mask.</P>
  2421. <P></P>
  2422. <DT><STRONG><A NAME="item_d_uname"><CODE>d_uname</CODE></A></STRONG><BR>
  2423. <DD>
  2424. From <EM>d_gethname.U</EM>:
  2425. <P>This variable conditionally defines the <CODE>HAS_UNAME</CODE> symbol, which
  2426. indicates to the C program that the <A HREF="#item_uname"><CODE>uname()</CODE></A> routine may be
  2427. used to derive the host name.</P>
  2428. <P></P>
  2429. <DT><STRONG><A NAME="item_d_union_semun"><CODE>d_union_semun</CODE></A></STRONG><BR>
  2430. <DD>
  2431. From <EM>d_union_semun.U</EM>:
  2432. <P>This variable conditionally defines <CODE>HAS_UNION_SEMUN</CODE> if the
  2433. union semun is defined by including <sys/sem.h>.</P>
  2434. <P></P>
  2435. <DT><STRONG><A NAME="item_d_ustat"><CODE>d_ustat</CODE></A></STRONG><BR>
  2436. <DD>
  2437. From <EM>d_ustat.U</EM>:
  2438. <P>This variable conditionally defines <CODE>HAS_USTAT</CODE> if <CODE>ustat()</CODE> is
  2439. available to query file system statistics by dev_t.</P>
  2440. <P></P>
  2441. <DT><STRONG><A NAME="item_d_vendorarch"><CODE>d_vendorarch</CODE></A></STRONG><BR>
  2442. <DD>
  2443. From <EM>vendorarch.U</EM>:
  2444. <P>This variable conditionally defined <CODE>PERL_VENDORARCH</CODE>.</P>
  2445. <P></P>
  2446. <DT><STRONG><A NAME="item_d_vendorbin"><CODE>d_vendorbin</CODE></A></STRONG><BR>
  2447. <DD>
  2448. From <EM>vendorbin.U</EM>:
  2449. <P>This variable conditionally defines <CODE>PERL_VENDORBIN</CODE>.</P>
  2450. <P></P>
  2451. <DT><STRONG><A NAME="item_d_vendorlib"><CODE>d_vendorlib</CODE></A></STRONG><BR>
  2452. <DD>
  2453. From <EM>vendorlib.U</EM>:
  2454. <P>This variable conditionally defines <CODE>PERL_VENDORLIB</CODE>.</P>
  2455. <P></P>
  2456. <DT><STRONG><A NAME="item_d_vfork"><CODE>d_vfork</CODE></A></STRONG><BR>
  2457. <DD>
  2458. From <EM>d_vfork.U</EM>:
  2459. <P>This variable conditionally defines the <CODE>HAS_VFORK</CODE> symbol, which
  2460. indicates the <CODE>vfork()</CODE> routine is available.</P>
  2461. <P></P>
  2462. <DT><STRONG><A NAME="item_d_void_closedir"><CODE>d_void_closedir</CODE></A></STRONG><BR>
  2463. <DD>
  2464. From <EM>d_closedir.U</EM>:
  2465. <P>This variable conditionally defines <CODE>VOID_CLOSEDIR</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_closedir"><CODE>closedir()</CODE></A>
  2466. does not return a value.</P>
  2467. <P></P>
  2468. <DT><STRONG><A NAME="item_d_voidsig"><CODE>d_voidsig</CODE></A></STRONG><BR>
  2469. <DD>
  2470. From <EM>d_voidsig.U</EM>:
  2471. <P>This variable conditionally defines <CODE>VOIDSIG</CODE> if this system
  2472. declares ``void (*signal(...))()'' in <EM>signal.h</EM>.  The old way was to
  2473. declare it as ``int (*signal(...))()''.</P>
  2474. <P></P>
  2475. <DT><STRONG><A NAME="item_d_voidtty"><CODE>d_voidtty</CODE></A></STRONG><BR>
  2476. <DD>
  2477. From <EM>i_sysioctl.U</EM>:
  2478. <P>This variable conditionally defines <CODE>USE_IOCNOTTY</CODE> to indicate that the
  2479. <A HREF="../lib/Pod/perlfunc.html#item_ioctl"><CODE>ioctl()</CODE></A> call with <CODE>TIOCNOTTY</CODE> should be used to void tty association.
  2480. Otherwise (on <CODE>USG</CODE> probably), it is enough to close the standard file
  2481. decriptors and do a setpgrp().</P>
  2482. <P></P>
  2483. <DT><STRONG><A NAME="item_d_volatile"><CODE>d_volatile</CODE></A></STRONG><BR>
  2484. <DD>
  2485. From <EM>d_volatile.U</EM>:
  2486. <P>This variable conditionally defines the <CODE>HASVOLATILE</CODE> symbol, which
  2487. indicates to the C program that this C compiler knows about the
  2488. volatile declaration.</P>
  2489. <P></P>
  2490. <DT><STRONG><A NAME="item_d_vprintf"><CODE>d_vprintf</CODE></A></STRONG><BR>
  2491. <DD>
  2492. From <EM>d_vprintf.U</EM>:
  2493. <P>This variable conditionally defines the <CODE>HAS_VPRINTF</CODE> symbol, which
  2494. indicates to the C program that the <CODE>vprintf()</CODE> routine is available
  2495. to printf with a pointer to an argument list.</P>
  2496. <P></P>
  2497. <DT><STRONG><A NAME="item_d_wait4"><CODE>d_wait4</CODE></A></STRONG><BR>
  2498. <DD>
  2499. From <EM>d_wait4.U</EM>:
  2500. <P>This variable conditionally defines the HAS_WAIT4 symbol, which
  2501. indicates the <CODE>wait4()</CODE> routine is available.</P>
  2502. <P></P>
  2503. <DT><STRONG><A NAME="item_d_waitpid"><CODE>d_waitpid</CODE></A></STRONG><BR>
  2504. <DD>
  2505. From <EM>d_waitpid.U</EM>:
  2506. <P>This variable conditionally defines <CODE>HAS_WAITPID</CODE> if <A HREF="../lib/Pod/perlfunc.html#item_waitpid"><CODE>waitpid()</CODE></A> is
  2507. available to wait for child process.</P>
  2508. <P></P>
  2509. <DT><STRONG><A NAME="item_d_wcstombs"><CODE>d_wcstombs</CODE></A></STRONG><BR>
  2510. <DD>
  2511. From <EM>d_wcstombs.U</EM>:
  2512. <P>This variable conditionally defines the <CODE>HAS_WCSTOMBS</CODE> symbol, which
  2513. indicates to the C program that the <CODE>wcstombs()</CODE> routine is available
  2514. to convert wide character strings to multibyte strings.</P>
  2515. <P></P>
  2516. <DT><STRONG><A NAME="item_d_wctomb"><CODE>d_wctomb</CODE></A></STRONG><BR>
  2517. <DD>
  2518. From <EM>d_wctomb.U</EM>:
  2519. <P>This variable conditionally defines the <CODE>HAS_WCTOMB</CODE> symbol, which
  2520. indicates to the C program that the <CODE>wctomb()</CODE> routine is available
  2521. to convert a wide character to a multibyte.</P>
  2522. <P></P>
  2523. <DT><STRONG><A NAME="item_d_xenix"><CODE>d_xenix</CODE></A></STRONG><BR>
  2524. <DD>
  2525. From <EM>Guess.U</EM>:
  2526. <P>This variable conditionally defines the symbol <CODE>XENIX</CODE>, which alerts
  2527. the C program that it runs under Xenix.</P>
  2528. <P></P>
  2529. <DT><STRONG><A NAME="item_date"><CODE>date</CODE></A></STRONG><BR>
  2530. <DD>
  2531. From <EM>Loc.U</EM>:
  2532. <P>This variable is used internally by Configure to determine the
  2533. full pathname (if any) of the date program.  After Configure runs,
  2534. the value is reset to a plain <A HREF="#item_date"><CODE>date</CODE></A> and is not useful.</P>
  2535. <P></P>
  2536. <DT><STRONG><A NAME="item_db_hashtype"><CODE>db_hashtype</CODE></A></STRONG><BR>
  2537. <DD>
  2538. From <EM>i_db.U</EM>:
  2539. <P>This variable contains the type of the hash structure element
  2540. in the <db.h> header file.  In older versions of <CODE>DB</CODE>, it was
  2541. int, while in newer ones it is u_int32_t.</P>
  2542. <P></P>
  2543. <DT><STRONG><A NAME="item_db_prefixtype"><CODE>db_prefixtype</CODE></A></STRONG><BR>
  2544. <DD>
  2545. From <EM>i_db.U</EM>:
  2546. <P>This variable contains the type of the prefix structure element
  2547. in the <db.h> header file.  In older versions of <CODE>DB</CODE>, it was
  2548. int, while in newer ones it is size_t.</P>
  2549. <P></P>
  2550. <DT><STRONG><A NAME="item_defvoidused"><CODE>defvoidused</CODE></A></STRONG><BR>
  2551. <DD>
  2552. From <EM>voidflags.U</EM>:
  2553. <P>This variable contains the default value of the <CODE>VOIDUSED</CODE> symbol (15).</P>
  2554. <P></P>
  2555. <DT><STRONG><A NAME="item_direntrytype"><CODE>direntrytype</CODE></A></STRONG><BR>
  2556. <DD>
  2557. From <EM>i_dirent.U</EM>:
  2558. <P>This symbol is set to <CODE>struct direct</CODE> or <CODE>struct dirent</CODE> depending on
  2559. whether dirent is available or not. You should use this pseudo type to
  2560. portably declare your directory entries.</P>
  2561. <P></P>
  2562. <DT><STRONG><A NAME="item_dlext"><CODE>dlext</CODE></A></STRONG><BR>
  2563. <DD>
  2564. From <EM>dlext.U</EM>:
  2565. <P>This variable contains the extension that is to be used for the
  2566. dynamically loaded modules that perl generaties.</P>
  2567. <P></P>
  2568. <DT><STRONG><A NAME="item_dlsrc"><CODE>dlsrc</CODE></A></STRONG><BR>
  2569. <DD>
  2570. From <EM>dlsrc.U</EM>:
  2571. <P>This variable contains the name of the dynamic loading file that
  2572. will be used with the package.</P>
  2573. <P></P>
  2574. <DT><STRONG><A NAME="item_doublesize"><CODE>doublesize</CODE></A></STRONG><BR>
  2575. <DD>
  2576. From <EM>doublesize.U</EM>:
  2577. <P>This variable contains the value of the <CODE>DOUBLESIZE</CODE> symbol, which
  2578. indicates to the C program how many bytes there are in a double.</P>
  2579. <P></P>
  2580. <DT><STRONG><A NAME="item_drand01"><CODE>drand01</CODE></A></STRONG><BR>
  2581. <DD>
  2582. From <EM>randfunc.U</EM>:
  2583. <P>Indicates the macro to be used to generate normalized
  2584. random numbers.  Uses randfunc, often divided by
  2585. (double) (((unsigned long) 1 << randbits)) in order to
  2586. normalize the result.
  2587. In C programs, the macro <CODE>Drand01</CODE> is mapped to drand01.</P>
  2588. <P></P>
  2589. <DT><STRONG><A NAME="item_dynamic_ext"><CODE>dynamic_ext</CODE></A></STRONG><BR>
  2590. <DD>
  2591. From <EM>Extensions.U</EM>:
  2592. <P>This variable holds a list of <CODE>XS</CODE> extension files we want to
  2593. link dynamically into the package.  It is used by Makefile.</P>
  2594. <P></P></DL>
  2595. <P>
  2596. <H2><A NAME="e">e</A></H2>
  2597. <DL>
  2598. <DT><STRONG><A NAME="item_eagain"><CODE>eagain</CODE></A></STRONG><BR>
  2599. <DD>
  2600. From <EM>nblock_io.U</EM>:
  2601. <P>This variable bears the symbolic errno code set by <A HREF="../lib/Pod/perlfunc.html#item_read"><CODE>read()</CODE></A> when no
  2602. data is present on the file and non-blocking <EM>I/O</EM> was enabled (otherwise,
  2603. <A HREF="../lib/Pod/perlfunc.html#item_read"><CODE>read()</CODE></A> blocks naturally).</P>
  2604. <P></P>
  2605. <DT><STRONG><A NAME="item_ebcdic"><CODE>ebcdic</CODE></A></STRONG><BR>
  2606. <DD>
  2607. From <EM>ebcdic.U</EM>:
  2608. <P>This variable conditionally defines <CODE>EBCDIC</CODE> if this
  2609. system uses <CODE>EBCDIC</CODE> encoding.  Among other things, this
  2610. means that the character ranges are not contiguous.
  2611. See <EM>trnl.U</EM></P>
  2612. <P></P>
  2613. <DT><STRONG><A NAME="item_echo"><CODE>echo</CODE></A></STRONG><BR>
  2614. <DD>
  2615. From <EM>Loc.U</EM>:
  2616. <P>This variable is used internally by Configure to determine the
  2617. full pathname (if any) of the echo program.  After Configure runs,
  2618. the value is reset to a plain <A HREF="#item_echo"><CODE>echo</CODE></A> and is not useful.</P>
  2619. <P></P>
  2620. <DT><STRONG><A NAME="item_egrep"><CODE>egrep</CODE></A></STRONG><BR>
  2621. <DD>
  2622. From <EM>Loc.U</EM>:
  2623. <P>This variable is used internally by Configure to determine the
  2624. full pathname (if any) of the egrep program.  After Configure runs,
  2625. the value is reset to a plain <A HREF="#item_egrep"><CODE>egrep</CODE></A> and is not useful.</P>
  2626. <P></P>
  2627. <DT><STRONG><A NAME="item_emacs"><CODE>emacs</CODE></A></STRONG><BR>
  2628. <DD>
  2629. From <EM>Loc.U</EM>:
  2630. <P>This variable is defined but not used by Configure.
  2631. The value is a plain '' and is not useful.</P>
  2632. <P></P>
  2633. <DT><STRONG><A NAME="item_eunicefix"><CODE>eunicefix</CODE></A></STRONG><BR>
  2634. <DD>
  2635. From <EM>Init.U</EM>:
  2636. <P>When running under Eunice this variable contains a command which will
  2637. convert a shell script to the proper form of text file for it to be
  2638. executable by the shell.  On other systems it is a no-op.</P>
  2639. <P></P>
  2640. <DT><STRONG><A NAME="item_exe_ext"><CODE>exe_ext</CODE></A></STRONG><BR>
  2641. <DD>
  2642. From <EM>Unix.U</EM>:
  2643. <P>This is an old synonym for _exe.</P>
  2644. <P></P>
  2645. <DT><STRONG><A NAME="item_expr"><CODE>expr</CODE></A></STRONG><BR>
  2646. <DD>
  2647. From <EM>Loc.U</EM>:
  2648. <P>This variable is used internally by Configure to determine the
  2649. full pathname (if any) of the expr program.  After Configure runs,
  2650. the value is reset to a plain <A HREF="#item_expr"><CODE>expr</CODE></A> and is not useful.</P>
  2651. <P></P>
  2652. <DT><STRONG><A NAME="item_extensions"><CODE>extensions</CODE></A></STRONG><BR>
  2653. <DD>
  2654. From <EM>Extensions.U</EM>:
  2655. <P>This variable holds a list of all extension files (both <CODE>XS</CODE> and
  2656. non-xs linked into the package.  It is propagated to <EM>Config.pm</EM>
  2657. and is typically used to test whether a particular extesion 
  2658. is available.</P>
  2659. <P></P></DL>
  2660. <P>
  2661. <H2><A NAME="f">f</A></H2>
  2662. <DL>
  2663. <DT><STRONG><A NAME="item_fflushall"><CODE>fflushall</CODE></A></STRONG><BR>
  2664. <DD>
  2665. From <EM>fflushall.U</EM>:
  2666. <P>This symbol, if defined, tells that to flush
  2667. all pending stdio output one must loop through all
  2668. the stdio file handles stored in an array and fflush them.
  2669. Note that if fflushNULL is defined, fflushall will not
  2670. even be probed for and will be left undefined.</P>
  2671. <P></P>
  2672. <DT><STRONG><A NAME="item_fflushNULL"><CODE>fflushNULL</CODE></A></STRONG><BR>
  2673. <DD>
  2674. From <EM>fflushall.U</EM>:
  2675. <P>This symbol, if defined, tells that fflush(<CODE>NULL</CODE>) does flush
  2676. all pending stdio output.</P>
  2677. <P></P>
  2678. <DT><STRONG><A NAME="item_find"><CODE>find</CODE></A></STRONG><BR>
  2679. <DD>
  2680. From <EM>Loc.U</EM>:
  2681. <P>This variable is defined but not used by Configure.
  2682. The value is a plain '' and is not useful.</P>
  2683. <P></P>
  2684. <DT><STRONG><A NAME="item_firstmakefile"><CODE>firstmakefile</CODE></A></STRONG><BR>
  2685. <DD>
  2686. From <EM>Unix.U</EM>:
  2687. <P>This variable defines the first file searched by make.  On unix,
  2688. it is makefile (then Makefile).  On case-insensitive systems,
  2689. it might be something else.  This is only used to deal with
  2690. convoluted make depend tricks.</P>
  2691. <P></P>
  2692. <DT><STRONG><A NAME="item_flex"><CODE>flex</CODE></A></STRONG><BR>
  2693. <DD>
  2694. From <EM>Loc.U</EM>:
  2695. <P>This variable is defined but not used by Configure.
  2696. The value is a plain '' and is not useful.</P>
  2697. <P></P>
  2698. <DT><STRONG><A NAME="item_fpossize"><CODE>fpossize</CODE></A></STRONG><BR>
  2699. <DD>
  2700. From <EM>fpossize.U</EM>:
  2701. <P>This variable contains the size of a fpostype in bytes.</P>
  2702. <P></P>
  2703. <DT><STRONG><A NAME="item_fpostype"><CODE>fpostype</CODE></A></STRONG><BR>
  2704. <DD>
  2705. From <EM>fpostype.U</EM>:
  2706. <P>This variable defines Fpos_t to be something like fpos_t, long, 
  2707. uint, or whatever type is used to declare file positions in libc.</P>
  2708. <P></P>
  2709. <DT><STRONG><A NAME="item_freetype"><CODE>freetype</CODE></A></STRONG><BR>
  2710. <DD>
  2711. From <EM>mallocsrc.U</EM>:
  2712. <P>This variable contains the return type of free().  It is usually
  2713. void, but occasionally int.</P>
  2714. <P></P>
  2715. <DT><STRONG><A NAME="item_full_ar"><CODE>full_ar</CODE></A></STRONG><BR>
  2716. <DD>
  2717. From <EM>Loc_ar.U</EM>:
  2718. <P>This variable contains the full pathname to <A HREF="#item_ar"><CODE>ar</CODE></A>, whether or
  2719. not the user has specified <CODE>portability</CODE>.  This is only used
  2720. in the <EM>Makefile.SH</EM>.</P>
  2721. <P></P>
  2722. <DT><STRONG><A NAME="item_full_csh"><CODE>full_csh</CODE></A></STRONG><BR>
  2723. <DD>
  2724. From <EM>d_csh.U</EM>:
  2725. <P>This variable contains the full pathname to <A HREF="#item_csh"><CODE>csh</CODE></A>, whether or
  2726. not the user has specified <CODE>portability</CODE>.  This is only used
  2727. in the compiled C program, and we assume that all systems which
  2728. can share this executable will have the same full pathname to
  2729. <EM>csh.</EM></P>
  2730. <P></P>
  2731. <DT><STRONG><A NAME="item_full_sed"><CODE>full_sed</CODE></A></STRONG><BR>
  2732. <DD>
  2733. From <EM>Loc_sed.U</EM>:
  2734. <P>This variable contains the full pathname to <A HREF="#item_sed"><CODE>sed</CODE></A>, whether or
  2735. not the user has specified <CODE>portability</CODE>.  This is only used
  2736. in the compiled C program, and we assume that all systems which
  2737. can share this executable will have the same full pathname to
  2738. <EM>sed.</EM></P>
  2739. <P></P></DL>
  2740. <P>
  2741. <H2><A NAME="g">g</A></H2>
  2742. <DL>
  2743. <DT><STRONG><A NAME="item_gccversion"><CODE>gccversion</CODE></A></STRONG><BR>
  2744. <DD>
  2745. From <EM>cc.U</EM>:
  2746. <P>If <CODE>GNU</CODE> cc (gcc) is used, this variable holds <CODE>1</CODE> or <CODE>2</CODE> to 
  2747. indicate whether the compiler is version 1 or 2.  This is used in
  2748. setting some of the default cflags.  It is set to '' if not gcc.</P>
  2749. <P></P>
  2750. <DT><STRONG><A NAME="item_gidformat"><CODE>gidformat</CODE></A></STRONG><BR>
  2751. <DD>
  2752. From <EM>gidf.U</EM>:
  2753. <P>This variable contains the format string used for printing a Gid_t.</P>
  2754. <P></P>
  2755. <DT><STRONG><A NAME="item_gidsign"><CODE>gidsign</CODE></A></STRONG><BR>
  2756. <DD>
  2757. From <EM>gidsign.U</EM>:
  2758. <P>This variable contains the signedness of a gidtype.
  2759. 1 for unsigned, -1 for signed.</P>
  2760. <P></P>
  2761. <DT><STRONG><A NAME="item_gidsize"><CODE>gidsize</CODE></A></STRONG><BR>
  2762. <DD>
  2763. From <EM>gidsize.U</EM>:
  2764. <P>This variable contains the size of a gidtype in bytes.</P>
  2765. <P></P>
  2766. <DT><STRONG><A NAME="item_gidtype"><CODE>gidtype</CODE></A></STRONG><BR>
  2767. <DD>
  2768. From <EM>gidtype.U</EM>:
  2769. <P>This variable defines Gid_t to be something like gid_t, int,
  2770. ushort, or whatever type is used to declare the return type
  2771. of getgid().  Typically, it is the type of group ids in the kernel.</P>
  2772. <P></P>
  2773. <DT><STRONG><A NAME="item_glibpth"><CODE>glibpth</CODE></A></STRONG><BR>
  2774. <DD>
  2775. From <EM>libpth.U</EM>:
  2776. <P>This variable holds the general path (space-separated) used to
  2777. find libraries.  It may contain directories that do not exist on
  2778. this platform, libpth is the cleaned-up version.</P>
  2779. <P></P>
  2780. <DT><STRONG><A NAME="item_grep"><CODE>grep</CODE></A></STRONG><BR>
  2781. <DD>
  2782. From <EM>Loc.U</EM>:
  2783. <P>This variable is used internally by Configure to determine the
  2784. full pathname (if any) of the grep program.  After Configure runs,
  2785. the value is reset to a plain <A HREF="#item_grep"><CODE>grep</CODE></A> and is not useful.</P>
  2786. <P></P>
  2787. <DT><STRONG><A NAME="item_groupcat"><CODE>groupcat</CODE></A></STRONG><BR>
  2788. <DD>
  2789. From <EM>nis.U</EM>:
  2790. <P>This variable contains a command that produces the text of the
  2791. <EM>/etc/group</EM> file.  This is normally ``cat <EM>/etc/group</EM>'', but can be
  2792. ``ypcat group'' when <CODE>NIS</CODE> is used.
  2793. On some systems, such as os390, there may be no equivalent
  2794. command, in which case this variable is unset.</P>
  2795. <P></P>
  2796. <DT><STRONG><A NAME="item_groupstype"><CODE>groupstype</CODE></A></STRONG><BR>
  2797. <DD>
  2798. From <EM>groupstype.U</EM>:
  2799. <P>This variable defines Groups_t to be something like gid_t, int, 
  2800. ushort, or whatever type is used for the second argument to
  2801. <CODE>getgroups()</CODE> and setgroups().  Usually, this is the same as
  2802. gidtype (gid_t), but sometimes it isn't.</P>
  2803. <P></P>
  2804. <DT><STRONG><A NAME="item_gzip"><CODE>gzip</CODE></A></STRONG><BR>
  2805. <DD>
  2806. From <EM>Loc.U</EM>:
  2807. <P>This variable is used internally by Configure to determine the
  2808. full pathname (if any) of the gzip program.  After Configure runs,
  2809. the value is reset to a plain <A HREF="#item_gzip"><CODE>gzip</CODE></A> and is not useful.</P>
  2810. <P></P></DL>
  2811. <P>
  2812. <H2><A NAME="h">h</A></H2>
  2813. <DL>
  2814. <DT><STRONG><A NAME="item_h_fcntl"><CODE>h_fcntl</CODE></A></STRONG><BR>
  2815. <DD>
  2816. From <EM>h_fcntl.U</EM>:
  2817. <P>This is variable gets set in various places to tell i_fcntl that
  2818. <fcntl.h> should be included.</P>
  2819. <P></P>
  2820. <DT><STRONG><A NAME="item_h_sysfile"><CODE>h_sysfile</CODE></A></STRONG><BR>
  2821. <DD>
  2822. From <EM>h_sysfile.U</EM>:
  2823. <P>This is variable gets set in various places to tell i_sys_file that
  2824. <sys/file.h> should be included.</P>
  2825. <P></P>
  2826. <DT><STRONG><A NAME="item_hint"><CODE>hint</CODE></A></STRONG><BR>
  2827. <DD>
  2828. From <EM>Oldconfig.U</EM>:
  2829. <P>Gives the type of hints used for previous answers. May be one of
  2830. <CODE>default</CODE>, <CODE>recommended</CODE> or <CODE>previous</CODE>.</P>
  2831. <P></P>
  2832. <DT><STRONG><A NAME="item_hostcat"><CODE>hostcat</CODE></A></STRONG><BR>
  2833. <DD>
  2834. From <EM>nis.U</EM>:
  2835. <P>This variable contains a command that produces the text of the
  2836. <EM>/etc/hosts</EM> file.  This is normally ``cat <EM>/etc/hosts</EM>'', but can be
  2837. ``ypcat hosts'' when <CODE>NIS</CODE> is used.
  2838. On some systems, such as os390, there may be no equivalent
  2839. command, in which case this variable is unset.</P>
  2840. <P></P>
  2841. <DT><STRONG><A NAME="item_huge"><CODE>huge</CODE></A></STRONG><BR>
  2842. <DD>
  2843. From <EM>models.U</EM>:
  2844. <P>This variable contains a flag which will tell the C compiler and loader
  2845. to produce a program running with a huge memory model.  If the
  2846. huge model is not supported, contains the flag to produce large
  2847. model programs.  It is up to the Makefile to use this.</P>
  2848. <P></P></DL>
  2849. <P>
  2850. <H2><A NAME="i">i</A></H2>
  2851. <DL>
  2852. <DT><STRONG><A NAME="item_i16size"><CODE>i16size</CODE></A></STRONG><BR>
  2853. <DD>
  2854. From <EM>perlxv.U</EM>:
  2855. <P>This variable is the size of an I16 in bytes.</P>
  2856. <P></P>
  2857. <DT><STRONG><A NAME="item_i16type"><CODE>i16type</CODE></A></STRONG><BR>
  2858. <DD>
  2859. From <EM>perlxv.U</EM>:
  2860. <P>This variable contains the C type used for Perl's I16.</P>
  2861. <P></P>
  2862. <DT><STRONG><A NAME="item_i32size"><CODE>i32size</CODE></A></STRONG><BR>
  2863. <DD>
  2864. From <EM>perlxv.U</EM>:
  2865. <P>This variable is the size of an I32 in bytes.</P>
  2866. <P></P>
  2867. <DT><STRONG><A NAME="item_i32type"><CODE>i32type</CODE></A></STRONG><BR>
  2868. <DD>
  2869. From <EM>perlxv.U</EM>:
  2870. <P>This variable contains the C type used for Perl's I32.</P>
  2871. <P></P>
  2872. <DT><STRONG><A NAME="item_i64size"><CODE>i64size</CODE></A></STRONG><BR>
  2873. <DD>
  2874. From <EM>perlxv.U</EM>:
  2875. <P>This variable is the size of an I64 in bytes.</P>
  2876. <P></P>
  2877. <DT><STRONG><A NAME="item_i64type"><CODE>i64type</CODE></A></STRONG><BR>
  2878. <DD>
  2879. From <EM>perlxv.U</EM>:
  2880. <P>This variable contains the C type used for Perl's I64.</P>
  2881. <P></P>
  2882. <DT><STRONG><A NAME="item_i8size"><CODE>i8size</CODE></A></STRONG><BR>
  2883. <DD>
  2884. From <EM>perlxv.U</EM>:
  2885. <P>This variable is the size of an I8 in bytes.</P>
  2886. <P></P>
  2887. <DT><STRONG><A NAME="item_i8type"><CODE>i8type</CODE></A></STRONG><BR>
  2888. <DD>
  2889. From <EM>perlxv.U</EM>:
  2890. <P>This variable contains the C type used for Perl's I8.</P>
  2891. <P></P>
  2892. <DT><STRONG><A NAME="item_i_arpainet"><CODE>i_arpainet</CODE></A></STRONG><BR>
  2893. <DD>
  2894. From <EM>i_arpainet.U</EM>:
  2895. <P>This variable conditionally defines the <CODE>I_ARPA_INET</CODE> symbol,
  2896. and indicates whether a C program should include <arpa/inet.h>.</P>
  2897. <P></P>
  2898. <DT><STRONG><A NAME="item_i_bsdioctl"><CODE>i_bsdioctl</CODE></A></STRONG><BR>
  2899. <DD>
  2900. From <EM>i_sysioctl.U</EM>:
  2901. <P>This variable conditionally defines the <CODE>I_SYS_BSDIOCTL</CODE> symbol, which
  2902. indicates to the C program that <sys/bsdioctl.h> exists and should
  2903. be included.</P>
  2904. <P></P>
  2905. <DT><STRONG><A NAME="item_i_db"><CODE>i_db</CODE></A></STRONG><BR>
  2906. <DD>
  2907. From <EM>i_db.U</EM>:
  2908. <P>This variable conditionally defines the <CODE>I_DB</CODE> symbol, and indicates
  2909. whether a C program may include Berkeley's <CODE>DB</CODE> include file <db.h>.</P>
  2910. <P></P>
  2911. <DT><STRONG><A NAME="item_i_dbm"><CODE>i_dbm</CODE></A></STRONG><BR>
  2912. <DD>
  2913. From <EM>i_dbm.U</EM>:
  2914. <P>This variable conditionally defines the <CODE>I_DBM</CODE> symbol, which
  2915. indicates to the C program that <dbm.h> exists and should
  2916. be included.</P>
  2917. <P></P>
  2918. <DT><STRONG><A NAME="item_i_dirent"><CODE>i_dirent</CODE></A></STRONG><BR>
  2919. <DD>
  2920. From <EM>i_dirent.U</EM>:
  2921. <P>This variable conditionally defines <CODE>I_DIRENT</CODE>, which indicates
  2922. to the C program that it should include <dirent.h>.</P>
  2923. <P></P>
  2924. <DT><STRONG><A NAME="item_i_dld"><CODE>i_dld</CODE></A></STRONG><BR>
  2925. <DD>
  2926. From <EM>i_dld.U</EM>:
  2927. <P>This variable conditionally defines the <CODE>I_DLD</CODE> symbol, which
  2928. indicates to the C program that <dld.h> (<CODE>GNU</CODE> dynamic loading)
  2929. exists and should be included.</P>
  2930. <P></P>
  2931. <DT><STRONG><A NAME="item_i_dlfcn"><CODE>i_dlfcn</CODE></A></STRONG><BR>
  2932. <DD>
  2933. From <EM>i_dlfcn.U</EM>:
  2934. <P>This variable conditionally defines the <CODE>I_DLFCN</CODE> symbol, which
  2935. indicates to the C program that <dlfcn.h> exists and should
  2936. be included.</P>
  2937. <P></P>
  2938. <DT><STRONG><A NAME="item_i_fcntl"><CODE>i_fcntl</CODE></A></STRONG><BR>
  2939. <DD>
  2940. From <EM>i_fcntl.U</EM>:
  2941. <P>This variable controls the value of <CODE>I_FCNTL</CODE> (which tells
  2942. the C program to include <fcntl.h>).</P>
  2943. <P></P>
  2944. <DT><STRONG><A NAME="item_i_float"><CODE>i_float</CODE></A></STRONG><BR>
  2945. <DD>
  2946. From <EM>i_float.U</EM>:
  2947. <P>This variable conditionally defines the <CODE>I_FLOAT</CODE> symbol, and indicates
  2948. whether a C program may include <float.h> to get symbols like <CODE>DBL_MAX</CODE>
  2949. or <CODE>DBL_MIN</CODE>, <EM>i.e</EM>. machine dependent floating point values.</P>
  2950. <P></P>
  2951. <DT><STRONG><A NAME="item_i_gdbm"><CODE>i_gdbm</CODE></A></STRONG><BR>
  2952. <DD>
  2953. From <EM>i_gdbm.U</EM>:
  2954. <P>This variable conditionally defines the <CODE>I_GDBM</CODE> symbol, which
  2955. indicates to the C program that <gdbm.h> exists and should
  2956. be included.</P>
  2957. <P></P>
  2958. <DT><STRONG><A NAME="item_i_grp"><CODE>i_grp</CODE></A></STRONG><BR>
  2959. <DD>
  2960. From <EM>i_grp.U</EM>:
  2961. <P>This variable conditionally defines the <CODE>I_GRP</CODE> symbol, and indicates
  2962. whether a C program should include <grp.h>.</P>
  2963. <P></P>
  2964. <DT><STRONG><A NAME="item_i_iconv"><CODE>i_iconv</CODE></A></STRONG><BR>
  2965. <DD>
  2966. From <EM>i_iconv.U</EM>:
  2967. <P>This variable conditionally defines the <CODE>I_ICONV</CODE> symbol, and indicates
  2968. whether a C program should include <iconv.h>.</P>
  2969. <P></P>
  2970. <DT><STRONG><A NAME="item_i_ieeefp"><CODE>i_ieeefp</CODE></A></STRONG><BR>
  2971. <DD>
  2972. From <EM>i_ieeefp.U</EM>:
  2973. <P>This variable conditionally defines the <CODE>I_IEEEFP</CODE> symbol, and indicates
  2974. whether a C program should include <ieeefp.h>.</P>
  2975. <P></P>
  2976. <DT><STRONG><A NAME="item_i_inttypes"><CODE>i_inttypes</CODE></A></STRONG><BR>
  2977. <DD>
  2978. From <EM>i_inttypes.U</EM>:
  2979. <P>This variable conditionally defines the <CODE>I_INTTYPES</CODE> symbol,
  2980. and indicates whether a C program should include <inttypes.h>.</P>
  2981. <P></P>
  2982. <DT><STRONG><A NAME="item_i_limits"><CODE>i_limits</CODE></A></STRONG><BR>
  2983. <DD>
  2984. From <EM>i_limits.U</EM>:
  2985. <P>This variable conditionally defines the <CODE>I_LIMITS</CODE> symbol, and indicates
  2986. whether a C program may include <limits.h> to get symbols like <CODE>WORD_BIT</CODE>
  2987. and friends.</P>
  2988. <P></P>
  2989. <DT><STRONG><A NAME="item_i_locale"><CODE>i_locale</CODE></A></STRONG><BR>
  2990. <DD>
  2991. From <EM>i_locale.U</EM>:
  2992. <P>This variable conditionally defines the <CODE>I_LOCALE</CODE> symbol,
  2993. and indicates whether a C program should include <locale.h>.</P>
  2994. <P></P>
  2995. <DT><STRONG><A NAME="item_i_machcthr"><CODE>i_machcthr</CODE></A></STRONG><BR>
  2996. <DD>
  2997. From <EM>i_machcthr.U</EM>:
  2998. <P>This variable conditionally defines the <CODE>I_MACH_CTHREADS</CODE> symbol,
  2999. and indicates whether a C program should include <mach/cthreads.h>.</P>
  3000. <P></P>
  3001. <DT><STRONG><A NAME="item_i_malloc"><CODE>i_malloc</CODE></A></STRONG><BR>
  3002. <DD>
  3003. From <EM>i_malloc.U</EM>:
  3004. <P>This variable conditionally defines the <CODE>I_MALLOC</CODE> symbol, and indicates
  3005. whether a C program should include <malloc.h>.</P>
  3006. <P></P>
  3007. <DT><STRONG><A NAME="item_i_math"><CODE>i_math</CODE></A></STRONG><BR>
  3008. <DD>
  3009. From <EM>i_math.U</EM>:
  3010. <P>This variable conditionally defines the <CODE>I_MATH</CODE> symbol, and indicates
  3011. whether a C program may include <math.h>.</P>
  3012. <P></P>
  3013. <DT><STRONG><A NAME="item_i_memory"><CODE>i_memory</CODE></A></STRONG><BR>
  3014. <DD>
  3015. From <EM>i_memory.U</EM>:
  3016. <P>This variable conditionally defines the <CODE>I_MEMORY</CODE> symbol, and indicates
  3017. whether a C program should include <memory.h>.</P>
  3018. <P></P>
  3019. <DT><STRONG><A NAME="item_i_mntent"><CODE>i_mntent</CODE></A></STRONG><BR>
  3020. <DD>
  3021. From <EM>i_mntent.U</EM>:
  3022. <P>This variable conditionally defines the <CODE>I_MNTENT</CODE> symbol, and indicates
  3023. whether a C program should include <mntent.h>.</P>
  3024. <P></P>
  3025. <DT><STRONG><A NAME="item_i_ndbm"><CODE>i_ndbm</CODE></A></STRONG><BR>
  3026. <DD>
  3027. From <EM>i_ndbm.U</EM>:
  3028. <P>This variable conditionally defines the <CODE>I_NDBM</CODE> symbol, which
  3029. indicates to the C program that <ndbm.h> exists and should
  3030. be included.</P>
  3031. <P></P>
  3032. <DT><STRONG><A NAME="item_i_netdb"><CODE>i_netdb</CODE></A></STRONG><BR>
  3033. <DD>
  3034. From <EM>i_netdb.U</EM>:
  3035. <P>This variable conditionally defines the <CODE>I_NETDB</CODE> symbol, and indicates
  3036. whether a C program should include <netdb.h>.</P>
  3037. <P></P>
  3038. <DT><STRONG><A NAME="item_i_neterrno"><CODE>i_neterrno</CODE></A></STRONG><BR>
  3039. <DD>
  3040. From <EM>i_neterrno.U</EM>:
  3041. <P>This variable conditionally defines the <CODE>I_NET_ERRNO</CODE> symbol, which
  3042. indicates to the C program that <net/errno.h> exists and should
  3043. be included.</P>
  3044. <P></P>
  3045. <DT><STRONG><A NAME="item_i_netinettcp"><CODE>i_netinettcp</CODE></A></STRONG><BR>
  3046. <DD>
  3047. From <EM>i_netinettcp.U</EM>:
  3048. <P>This variable conditionally defines the <CODE>I_NETINET_TCP</CODE> symbol,
  3049. and indicates whether a C program should include <netinet/tcp.h>.</P>
  3050. <P></P>
  3051. <DT><STRONG><A NAME="item_i_niin"><CODE>i_niin</CODE></A></STRONG><BR>
  3052. <DD>
  3053. From <EM>i_niin.U</EM>:
  3054. <P>This variable conditionally defines <CODE>I_NETINET_IN</CODE>, which indicates
  3055. to the C program that it should include <netinet/in.h>. Otherwise,
  3056. you may try <sys/in.h>.</P>
  3057. <P></P>
  3058. <DT><STRONG><A NAME="item_i_poll"><CODE>i_poll</CODE></A></STRONG><BR>
  3059. <DD>
  3060. From <EM>i_poll.U</EM>:
  3061. <P>This variable conditionally defines the <CODE>I_POLL</CODE> symbol, and indicates
  3062. whether a C program should include <poll.h>.</P>
  3063. <P></P>
  3064. <DT><STRONG><A NAME="item_i_pthread"><CODE>i_pthread</CODE></A></STRONG><BR>
  3065. <DD>
  3066. From <EM>i_pthread.U</EM>:
  3067. <P>This variable conditionally defines the <CODE>I_PTHREAD</CODE> symbol,
  3068. and indicates whether a C program should include <pthread.h>.</P>
  3069. <P></P>
  3070. <DT><STRONG><A NAME="item_i_pwd"><CODE>i_pwd</CODE></A></STRONG><BR>
  3071. <DD>
  3072. From <EM>i_pwd.U</EM>:
  3073. <P>This variable conditionally defines <CODE>I_PWD</CODE>, which indicates
  3074. to the C program that it should include <pwd.h>.</P>
  3075. <P></P>
  3076. <DT><STRONG><A NAME="item_i_rpcsvcdbm"><CODE>i_rpcsvcdbm</CODE></A></STRONG><BR>
  3077. <DD>
  3078. From <EM>i_dbm.U</EM>:
  3079. <P>This variable conditionally defines the <CODE>I_RPCSVC_DBM</CODE> symbol, which
  3080. indicates to the C program that <rpcsvc/dbm.h> exists and should
  3081. be included.  Some System V systems might need this instead of <dbm.h>.</P>
  3082. <P></P>
  3083. <DT><STRONG><A NAME="item_i_sfio"><CODE>i_sfio</CODE></A></STRONG><BR>
  3084. <DD>
  3085. From <EM>i_sfio.U</EM>:
  3086. <P>This variable conditionally defines the <CODE>I_SFIO</CODE> symbol,
  3087. and indicates whether a C program should include <sfio.h>.</P>
  3088. <P></P>
  3089. <DT><STRONG><A NAME="item_i_sgtty"><CODE>i_sgtty</CODE></A></STRONG><BR>
  3090. <DD>
  3091. From <EM>i_termio.U</EM>:
  3092. <P>This variable conditionally defines the <CODE>I_SGTTY</CODE> symbol, which
  3093. indicates to the C program that it should include <sgtty.h> rather
  3094. than <termio.h>.</P>
  3095. <P></P>
  3096. <DT><STRONG><A NAME="item_i_shadow"><CODE>i_shadow</CODE></A></STRONG><BR>
  3097. <DD>
  3098. From <EM>i_shadow.U</EM>:
  3099. <P>This variable conditionally defines the <CODE>I_SHADOW</CODE> symbol, and indicates
  3100. whether a C program should include <shadow.h>.</P>
  3101. <P></P>
  3102. <DT><STRONG><A NAME="item_i_socks"><CODE>i_socks</CODE></A></STRONG><BR>
  3103. <DD>
  3104. From <EM>i_socks.U</EM>:
  3105. <P>This variable conditionally defines the <CODE>I_SOCKS</CODE> symbol, and indicates
  3106. whether a C program should include <socks.h>.</P>
  3107. <P></P>
  3108. <DT><STRONG><A NAME="item_i_stdarg"><CODE>i_stdarg</CODE></A></STRONG><BR>
  3109. <DD>
  3110. From <EM>i_varhdr.U</EM>:
  3111. <P>This variable conditionally defines the <CODE>I_STDARG</CODE> symbol, which
  3112. indicates to the C program that <stdarg.h> exists and should
  3113. be included.</P>
  3114. <P></P>
  3115. <DT><STRONG><A NAME="item_i_stddef"><CODE>i_stddef</CODE></A></STRONG><BR>
  3116. <DD>
  3117. From <EM>i_stddef.U</EM>:
  3118. <P>This variable conditionally defines the <CODE>I_STDDEF</CODE> symbol, which
  3119. indicates to the C program that <stddef.h> exists and should
  3120. be included.</P>
  3121. <P></P>
  3122. <DT><STRONG><A NAME="item_i_stdlib"><CODE>i_stdlib</CODE></A></STRONG><BR>
  3123. <DD>
  3124. From <EM>i_stdlib.U</EM>:
  3125. <P>This variable conditionally defines the <CODE>I_STDLIB</CODE> symbol, which
  3126. indicates to the C program that <stdlib.h> exists and should
  3127. be included.</P>
  3128. <P></P>
  3129. <DT><STRONG><A NAME="item_i_string"><CODE>i_string</CODE></A></STRONG><BR>
  3130. <DD>
  3131. From <EM>i_string.U</EM>:
  3132. <P>This variable conditionally defines the <CODE>I_STRING</CODE> symbol, which
  3133. indicates that <string.h> should be included rather than <strings.h>.</P>
  3134. <P></P>
  3135. <DT><STRONG><A NAME="item_i_sunmath"><CODE>i_sunmath</CODE></A></STRONG><BR>
  3136. <DD>
  3137. From <EM>i_sunmath.U</EM>:
  3138. <P>This variable conditionally defines the <CODE>I_SUNMATH</CODE> symbol, and indicates
  3139. whether a C program should include <sunmath.h>.</P>
  3140. <P></P>
  3141. <DT><STRONG><A NAME="item_i_sysaccess"><CODE>i_sysaccess</CODE></A></STRONG><BR>
  3142. <DD>
  3143. From <EM>i_sysaccess.U</EM>:
  3144. <P>This variable conditionally defines the <CODE>I_SYS_ACCESS</CODE> symbol,
  3145. and indicates whether a C program should include <sys/access.h>.</P>
  3146. <P></P>
  3147. <DT><STRONG><A NAME="item_i_sysdir"><CODE>i_sysdir</CODE></A></STRONG><BR>
  3148. <DD>
  3149. From <EM>i_sysdir.U</EM>:
  3150. <P>This variable conditionally defines the <CODE>I_SYS_DIR</CODE> symbol, and indicates
  3151. whether a C program should include <sys/dir.h>.</P>
  3152. <P></P>
  3153. <DT><STRONG><A NAME="item_i_sysfile"><CODE>i_sysfile</CODE></A></STRONG><BR>
  3154. <DD>
  3155. From <EM>i_sysfile.U</EM>:
  3156. <P>This variable conditionally defines the <CODE>I_SYS_FILE</CODE> symbol, and indicates
  3157. whether a C program should include <sys/file.h> to get <CODE>R_OK</CODE> and friends.</P>
  3158. <P></P>
  3159. <DT><STRONG><A NAME="item_i_sysfilio"><CODE>i_sysfilio</CODE></A></STRONG><BR>
  3160. <DD>
  3161. From <EM>i_sysioctl.U</EM>:
  3162. <P>This variable conditionally defines the <CODE>I_SYS_FILIO</CODE> symbol, which
  3163. indicates to the C program that <sys/filio.h> exists and should
  3164. be included in preference to <sys/ioctl.h>.</P>
  3165. <P></P>
  3166. <DT><STRONG><A NAME="item_i_sysin"><CODE>i_sysin</CODE></A></STRONG><BR>
  3167. <DD>
  3168. From <EM>i_niin.U</EM>:
  3169. <P>This variable conditionally defines <CODE>I_SYS_IN</CODE>, which indicates
  3170. to the C program that it should include <sys/in.h> instead of
  3171. <netinet/in.h>.</P>
  3172. <P></P>
  3173. <DT><STRONG><A NAME="item_i_sysioctl"><CODE>i_sysioctl</CODE></A></STRONG><BR>
  3174. <DD>
  3175. From <EM>i_sysioctl.U</EM>:
  3176. <P>This variable conditionally defines the <CODE>I_SYS_IOCTL</CODE> symbol, which
  3177. indicates to the C program that <sys/ioctl.h> exists and should
  3178. be included.</P>
  3179. <P></P>
  3180. <DT><STRONG><A NAME="item_i_syslog"><CODE>i_syslog</CODE></A></STRONG><BR>
  3181. <DD>
  3182. From <EM>i_syslog.U</EM>:
  3183. <P>This variable conditionally defines the <CODE>I_SYSLOG</CODE> symbol,
  3184. and indicates whether a C program should include <syslog.h>.</P>
  3185. <P></P>
  3186. <DT><STRONG><A NAME="item_i_sysmman"><CODE>i_sysmman</CODE></A></STRONG><BR>
  3187. <DD>
  3188. From <EM>i_sysmman.U</EM>:
  3189. <P>This variable conditionally defines the <CODE>I_SYS_MMAN</CODE> symbol, and
  3190. indicates whether a C program should include <sys/mman.h>.</P>
  3191. <P></P>
  3192. <DT><STRONG><A NAME="item_i_sysmode"><CODE>i_sysmode</CODE></A></STRONG><BR>
  3193. <DD>
  3194. From <EM>i_sysmode.U</EM>:
  3195. <P>This variable conditionally defines the <CODE>I_SYSMODE</CODE> symbol,
  3196. and indicates whether a C program should include <sys/mode.h>.</P>
  3197. <P></P>
  3198. <DT><STRONG><A NAME="item_i_sysmount"><CODE>i_sysmount</CODE></A></STRONG><BR>
  3199. <DD>
  3200. From <EM>i_sysmount.U</EM>:
  3201. <P>This variable conditionally defines the <CODE>I_SYSMOUNT</CODE> symbol,
  3202. and indicates whether a C program should include <sys/mount.h>.</P>
  3203. <P></P>
  3204. <DT><STRONG><A NAME="item_i_sysndir"><CODE>i_sysndir</CODE></A></STRONG><BR>
  3205. <DD>
  3206. From <EM>i_sysndir.U</EM>:
  3207. <P>This variable conditionally defines the <CODE>I_SYS_NDIR</CODE> symbol, and indicates
  3208. whether a C program should include <sys/ndir.h>.</P>
  3209. <P></P>
  3210. <DT><STRONG><A NAME="item_i_sysparam"><CODE>i_sysparam</CODE></A></STRONG><BR>
  3211. <DD>
  3212. From <EM>i_sysparam.U</EM>:
  3213. <P>This variable conditionally defines the <CODE>I_SYS_PARAM</CODE> symbol, and indicates
  3214. whether a C program should include <sys/param.h>.</P>
  3215. <P></P>
  3216. <DT><STRONG><A NAME="item_i_sysresrc"><CODE>i_sysresrc</CODE></A></STRONG><BR>
  3217. <DD>
  3218. From <EM>i_sysresrc.U</EM>:
  3219. <P>This variable conditionally defines the <CODE>I_SYS_RESOURCE</CODE> symbol,
  3220. and indicates whether a C program should include <sys/resource.h>.</P>
  3221. <P></P>
  3222. <DT><STRONG><A NAME="item_i_syssecrt"><CODE>i_syssecrt</CODE></A></STRONG><BR>
  3223. <DD>
  3224. From <EM>i_syssecrt.U</EM>:
  3225. <P>This variable conditionally defines the <CODE>I_SYS_SECURITY</CODE> symbol,
  3226. and indicates whether a C program should include <sys/security.h>.</P>
  3227. <P></P>
  3228. <DT><STRONG><A NAME="item_i_sysselct"><CODE>i_sysselct</CODE></A></STRONG><BR>
  3229. <DD>
  3230. From <EM>i_sysselct.U</EM>:
  3231. <P>This variable conditionally defines <CODE>I_SYS_SELECT</CODE>, which indicates
  3232. to the C program that it should include <sys/select.h> in order to
  3233. get the definition of struct timeval.</P>
  3234. <P></P>
  3235. <DT><STRONG><A NAME="item_i_syssockio"><CODE>i_syssockio</CODE></A></STRONG><BR>
  3236. <DD>
  3237. From <EM>i_sysioctl.U</EM>:
  3238. <P>This variable conditionally defines <CODE>I_SYS_SOCKIO</CODE> to indicate to the
  3239. C program that socket ioctl codes may be found in <sys/sockio.h>
  3240. instead of <sys/ioctl.h>.</P>
  3241. <P></P>
  3242. <DT><STRONG><A NAME="item_i_sysstat"><CODE>i_sysstat</CODE></A></STRONG><BR>
  3243. <DD>
  3244. From <EM>i_sysstat.U</EM>:
  3245. <P>This variable conditionally defines the <CODE>I_SYS_STAT</CODE> symbol,
  3246. and indicates whether a C program should include <sys/stat.h>.</P>
  3247. <P></P>
  3248. <DT><STRONG><A NAME="item_i_sysstatfs"><CODE>i_sysstatfs</CODE></A></STRONG><BR>
  3249. <DD>
  3250. From <EM>i_sysstatfs.U</EM>:
  3251. <P>This variable conditionally defines the <CODE>I_SYSSTATFS</CODE> symbol,
  3252. and indicates whether a C program should include <sys/statfs.h>.</P>
  3253. <P></P>
  3254. <DT><STRONG><A NAME="item_i_sysstatvfs"><CODE>i_sysstatvfs</CODE></A></STRONG><BR>
  3255. <DD>
  3256. From <EM>i_sysstatvfs.U</EM>:
  3257. <P>This variable conditionally defines the <CODE>I_SYSSTATVFS</CODE> symbol,
  3258. and indicates whether a C program should include <sys/statvfs.h>.</P>
  3259. <P></P>
  3260. <DT><STRONG><A NAME="item_i_systime"><CODE>i_systime</CODE></A></STRONG><BR>
  3261. <DD>
  3262. From <EM>i_time.U</EM>:
  3263. <P>This variable conditionally defines <CODE>I_SYS_TIME</CODE>, which indicates
  3264. to the C program that it should include <sys/time.h>.</P>
  3265. <P></P>
  3266. <DT><STRONG><A NAME="item_i_systimek"><CODE>i_systimek</CODE></A></STRONG><BR>
  3267. <DD>
  3268. From <EM>i_time.U</EM>:
  3269. <P>This variable conditionally defines <CODE>I_SYS_TIME_KERNEL</CODE>, which
  3270. indicates to the C program that it should include <sys/time.h>
  3271. with <CODE>KERNEL</CODE> defined.</P>
  3272. <P></P>
  3273. <DT><STRONG><A NAME="item_i_systimes"><CODE>i_systimes</CODE></A></STRONG><BR>
  3274. <DD>
  3275. From <EM>i_systimes.U</EM>:
  3276. <P>This variable conditionally defines the <CODE>I_SYS_TIMES</CODE> symbol, and indicates
  3277. whether a C program should include <sys/times.h>.</P>
  3278. <P></P>
  3279. <DT><STRONG><A NAME="item_i_systypes"><CODE>i_systypes</CODE></A></STRONG><BR>
  3280. <DD>
  3281. From <EM>i_systypes.U</EM>:
  3282. <P>This variable conditionally defines the <CODE>I_SYS_TYPES</CODE> symbol,
  3283. and indicates whether a C program should include <sys/types.h>.</P>
  3284. <P></P>
  3285. <DT><STRONG><A NAME="item_i_sysuio"><CODE>i_sysuio</CODE></A></STRONG><BR>
  3286. <DD>
  3287. From <EM>i_sysuio.U</EM>:
  3288. <P>This variable conditionally defines the <CODE>I_SYSUIO</CODE> symbol, and indicates
  3289. whether a C program should include <sys/uio.h>.</P>
  3290. <P></P>
  3291. <DT><STRONG><A NAME="item_i_sysun"><CODE>i_sysun</CODE></A></STRONG><BR>
  3292. <DD>
  3293. From <EM>i_sysun.U</EM>:
  3294. <P>This variable conditionally defines <CODE>I_SYS_UN</CODE>, which indicates
  3295. to the C program that it should include <sys/un.h> to get <CODE>UNIX</CODE>
  3296. domain socket definitions.</P>
  3297. <P></P>
  3298. <DT><STRONG><A NAME="item_i_sysutsname"><CODE>i_sysutsname</CODE></A></STRONG><BR>
  3299. <DD>
  3300. From <EM>i_sysutsname.U</EM>:
  3301. <P>This variable conditionally defines the <CODE>I_SYSUTSNAME</CODE> symbol,
  3302. and indicates whether a C program should include <sys/utsname.h>.</P>
  3303. <P></P>
  3304. <DT><STRONG><A NAME="item_i_sysvfs"><CODE>i_sysvfs</CODE></A></STRONG><BR>
  3305. <DD>
  3306. From <EM>i_sysvfs.U</EM>:
  3307. <P>This variable conditionally defines the <CODE>I_SYSVFS</CODE> symbol,
  3308. and indicates whether a C program should include <sys/vfs.h>.</P>
  3309. <P></P>
  3310. <DT><STRONG><A NAME="item_i_syswait"><CODE>i_syswait</CODE></A></STRONG><BR>
  3311. <DD>
  3312. From <EM>i_syswait.U</EM>:
  3313. <P>This variable conditionally defines <CODE>I_SYS_WAIT</CODE>, which indicates
  3314. to the C program that it should include <sys/wait.h>.</P>
  3315. <P></P>
  3316. <DT><STRONG><A NAME="item_i_termio"><CODE>i_termio</CODE></A></STRONG><BR>
  3317. <DD>
  3318. From <EM>i_termio.U</EM>:
  3319. <P>This variable conditionally defines the <CODE>I_TERMIO</CODE> symbol, which
  3320. indicates to the C program that it should include <termio.h> rather
  3321. than <sgtty.h>.</P>
  3322. <P></P>
  3323. <DT><STRONG><A NAME="item_i_termios"><CODE>i_termios</CODE></A></STRONG><BR>
  3324. <DD>
  3325. From <EM>i_termio.U</EM>:
  3326. <P>This variable conditionally defines the <CODE>I_TERMIOS</CODE> symbol, which
  3327. indicates to the C program that the <CODE>POSIX</CODE> <termios.h> file is
  3328. to be included.</P>
  3329. <P></P>
  3330. <DT><STRONG><A NAME="item_i_time"><CODE>i_time</CODE></A></STRONG><BR>
  3331. <DD>
  3332. From <EM>i_time.U</EM>:
  3333. <P>This variable conditionally defines <CODE>I_TIME</CODE>, which indicates
  3334. to the C program that it should include <time.h>.</P>
  3335. <P></P>
  3336. <DT><STRONG><A NAME="item_i_unistd"><CODE>i_unistd</CODE></A></STRONG><BR>
  3337. <DD>
  3338. From <EM>i_unistd.U</EM>:
  3339. <P>This variable conditionally defines the <CODE>I_UNISTD</CODE> symbol, and indicates
  3340. whether a C program should include <unistd.h>.</P>
  3341. <P></P>
  3342. <DT><STRONG><A NAME="item_i_ustat"><CODE>i_ustat</CODE></A></STRONG><BR>
  3343. <DD>
  3344. From <EM>i_ustat.U</EM>:
  3345. <P>This variable conditionally defines the <CODE>I_USTAT</CODE> symbol, and indicates
  3346. whether a C program should include <ustat.h>.</P>
  3347. <P></P>
  3348. <DT><STRONG><A NAME="item_i_utime"><CODE>i_utime</CODE></A></STRONG><BR>
  3349. <DD>
  3350. From <EM>i_utime.U</EM>:
  3351. <P>This variable conditionally defines the <CODE>I_UTIME</CODE> symbol, and indicates
  3352. whether a C program should include <utime.h>.</P>
  3353. <P></P>
  3354. <DT><STRONG><A NAME="item_i_values"><CODE>i_values</CODE></A></STRONG><BR>
  3355. <DD>
  3356. From <EM>i_values.U</EM>:
  3357. <P>This variable conditionally defines the <CODE>I_VALUES</CODE> symbol, and indicates
  3358. whether a C program may include <values.h> to get symbols like <CODE>MAXLONG</CODE>
  3359. and friends.</P>
  3360. <P></P>
  3361. <DT><STRONG><A NAME="item_i_varargs"><CODE>i_varargs</CODE></A></STRONG><BR>
  3362. <DD>
  3363. From <EM>i_varhdr.U</EM>:
  3364. <P>This variable conditionally defines <CODE>I_VARARGS</CODE>, which indicates
  3365. to the C program that it should include <varargs.h>.</P>
  3366. <P></P>
  3367. <DT><STRONG><A NAME="item_i_varhdr"><CODE>i_varhdr</CODE></A></STRONG><BR>
  3368. <DD>
  3369. From <EM>i_varhdr.U</EM>:
  3370. <P>Contains the name of the header to be included to get va_dcl definition.
  3371. Typically one of <EM>varargs.h</EM> or <EM>stdarg.h</EM>.</P>
  3372. <P></P>
  3373. <DT><STRONG><A NAME="item_i_vfork"><CODE>i_vfork</CODE></A></STRONG><BR>
  3374. <DD>
  3375. From <EM>i_vfork.U</EM>:
  3376. <P>This variable conditionally defines the <CODE>I_VFORK</CODE> symbol, and indicates
  3377. whether a C program should include <EM>vfork.h</EM>.</P>
  3378. <P></P>
  3379. <DT><STRONG><A NAME="item_ignore_versioned_solibs"><CODE>ignore_versioned_solibs</CODE></A></STRONG><BR>
  3380. <DD>
  3381. From <EM>libs.U</EM>:
  3382. <P>This variable should be non-empty if non-versioned shared
  3383. libraries (<EM>libfoo.so.x.y</EM>) are to be ignored (because they
  3384. cannot be linked against).</P>
  3385. <P></P>
  3386. <DT><STRONG><A NAME="item_inc_version_list"><CODE>inc_version_list</CODE></A></STRONG><BR>
  3387. <DD>
  3388. From <EM>inc_version_list.U</EM>:
  3389. <P>This variable specifies the list of subdirectories in over
  3390. which <EM>perl.c</EM>:incpush() and <EM>lib/lib.pm</EM> will automatically
  3391. search when adding directories to @<CODE>INC</CODE>.  The elements in
  3392. the list are separated by spaces.  This is only useful
  3393. if you have a perl library directory tree structured like the
  3394. default one.  See <CODE>INSTALL</CODE> for how this works.  The versioned
  3395. site_perl directory was introduced in 5.005, so that is the
  3396. lowest possible value.</P>
  3397. <P></P>
  3398. <DT><STRONG><A NAME="item_inc_version_list_init"><CODE>inc_version_list_init</CODE></A></STRONG><BR>
  3399. <DD>
  3400. From <EM>inc_version_list.U</EM>:
  3401. <P>This variable holds the same list as inc_version_list, but
  3402. each item is enclosed in double quotes and separated by commas, 
  3403. suitable for use in the <CODE>PERL_INC_VERSION_LIST</CODE> initialization.</P>
  3404. <P></P>
  3405. <DT><STRONG><A NAME="item_incpath"><CODE>incpath</CODE></A></STRONG><BR>
  3406. <DD>
  3407. From <EM>usrinc.U</EM>:
  3408. <P>This variable must preceed the normal include path to get hte
  3409. right one, as in <EM>$<EM>incpath/usr/include</EM></EM> or <EM>$<EM>incpath/usr/lib</EM></EM>.
  3410. Value can be ``'' or <EM>/bsd43</EM> on mips.</P>
  3411. <P></P>
  3412. <DT><STRONG><A NAME="item_inews"><CODE>inews</CODE></A></STRONG><BR>
  3413. <DD>
  3414. From <EM>Loc.U</EM>:
  3415. <P>This variable is defined but not used by Configure.
  3416. The value is a plain '' and is not useful.</P>
  3417. <P></P>
  3418. <DT><STRONG><A NAME="item_installarchlib"><CODE>installarchlib</CODE></A></STRONG><BR>
  3419. <DD>
  3420. From <EM>archlib.U</EM>:
  3421. <P>This variable is really the same as archlibexp but may differ on
  3422. those systems using <CODE>AFS</CODE>. For extra portability, only this variable
  3423. should be used in makefiles.</P>
  3424. <P></P>
  3425. <DT><STRONG><A NAME="item_installbin"><CODE>installbin</CODE></A></STRONG><BR>
  3426. <DD>
  3427. From <EM>bin.U</EM>:
  3428. <P>This variable is the same as binexp unless <CODE>AFS</CODE> is running in which case
  3429. the user is explicitely prompted for it. This variable should always
  3430. be used in your makefiles for maximum portability.</P>
  3431. <P></P>
  3432. <DT><STRONG><A NAME="item_installman1dir"><CODE>installman1dir</CODE></A></STRONG><BR>
  3433. <DD>
  3434. From <EM>man1dir.U</EM>:
  3435. <P>This variable is really the same as man1direxp, unless you are using
  3436. <CODE>AFS</CODE> in which case it points to the <EM>read/write</EM> location whereas
  3437. man1direxp only points to the read-only access location. For extra
  3438. portability, you should only use this variable within your makefiles.</P>
  3439. <P></P>
  3440. <DT><STRONG><A NAME="item_installman3dir"><CODE>installman3dir</CODE></A></STRONG><BR>
  3441. <DD>
  3442. From <EM>man3dir.U</EM>:
  3443. <P>This variable is really the same as man3direxp, unless you are using
  3444. <CODE>AFS</CODE> in which case it points to the <EM>read/write</EM> location whereas
  3445. man3direxp only points to the read-only access location. For extra
  3446. portability, you should only use this variable within your makefiles.</P>
  3447. <P></P>
  3448. <DT><STRONG><A NAME="item_installprefix"><CODE>installprefix</CODE></A></STRONG><BR>
  3449. <DD>
  3450. From <EM>installprefix.U</EM>:
  3451. <P>This variable holds the name of the directory below which 
  3452. ``make install'' will install the package.  For most users, this
  3453. is the same as prefix.  However, it is useful for
  3454. installing the software into a different (usually temporary)
  3455. location after which it can be bundled up and moved somehow
  3456. to the final location specified by prefix.</P>
  3457. <P></P>
  3458. <DT><STRONG><A NAME="item_installprefixexp"><CODE>installprefixexp</CODE></A></STRONG><BR>
  3459. <DD>
  3460. From <EM>installprefix.U</EM>:
  3461. <P>This variable holds the full absolute path of installprefix
  3462. with all <EM>~</EM>-expansion done.</P>
  3463. <P></P>
  3464. <DT><STRONG><A NAME="item_installprivlib"><CODE>installprivlib</CODE></A></STRONG><BR>
  3465. <DD>
  3466. From <EM>privlib.U</EM>:
  3467. <P>This variable is really the same as privlibexp but may differ on
  3468. those systems using <CODE>AFS</CODE>. For extra portability, only this variable
  3469. should be used in makefiles.</P>
  3470. <P></P>
  3471. <DT><STRONG><A NAME="item_installscript"><CODE>installscript</CODE></A></STRONG><BR>
  3472. <DD>
  3473. From <EM>scriptdir.U</EM>:
  3474. <P>This variable is usually the same as scriptdirexp, unless you are on
  3475. a system running <CODE>AFS</CODE>, in which case they may differ slightly. You
  3476. should always use this variable within your makefiles for portability.</P>
  3477. <P></P>
  3478. <DT><STRONG><A NAME="item_installsitearch"><CODE>installsitearch</CODE></A></STRONG><BR>
  3479. <DD>
  3480. From <EM>sitearch.U</EM>:
  3481. <P>This variable is really the same as sitearchexp but may differ on
  3482. those systems using <CODE>AFS</CODE>. For extra portability, only this variable
  3483. should be used in makefiles.</P>
  3484. <P></P>
  3485. <DT><STRONG><A NAME="item_installsitebin"><CODE>installsitebin</CODE></A></STRONG><BR>
  3486. <DD>
  3487. From <EM>sitebin.U</EM>:
  3488. <P>This variable is usually the same as sitebinexp, unless you are on
  3489. a system running <CODE>AFS</CODE>, in which case they may differ slightly. You
  3490. should always use this variable within your makefiles for portability.</P>
  3491. <P></P>
  3492. <DT><STRONG><A NAME="item_installsitelib"><CODE>installsitelib</CODE></A></STRONG><BR>
  3493. <DD>
  3494. From <EM>sitelib.U</EM>:
  3495. <P>This variable is really the same as sitelibexp but may differ on
  3496. those systems using <CODE>AFS</CODE>. For extra portability, only this variable
  3497. should be used in makefiles.</P>
  3498. <P></P>
  3499. <DT><STRONG><A NAME="item_installstyle"><CODE>installstyle</CODE></A></STRONG><BR>
  3500. <DD>
  3501. From <EM>installstyle.U</EM>:
  3502. <P>This variable describes the <CODE>style</CODE> of the perl installation.
  3503. This is intended to be useful for tools that need to
  3504. manipulate entire perl distributions.  Perl itself doesn't use
  3505. this to find its libraries -- the library directories are
  3506. stored directly in <EM>Config.pm</EM>.  Currently, there are only two
  3507. styles:  <CODE>lib</CODE> and <EM>lib/perl5</EM>.  The default library locations
  3508. (e.g. privlib, sitelib) are either $<EM>prefix/lib</EM> or
  3509. $<EM>prefix/lib/perl5</EM>.  The former is useful if $prefix is a
  3510. directory dedicated to perl (e.g. <EM>/opt/perl</EM>), while the latter
  3511. is useful if $prefix is shared by many packages, e.g. if
  3512. $prefix=<EM>/usr/local</EM>.</P>
  3513. <PRE>
  3514.         This may later be extended to include other information, so</PRE>
  3515. <PRE>
  3516.         be careful with pattern-matching on the results.</PRE>
  3517. <PRE>
  3518.         For compatibility with F<perl5.005> and earlier, the default</PRE>
  3519. <PRE>
  3520.         setting is based on whether or not $prefix contains the string
  3521. C<perl>.</PRE>
  3522. <P></P>
  3523. <DT><STRONG><A NAME="item_installusrbinperl"><CODE>installusrbinperl</CODE></A></STRONG><BR>
  3524. <DD>
  3525. From <EM>instubperl.U</EM>:
  3526. <P>This variable tells whether Perl should be installed also as
  3527. <EM>/usr/bin/perl</EM> in addition to
  3528. $<EM>installbin/perl</EM></P>
  3529. <P></P>
  3530. <DT><STRONG><A NAME="item_installvendorarch"><CODE>installvendorarch</CODE></A></STRONG><BR>
  3531. <DD>
  3532. From <EM>vendorarch.U</EM>:
  3533. <P>This variable is really the same as vendorarchexp but may differ on
  3534. those systems using <CODE>AFS</CODE>. For extra portability, only this variable
  3535. should be used in makefiles.</P>
  3536. <P></P>
  3537. <DT><STRONG><A NAME="item_installvendorbin"><CODE>installvendorbin</CODE></A></STRONG><BR>
  3538. <DD>
  3539. From <EM>vendorbin.U</EM>:
  3540. <P>This variable is really the same as vendorbinexp but may differ on
  3541. those systems using <CODE>AFS</CODE>. For extra portability, only this variable
  3542. should be used in makefiles.</P>
  3543. <P></P>
  3544. <DT><STRONG><A NAME="item_installvendorlib"><CODE>installvendorlib</CODE></A></STRONG><BR>
  3545. <DD>
  3546. From <EM>vendorlib.U</EM>:
  3547. <P>This variable is really the same as vendorlibexp but may differ on
  3548. those systems using <CODE>AFS</CODE>. For extra portability, only this variable
  3549. should be used in makefiles.</P>
  3550. <P></P>
  3551. <DT><STRONG><A NAME="item_intsize"><CODE>intsize</CODE></A></STRONG><BR>
  3552. <DD>
  3553. From <EM>intsize.U</EM>:
  3554. <P>This variable contains the value of the <CODE>INTSIZE</CODE> symbol, which
  3555. indicates to the C program how many bytes there are in an int.</P>
  3556. <P></P>
  3557. <DT><STRONG><A NAME="item_ivdformat"><CODE>ivdformat</CODE></A></STRONG><BR>
  3558. <DD>
  3559. From <EM>perlxvf.U</EM>:
  3560. <P>This variable contains the format string used for printing
  3561. a Perl <CODE>IV</CODE> as a signed decimal integer.</P>
  3562. <P></P>
  3563. <DT><STRONG><A NAME="item_ivsize"><CODE>ivsize</CODE></A></STRONG><BR>
  3564. <DD>
  3565. From <EM>perlxv.U</EM>:
  3566. <P>This variable is the size of an <CODE>IV</CODE> in bytes.</P>
  3567. <P></P>
  3568. <DT><STRONG><A NAME="item_ivtype"><CODE>ivtype</CODE></A></STRONG><BR>
  3569. <DD>
  3570. From <EM>perlxv.U</EM>:
  3571. <P>This variable contains the C type used for Perl's <CODE>IV</CODE>.</P>
  3572. <P></P></DL>
  3573. <P>
  3574. <H2><A NAME="k">k</A></H2>
  3575. <DL>
  3576. <DT><STRONG><A NAME="item_known_extensions"><CODE>known_extensions</CODE></A></STRONG><BR>
  3577. <DD>
  3578. From <EM>Extensions.U</EM>:
  3579. <P>This variable holds a list of all <CODE>XS</CODE> extensions included in 
  3580. the package.</P>
  3581. <P></P>
  3582. <DT><STRONG><A NAME="item_ksh"><CODE>ksh</CODE></A></STRONG><BR>
  3583. <DD>
  3584. From <EM>Loc.U</EM>:
  3585. <P>This variable is defined but not used by Configure.
  3586. The value is a plain '' and is not useful.</P>
  3587. <P></P></DL>
  3588. <P>
  3589. <H2><A NAME="l">l</A></H2>
  3590. <DL>
  3591. <DT><STRONG><A NAME="item_large"><CODE>large</CODE></A></STRONG><BR>
  3592. <DD>
  3593. From <EM>models.U</EM>:
  3594. <P>This variable contains a flag which will tell the C compiler and loader
  3595. to produce a program running with a large memory model.  It is up to
  3596. the Makefile to use this.</P>
  3597. <P></P>
  3598. <DT><STRONG><A NAME="item_ld"><CODE>ld</CODE></A></STRONG><BR>
  3599. <DD>
  3600. From <EM>dlsrc.U</EM>:
  3601. <P>This variable indicates the program to be used to link
  3602. libraries for dynamic loading.  On some systems, it is <A HREF="#item_ld"><CODE>ld</CODE></A>.
  3603. On <CODE>ELF</CODE> systems, it should be $cc.  Mostly, we'll try to respect
  3604. the hint file setting.</P>
  3605. <P></P>
  3606. <DT><STRONG><A NAME="item_lddlflags"><CODE>lddlflags</CODE></A></STRONG><BR>
  3607. <DD>
  3608. From <EM>dlsrc.U</EM>:
  3609. <P>This variable contains any special flags that might need to be
  3610. passed to $ld to create a shared library suitable for dynamic
  3611. loading.  It is up to the makefile to use it.  For hpux, it
  3612. should be <CODE>-b</CODE>.  For sunos 4.1, it is empty.</P>
  3613. <P></P>
  3614. <DT><STRONG><A NAME="item_ldflags"><CODE>ldflags</CODE></A></STRONG><BR>
  3615. <DD>
  3616. From <EM>ccflags.U</EM>:
  3617. <P>This variable contains any additional C loader flags desired by
  3618. the user.  It is up to the Makefile to use this.</P>
  3619. <P></P>
  3620. <DT><STRONG><A NAME="item_ldlibpthname"><CODE>ldlibpthname</CODE></A></STRONG><BR>
  3621. <DD>
  3622. From <EM>libperl.U</EM>:
  3623. <P>This variable holds the name of the shared library
  3624. search path, often <CODE>LD_LIBRARY_PATH</CODE>.  To get an empty
  3625. string, the hints file must set this to <CODE>none</CODE>.</P>
  3626. <P></P>
  3627. <DT><STRONG><A NAME="item_less"><CODE>less</CODE></A></STRONG><BR>
  3628. <DD>
  3629. From <EM>Loc.U</EM>:
  3630. <P>This variable is used internally by Configure to determine the
  3631. full pathname (if any) of the less program.  After Configure runs,
  3632. the value is reset to a plain <A HREF="#item_less"><CODE>less</CODE></A> and is not useful.</P>
  3633. <P></P>
  3634. <DT><STRONG><A NAME="item_lib_ext"><CODE>lib_ext</CODE></A></STRONG><BR>
  3635. <DD>
  3636. From <EM>Unix.U</EM>:
  3637. <P>This is an old synonym for _a.</P>
  3638. <P></P>
  3639. <DT><STRONG><A NAME="item_libc"><CODE>libc</CODE></A></STRONG><BR>
  3640. <DD>
  3641. From <EM>libc.U</EM>:
  3642. <P>This variable contains the location of the C library.</P>
  3643. <P></P>
  3644. <DT><STRONG><A NAME="item_libperl"><CODE>libperl</CODE></A></STRONG><BR>
  3645. <DD>
  3646. From <EM>libperl.U</EM>:
  3647. <P>The perl executable is obtained by linking <EM>perlmain.c</EM> with
  3648. libperl, any static extensions (usually just DynaLoader),
  3649. and any other libraries needed on this system.  libperl
  3650. is usually <EM>libperl.a</EM>, but can also be <EM>libperl.so.xxx</EM> if
  3651. the user wishes to build a perl executable with a shared
  3652. library.</P>
  3653. <P></P>
  3654. <DT><STRONG><A NAME="item_libpth"><CODE>libpth</CODE></A></STRONG><BR>
  3655. <DD>
  3656. From <EM>libpth.U</EM>:
  3657. <P>This variable holds the general path (space-separated) used to find
  3658. libraries. It is intended to be used by other units.</P>
  3659. <P></P>
  3660. <DT><STRONG><A NAME="item_libs"><CODE>libs</CODE></A></STRONG><BR>
  3661. <DD>
  3662. From <EM>libs.U</EM>:
  3663. <P>This variable holds the additional libraries we want to use.
  3664. It is up to the Makefile to deal with it.</P>
  3665. <P></P>
  3666. <DT><STRONG><A NAME="item_libsdirs"><CODE>libsdirs</CODE></A></STRONG><BR>
  3667. <DD>
  3668. From <EM>libs.U</EM>:
  3669. <P>This variable holds the directory names aka dirnames of the libraries
  3670. we found and accepted, duplicates are removed.</P>
  3671. <P></P>
  3672. <DT><STRONG><A NAME="item_libsfiles"><CODE>libsfiles</CODE></A></STRONG><BR>
  3673. <DD>
  3674. From <EM>libs.U</EM>:
  3675. <P>This variable holds the filenames aka basenames of the libraries
  3676. we found and accepted.</P>
  3677. <P></P>
  3678. <DT><STRONG><A NAME="item_libsfound"><CODE>libsfound</CODE></A></STRONG><BR>
  3679. <DD>
  3680. From <EM>libs.U</EM>:
  3681. <P>This variable holds the full pathnames of the libraries
  3682. we found and accepted.</P>
  3683. <P></P>
  3684. <DT><STRONG><A NAME="item_libspath"><CODE>libspath</CODE></A></STRONG><BR>
  3685. <DD>
  3686. From <EM>libs.U</EM>:
  3687. <P>This variable holds the directory names probed for libraries.</P>
  3688. <P></P>
  3689. <DT><STRONG><A NAME="item_libswanted"><CODE>libswanted</CODE></A></STRONG><BR>
  3690. <DD>
  3691. From <EM>Myinit.U</EM>:
  3692. <P>This variable holds a list of all the libraries we want to
  3693. search.  The order is chosen to pick up the c library
  3694. ahead of ucb or bsd libraries for SVR4.</P>
  3695. <P></P>
  3696. <DT><STRONG><A NAME="item_line"><CODE>line</CODE></A></STRONG><BR>
  3697. <DD>
  3698. From <EM>Loc.U</EM>:
  3699. <P>This variable is defined but not used by Configure.
  3700. The value is a plain '' and is not useful.</P>
  3701. <P></P>
  3702. <DT><STRONG><A NAME="item_lint"><CODE>lint</CODE></A></STRONG><BR>
  3703. <DD>
  3704. From <EM>Loc.U</EM>:
  3705. <P>This variable is defined but not used by Configure.
  3706. The value is a plain '' and is not useful.</P>
  3707. <P></P>
  3708. <DT><STRONG><A NAME="item_lkflags"><CODE>lkflags</CODE></A></STRONG><BR>
  3709. <DD>
  3710. From <EM>ccflags.U</EM>:
  3711. <P>This variable contains any additional C partial linker flags desired by
  3712. the user.  It is up to the Makefile to use this.</P>
  3713. <P></P>
  3714. <DT><STRONG><A NAME="item_ln"><CODE>ln</CODE></A></STRONG><BR>
  3715. <DD>
  3716. From <EM>Loc.U</EM>:
  3717. <P>This variable is used internally by Configure to determine the
  3718. full pathname (if any) of the ln program.  After Configure runs,
  3719. the value is reset to a plain <A HREF="#item_ln"><CODE>ln</CODE></A> and is not useful.</P>
  3720. <P></P>
  3721. <DT><STRONG><A NAME="item_lns"><CODE>lns</CODE></A></STRONG><BR>
  3722. <DD>
  3723. From <EM>lns.U</EM>:
  3724. <P>This variable holds the name of the command to make 
  3725. symbolic links (if they are supported).  It can be used
  3726. in the Makefile. It is either <CODE>ln -s</CODE> or <A HREF="#item_ln"><CODE>ln</CODE></A></P>
  3727. <P></P>
  3728. <DT><STRONG><A NAME="item_locincpth"><CODE>locincpth</CODE></A></STRONG><BR>
  3729. <DD>
  3730. From <EM>ccflags.U</EM>:
  3731. <P>This variable contains a list of additional directories to be
  3732. searched by the compiler.  The appropriate <CODE>-I</CODE> directives will
  3733. be added to ccflags.  This is intended to simplify setting
  3734. local directories from the Configure command line.
  3735. It's not much, but it parallels the loclibpth stuff in <EM>libpth.U</EM>.</P>
  3736. <P></P>
  3737. <DT><STRONG><A NAME="item_loclibpth"><CODE>loclibpth</CODE></A></STRONG><BR>
  3738. <DD>
  3739. From <EM>libpth.U</EM>:
  3740. <P>This variable holds the paths (space-separated) used to find local
  3741. libraries.  It is prepended to libpth, and is intended to be easily
  3742. set from the command line.</P>
  3743. <P></P>
  3744. <DT><STRONG><A NAME="item_longdblsize"><CODE>longdblsize</CODE></A></STRONG><BR>
  3745. <DD>
  3746. From <EM>d_longdbl.U</EM>:
  3747. <P>This variable contains the value of the <CODE>LONG_DOUBLESIZE</CODE> symbol, which
  3748. indicates to the C program how many bytes there are in a long double,
  3749. if this system supports long doubles.</P>
  3750. <P></P>
  3751. <DT><STRONG><A NAME="item_longlongsize"><CODE>longlongsize</CODE></A></STRONG><BR>
  3752. <DD>
  3753. From <EM>d_longlong.U</EM>:
  3754. <P>This variable contains the value of the <CODE>LONGLONGSIZE</CODE> symbol, which
  3755. indicates to the C program how many bytes there are in a long long,
  3756. if this system supports long long.</P>
  3757. <P></P>
  3758. <DT><STRONG><A NAME="item_longsize"><CODE>longsize</CODE></A></STRONG><BR>
  3759. <DD>
  3760. From <EM>intsize.U</EM>:
  3761. <P>This variable contains the value of the <CODE>LONGSIZE</CODE> symbol, which
  3762. indicates to the C program how many bytes there are in a long.</P>
  3763. <P></P>
  3764. <DT><STRONG><A NAME="item_lp"><CODE>lp</CODE></A></STRONG><BR>
  3765. <DD>
  3766. From <EM>Loc.U</EM>:
  3767. <P>This variable is defined but not used by Configure.
  3768. The value is a plain '' and is not useful.</P>
  3769. <P></P>
  3770. <DT><STRONG><A NAME="item_lpr"><CODE>lpr</CODE></A></STRONG><BR>
  3771. <DD>
  3772. From <EM>Loc.U</EM>:
  3773. <P>This variable is defined but not used by Configure.
  3774. The value is a plain '' and is not useful.</P>
  3775. <P></P>
  3776. <DT><STRONG><A NAME="item_ls"><CODE>ls</CODE></A></STRONG><BR>
  3777. <DD>
  3778. From <EM>Loc.U</EM>:
  3779. <P>This variable is used internally by Configure to determine the
  3780. full pathname (if any) of the ls program.  After Configure runs,
  3781. the value is reset to a plain <A HREF="#item_ls"><CODE>ls</CODE></A> and is not useful.</P>
  3782. <P></P>
  3783. <DT><STRONG><A NAME="item_lseeksize"><CODE>lseeksize</CODE></A></STRONG><BR>
  3784. <DD>
  3785. From <EM>lseektype.U</EM>:
  3786. <P>This variable defines lseektype to be something like off_t, long, 
  3787. or whatever type is used to declare lseek offset's type in the
  3788. kernel (which also appears to be lseek's return type).</P>
  3789. <P></P>
  3790. <DT><STRONG><A NAME="item_lseektype"><CODE>lseektype</CODE></A></STRONG><BR>
  3791. <DD>
  3792. From <EM>lseektype.U</EM>:
  3793. <P>This variable defines lseektype to be something like off_t, long, 
  3794. or whatever type is used to declare lseek offset's type in the
  3795. kernel (which also appears to be lseek's return type).</P>
  3796. <P></P></DL>
  3797. <P>
  3798. <H2><A NAME="m">m</A></H2>
  3799. <DL>
  3800. <DT><STRONG><A NAME="item_mail"><CODE>mail</CODE></A></STRONG><BR>
  3801. <DD>
  3802. From <EM>Loc.U</EM>:
  3803. <P>This variable is defined but not used by Configure.
  3804. The value is a plain '' and is not useful.</P>
  3805. <P></P>
  3806. <DT><STRONG><A NAME="item_mailx"><CODE>mailx</CODE></A></STRONG><BR>
  3807. <DD>
  3808. From <EM>Loc.U</EM>:
  3809. <P>This variable is defined but not used by Configure.
  3810. The value is a plain '' and is not useful.</P>
  3811. <P></P>
  3812. <DT><STRONG><A NAME="item_make"><CODE>make</CODE></A></STRONG><BR>
  3813. <DD>
  3814. From <EM>Loc.U</EM>:
  3815. <P>This variable is used internally by Configure to determine the
  3816. full pathname (if any) of the make program.  After Configure runs,
  3817. the value is reset to a plain <A HREF="#item_make"><CODE>make</CODE></A> and is not useful.</P>
  3818. <P></P>
  3819. <DT><STRONG><A NAME="item_make_set_make"><CODE>make_set_make</CODE></A></STRONG><BR>
  3820. <DD>
  3821. From <EM>make.U</EM>:
  3822. <P>Some versions of <A HREF="#item_make"><CODE>make</CODE></A> set the variable <CODE>MAKE</CODE>.  Others do not.
  3823. This variable contains the string to be included in <EM>Makefile.SH</EM>
  3824. so that <CODE>MAKE</CODE> is set if needed, and not if not needed.
  3825. Possible values are:
  3826. make_set_make=<CODE>#</CODE>        # If your make program handles this for you,
  3827. make_set_make=<CODE>MAKE=$make</CODE>    # if it doesn't.
  3828. I used a comment character so that we can distinguish a
  3829. <CODE>set</CODE> value (from a previous <EM>config.sh</EM> or Configure <CODE>-D</CODE> option)
  3830. from an uncomputed value.</P>
  3831. <P></P>
  3832. <DT><STRONG><A NAME="item_mallocobj"><CODE>mallocobj</CODE></A></STRONG><BR>
  3833. <DD>
  3834. From <EM>mallocsrc.U</EM>:
  3835. <P>This variable contains the name of the <EM>malloc.o</EM> that this package
  3836. generates, if that <EM>malloc.o</EM> is preferred over the system malloc.
  3837. Otherwise the value is null.  This variable is intended for generating
  3838. Makefiles.  See mallocsrc.</P>
  3839. <P></P>
  3840. <DT><STRONG><A NAME="item_mallocsrc"><CODE>mallocsrc</CODE></A></STRONG><BR>
  3841. <DD>
  3842. From <EM>mallocsrc.U</EM>:
  3843. <P>This variable contains the name of the <EM>malloc.c</EM> that comes with
  3844. the package, if that <EM>malloc.c</EM> is preferred over the system malloc.
  3845. Otherwise the value is null.  This variable is intended for generating
  3846. Makefiles.</P>
  3847. <P></P>
  3848. <DT><STRONG><A NAME="item_malloctype"><CODE>malloctype</CODE></A></STRONG><BR>
  3849. <DD>
  3850. From <EM>mallocsrc.U</EM>:
  3851. <P>This variable contains the kind of ptr returned by malloc and realloc.</P>
  3852. <P></P>
  3853. <DT><STRONG><A NAME="item_man1dir"><CODE>man1dir</CODE></A></STRONG><BR>
  3854. <DD>
  3855. From <EM>man1dir.U</EM>:
  3856. <P>This variable contains the name of the directory in which manual
  3857. source pages are to be put.  It is the responsibility of the
  3858. <EM>Makefile.SH</EM> to get the value of this into the proper command.
  3859. You must be prepared to do the <EM>~name</EM> expansion yourself.</P>
  3860. <P></P>
  3861. <DT><STRONG><A NAME="item_man1direxp"><CODE>man1direxp</CODE></A></STRONG><BR>
  3862. <DD>
  3863. From <EM>man1dir.U</EM>:
  3864. <P>This variable is the same as the man1dir variable, but is filename
  3865. expanded at configuration time, for convenient use in makefiles.</P>
  3866. <P></P>
  3867. <DT><STRONG><A NAME="item_man1ext"><CODE>man1ext</CODE></A></STRONG><BR>
  3868. <DD>
  3869. From <EM>man1dir.U</EM>:
  3870. <P>This variable contains the extension that the manual page should
  3871. have: one of <A HREF="#item_n"><CODE>n</CODE></A>, <CODE>l</CODE>, or <CODE>1</CODE>.  The Makefile must supply the <EM>.</EM>.
  3872. See man1dir.</P>
  3873. <P></P>
  3874. <DT><STRONG><A NAME="item_man3dir"><CODE>man3dir</CODE></A></STRONG><BR>
  3875. <DD>
  3876. From <EM>man3dir.U</EM>:
  3877. <P>This variable contains the name of the directory in which manual
  3878. source pages are to be put.  It is the responsibility of the
  3879. <EM>Makefile.SH</EM> to get the value of this into the proper command.
  3880. You must be prepared to do the <EM>~name</EM> expansion yourself.</P>
  3881. <P></P>
  3882. <DT><STRONG><A NAME="item_man3direxp"><CODE>man3direxp</CODE></A></STRONG><BR>
  3883. <DD>
  3884. From <EM>man3dir.U</EM>:
  3885. <P>This variable is the same as the man3dir variable, but is filename
  3886. expanded at configuration time, for convenient use in makefiles.</P>
  3887. <P></P>
  3888. <DT><STRONG><A NAME="item_man3ext"><CODE>man3ext</CODE></A></STRONG><BR>
  3889. <DD>
  3890. From <EM>man3dir.U</EM>:
  3891. <P>This variable contains the extension that the manual page should
  3892. have: one of <A HREF="#item_n"><CODE>n</CODE></A>, <CODE>l</CODE>, or <CODE>3</CODE>.  The Makefile must supply the <EM>.</EM>.
  3893. See man3dir.</P>
  3894. <P></P></DL>
  3895. <P>
  3896. <H2><A NAME="m">M</A></H2>
  3897. <DL>
  3898. <DT><STRONG><A NAME="item_Mcc"><CODE>Mcc</CODE></A></STRONG><BR>
  3899. <DD>
  3900. From <EM>Loc.U</EM>:
  3901. <P>This variable is used internally by Configure to determine the
  3902. full pathname (if any) of the Mcc program.  After Configure runs,
  3903. the value is reset to a plain <A HREF="#item_Mcc"><CODE>Mcc</CODE></A> and is not useful.</P>
  3904. <P></P>
  3905. <DT><STRONG><A NAME="item_medium"><CODE>medium</CODE></A></STRONG><BR>
  3906. <DD>
  3907. From <EM>models.U</EM>:
  3908. <P>This variable contains a flag which will tell the C compiler and loader
  3909. to produce a program running with a medium memory model.  If the
  3910. medium model is not supported, contains the flag to produce large
  3911. model programs.  It is up to the Makefile to use this.</P>
  3912. <P></P>
  3913. <DT><STRONG><A NAME="item_mips_type"><CODE>mips_type</CODE></A></STRONG><BR>
  3914. <DD>
  3915. From <EM>usrinc.U</EM>:
  3916. <P>This variable holds the environment type for the mips system.
  3917. Possible values are ``BSD 4.3'' and ``System V''.</P>
  3918. <P></P>
  3919. <DT><STRONG><A NAME="item_mkdir"><CODE>mkdir</CODE></A></STRONG><BR>
  3920. <DD>
  3921. From <EM>Loc.U</EM>:
  3922. <P>This variable is used internally by Configure to determine the
  3923. full pathname (if any) of the mkdir program.  After Configure runs,
  3924. the value is reset to a plain <A HREF="#item_mkdir"><CODE>mkdir</CODE></A> and is not useful.</P>
  3925. <P></P>
  3926. <DT><STRONG><A NAME="item_mmaptype"><CODE>mmaptype</CODE></A></STRONG><BR>
  3927. <DD>
  3928. From <EM>d_mmap.U</EM>:
  3929. <P>This symbol contains the type of pointer returned by <CODE>mmap()</CODE>
  3930. (and simultaneously the type of the first argument).
  3931. It can be <CODE>void *</CODE> or <CODE>caddr_t</CODE>.</P>
  3932. <P></P>
  3933. <DT><STRONG><A NAME="item_models"><CODE>models</CODE></A></STRONG><BR>
  3934. <DD>
  3935. From <EM>models.U</EM>:
  3936. <P>This variable contains the list of memory models supported by this
  3937. system.  Possible component values are none, split, unsplit, small,
  3938. medium, large, and huge.  The component values are space separated.</P>
  3939. <P></P>
  3940. <DT><STRONG><A NAME="item_modetype"><CODE>modetype</CODE></A></STRONG><BR>
  3941. <DD>
  3942. From <EM>modetype.U</EM>:
  3943. <P>This variable defines modetype to be something like mode_t, 
  3944. int, unsigned short, or whatever type is used to declare file 
  3945. modes for system calls.</P>
  3946. <P></P>
  3947. <DT><STRONG><A NAME="item_more"><CODE>more</CODE></A></STRONG><BR>
  3948. <DD>
  3949. From <EM>Loc.U</EM>:
  3950. <P>This variable is used internally by Configure to determine the
  3951. full pathname (if any) of the more program.  After Configure runs,
  3952. the value is reset to a plain <A HREF="#item_more"><CODE>more</CODE></A> and is not useful.</P>
  3953. <P></P>
  3954. <DT><STRONG><A NAME="item_multiarch"><CODE>multiarch</CODE></A></STRONG><BR>
  3955. <DD>
  3956. From <EM>multiarch.U</EM>:
  3957. <P>This variable conditionally defines the <CODE>MULTIARCH</CODE> symbol
  3958. which signifies the presence of multiplatform files.
  3959. This is normally set by hints files.</P>
  3960. <P></P>
  3961. <DT><STRONG><A NAME="item_mv"><CODE>mv</CODE></A></STRONG><BR>
  3962. <DD>
  3963. From <EM>Loc.U</EM>:
  3964. <P>This variable is defined but not used by Configure.
  3965. The value is a plain '' and is not useful.</P>
  3966. <P></P>
  3967. <DT><STRONG><A NAME="item_myarchname"><CODE>myarchname</CODE></A></STRONG><BR>
  3968. <DD>
  3969. From <EM>archname.U</EM>:
  3970. <P>This variable holds the architecture name computed by Configure in
  3971. a previous run. It is not intended to be perused by any user and
  3972. should never be set in a hint file.</P>
  3973. <P></P>
  3974. <DT><STRONG><A NAME="item_mydomain"><CODE>mydomain</CODE></A></STRONG><BR>
  3975. <DD>
  3976. From <EM>myhostname.U</EM>:
  3977. <P>This variable contains the eventual value of the <CODE>MYDOMAIN</CODE> symbol,
  3978. which is the domain of the host the program is going to run on.
  3979. The domain must be appended to myhostname to form a complete host name.
  3980. The dot comes with mydomain, and need not be supplied by the program.</P>
  3981. <P></P>
  3982. <DT><STRONG><A NAME="item_myhostname"><CODE>myhostname</CODE></A></STRONG><BR>
  3983. <DD>
  3984. From <EM>myhostname.U</EM>:
  3985. <P>This variable contains the eventual value of the <CODE>MYHOSTNAME</CODE> symbol,
  3986. which is the name of the host the program is going to run on.
  3987. The domain is not kept with hostname, but must be gotten from mydomain.
  3988. The dot comes with mydomain, and need not be supplied by the program.</P>
  3989. <P></P>
  3990. <DT><STRONG><A NAME="item_myuname"><CODE>myuname</CODE></A></STRONG><BR>
  3991. <DD>
  3992. From <EM>Oldconfig.U</EM>:
  3993. <P>The output of <CODE>uname -a</CODE> if available, otherwise the hostname. On Xenix,
  3994. pseudo variables assignments in the output are stripped, thank you. The
  3995. whole thing is then lower-cased.</P>
  3996. <P></P></DL>
  3997. <P>
  3998. <H2><A NAME="n">n</A></H2>
  3999. <DL>
  4000. <DT><STRONG><A NAME="item_n"><CODE>n</CODE></A></STRONG><BR>
  4001. <DD>
  4002. From <EM>n.U</EM>:
  4003. <P>This variable contains the <CODE>-n</CODE> flag if that is what causes the echo
  4004. command to suppress newline.  Otherwise it is null.  Correct usage is
  4005. $echo $n ``prompt for a question: $c''.</P>
  4006. <P></P>
  4007. <DT><STRONG><A NAME="item_netdb_hlen_type"><CODE>netdb_hlen_type</CODE></A></STRONG><BR>
  4008. <DD>
  4009. From <EM>netdbtype.U</EM>:
  4010. <P>This variable holds the type used for the 2nd argument to
  4011. gethostbyaddr().  Usually, this is int or size_t or unsigned.
  4012. This is only useful if you have gethostbyaddr(), naturally.</P>
  4013. <P></P>
  4014. <DT><STRONG><A NAME="item_netdb_host_type"><CODE>netdb_host_type</CODE></A></STRONG><BR>
  4015. <DD>
  4016. From <EM>netdbtype.U</EM>:
  4017. <P>This variable holds the type used for the 1st argument to
  4018. gethostbyaddr().  Usually, this is char * or void *,  possibly
  4019. with or without a const prefix.
  4020. This is only useful if you have gethostbyaddr(), naturally.</P>
  4021. <P></P>
  4022. <DT><STRONG><A NAME="item_netdb_name_type"><CODE>netdb_name_type</CODE></A></STRONG><BR>
  4023. <DD>
  4024. From <EM>netdbtype.U</EM>:
  4025. <P>This variable holds the type used for the argument to
  4026. gethostbyname().  Usually, this is char * or const char *.
  4027. This is only useful if you have gethostbyname(), naturally.</P>
  4028. <P></P>
  4029. <DT><STRONG><A NAME="item_netdb_net_type"><CODE>netdb_net_type</CODE></A></STRONG><BR>
  4030. <DD>
  4031. From <EM>netdbtype.U</EM>:
  4032. <P>This variable holds the type used for the 1st argument to
  4033. getnetbyaddr().  Usually, this is int or long.
  4034. This is only useful if you have getnetbyaddr(), naturally.</P>
  4035. <P></P>
  4036. <DT><STRONG><A NAME="item_nm"><CODE>nm</CODE></A></STRONG><BR>
  4037. <DD>
  4038. From <EM>Loc.U</EM>:
  4039. <P>This variable is used internally by Configure to determine the
  4040. full pathname (if any) of the nm program.  After Configure runs,
  4041. the value is reset to a plain <A HREF="#item_nm"><CODE>nm</CODE></A> and is not useful.</P>
  4042. <P></P>
  4043. <DT><STRONG><A NAME="item_nm_opt"><CODE>nm_opt</CODE></A></STRONG><BR>
  4044. <DD>
  4045. From <EM>usenm.U</EM>:
  4046. <P>This variable holds the options that may be necessary for nm.</P>
  4047. <P></P>
  4048. <DT><STRONG><A NAME="item_nm_so_opt"><CODE>nm_so_opt</CODE></A></STRONG><BR>
  4049. <DD>
  4050. From <EM>usenm.U</EM>:
  4051. <P>This variable holds the options that may be necessary for nm
  4052. to work on a shared library but that can not be used on an
  4053. archive library.  Currently, this is only used by Linux, where
  4054. nm --dynamic is *required* to get symbols from an <CODE>ELF</CODE> library which
  4055. has been stripped, but nm --dynamic is *fatal* on an archive library.
  4056. Maybe Linux should just always set usenm=false.</P>
  4057. <P></P>
  4058. <DT><STRONG><A NAME="item_nonxs_ext"><CODE>nonxs_ext</CODE></A></STRONG><BR>
  4059. <DD>
  4060. From <EM>Extensions.U</EM>:
  4061. <P>This variable holds a list of all non-xs extensions included
  4062. in the package.  All of them will be built.</P>
  4063. <P></P>
  4064. <DT><STRONG><A NAME="item_nroff"><CODE>nroff</CODE></A></STRONG><BR>
  4065. <DD>
  4066. From <EM>Loc.U</EM>:
  4067. <P>This variable is used internally by Configure to determine the
  4068. full pathname (if any) of the nroff program.  After Configure runs,
  4069. the value is reset to a plain <A HREF="#item_nroff"><CODE>nroff</CODE></A> and is not useful.</P>
  4070. <P></P>
  4071. <DT><STRONG><A NAME="item_nvsize"><CODE>nvsize</CODE></A></STRONG><BR>
  4072. <DD>
  4073. From <EM>perlxv.U</EM>:
  4074. <P>This variable is the size of an <CODE>NV</CODE> in bytes.</P>
  4075. <P></P>
  4076. <DT><STRONG><A NAME="item_nvtype"><CODE>nvtype</CODE></A></STRONG><BR>
  4077. <DD>
  4078. From <EM>perlxv.U</EM>:
  4079. <P>This variable contains the C type used for Perl's <CODE>NV</CODE>.</P>
  4080. <P></P></DL>
  4081. <P>
  4082. <H2><A NAME="o">o</A></H2>
  4083. <DL>
  4084. <DT><STRONG><A NAME="item_o_nonblock"><CODE>o_nonblock</CODE></A></STRONG><BR>
  4085. <DD>
  4086. From <EM>nblock_io.U</EM>:
  4087. <P>This variable bears the symbol value to be used during <A HREF="../lib/Pod/perlfunc.html#item_open"><CODE>open()</CODE></A> or <A HREF="../lib/Pod/perlfunc.html#item_fcntl"><CODE>fcntl()</CODE></A>
  4088. to turn on non-blocking <EM>I/O</EM> for a file descriptor. If you wish to switch
  4089. between blocking and non-blocking, you may try ioctl(<CODE>FIOSNBIO</CODE>) instead,
  4090. but that is only supported by some devices.</P>
  4091. <P></P>
  4092. <DT><STRONG><A NAME="item_obj_ext"><CODE>obj_ext</CODE></A></STRONG><BR>
  4093. <DD>
  4094. From <EM>Unix.U</EM>:
  4095. <P>This is an old synonym for _o.</P>
  4096. <P></P>
  4097. <DT><STRONG><A NAME="item_old_pthread_create_joinable"><CODE>old_pthread_create_joinable</CODE></A></STRONG><BR>
  4098. <DD>
  4099. From <EM>d_pthrattrj.U</EM>:
  4100. <P>This variable defines the constant to use for creating joinable
  4101. (aka undetached) pthreads.  Unused if <EM>pthread.h</EM> defines
  4102. <CODE>PTHREAD_CREATE_JOINABLE</CODE>.  If used, possible values are
  4103. <CODE>PTHREAD_CREATE_UNDETACHED</CODE> and <CODE>__UNDETACHED</CODE>.</P>
  4104. <P></P>
  4105. <DT><STRONG><A NAME="item_optimize"><CODE>optimize</CODE></A></STRONG><BR>
  4106. <DD>
  4107. From <EM>ccflags.U</EM>:
  4108. <P>This variable contains any <EM>optimizer/debugger</EM> flag that should be used.
  4109. It is up to the Makefile to use it.</P>
  4110. <P></P>
  4111. <DT><STRONG><A NAME="item_orderlib"><CODE>orderlib</CODE></A></STRONG><BR>
  4112. <DD>
  4113. From <EM>orderlib.U</EM>:
  4114. <P>This variable is <CODE>true</CODE> if the components of libraries must be ordered
  4115. (with `lorder $* | tsort`) before placing them in an archive.  Set to
  4116. <CODE>false</CODE> if ranlib or ar can generate random libraries.</P>
  4117. <P></P>
  4118. <DT><STRONG><A NAME="item_osname"><CODE>osname</CODE></A></STRONG><BR>
  4119. <DD>
  4120. From <EM>Oldconfig.U</EM>:
  4121. <P>This variable contains the operating system name (e.g. sunos,
  4122. solaris, hpux, <EM>etc.</EM>).  It can be useful later on for setting
  4123. defaults.  Any spaces are replaced with underscores.  It is set
  4124. to a null string if we can't figure it out.</P>
  4125. <P></P>
  4126. <DT><STRONG><A NAME="item_osvers"><CODE>osvers</CODE></A></STRONG><BR>
  4127. <DD>
  4128. From <EM>Oldconfig.U</EM>:
  4129. <P>This variable contains the operating system version (e.g.
  4130. 4.1.3, 5.2, <EM>etc.</EM>).  It is primarily used for helping select
  4131. an appropriate hints file, but might be useful elsewhere for
  4132. setting defaults.  It is set to '' if we can't figure it out.
  4133. We try to be flexible about how much of the version number
  4134. to keep, e.g. if 4.1.1, 4.1.2, and 4.1.3 are essentially the
  4135. same for this package, hints files might just be <EM>os_4.0</EM> or
  4136. <EM>os_4.1</EM>, <EM>etc.</EM>, not keeping separate files for each little release.</P>
  4137. <P></P></DL>
  4138. <P>
  4139. <H2><A NAME="p">p</A></H2>
  4140. <DL>
  4141. <DT><STRONG><A NAME="item_package"><CODE>package</CODE></A></STRONG><BR>
  4142. <DD>
  4143. From <EM>package.U</EM>:
  4144. <P>This variable contains the name of the package being constructed.
  4145. It is primarily intended for the use of later Configure units.</P>
  4146. <P></P>
  4147. <DT><STRONG><A NAME="item_pager"><CODE>pager</CODE></A></STRONG><BR>
  4148. <DD>
  4149. From <EM>pager.U</EM>:
  4150. <P>This variable contains the name of the preferred pager on the system.
  4151. Usual values are (the full pathnames of) more, less, pg, or cat.</P>
  4152. <P></P>
  4153. <DT><STRONG><A NAME="item_passcat"><CODE>passcat</CODE></A></STRONG><BR>
  4154. <DD>
  4155. From <EM>nis.U</EM>:
  4156. <P>This variable contains a command that produces the text of the
  4157. <EM>/etc/passwd</EM> file.  This is normally ``cat <EM>/etc/passwd</EM>'', but can be
  4158. ``ypcat passwd'' when <CODE>NIS</CODE> is used.
  4159. On some systems, such as os390, there may be no equivalent
  4160. command, in which case this variable is unset.</P>
  4161. <P></P>
  4162. <DT><STRONG><A NAME="item_patchlevel"><CODE>patchlevel</CODE></A></STRONG><BR>
  4163. <DD>
  4164. From <EM>patchlevel.U</EM>:
  4165. <P>The patchlevel level of this package.
  4166. The value of patchlevel comes from the <EM>patchlevel.h</EM> file.
  4167. In a version number such as 5.6.1, this is the <CODE>6</CODE>.
  4168. In <EM>patchlevel.h</EM>, this is referred to as <A HREF="#item_PERL_VERSION"><CODE>PERL_VERSION</CODE></A>.</P>
  4169. <P></P>
  4170. <DT><STRONG><A NAME="item_path_sep"><CODE>path_sep</CODE></A></STRONG><BR>
  4171. <DD>
  4172. From <EM>Unix.U</EM>:
  4173. <P>This is an old synonym for p_ in <EM>Head.U</EM>, the character
  4174. used to separate elements in the command shell search <A HREF="../lib/Pod/perlrun.html#item_PATH"><CODE>PATH</CODE></A>.</P>
  4175. <P></P>
  4176. <DT><STRONG><A NAME="item_perl5"><CODE>perl5</CODE></A></STRONG><BR>
  4177. <DD>
  4178. From <EM>perl5.U</EM>:
  4179. <P>This variable contains the full path (if any) to a previously
  4180. installed <EM>perl5.005</EM> or later suitable for running the script
  4181. to determine inc_version_list.</P>
  4182. <P></P>
  4183. <DT><STRONG><A NAME="item_perl"><CODE>perl</CODE></A></STRONG><BR>
  4184. <DD>
  4185. From <EM>Loc.U</EM>:
  4186. <P>This variable is defined but not used by Configure.
  4187. The value is a plain '' and is not useful.</P>
  4188. <P></P></DL>
  4189. <P>
  4190. <H2><A NAME="p">P</A></H2>
  4191. <DL>
  4192. <DT><STRONG><A NAME="item_PERL_REVISION"><CODE>PERL_REVISION</CODE></A></STRONG><BR>
  4193. <DD>
  4194. From <EM>Oldsyms.U</EM>:
  4195. <P>In a Perl version number such as 5.6.2, this is the 5.
  4196. This value is manually set in <EM>patchlevel.h</EM></P>
  4197. <P></P>
  4198. <DT><STRONG><A NAME="item_PERL_SUBVERSION"><CODE>PERL_SUBVERSION</CODE></A></STRONG><BR>
  4199. <DD>
  4200. From <EM>Oldsyms.U</EM>:
  4201. <P>In a Perl version number such as 5.6.2, this is the 2.
  4202. Values greater than 50 represent potentially unstable
  4203. development subversions.
  4204. This value is manually set in <EM>patchlevel.h</EM></P>
  4205. <P></P>
  4206. <DT><STRONG><A NAME="item_PERL_VERSION"><CODE>PERL_VERSION</CODE></A></STRONG><BR>
  4207. <DD>
  4208. From <EM>Oldsyms.U</EM>:
  4209. <P>In a Perl version number such as 5.6.2, this is the 6.
  4210. This value is manually set in <EM>patchlevel.h</EM></P>
  4211. <P></P>
  4212. <DT><STRONG><A NAME="item_perladmin"><CODE>perladmin</CODE></A></STRONG><BR>
  4213. <DD>
  4214. From <EM>perladmin.U</EM>:
  4215. <P>Electronic mail address of the perl5 administrator.</P>
  4216. <P></P>
  4217. <DT><STRONG><A NAME="item_perlpath"><CODE>perlpath</CODE></A></STRONG><BR>
  4218. <DD>
  4219. From <EM>perlpath.U</EM>:
  4220. <P>This variable contains the eventual value of the <CODE>PERLPATH</CODE> symbol,
  4221. which contains the name of the perl interpreter to be used in
  4222. shell scripts and in the ``eval <A HREF="../lib/Pod/perlfunc.html#item_exec"><CODE>exec</CODE></A>'' idiom.</P>
  4223. <P></P>
  4224. <DT><STRONG><A NAME="item_pg"><CODE>pg</CODE></A></STRONG><BR>
  4225. <DD>
  4226. From <EM>Loc.U</EM>:
  4227. <P>This variable is used internally by Configure to determine the
  4228. full pathname (if any) of the pg program.  After Configure runs,
  4229. the value is reset to a plain <A HREF="#item_pg"><CODE>pg</CODE></A> and is not useful.</P>
  4230. <P></P>
  4231. <DT><STRONG><A NAME="item_phostname"><CODE>phostname</CODE></A></STRONG><BR>
  4232. <DD>
  4233. From <EM>myhostname.U</EM>:
  4234. <P>This variable contains the eventual value of the <CODE>PHOSTNAME</CODE> symbol,
  4235. which is a command that can be fed to <CODE>popen()</CODE> to get the host name.
  4236. The program should probably not presume that the domain is or isn't
  4237. there already.</P>
  4238. <P></P>
  4239. <DT><STRONG><A NAME="item_pidtype"><CODE>pidtype</CODE></A></STRONG><BR>
  4240. <DD>
  4241. From <EM>pidtype.U</EM>:
  4242. <P>This variable defines <CODE>PIDTYPE</CODE> to be something like pid_t, int, 
  4243. ushort, or whatever type is used to declare process ids in the kernel.</P>
  4244. <P></P>
  4245. <DT><STRONG><A NAME="item_plibpth"><CODE>plibpth</CODE></A></STRONG><BR>
  4246. <DD>
  4247. From <EM>libpth.U</EM>:
  4248. <P>Holds the private path used by Configure to find out the libraries.
  4249. Its value is prepend to libpth. This variable takes care of special
  4250. machines, like the mips.  Usually, it should be empty.</P>
  4251. <P></P>
  4252. <DT><STRONG><A NAME="item_pm_apiversion"><CODE>pm_apiversion</CODE></A></STRONG><BR>
  4253. <DD>
  4254. From <EM>xs_apiversion.U</EM>:
  4255. <P>This variable contains the version of the oldest perl
  4256. compatible with the present perl.  (That is, pure perl modules
  4257. written for $pm_apiversion will still work for the current
  4258. version).  <EM>perl.c</EM>:incpush() and <EM>lib/lib.pm</EM> will automatically
  4259. search in $sitelib for older directories across major versions
  4260. back to pm_apiversion.  This is only useful if you have a perl
  4261. library directory tree structured like the default one.  The
  4262. versioned site_perl library was introduced in 5.005, so that's
  4263. the default setting for this variable.  It's hard to imagine
  4264. it changing before Perl6.  It is included here for symmetry
  4265. with xs_apiveprsion -- the searching algorithms will
  4266. (presumably) be similar.
  4267. See the <CODE>INSTALL</CODE> file for how this works.</P>
  4268. <P></P>
  4269. <DT><STRONG><A NAME="item_pmake"><CODE>pmake</CODE></A></STRONG><BR>
  4270. <DD>
  4271. From <EM>Loc.U</EM>:
  4272. <P>This variable is defined but not used by Configure.
  4273. The value is a plain '' and is not useful.</P>
  4274. <P></P>
  4275. <DT><STRONG><A NAME="item_pr"><CODE>pr</CODE></A></STRONG><BR>
  4276. <DD>
  4277. From <EM>Loc.U</EM>:
  4278. <P>This variable is defined but not used by Configure.
  4279. The value is a plain '' and is not useful.</P>
  4280. <P></P>
  4281. <DT><STRONG><A NAME="item_prefix"><CODE>prefix</CODE></A></STRONG><BR>
  4282. <DD>
  4283. From <EM>prefix.U</EM>:
  4284. <P>This variable holds the name of the directory below which the
  4285. user will install the package.  Usually, this is <EM>/usr/local</EM>, and
  4286. executables go in <EM>/usr/local/bin</EM>, library stuff in <EM>/usr/local/lib</EM>,
  4287. man pages in <EM>/usr/local/man</EM>, etc.  It is only used to set defaults
  4288. for things in <EM>bin.U</EM>, <EM>mansrc.U</EM>, <EM>privlib.U</EM>, or <EM>scriptdir.U</EM>.</P>
  4289. <P></P>
  4290. <DT><STRONG><A NAME="item_prefixexp"><CODE>prefixexp</CODE></A></STRONG><BR>
  4291. <DD>
  4292. From <EM>prefix.U</EM>:
  4293. <P>This variable holds the full absolute path of the directory below
  4294. which the user will install the package.  Derived from prefix.</P>
  4295. <P></P>
  4296. <DT><STRONG><A NAME="item_privlib"><CODE>privlib</CODE></A></STRONG><BR>
  4297. <DD>
  4298. From <EM>privlib.U</EM>:
  4299. <P>This variable contains the eventual value of the <CODE>PRIVLIB</CODE> symbol,
  4300. which is the name of the private library for this package.  It may
  4301. have a <EM>~</EM> on the front. It is up to the makefile to eventually create
  4302. this directory while performing installation (with <EM>~</EM> substitution).</P>
  4303. <P></P>
  4304. <DT><STRONG><A NAME="item_privlibexp"><CODE>privlibexp</CODE></A></STRONG><BR>
  4305. <DD>
  4306. From <EM>privlib.U</EM>:
  4307. <P>This variable is the <EM>~name</EM> expanded version of privlib, so that you
  4308. may use it directly in Makefiles or shell scripts.</P>
  4309. <P></P>
  4310. <DT><STRONG><A NAME="item_prototype"><CODE>prototype</CODE></A></STRONG><BR>
  4311. <DD>
  4312. From <EM>prototype.U</EM>:
  4313. <P>This variable holds the eventual value of <CODE>CAN_PROTOTYPE</CODE>, which
  4314. indicates the C compiler can handle funciton prototypes.</P>
  4315. <P></P>
  4316. <DT><STRONG><A NAME="item_ptrsize"><CODE>ptrsize</CODE></A></STRONG><BR>
  4317. <DD>
  4318. From <EM>ptrsize.U</EM>:
  4319. <P>This variable contains the value of the <CODE>PTRSIZE</CODE> symbol, which
  4320. indicates to the C program how many bytes there are in a pointer.</P>
  4321. <P></P></DL>
  4322. <P>
  4323. <H2><A NAME="q">q</A></H2>
  4324. <DL>
  4325. <DT><STRONG><A NAME="item_quadkind"><CODE>quadkind</CODE></A></STRONG><BR>
  4326. <DD>
  4327. From <EM>quadtype.U</EM>:
  4328. <P>This variable, if defined, encodes the type of a quad:
  4329. 1 = int, 2 = long, 3 = long long, 4 = int64_t.</P>
  4330. <P></P>
  4331. <DT><STRONG><A NAME="item_quadtype"><CODE>quadtype</CODE></A></STRONG><BR>
  4332. <DD>
  4333. From <EM>quadtype.U</EM>:
  4334. <P>This variable defines Quad_t to be something like long, int, 
  4335. long long, int64_t, or whatever type is used for 64-bit integers.</P>
  4336. <P></P></DL>
  4337. <P>
  4338. <H2><A NAME="r">r</A></H2>
  4339. <DL>
  4340. <DT><STRONG><A NAME="item_randbits"><CODE>randbits</CODE></A></STRONG><BR>
  4341. <DD>
  4342. From <EM>randfunc.U</EM>:
  4343. <P>Indicates how many bits are produced by the function used to
  4344. generate normalized random numbers.</P>
  4345. <P></P>
  4346. <DT><STRONG><A NAME="item_randfunc"><CODE>randfunc</CODE></A></STRONG><BR>
  4347. <DD>
  4348. From <EM>randfunc.U</EM>:
  4349. <P>Indicates the name of the random number function to use.
  4350. Values include drand48, random, and rand. In C programs,
  4351. the <CODE>Drand01</CODE> macro is defined to generate uniformly distributed
  4352. random numbers over the range [0., 1.[ (see drand01 and nrand).</P>
  4353. <P></P>
  4354. <DT><STRONG><A NAME="item_randseedtype"><CODE>randseedtype</CODE></A></STRONG><BR>
  4355. <DD>
  4356. From <EM>randfunc.U</EM>:
  4357. <P>Indicates the type of the argument of the seedfunc.</P>
  4358. <P></P>
  4359. <DT><STRONG><A NAME="item_ranlib"><CODE>ranlib</CODE></A></STRONG><BR>
  4360. <DD>
  4361. From <EM>orderlib.U</EM>:
  4362. <P>This variable is set to the pathname of the ranlib program, if it is
  4363. needed to generate random libraries.  Set to <CODE>:</CODE> if ar can generate
  4364. random libraries or if random libraries are not supported</P>
  4365. <P></P>
  4366. <DT><STRONG><A NAME="item_rd_nodata"><CODE>rd_nodata</CODE></A></STRONG><BR>
  4367. <DD>
  4368. From <EM>nblock_io.U</EM>:
  4369. <P>This variable holds the return code from <A HREF="../lib/Pod/perlfunc.html#item_read"><CODE>read()</CODE></A> when no data is
  4370. present. It should be -1, but some systems return 0 when <CODE>O_NDELAY</CODE> is
  4371. used, which is a shame because you cannot make the difference between
  4372. no data and an <EM>EOF.</EM>. Sigh!</P>
  4373. <P></P>
  4374. <DT><STRONG><A NAME="item_revision"><CODE>revision</CODE></A></STRONG><BR>
  4375. <DD>
  4376. From <EM>patchlevel.U</EM>:
  4377. <P>The value of revision comes from the <EM>patchlevel.h</EM> file.
  4378. In a version number such as 5.6.1, this is the <CODE>5</CODE>.
  4379. In <EM>patchlevel.h</EM>, this is referred to as <A HREF="#item_PERL_REVISION"><CODE>PERL_REVISION</CODE></A>.</P>
  4380. <P></P>
  4381. <DT><STRONG><A NAME="item_rm"><CODE>rm</CODE></A></STRONG><BR>
  4382. <DD>
  4383. From <EM>Loc.U</EM>:
  4384. <P>This variable is used internally by Configure to determine the
  4385. full pathname (if any) of the rm program.  After Configure runs,
  4386. the value is reset to a plain <A HREF="#item_rm"><CODE>rm</CODE></A> and is not useful.</P>
  4387. <P></P>
  4388. <DT><STRONG><A NAME="item_rmail"><CODE>rmail</CODE></A></STRONG><BR>
  4389. <DD>
  4390. From <EM>Loc.U</EM>:
  4391. <P>This variable is defined but not used by Configure.
  4392. The value is a plain '' and is not useful.</P>
  4393. <P></P>
  4394. <DT><STRONG><A NAME="item_runnm"><CODE>runnm</CODE></A></STRONG><BR>
  4395. <DD>
  4396. From <EM>usenm.U</EM>:
  4397. <P>This variable contains <CODE>true</CODE> or <CODE>false</CODE> depending whether the
  4398. nm extraction should be performed or not, according to the value
  4399. of usenm and the flags on the Configure command line.</P>
  4400. <P></P></DL>
  4401. <P>
  4402. <H2><A NAME="s">s</A></H2>
  4403. <DL>
  4404. <DT><STRONG><A NAME="item_sched_yield"><CODE>sched_yield</CODE></A></STRONG><BR>
  4405. <DD>
  4406. From <EM>d_pthread_y.U</EM>:
  4407. <P>This variable defines the way to yield the execution
  4408. of the current thread.</P>
  4409. <P></P>
  4410. <DT><STRONG><A NAME="item_scriptdir"><CODE>scriptdir</CODE></A></STRONG><BR>
  4411. <DD>
  4412. From <EM>scriptdir.U</EM>:
  4413. <P>This variable holds the name of the directory in which the user wants
  4414. to put publicly scripts for the package in question.  It is either
  4415. the same directory as for binaries, or a special one that can be
  4416. mounted across different architectures, like <EM>/usr/share</EM>. Programs
  4417. must be prepared to deal with <EM>~name</EM> expansion.</P>
  4418. <P></P>
  4419. <DT><STRONG><A NAME="item_scriptdirexp"><CODE>scriptdirexp</CODE></A></STRONG><BR>
  4420. <DD>
  4421. From <EM>scriptdir.U</EM>:
  4422. <P>This variable is the same as scriptdir, but is filename expanded
  4423. at configuration time, for programs not wanting to bother with it.</P>
  4424. <P></P>
  4425. <DT><STRONG><A NAME="item_sed"><CODE>sed</CODE></A></STRONG><BR>
  4426. <DD>
  4427. From <EM>Loc.U</EM>:
  4428. <P>This variable is used internally by Configure to determine the
  4429. full pathname (if any) of the sed program.  After Configure runs,
  4430. the value is reset to a plain <A HREF="#item_sed"><CODE>sed</CODE></A> and is not useful.</P>
  4431. <P></P>
  4432. <DT><STRONG><A NAME="item_seedfunc"><CODE>seedfunc</CODE></A></STRONG><BR>
  4433. <DD>
  4434. From <EM>randfunc.U</EM>:
  4435. <P>Indicates the random number generating seed function.
  4436. Values include srand48, srandom, and srand.</P>
  4437. <P></P>
  4438. <DT><STRONG><A NAME="item_selectminbits"><CODE>selectminbits</CODE></A></STRONG><BR>
  4439. <DD>
  4440. From <EM>selectminbits.U</EM>:
  4441. <P>This variable holds the minimum number of bits operated by select.
  4442. That is, if you do select(n, ...), how many bits at least will be
  4443. cleared in the masks if some activity is detected.  Usually this
  4444. is either n or 32*ceil(<EM>n/32</EM>), especially many little-endians do
  4445. the latter.  This is only useful if you have select(), naturally.</P>
  4446. <P></P>
  4447. <DT><STRONG><A NAME="item_selecttype"><CODE>selecttype</CODE></A></STRONG><BR>
  4448. <DD>
  4449. From <EM>selecttype.U</EM>:
  4450. <P>This variable holds the type used for the 2nd, 3rd, and 4th
  4451. arguments to select.  Usually, this is <CODE>fd_set *</CODE>, if <CODE>HAS_FD_SET</CODE>
  4452. is defined, and <CODE>int *</CODE> otherwise.  This is only useful if you 
  4453. have select(), naturally.</P>
  4454. <P></P>
  4455. <DT><STRONG><A NAME="item_sendmail"><CODE>sendmail</CODE></A></STRONG><BR>
  4456. <DD>
  4457. From <EM>Loc.U</EM>:
  4458. <P>This variable is defined but not used by Configure.
  4459. The value is a plain '' and is not useful.</P>
  4460. <P></P>
  4461. <DT><STRONG><A NAME="item_sh"><CODE>sh</CODE></A></STRONG><BR>
  4462. <DD>
  4463. From <EM>sh.U</EM>:
  4464. <P>This variable contains the full pathname of the shell used
  4465. on this system to execute Bourne shell scripts.  Usually, this will be
  4466. <EM>/bin/sh</EM>, though it's possible that some systems will have <EM>/bin/ksh</EM>,
  4467. <EM>/bin/pdksh</EM>, <EM>/bin/ash</EM>, <EM>/bin/bash</EM>, or even something such as
  4468. D:<EM>/bin/sh.exe</EM>.
  4469. This unit comes before <EM>Options.U</EM>, so you can't set sh with a <CODE>-D</CODE>
  4470. option, though you can override this (and startsh)
  4471. with <CODE>-O -Dsh=/bin/whatever -Dstartsh=whatever</CODE></P>
  4472. <P></P>
  4473. <DT><STRONG><A NAME="item_shar"><CODE>shar</CODE></A></STRONG><BR>
  4474. <DD>
  4475. From <EM>Loc.U</EM>:
  4476. <P>This variable is defined but not used by Configure.
  4477. The value is a plain '' and is not useful.</P>
  4478. <P></P>
  4479. <DT><STRONG><A NAME="item_sharpbang"><CODE>sharpbang</CODE></A></STRONG><BR>
  4480. <DD>
  4481. From <EM>spitshell.U</EM>:
  4482. <P>This variable contains the string #! if this system supports that
  4483. construct.</P>
  4484. <P></P>
  4485. <DT><STRONG><A NAME="item_shmattype"><CODE>shmattype</CODE></A></STRONG><BR>
  4486. <DD>
  4487. From <EM>d_shmat.U</EM>:
  4488. <P>This symbol contains the type of pointer returned by shmat().
  4489. It can be <CODE>void *</CODE> or <CODE>char *</CODE>.</P>
  4490. <P></P>
  4491. <DT><STRONG><A NAME="item_shortsize"><CODE>shortsize</CODE></A></STRONG><BR>
  4492. <DD>
  4493. From <EM>intsize.U</EM>:
  4494. <P>This variable contains the value of the <CODE>SHORTSIZE</CODE> symbol which
  4495. indicates to the C program how many bytes there are in a short.</P>
  4496. <P></P>
  4497. <DT><STRONG><A NAME="item_shrpenv"><CODE>shrpenv</CODE></A></STRONG><BR>
  4498. <DD>
  4499. From <EM>libperl.U</EM>:
  4500. <P>If the user builds a shared <EM>libperl.so</EM>, then we need to tell the
  4501. <A HREF="#item_perl"><CODE>perl</CODE></A> executable where it will be able to find the installed <EM>libperl.so</EM>. 
  4502. One way to do this on some systems is to set the environment variable
  4503. <CODE>LD_RUN_PATH</CODE> to the directory that will be the final location of the
  4504. shared <EM>libperl.so</EM>.  The makefile can use this with something like
  4505. $shrpenv $(<CODE>CC</CODE>) -o perl <EM>perlmain.o</EM> $libperl $libs
  4506. Typical values are
  4507. shrpenv=``env <CODE>LD_RUN_PATH</CODE>=$<EM>archlibexp/<CODE>CORE</CODE></EM>''
  4508. or
  4509. shrpenv=''
  4510. See the main perl <EM>Makefile.SH</EM> for actual working usage.
  4511. Alternatively, we might be able to use a command line option such
  4512. as -R $<EM>archlibexp/<CODE>CORE</CODE></EM> (Solaris, NetBSD) or -Wl,-rpath
  4513. $<EM>archlibexp/<CODE>CORE</CODE></EM> (Linux).</P>
  4514. <P></P>
  4515. <DT><STRONG><A NAME="item_shsharp"><CODE>shsharp</CODE></A></STRONG><BR>
  4516. <DD>
  4517. From <EM>spitshell.U</EM>:
  4518. <P>This variable tells further Configure units whether your sh can
  4519. handle # comments.</P>
  4520. <P></P>
  4521. <DT><STRONG><A NAME="item_sig_count"><CODE>sig_count</CODE></A></STRONG><BR>
  4522. <DD>
  4523. From <EM>sig_name.U</EM>:
  4524. <P>This variable holds a number larger than the largest valid
  4525. signal number.  This is usually the same as the <CODE>NSIG</CODE> macro.</P>
  4526. <P></P>
  4527. <DT><STRONG><A NAME="item_sig_name"><CODE>sig_name</CODE></A></STRONG><BR>
  4528. <DD>
  4529. From <EM>sig_name.U</EM>:
  4530. <P>This variable holds the signal names, space separated. The leading
  4531. <CODE>SIG</CODE> in signal name is removed.  A <CODE>ZERO</CODE> is prepended to the
  4532. list.  This is currently not used.</P>
  4533. <P></P>
  4534. <DT><STRONG><A NAME="item_sig_name_init"><CODE>sig_name_init</CODE></A></STRONG><BR>
  4535. <DD>
  4536. From <EM>sig_name.U</EM>:
  4537. <P>This variable holds the signal names, enclosed in double quotes and
  4538. separated by commas, suitable for use in the <CODE>SIG_NAME</CODE> definition 
  4539. below.  A <CODE>ZERO</CODE> is prepended to the list, and the list is 
  4540. terminated with a plain 0.  The leading <CODE>SIG</CODE> in signal names
  4541. is removed. See sig_num.</P>
  4542. <P></P>
  4543. <DT><STRONG><A NAME="item_sig_num"><CODE>sig_num</CODE></A></STRONG><BR>
  4544. <DD>
  4545. From <EM>sig_name.U</EM>:
  4546. <P>This variable holds the signal numbers, space separated. A <CODE>ZERO</CODE> is
  4547. prepended to the list (corresponding to the fake <CODE>SIGZERO</CODE>), and 
  4548. the list is terminated with a 0.  Those numbers correspond to 
  4549. the value of the signal listed in the same place within the
  4550. sig_name list.</P>
  4551. <P></P>
  4552. <DT><STRONG><A NAME="item_sig_num_init"><CODE>sig_num_init</CODE></A></STRONG><BR>
  4553. <DD>
  4554. From <EM>sig_name.U</EM>:
  4555. <P>This variable holds the signal numbers, enclosed in double quotes and
  4556. separated by commas, suitable for use in the <CODE>SIG_NUM</CODE> definition 
  4557. below.  A <CODE>ZERO</CODE> is prepended to the list, and the list is 
  4558. terminated with a plain 0.</P>
  4559. <P></P>
  4560. <DT><STRONG><A NAME="item_signal_t"><CODE>signal_t</CODE></A></STRONG><BR>
  4561. <DD>
  4562. From <EM>d_voidsig.U</EM>:
  4563. <P>This variable holds the type of the signal handler (void or int).</P>
  4564. <P></P>
  4565. <DT><STRONG><A NAME="item_sitearch"><CODE>sitearch</CODE></A></STRONG><BR>
  4566. <DD>
  4567. From <EM>sitearch.U</EM>:
  4568. <P>This variable contains the eventual value of the <CODE>SITEARCH</CODE> symbol,
  4569. which is the name of the private library for this package.  It may
  4570. have a <EM>~</EM> on the front. It is up to the makefile to eventually create
  4571. this directory while performing installation (with <EM>~</EM> substitution).
  4572. The standard distribution will put nothing in this directory.
  4573. After perl has been installed, users may install their own local
  4574. architecture-dependent modules in this directory with
  4575. MakeMaker <EM>Makefile.PL</EM>
  4576. or equivalent.  See <CODE>INSTALL</CODE> for details.</P>
  4577. <P></P>
  4578. <DT><STRONG><A NAME="item_sitearchexp"><CODE>sitearchexp</CODE></A></STRONG><BR>
  4579. <DD>
  4580. From <EM>sitearch.U</EM>:
  4581. <P>This variable is the <EM>~name</EM> expanded version of sitearch, so that you
  4582. may use it directly in Makefiles or shell scripts.</P>
  4583. <P></P>
  4584. <DT><STRONG><A NAME="item_sitebin"><CODE>sitebin</CODE></A></STRONG><BR>
  4585. <DD>
  4586. From <EM>sitebin.U</EM>:
  4587. <P>This variable holds the name of the directory in which the user wants
  4588. to put add-on publicly executable files for the package in question.  It
  4589. is most often a local directory such as <EM>/usr/local/bin</EM>. Programs using
  4590. this variable must be prepared to deal with <EM>~name</EM> substitution.
  4591. The standard distribution will put nothing in this directory.
  4592. After perl has been installed, users may install their own local
  4593. executables in this directory with
  4594. MakeMaker <EM>Makefile.PL</EM>
  4595. or equivalent.  See <CODE>INSTALL</CODE> for details.</P>
  4596. <P></P>
  4597. <DT><STRONG><A NAME="item_sitebinexp"><CODE>sitebinexp</CODE></A></STRONG><BR>
  4598. <DD>
  4599. From <EM>sitebin.U</EM>:
  4600. <P>This is the same as the sitebin variable, but is filename expanded at
  4601. configuration time, for use in your makefiles.</P>
  4602. <P></P>
  4603. <DT><STRONG><A NAME="item_sitelib"><CODE>sitelib</CODE></A></STRONG><BR>
  4604. <DD>
  4605. From <EM>sitelib.U</EM>:
  4606. <P>This variable contains the eventual value of the <CODE>SITELIB</CODE> symbol,
  4607. which is the name of the private library for this package.  It may
  4608. have a <EM>~</EM> on the front. It is up to the makefile to eventually create
  4609. this directory while performing installation (with <EM>~</EM> substitution).
  4610. The standard distribution will put nothing in this directory.
  4611. After perl has been installed, users may install their own local
  4612. architecture-independent modules in this directory with
  4613. MakeMaker <EM>Makefile.PL</EM>
  4614. or equivalent.  See <CODE>INSTALL</CODE> for details.</P>
  4615. <P></P>
  4616. <DT><STRONG><A NAME="item_sitelib_stem"><CODE>sitelib_stem</CODE></A></STRONG><BR>
  4617. <DD>
  4618. From <EM>sitelib.U</EM>:
  4619. <P>This variable is $sitelibexp with any trailing version-specific component
  4620. removed.  The elements in inc_version_list (<EM>inc_version_list.U</EM>) can
  4621. be tacked onto this variable to generate a list of directories to search.</P>
  4622. <P></P>
  4623. <DT><STRONG><A NAME="item_sitelibexp"><CODE>sitelibexp</CODE></A></STRONG><BR>
  4624. <DD>
  4625. From <EM>sitelib.U</EM>:
  4626. <P>This variable is the <EM>~name</EM> expanded version of sitelib, so that you
  4627. may use it directly in Makefiles or shell scripts.</P>
  4628. <P></P>
  4629. <DT><STRONG><A NAME="item_siteprefix"><CODE>siteprefix</CODE></A></STRONG><BR>
  4630. <DD>
  4631. From <EM>siteprefix.U</EM>:
  4632. <P>This variable holds the full absolute path of the directory below
  4633. which the user will install add-on packages.
  4634. See <CODE>INSTALL</CODE> for usage and examples.</P>
  4635. <P></P>
  4636. <DT><STRONG><A NAME="item_siteprefixexp"><CODE>siteprefixexp</CODE></A></STRONG><BR>
  4637. <DD>
  4638. From <EM>siteprefix.U</EM>:
  4639. <P>This variable holds the full absolute path of the directory below
  4640. which the user will install add-on packages.  Derived from siteprefix.</P>
  4641. <P></P>
  4642. <DT><STRONG><A NAME="item_sizesize"><CODE>sizesize</CODE></A></STRONG><BR>
  4643. <DD>
  4644. From <EM>sizesize.U</EM>:
  4645. <P>This variable contains the size of a sizetype in bytes.</P>
  4646. <P></P>
  4647. <DT><STRONG><A NAME="item_sizetype"><CODE>sizetype</CODE></A></STRONG><BR>
  4648. <DD>
  4649. From <EM>sizetype.U</EM>:
  4650. <P>This variable defines sizetype to be something like size_t, 
  4651. unsigned long, or whatever type is used to declare length 
  4652. parameters for string functions.</P>
  4653. <P></P>
  4654. <DT><STRONG><A NAME="item_sleep"><CODE>sleep</CODE></A></STRONG><BR>
  4655. <DD>
  4656. From <EM>Loc.U</EM>:
  4657. <P>This variable is defined but not used by Configure.
  4658. The value is a plain '' and is not useful.</P>
  4659. <P></P>
  4660. <DT><STRONG><A NAME="item_smail"><CODE>smail</CODE></A></STRONG><BR>
  4661. <DD>
  4662. From <EM>Loc.U</EM>:
  4663. <P>This variable is defined but not used by Configure.
  4664. The value is a plain '' and is not useful.</P>
  4665. <P></P>
  4666. <DT><STRONG><A NAME="item_small"><CODE>small</CODE></A></STRONG><BR>
  4667. <DD>
  4668. From <EM>models.U</EM>:
  4669. <P>This variable contains a flag which will tell the C compiler and loader
  4670. to produce a program running with a small memory model.  It is up to
  4671. the Makefile to use this.</P>
  4672. <P></P>
  4673. <DT><STRONG><A NAME="item_so"><CODE>so</CODE></A></STRONG><BR>
  4674. <DD>
  4675. From <EM>so.U</EM>:
  4676. <P>This variable holds the extension used to identify shared libraries
  4677. (also known as shared objects) on the system. Usually set to <A HREF="#item_so"><CODE>so</CODE></A>.</P>
  4678. <P></P>
  4679. <DT><STRONG><A NAME="item_sockethdr"><CODE>sockethdr</CODE></A></STRONG><BR>
  4680. <DD>
  4681. From <EM>d_socket.U</EM>:
  4682. <P>This variable has any cpp <CODE>-I</CODE> flags needed for socket support.</P>
  4683. <P></P>
  4684. <DT><STRONG><A NAME="item_socketlib"><CODE>socketlib</CODE></A></STRONG><BR>
  4685. <DD>
  4686. From <EM>d_socket.U</EM>:
  4687. <P>This variable has the names of any libraries needed for socket support.</P>
  4688. <P></P>
  4689. <DT><STRONG><A NAME="item_socksizetype"><CODE>socksizetype</CODE></A></STRONG><BR>
  4690. <DD>
  4691. From <EM>socksizetype.U</EM>:
  4692. <P>This variable holds the type used for the size argument
  4693. for various socket calls like accept.  Usual values include
  4694. socklen_t, size_t, and int.</P>
  4695. <P></P>
  4696. <DT><STRONG><A NAME="item_sort"><CODE>sort</CODE></A></STRONG><BR>
  4697. <DD>
  4698. From <EM>Loc.U</EM>:
  4699. <P>This variable is used internally by Configure to determine the
  4700. full pathname (if any) of the sort program.  After Configure runs,
  4701. the value is reset to a plain <A HREF="#item_sort"><CODE>sort</CODE></A> and is not useful.</P>
  4702. <P></P>
  4703. <DT><STRONG><A NAME="item_spackage"><CODE>spackage</CODE></A></STRONG><BR>
  4704. <DD>
  4705. From <EM>package.U</EM>:
  4706. <P>This variable contains the name of the package being constructed,
  4707. with the first letter uppercased, <EM>i.e</EM>. suitable for starting
  4708. sentences.</P>
  4709. <P></P>
  4710. <DT><STRONG><A NAME="item_spitshell"><CODE>spitshell</CODE></A></STRONG><BR>
  4711. <DD>
  4712. From <EM>spitshell.U</EM>:
  4713. <P>This variable contains the command necessary to spit out a runnable
  4714. shell on this system.  It is either cat or a grep <CODE>-v</CODE> for # comments.</P>
  4715. <P></P>
  4716. <DT><STRONG><A NAME="item_split"><CODE>split</CODE></A></STRONG><BR>
  4717. <DD>
  4718. From <EM>models.U</EM>:
  4719. <P>This variable contains a flag which will tell the C compiler and loader
  4720. to produce a program that will run in separate I and D space, for those
  4721. machines that support separation of instruction and data space.  It is
  4722. up to the Makefile to use this.</P>
  4723. <P></P>
  4724. <DT><STRONG><A NAME="item_sPRId64"><CODE>sPRId64</CODE></A></STRONG><BR>
  4725. <DD>
  4726. From <EM>quadfio.U</EM>:
  4727. <P>This variable, if defined, contains the string used by stdio to
  4728. format 64-bit decimal numbers (format <CODE>d</CODE>) for output.</P>
  4729. <P></P>
  4730. <DT><STRONG><A NAME="item_sPRIeldbl"><CODE>sPRIeldbl</CODE></A></STRONG><BR>
  4731. <DD>
  4732. From <EM>longdblfio.U</EM>:
  4733. <P>This variable, if defined, contains the string used by stdio to
  4734. format long doubles (format <CODE>e</CODE>) for output.</P>
  4735. <P></P>
  4736. <DT><STRONG><A NAME="item_sPRIEldbl"><CODE>sPRIEldbl</CODE></A></STRONG><BR>
  4737. <DD>
  4738. From <EM>longdblfio.U</EM>:
  4739. <P>This variable, if defined, contains the string used by stdio to
  4740. format long doubles (format <CODE>E</CODE>) for output.</P>
  4741. <P></P>
  4742. <DT><STRONG><A NAME="item_sPRIfldbl"><CODE>sPRIfldbl</CODE></A></STRONG><BR>
  4743. <DD>
  4744. From <EM>longdblfio.U</EM>:
  4745. <P>This variable, if defined, contains the string used by stdio to
  4746. format long doubles (format <CODE>f</CODE>) for output.</P>
  4747. <P></P>
  4748. <DT><STRONG><A NAME="item_sPRIFldbl"><CODE>sPRIFldbl</CODE></A></STRONG><BR>
  4749. <DD>
  4750. From <EM>longdblfio.U</EM>:
  4751. <P>This variable, if defined, contains the string used by stdio to
  4752. format long doubles (format <CODE>F</CODE>) for output.</P>
  4753. <P></P>
  4754. <DT><STRONG><A NAME="item_sPRIgldbl"><CODE>sPRIgldbl</CODE></A></STRONG><BR>
  4755. <DD>
  4756. From <EM>longdblfio.U</EM>:
  4757. <P>This variable, if defined, contains the string used by stdio to
  4758. format long doubles (format <CODE>g</CODE>) for output.</P>
  4759. <P></P>
  4760. <DT><STRONG><A NAME="item_sPRIGldbl"><CODE>sPRIGldbl</CODE></A></STRONG><BR>
  4761. <DD>
  4762. From <EM>longdblfio.U</EM>:
  4763. <P>This variable, if defined, contains the string used by stdio to
  4764. format long doubles (format <CODE>G</CODE>) for output.</P>
  4765. <P></P>
  4766. <DT><STRONG><A NAME="item_sPRIi64"><CODE>sPRIi64</CODE></A></STRONG><BR>
  4767. <DD>
  4768. From <EM>quadfio.U</EM>:
  4769. <P>This variable, if defined, contains the string used by stdio to
  4770. format 64-bit decimal numbers (format <CODE>i</CODE>) for output.</P>
  4771. <P></P>
  4772. <DT><STRONG><A NAME="item_sPRIo64"><CODE>sPRIo64</CODE></A></STRONG><BR>
  4773. <DD>
  4774. From <EM>quadfio.U</EM>:
  4775. <P>This variable, if defined, contains the string used by stdio to
  4776. format 64-bit octal numbers (format <CODE>o</CODE>) for output.</P>
  4777. <P></P>
  4778. <DT><STRONG><A NAME="item_sPRIu64"><CODE>sPRIu64</CODE></A></STRONG><BR>
  4779. <DD>
  4780. From <EM>quadfio.U</EM>:
  4781. <P>This variable, if defined, contains the string used by stdio to
  4782. format 64-bit unsigned decimal numbers (format <CODE>u</CODE>) for output.</P>
  4783. <P></P>
  4784. <DT><STRONG><A NAME="item_sPRIx64"><CODE>sPRIx64</CODE></A></STRONG><BR>
  4785. <DD>
  4786. From <EM>quadfio.U</EM>:
  4787. <P>This variable, if defined, contains the string used by stdio to
  4788. format 64-bit hexadecimal numbers (format <CODE>x</CODE>) for output.</P>
  4789. <P></P>
  4790. <DT><STRONG><A NAME="item_sPRIX64"><CODE>sPRIX64</CODE></A></STRONG><BR>
  4791. <DD>
  4792. From <EM>quadfio.U</EM>:
  4793. <P>This variable, if defined, contains the string used by stdio to
  4794. format 64-bit hExADECimAl numbers (format <CODE>X</CODE>) for output.</P>
  4795. <P></P>
  4796. <DT><STRONG><A NAME="item_src"><CODE>src</CODE></A></STRONG><BR>
  4797. <DD>
  4798. From <EM>src.U</EM>:
  4799. <P>This variable holds the path to the package source. It is up to
  4800. the Makefile to use this variable and set <CODE>VPATH</CODE> accordingly to
  4801. find the sources remotely.</P>
  4802. <P></P>
  4803. <DT><STRONG><A NAME="item_ssizetype"><CODE>ssizetype</CODE></A></STRONG><BR>
  4804. <DD>
  4805. From <EM>ssizetype.U</EM>:
  4806. <P>This variable defines ssizetype to be something like ssize_t, 
  4807. long or int.  It is used by functions that return a count 
  4808. of bytes or an error condition.  It must be a signed type.
  4809. We will pick a type such that <CODE>sizeof(SSize_t)</CODE> == sizeof(Size_t).</P>
  4810. <P></P>
  4811. <DT><STRONG><A NAME="item_startperl"><CODE>startperl</CODE></A></STRONG><BR>
  4812. <DD>
  4813. From <EM>startperl.U</EM>:
  4814. <P>This variable contains the string to put on the front of a perl
  4815. script to make sure (hopefully) that it runs with perl and not some
  4816. shell. Of course, that leading line must be followed by the classical
  4817. perl idiom:
  4818. eval 'exec perl -S $0 ${1+<CODE>$@</CODE>}'
  4819. if $running_under_some_shell;
  4820. to guarantee perl startup should the shell execute the script. Note
  4821. that this magic incatation is not understood by csh.</P>
  4822. <P></P>
  4823. <DT><STRONG><A NAME="item_startsh"><CODE>startsh</CODE></A></STRONG><BR>
  4824. <DD>
  4825. From <EM>startsh.U</EM>:
  4826. <P>This variable contains the string to put on the front of a shell
  4827. script to make sure (hopefully) that it runs with sh and not some
  4828. other shell.</P>
  4829. <P></P>
  4830. <DT><STRONG><A NAME="item_static_ext"><CODE>static_ext</CODE></A></STRONG><BR>
  4831. <DD>
  4832. From <EM>Extensions.U</EM>:
  4833. <P>This variable holds a list of <CODE>XS</CODE> extension files we want to
  4834. link statically into the package.  It is used by Makefile.</P>
  4835. <P></P>
  4836. <DT><STRONG><A NAME="item_stdchar"><CODE>stdchar</CODE></A></STRONG><BR>
  4837. <DD>
  4838. From <EM>stdchar.U</EM>:
  4839. <P>This variable conditionally defines <CODE>STDCHAR</CODE> to be the type of char
  4840. used in <EM>stdio.h</EM>.  It has the values ``unsigned char'' or <CODE>char</CODE>.</P>
  4841. <P></P>
  4842. <DT><STRONG><A NAME="item_stdio_base"><CODE>stdio_base</CODE></A></STRONG><BR>
  4843. <DD>
  4844. From <EM>d_stdstdio.U</EM>:
  4845. <P>This variable defines how, given a <CODE>FILE</CODE> pointer, fp, to access the
  4846. _base field (or equivalent) of <EM>stdio.h</EM>'s <CODE>FILE</CODE> structure.  This will
  4847. be used to define the macro FILE_base(fp).</P>
  4848. <P></P>
  4849. <DT><STRONG><A NAME="item_stdio_bufsiz"><CODE>stdio_bufsiz</CODE></A></STRONG><BR>
  4850. <DD>
  4851. From <EM>d_stdstdio.U</EM>:
  4852. <P>This variable defines how, given a <CODE>FILE</CODE> pointer, fp, to determine
  4853. the number of bytes store in the <EM>I/O</EM> buffer pointer to by the
  4854. _base field (or equivalent) of <EM>stdio.h</EM>'s <CODE>FILE</CODE> structure.  This will
  4855. be used to define the macro FILE_bufsiz(fp).</P>
  4856. <P></P>
  4857. <DT><STRONG><A NAME="item_stdio_cnt"><CODE>stdio_cnt</CODE></A></STRONG><BR>
  4858. <DD>
  4859. From <EM>d_stdstdio.U</EM>:
  4860. <P>This variable defines how, given a <CODE>FILE</CODE> pointer, fp, to access the
  4861. _cnt field (or equivalent) of <EM>stdio.h</EM>'s <CODE>FILE</CODE> structure.  This will
  4862. be used to define the macro FILE_cnt(fp).</P>
  4863. <P></P>
  4864. <DT><STRONG><A NAME="item_stdio_filbuf"><CODE>stdio_filbuf</CODE></A></STRONG><BR>
  4865. <DD>
  4866. From <EM>d_stdstdio.U</EM>:
  4867. <P>This variable defines how, given a <CODE>FILE</CODE> pointer, fp, to tell
  4868. stdio to refill it's internal buffers (?).  This will
  4869. be used to define the macro FILE_filbuf(fp).</P>
  4870. <P></P>
  4871. <DT><STRONG><A NAME="item_stdio_ptr"><CODE>stdio_ptr</CODE></A></STRONG><BR>
  4872. <DD>
  4873. From <EM>d_stdstdio.U</EM>:
  4874. <P>This variable defines how, given a <CODE>FILE</CODE> pointer, fp, to access the
  4875. _ptr field (or equivalent) of <EM>stdio.h</EM>'s <CODE>FILE</CODE> structure.  This will
  4876. be used to define the macro FILE_ptr(fp).</P>
  4877. <P></P>
  4878. <DT><STRONG><A NAME="item_stdio_stream_array"><CODE>stdio_stream_array</CODE></A></STRONG><BR>
  4879. <DD>
  4880. From <EM>stdio_streams.U</EM>:
  4881. <P>This variable tells the name of the array holding the stdio streams.
  4882. Usual values include _iob, __iob, and __sF.</P>
  4883. <P></P>
  4884. <DT><STRONG><A NAME="item_strings"><CODE>strings</CODE></A></STRONG><BR>
  4885. <DD>
  4886. From <EM>i_string.U</EM>:
  4887. <P>This variable holds the full path of the string header that will be
  4888. used. Typically <EM>/usr/include/string.h</EM> or <EM>/usr/include/strings.h</EM>.</P>
  4889. <P></P>
  4890. <DT><STRONG><A NAME="item_submit"><CODE>submit</CODE></A></STRONG><BR>
  4891. <DD>
  4892. From <EM>Loc.U</EM>:
  4893. <P>This variable is defined but not used by Configure.
  4894. The value is a plain '' and is not useful.</P>
  4895. <P></P>
  4896. <DT><STRONG><A NAME="item_subversion"><CODE>subversion</CODE></A></STRONG><BR>
  4897. <DD>
  4898. From <EM>patchlevel.U</EM>:
  4899. <P>The subversion level of this package.
  4900. The value of subversion comes from the <EM>patchlevel.h</EM> file.
  4901. In a version number such as 5.6.1, this is the <CODE>1</CODE>.
  4902. In <EM>patchlevel.h</EM>, this is referred to as <A HREF="#item_PERL_SUBVERSION"><CODE>PERL_SUBVERSION</CODE></A>.
  4903. This is unique to perl.</P>
  4904. <P></P>
  4905. <DT><STRONG><A NAME="item_sysman"><CODE>sysman</CODE></A></STRONG><BR>
  4906. <DD>
  4907. From <EM>sysman.U</EM>:
  4908. <P>This variable holds the place where the manual is located on this
  4909. system. It is not the place where the user wants to put his manual
  4910. pages. Rather it is the place where Configure may look to find manual
  4911. for unix commands (section 1 of the manual usually). See mansrc.</P>
  4912. <P></P></DL>
  4913. <P>
  4914. <H2><A NAME="t">t</A></H2>
  4915. <DL>
  4916. <DT><STRONG><A NAME="item_tail"><CODE>tail</CODE></A></STRONG><BR>
  4917. <DD>
  4918. From <EM>Loc.U</EM>:
  4919. <P>This variable is defined but not used by Configure.
  4920. The value is a plain '' and is not useful.</P>
  4921. <P></P>
  4922. <DT><STRONG><A NAME="item_tar"><CODE>tar</CODE></A></STRONG><BR>
  4923. <DD>
  4924. From <EM>Loc.U</EM>:
  4925. <P>This variable is defined but not used by Configure.
  4926. The value is a plain '' and is not useful.</P>
  4927. <P></P>
  4928. <DT><STRONG><A NAME="item_tbl"><CODE>tbl</CODE></A></STRONG><BR>
  4929. <DD>
  4930. From <EM>Loc.U</EM>:
  4931. <P>This variable is defined but not used by Configure.
  4932. The value is a plain '' and is not useful.</P>
  4933. <P></P>
  4934. <DT><STRONG><A NAME="item_tee"><CODE>tee</CODE></A></STRONG><BR>
  4935. <DD>
  4936. From <EM>Loc.U</EM>:
  4937. <P>This variable is defined but not used by Configure.
  4938. The value is a plain '' and is not useful.</P>
  4939. <P></P>
  4940. <DT><STRONG><A NAME="item_test"><CODE>test</CODE></A></STRONG><BR>
  4941. <DD>
  4942. From <EM>Loc.U</EM>:
  4943. <P>This variable is used internally by Configure to determine the
  4944. full pathname (if any) of the test program.  After Configure runs,
  4945. the value is reset to a plain <A HREF="#item_test"><CODE>test</CODE></A> and is not useful.</P>
  4946. <P></P>
  4947. <DT><STRONG><A NAME="item_timeincl"><CODE>timeincl</CODE></A></STRONG><BR>
  4948. <DD>
  4949. From <EM>i_time.U</EM>:
  4950. <P>This variable holds the full path of the included time header(s).</P>
  4951. <P></P>
  4952. <DT><STRONG><A NAME="item_timetype"><CODE>timetype</CODE></A></STRONG><BR>
  4953. <DD>
  4954. From <EM>d_time.U</EM>:
  4955. <P>This variable holds the type returned by time(). It can be long,
  4956. or time_t on <CODE>BSD</CODE> sites (in which case <sys/types.h> should be
  4957. included). Anyway, the type Time_t should be used.</P>
  4958. <P></P>
  4959. <DT><STRONG><A NAME="item_touch"><CODE>touch</CODE></A></STRONG><BR>
  4960. <DD>
  4961. From <EM>Loc.U</EM>:
  4962. <P>This variable is used internally by Configure to determine the
  4963. full pathname (if any) of the touch program.  After Configure runs,
  4964. the value is reset to a plain <A HREF="#item_touch"><CODE>touch</CODE></A> and is not useful.</P>
  4965. <P></P>
  4966. <DT><STRONG><A NAME="item_tr"><CODE>tr</CODE></A></STRONG><BR>
  4967. <DD>
  4968. From <EM>Loc.U</EM>:
  4969. <P>This variable is used internally by Configure to determine the
  4970. full pathname (if any) of the tr program.  After Configure runs,
  4971. the value is reset to a plain <A HREF="#item_tr"><CODE>tr</CODE></A> and is not useful.</P>
  4972. <P></P>
  4973. <DT><STRONG><A NAME="item_trnl"><CODE>trnl</CODE></A></STRONG><BR>
  4974. <DD>
  4975. From <EM>trnl.U</EM>:
  4976. <P>This variable contains the value to be passed to the <A HREF="#item_tr"><CODE>tr(1)</CODE></A>
  4977. command to transliterate a newline.  Typical values are
  4978. <CODE>\012</CODE> and <CODE>\n</CODE>.  This is needed for <CODE>EBCDIC</CODE> systems where
  4979. newline is not necessarily <CODE>\012</CODE>.</P>
  4980. <P></P>
  4981. <DT><STRONG><A NAME="item_troff"><CODE>troff</CODE></A></STRONG><BR>
  4982. <DD>
  4983. From <EM>Loc.U</EM>:
  4984. <P>This variable is defined but not used by Configure.
  4985. The value is a plain '' and is not useful.</P>
  4986. <P></P></DL>
  4987. <P>
  4988. <H2><A NAME="u">u</A></H2>
  4989. <DL>
  4990. <DT><STRONG><A NAME="item_u16size"><CODE>u16size</CODE></A></STRONG><BR>
  4991. <DD>
  4992. From <EM>perlxv.U</EM>:
  4993. <P>This variable is the size of an U16 in bytes.</P>
  4994. <P></P>
  4995. <DT><STRONG><A NAME="item_u16type"><CODE>u16type</CODE></A></STRONG><BR>
  4996. <DD>
  4997. From <EM>perlxv.U</EM>:
  4998. <P>This variable contains the C type used for Perl's U16.</P>
  4999. <P></P>
  5000. <DT><STRONG><A NAME="item_u32size"><CODE>u32size</CODE></A></STRONG><BR>
  5001. <DD>
  5002. From <EM>perlxv.U</EM>:
  5003. <P>This variable is the size of an U32 in bytes.</P>
  5004. <P></P>
  5005. <DT><STRONG><A NAME="item_u32type"><CODE>u32type</CODE></A></STRONG><BR>
  5006. <DD>
  5007. From <EM>perlxv.U</EM>:
  5008. <P>This variable contains the C type used for Perl's U32.</P>
  5009. <P></P>
  5010. <DT><STRONG><A NAME="item_u64size"><CODE>u64size</CODE></A></STRONG><BR>
  5011. <DD>
  5012. From <EM>perlxv.U</EM>:
  5013. <P>This variable is the size of an U64 in bytes.</P>
  5014. <P></P>
  5015. <DT><STRONG><A NAME="item_u64type"><CODE>u64type</CODE></A></STRONG><BR>
  5016. <DD>
  5017. From <EM>perlxv.U</EM>:
  5018. <P>This variable contains the C type used for Perl's U64.</P>
  5019. <P></P>
  5020. <DT><STRONG><A NAME="item_u8size"><CODE>u8size</CODE></A></STRONG><BR>
  5021. <DD>
  5022. From <EM>perlxv.U</EM>:
  5023. <P>This variable is the size of an U8 in bytes.</P>
  5024. <P></P>
  5025. <DT><STRONG><A NAME="item_u8type"><CODE>u8type</CODE></A></STRONG><BR>
  5026. <DD>
  5027. From <EM>perlxv.U</EM>:
  5028. <P>This variable contains the C type used for Perl's U8.</P>
  5029. <P></P>
  5030. <DT><STRONG><A NAME="item_uidformat"><CODE>uidformat</CODE></A></STRONG><BR>
  5031. <DD>
  5032. From <EM>uidf.U</EM>:
  5033. <P>This variable contains the format string used for printing a Uid_t.</P>
  5034. <P></P>
  5035. <DT><STRONG><A NAME="item_uidsign"><CODE>uidsign</CODE></A></STRONG><BR>
  5036. <DD>
  5037. From <EM>uidsign.U</EM>:
  5038. <P>This variable contains the signedness of a uidtype.
  5039. 1 for unsigned, -1 for signed.</P>
  5040. <P></P>
  5041. <DT><STRONG><A NAME="item_uidsize"><CODE>uidsize</CODE></A></STRONG><BR>
  5042. <DD>
  5043. From <EM>uidsize.U</EM>:
  5044. <P>This variable contains the size of a uidtype in bytes.</P>
  5045. <P></P>
  5046. <DT><STRONG><A NAME="item_uidtype"><CODE>uidtype</CODE></A></STRONG><BR>
  5047. <DD>
  5048. From <EM>uidtype.U</EM>:
  5049. <P>This variable defines Uid_t to be something like uid_t, int, 
  5050. ushort, or whatever type is used to declare user ids in the kernel.</P>
  5051. <P></P>
  5052. <DT><STRONG><A NAME="item_uname"><CODE>uname</CODE></A></STRONG><BR>
  5053. <DD>
  5054. From <EM>Loc.U</EM>:
  5055. <P>This variable is used internally by Configure to determine the
  5056. full pathname (if any) of the uname program.  After Configure runs,
  5057. the value is reset to a plain <A HREF="#item_uname"><CODE>uname</CODE></A> and is not useful.</P>
  5058. <P></P>
  5059. <DT><STRONG><A NAME="item_uniq"><CODE>uniq</CODE></A></STRONG><BR>
  5060. <DD>
  5061. From <EM>Loc.U</EM>:
  5062. <P>This variable is used internally by Configure to determine the
  5063. full pathname (if any) of the uniq program.  After Configure runs,
  5064. the value is reset to a plain <A HREF="#item_uniq"><CODE>uniq</CODE></A> and is not useful.</P>
  5065. <P></P>
  5066. <DT><STRONG><A NAME="item_uquadtype"><CODE>uquadtype</CODE></A></STRONG><BR>
  5067. <DD>
  5068. From <EM>quadtype.U</EM>:
  5069. <P>This variable defines Uquad_t to be something like unsigned long,
  5070. unsigned int, unsigned long long, uint64_t, or whatever type is
  5071. used for 64-bit integers.</P>
  5072. <P></P>
  5073. <DT><STRONG><A NAME="item_use5005threads"><CODE>use5005threads</CODE></A></STRONG><BR>
  5074. <DD>
  5075. From <EM>usethreads.U</EM>:
  5076. <P>This variable conditionally defines the USE_5005THREADS symbol,
  5077. and indicates that Perl should be built to use the 5.005-based
  5078. threading implementation.</P>
  5079. <P></P>
  5080. <DT><STRONG><A NAME="item_use64bitall"><CODE>use64bitall</CODE></A></STRONG><BR>
  5081. <DD>
  5082. From <EM>use64bits.U</EM>:
  5083. <P>This variable conditionally defines the USE_64_BIT_ALL symbol,
  5084. and indicates that 64-bit integer types should be used
  5085. when available.  The maximal possible
  5086. 64-bitness is employed: LP64 or ILP64, meaning that you will
  5087. be able to use more than 2 gigabytes of memory.  This mode is
  5088. even more binary incompatible than USE_64_BIT_INT. You may not
  5089. be able to run the resulting executable in a 32-bit <CODE>CPU</CODE> at all or
  5090. you may need at least to reboot your <A HREF="../lib/Pod/perlrun.html#item_OS"><CODE>OS</CODE></A> to 64-bit mode.</P>
  5091. <P></P>
  5092. <DT><STRONG><A NAME="item_use64bitint"><CODE>use64bitint</CODE></A></STRONG><BR>
  5093. <DD>
  5094. From <EM>use64bits.U</EM>:
  5095. <P>This variable conditionally defines the USE_64_BIT_INT symbol,
  5096. and indicates that 64-bit integer types should be used
  5097. when available.  The minimal possible 64-bitness
  5098. is employed, just enough to get 64-bit integers into Perl.
  5099. This may mean using for example ``long longs'', while your memory
  5100. may still be limited to 2 gigabytes.</P>
  5101. <P></P>
  5102. <DT><STRONG><A NAME="item_usedl"><CODE>usedl</CODE></A></STRONG><BR>
  5103. <DD>
  5104. From <EM>dlsrc.U</EM>:
  5105. <P>This variable indicates if the system supports dynamic
  5106. loading of some sort.  See also dlsrc and dlobj.</P>
  5107. <P></P>
  5108. <DT><STRONG><A NAME="item_useithreads"><CODE>useithreads</CODE></A></STRONG><BR>
  5109. <DD>
  5110. From <EM>usethreads.U</EM>:
  5111. <P>This variable conditionally defines the <CODE>USE_ITHREADS</CODE> symbol,
  5112. and indicates that Perl should be built to use the interpreter-based
  5113. threading implementation.</P>
  5114. <P></P>
  5115. <DT><STRONG><A NAME="item_uselargefiles"><CODE>uselargefiles</CODE></A></STRONG><BR>
  5116. <DD>
  5117. From <EM>uselfs.U</EM>:
  5118. <P>This variable conditionally defines the <CODE>USE_LARGE_FILES</CODE> symbol,
  5119. and indicates that large file interfaces should be used when
  5120. available.</P>
  5121. <P></P>
  5122. <DT><STRONG><A NAME="item_uselongdouble"><CODE>uselongdouble</CODE></A></STRONG><BR>
  5123. <DD>
  5124. From <EM>uselongdbl.U</EM>:
  5125. <P>This variable conditionally defines the <CODE>USE_LONG_DOUBLE</CODE> symbol,
  5126. and indicates that long doubles should be used when available.</P>
  5127. <P></P>
  5128. <DT><STRONG><A NAME="item_usemorebits"><CODE>usemorebits</CODE></A></STRONG><BR>
  5129. <DD>
  5130. From <EM>usemorebits.U</EM>:
  5131. <P>This variable conditionally defines the <CODE>USE_MORE_BITS</CODE> symbol,
  5132. and indicates that explicit 64-bit interfaces and long doubles
  5133. should be used when available.</P>
  5134. <P></P>
  5135. <DT><STRONG><A NAME="item_usemultiplicity"><CODE>usemultiplicity</CODE></A></STRONG><BR>
  5136. <DD>
  5137. From <EM>usemultiplicity.U</EM>:
  5138. <P>This variable conditionally defines the <CODE>MULTIPLICITY</CODE> symbol,
  5139. and indicates that Perl should be built to use multiplicity.</P>
  5140. <P></P>
  5141. <DT><STRONG><A NAME="item_usemymalloc"><CODE>usemymalloc</CODE></A></STRONG><BR>
  5142. <DD>
  5143. From <EM>mallocsrc.U</EM>:
  5144. <P>This variable contains y if the malloc that comes with this package
  5145. is desired over the system's version of malloc.  People often include
  5146. special versions of malloc for effiency, but such versions are often
  5147. less portable.  See also mallocsrc and mallocobj.
  5148. If this is <A HREF="../lib/Pod/perlfunc.html#item_y"><CODE>y</CODE></A>, then -lmalloc is removed from $libs.</P>
  5149. <P></P>
  5150. <DT><STRONG><A NAME="item_usenm"><CODE>usenm</CODE></A></STRONG><BR>
  5151. <DD>
  5152. From <EM>usenm.U</EM>:
  5153. <P>This variable contains <CODE>true</CODE> or <CODE>false</CODE> depending whether the
  5154. nm extraction is wanted or not.</P>
  5155. <P></P>
  5156. <DT><STRONG><A NAME="item_useopcode"><CODE>useopcode</CODE></A></STRONG><BR>
  5157. <DD>
  5158. From <EM>Extensions.U</EM>:
  5159. <P>This variable holds either <CODE>true</CODE> or <CODE>false</CODE> to indicate
  5160. whether the Opcode extension should be used.  The sole
  5161. use for this currently is to allow an easy mechanism
  5162. for users to skip the Opcode extension from the Configure
  5163. command line.</P>
  5164. <P></P>
  5165. <DT><STRONG><A NAME="item_useperlio"><CODE>useperlio</CODE></A></STRONG><BR>
  5166. <DD>
  5167. From <EM>useperlio.U</EM>:
  5168. <P>This variable conditionally defines the <CODE>USE_PERLIO</CODE> symbol,
  5169. and indicates that the PerlIO abstraction should be
  5170. used throughout.</P>
  5171. <P></P>
  5172. <DT><STRONG><A NAME="item_useposix"><CODE>useposix</CODE></A></STRONG><BR>
  5173. <DD>
  5174. From <EM>Extensions.U</EM>:
  5175. <P>This variable holds either <CODE>true</CODE> or <CODE>false</CODE> to indicate
  5176. whether the <CODE>POSIX</CODE> extension should be used.  The sole
  5177. use for this currently is to allow an easy mechanism
  5178. for hints files to indicate that <CODE>POSIX</CODE> will not compile
  5179. on a particular system.</P>
  5180. <P></P>
  5181. <DT><STRONG><A NAME="item_usesfio"><CODE>usesfio</CODE></A></STRONG><BR>
  5182. <DD>
  5183. From <EM>d_sfio.U</EM>:
  5184. <P>This variable is set to true when the user agrees to use sfio.
  5185. It is set to false when sfio is not available or when the user
  5186. explicitely requests not to use sfio.  It is here primarily so
  5187. that command-line settings can override the auto-detection of
  5188. d_sfio without running into a ``WHOA THERE''.</P>
  5189. <P></P>
  5190. <DT><STRONG><A NAME="item_useshrplib"><CODE>useshrplib</CODE></A></STRONG><BR>
  5191. <DD>
  5192. From <EM>libperl.U</EM>:
  5193. <P>This variable is set to <CODE>yes</CODE> if the user wishes
  5194. to build a shared libperl, and <A HREF="../lib/Pod/perlfunc.html#item_no"><CODE>no</CODE></A> otherwise.</P>
  5195. <P></P>
  5196. <DT><STRONG><A NAME="item_usesocks"><CODE>usesocks</CODE></A></STRONG><BR>
  5197. <DD>
  5198. From <EM>usesocks.U</EM>:
  5199. <P>This variable conditionally defines the <CODE>USE_SOCKS</CODE> symbol,
  5200. and indicates that Perl should be built to use <CODE>SOCKS</CODE>.</P>
  5201. <P></P>
  5202. <DT><STRONG><A NAME="item_usethreads"><CODE>usethreads</CODE></A></STRONG><BR>
  5203. <DD>
  5204. From <EM>usethreads.U</EM>:
  5205. <P>This variable conditionally defines the <CODE>USE_THREADS</CODE> symbol,
  5206. and indicates that Perl should be built to use threads.</P>
  5207. <P></P>
  5208. <DT><STRONG><A NAME="item_usevendorprefix"><CODE>usevendorprefix</CODE></A></STRONG><BR>
  5209. <DD>
  5210. From <EM>vendorprefix.U</EM>:
  5211. <P>This variable tells whether the vendorprefix
  5212. and consequently other vendor* paths are in use.</P>
  5213. <P></P>
  5214. <DT><STRONG><A NAME="item_usevfork"><CODE>usevfork</CODE></A></STRONG><BR>
  5215. <DD>
  5216. From <EM>d_vfork.U</EM>:
  5217. <P>This variable is set to true when the user accepts to use vfork.
  5218. It is set to false when no vfork is available or when the user
  5219. explicitely requests not to use vfork.</P>
  5220. <P></P>
  5221. <DT><STRONG><A NAME="item_usrinc"><CODE>usrinc</CODE></A></STRONG><BR>
  5222. <DD>
  5223. From <EM>usrinc.U</EM>:
  5224. <P>This variable holds the path of the include files, which is
  5225. usually <EM>/usr/include</EM>. It is mainly used by other Configure units.</P>
  5226. <P></P>
  5227. <DT><STRONG><A NAME="item_uuname"><CODE>uuname</CODE></A></STRONG><BR>
  5228. <DD>
  5229. From <EM>Loc.U</EM>:
  5230. <P>This variable is defined but not used by Configure.
  5231. The value is a plain '' and is not useful.</P>
  5232. <P></P>
  5233. <DT><STRONG><A NAME="item_uvoformat"><CODE>uvoformat</CODE></A></STRONG><BR>
  5234. <DD>
  5235. From <EM>perlxvf.U</EM>:
  5236. <P>This variable contains the format string used for printing
  5237. a Perl <CODE>UV</CODE> as an unsigned octal integer.</P>
  5238. <P></P>
  5239. <DT><STRONG><A NAME="item_uvsize"><CODE>uvsize</CODE></A></STRONG><BR>
  5240. <DD>
  5241. From <EM>perlxv.U</EM>:
  5242. <P>This variable is the size of a <CODE>UV</CODE> in bytes.</P>
  5243. <P></P>
  5244. <DT><STRONG><A NAME="item_uvtype"><CODE>uvtype</CODE></A></STRONG><BR>
  5245. <DD>
  5246. From <EM>perlxv.U</EM>:
  5247. <P>This variable contains the C type used for Perl's <CODE>UV</CODE>.</P>
  5248. <P></P>
  5249. <DT><STRONG><A NAME="item_uvuformat"><CODE>uvuformat</CODE></A></STRONG><BR>
  5250. <DD>
  5251. From <EM>perlxvf.U</EM>:
  5252. <P>This variable contains the format string used for printing
  5253. a Perl <CODE>UV</CODE> as an unsigned decimal integer.</P>
  5254. <P></P>
  5255. <DT><STRONG><A NAME="item_uvxformat"><CODE>uvxformat</CODE></A></STRONG><BR>
  5256. <DD>
  5257. From <EM>perlxvf.U</EM>:
  5258. <P>This variable contains the format string used for printing
  5259. a Perl <CODE>UV</CODE> as an unsigned hexadecimal integer.</P>
  5260. <P></P></DL>
  5261. <P>
  5262. <H2><A NAME="v">v</A></H2>
  5263. <DL>
  5264. <DT><STRONG><A NAME="item_vendorarch"><CODE>vendorarch</CODE></A></STRONG><BR>
  5265. <DD>
  5266. From <EM>vendorarch.U</EM>:
  5267. <P>This variable contains the value of the <CODE>PERL_VENDORARCH</CODE> symbol.
  5268. It may have a <EM>~</EM> on the front. 
  5269. The standard distribution will put nothing in this directory.
  5270. Vendors who distribute perl may wish to place their own
  5271. architecture-dependent modules and extensions in this directory with
  5272. MakeMaker <EM>Makefile.PL</EM> <CODE>INSTALLDIRS</CODE>=vendor 
  5273. or equivalent.  See <CODE>INSTALL</CODE> for details.</P>
  5274. <P></P>
  5275. <DT><STRONG><A NAME="item_vendorarchexp"><CODE>vendorarchexp</CODE></A></STRONG><BR>
  5276. <DD>
  5277. From <EM>vendorarch.U</EM>:
  5278. <P>This variable is the <EM>~name</EM> expanded version of vendorarch, so that you
  5279. may use it directly in Makefiles or shell scripts.</P>
  5280. <P></P>
  5281. <DT><STRONG><A NAME="item_vendorbin"><CODE>vendorbin</CODE></A></STRONG><BR>
  5282. <DD>
  5283. From <EM>vendorbin.U</EM>:
  5284. <P>This variable contains the eventual value of the <CODE>VENDORBIN</CODE> symbol.
  5285. It may have a <EM>~</EM> on the front.
  5286. The standard distribution will put nothing in this directory.
  5287. Vendors who distribute perl may wish to place additional
  5288. binaries in this directory with
  5289. MakeMaker <EM>Makefile.PL</EM> <CODE>INSTALLDIRS</CODE>=vendor 
  5290. or equivalent.  See <CODE>INSTALL</CODE> for details.</P>
  5291. <P></P>
  5292. <DT><STRONG><A NAME="item_vendorbinexp"><CODE>vendorbinexp</CODE></A></STRONG><BR>
  5293. <DD>
  5294. From <EM>vendorbin.U</EM>:
  5295. <P>This variable is the <EM>~name</EM> expanded version of vendorbin, so that you
  5296. may use it directly in Makefiles or shell scripts.</P>
  5297. <P></P>
  5298. <DT><STRONG><A NAME="item_vendorlib"><CODE>vendorlib</CODE></A></STRONG><BR>
  5299. <DD>
  5300. From <EM>vendorlib.U</EM>:
  5301. <P>This variable contains the eventual value of the <CODE>VENDORLIB</CODE> symbol,
  5302. which is the name of the private library for this package.
  5303. The standard distribution will put nothing in this directory.
  5304. Vendors who distribute perl may wish to place their own
  5305. modules in this directory with
  5306. MakeMaker <EM>Makefile.PL</EM> <CODE>INSTALLDIRS</CODE>=vendor 
  5307. or equivalent.  See <CODE>INSTALL</CODE> for details.</P>
  5308. <P></P>
  5309. <DT><STRONG><A NAME="item_vendorlib_stem"><CODE>vendorlib_stem</CODE></A></STRONG><BR>
  5310. <DD>
  5311. From <EM>vendorlib.U</EM>:
  5312. <P>This variable is $vendorlibexp with any trailing version-specific component
  5313. removed.  The elements in inc_version_list (<EM>inc_version_list.U</EM>) can
  5314. be tacked onto this variable to generate a list of directories to search.</P>
  5315. <P></P>
  5316. <DT><STRONG><A NAME="item_vendorlibexp"><CODE>vendorlibexp</CODE></A></STRONG><BR>
  5317. <DD>
  5318. From <EM>vendorlib.U</EM>:
  5319. <P>This variable is the <EM>~name</EM> expanded version of vendorlib, so that you
  5320. may use it directly in Makefiles or shell scripts.</P>
  5321. <P></P>
  5322. <DT><STRONG><A NAME="item_vendorprefix"><CODE>vendorprefix</CODE></A></STRONG><BR>
  5323. <DD>
  5324. From <EM>vendorprefix.U</EM>:
  5325. <P>This variable holds the full absolute path of the directory below
  5326. which the vendor will install add-on packages.
  5327. See <CODE>INSTALL</CODE> for usage and examples.</P>
  5328. <P></P>
  5329. <DT><STRONG><A NAME="item_vendorprefixexp"><CODE>vendorprefixexp</CODE></A></STRONG><BR>
  5330. <DD>
  5331. From <EM>vendorprefix.U</EM>:
  5332. <P>This variable holds the full absolute path of the directory below
  5333. which the vendor will install add-on packages.  Derived from vendorprefix.</P>
  5334. <P></P>
  5335. <DT><STRONG><A NAME="item_version"><CODE>version</CODE></A></STRONG><BR>
  5336. <DD>
  5337. From <EM>patchlevel.U</EM>:
  5338. <P>The full version number of this package, such as 5.6.1 (or 5_6_1).
  5339. This combines revision, patchlevel, and subversion to get the
  5340. full version number, including any possible subversions.
  5341. This is suitable for use as a directory name, and hence is
  5342. filesystem dependent.</P>
  5343. <P></P>
  5344. <DT><STRONG><A NAME="item_vi"><CODE>vi</CODE></A></STRONG><BR>
  5345. <DD>
  5346. From <EM>Loc.U</EM>:
  5347. <P>This variable is defined but not used by Configure.
  5348. The value is a plain '' and is not useful.</P>
  5349. <P></P>
  5350. <DT><STRONG><A NAME="item_voidflags"><CODE>voidflags</CODE></A></STRONG><BR>
  5351. <DD>
  5352. From <EM>voidflags.U</EM>:
  5353. <P>This variable contains the eventual value of the <CODE>VOIDFLAGS</CODE> symbol,
  5354. which indicates how much support of the void type is given by this
  5355. compiler.  See <CODE>VOIDFLAGS</CODE> for more info.</P>
  5356. <P></P></DL>
  5357. <P>
  5358. <H2><A NAME="x">x</A></H2>
  5359. <DL>
  5360. <DT><STRONG><A NAME="item_xlibpth"><CODE>xlibpth</CODE></A></STRONG><BR>
  5361. <DD>
  5362. From <EM>libpth.U</EM>:
  5363. <P>This variable holds extra path (space-separated) used to find
  5364. libraries on this platform, for example <CODE>CPU</CODE>-specific libraries
  5365. (on multi-<CODE>CPU</CODE> platforms) may be listed here.</P>
  5366. <P></P>
  5367. <DT><STRONG><A NAME="item_xs_apiversion"><CODE>xs_apiversion</CODE></A></STRONG><BR>
  5368. <DD>
  5369. From <EM>xs_apiversion.U</EM>:
  5370. <P>This variable contains the version of the oldest perl binary
  5371. compatible with the present perl.  <EM>perl.c</EM>:incpush() and
  5372. <EM>lib/lib.pm</EM> will automatically search in $sitearch for older
  5373. directories across major versions back to xs_apiversion.
  5374. This is only useful if you have a perl library directory tree
  5375. structured like the default one.
  5376. See <CODE>INSTALL</CODE> for how this works.
  5377. The versioned site_perl directory was introduced in 5.005,
  5378. so that is the lowest possible value.
  5379. Since this can depend on compile time options (such as
  5380. bincompat) it is set by Configure.  Other non-default sources
  5381. of potential incompatibility, such as multiplicity, threads,
  5382. debugging, 64bits, sfio, <EM>etc.</EM>, are not checked for currently,
  5383. though in principle we could go snooping around in old
  5384. <EM>Config.pm</EM> files.</P>
  5385. <P></P></DL>
  5386. <P>
  5387. <H2><A NAME="z">z</A></H2>
  5388. <DL>
  5389. <DT><STRONG><A NAME="item_zcat"><CODE>zcat</CODE></A></STRONG><BR>
  5390. <DD>
  5391. From <EM>Loc.U</EM>:
  5392. <P>This variable is defined but not used by Configure.
  5393. The value is a plain '' and is not useful.</P>
  5394. <P></P>
  5395. <DT><STRONG><A NAME="item_zip"><CODE>zip</CODE></A></STRONG><BR>
  5396. <DD>
  5397. From <EM>Loc.U</EM>:
  5398. <P>This variable is used internally by Configure to determine the
  5399. full pathname (if any) of the zip program.  After Configure runs,
  5400. the value is reset to a plain <A HREF="#item_zip"><CODE>zip</CODE></A> and is not useful.</P>
  5401. <P></P></DL>
  5402. <P>
  5403. <HR>
  5404. <H1><A NAME="note">NOTE</A></H1>
  5405. <P>This module contains a good example of how to use tie to implement a
  5406. cache and an example of how to make a tied variable readonly to those
  5407. outside of it.</P>
  5408. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  5409. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  5410. <STRONG><P CLASS=block> Config - access Perl configuration information</P></STRONG>
  5411. </TD></TR>
  5412. </TABLE>
  5413.  
  5414. </BODY>
  5415.  
  5416. </HTML>
  5417.