.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Config 3perl" .TH Config 3perl 2023-11-30 "perl v5.38.2" "Perl Programmers Reference Guide" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME Config \- access Perl configuration information .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 4 \& use Config; \& if ($Config{usethreads}) { \& print "has thread support\en" \& } \& \& use Config qw(myconfig config_sh config_vars config_re); \& \& print myconfig(); \& \& print config_sh(); \& \& print config_re(); \& \& config_vars(qw(osname archname)); .Ve .SH DESCRIPTION .IX Header "DESCRIPTION" The Config module contains all the information that was available to the \fIConfigure\fR program at Perl build time (over 900 values). .PP Shell variables from the \fIconfig.sh\fR file (written by Configure) are stored in the readonly-variable \f(CW%Config\fR, indexed by their names. .PP Values stored in config.sh as 'undef' are returned as undefined values. The perl \f(CW\*(C`exists\*(C'\fR function can be used to check if a named variable exists. .PP For a description of the variables, please have a look at the Glossary file, as written in the Porting folder, or use the url: https://github.com/Perl/perl5/blob/blead/Porting/Glossary .IP \fBmyconfig()\fR 4 .IX Item "myconfig()" Returns a textual summary of the major perl configuration values. See also \f(CW\*(C`\-V\*(C'\fR in "Command Switches" in perlrun. .IP \fBconfig_sh()\fR 4 .IX Item "config_sh()" Returns the entire perl configuration information in the form of the original config.sh shell variable assignment script. .IP config_re($regex) 4 .IX Item "config_re($regex)" Like \fBconfig_sh()\fR but returns, as a list, only the config entries who's names match the \f(CW$regex\fR. .IP config_vars(@names) 4 .IX Item "config_vars(@names)" Prints to STDOUT the values of the named configuration variable. Each is printed on a separate line in the form: .Sp .Vb 1 \& name=\*(Aqvalue\*(Aq; .Ve .Sp Names which are unknown are output as \f(CW\*(C`name=\*(AqUNKNOWN\*(Aq;\*(C'\fR. See also \f(CW\*(C`\-V:name\*(C'\fR in "Command Switches" in perlrun. .IP \fBbincompat_options()\fR 4 .IX Item "bincompat_options()" Returns a list of C pre-processor options used when compiling this \fIperl\fR binary, which affect its binary compatibility with extensions. \&\f(CWbincompat_options()\fR and \f(CWnon_bincompat_options()\fR are shown together in the output of \f(CW\*(C`perl \-V\*(C'\fR as \fICompile-time options\fR. .IP \fBnon_bincompat_options()\fR 4 .IX Item "non_bincompat_options()" Returns a list of C pre-processor options used when compiling this \fIperl\fR binary, which do not affect binary compatibility with extensions. .IP \fBcompile_date()\fR 4 .IX Item "compile_date()" Returns the compile date (as a string), equivalent to what is shown by \&\f(CW\*(C`perl \-V\*(C'\fR .IP \fBlocal_patches()\fR 4 .IX Item "local_patches()" Returns a list of the names of locally applied patches, equivalent to what is shown by \f(CW\*(C`perl \-V\*(C'\fR. .IP \fBheader_files()\fR 4 .IX Item "header_files()" Returns a list of the header files that should be used as dependencies for XS code, for this version of Perl on this platform. .SH EXAMPLE .IX Header "EXAMPLE" Here's a more sophisticated example of using \f(CW%Config:\fR .PP .Vb 2 \& use Config; \& use strict; \& \& my %sig_num; \& my @sig_name; \& unless($Config{sig_name} && $Config{sig_num}) { \& die "No sigs?"; \& } else { \& my @names = split \*(Aq \*(Aq, $Config{sig_name}; \& @sig_num{@names} = split \*(Aq \*(Aq, $Config{sig_num}; \& foreach (@names) { \& $sig_name[$sig_num{$_}] ||= $_; \& } \& } \& \& print "signal #17 = $sig_name[17]\en"; \& if ($sig_num{ALRM}) { \& print "SIGALRM is $sig_num{ALRM}\en"; \& } .Ve .SH WARNING .IX Header "WARNING" Because this information is not stored within the perl executable itself it is possible (but unlikely) that the information does not relate to the actual perl binary which is being used to access it. .PP The Config module is installed into the architecture and version specific library directory ($Config{installarchlib}) and it checks the perl version number when loaded. .PP The values stored in config.sh may be either single-quoted or double-quoted. Double-quoted strings are handy for those cases where you need to include escape sequences in the strings. To avoid runtime variable interpolation, any \f(CW\*(C`$\*(C'\fR and \f(CW\*(C`@\*(C'\fR characters are replaced by \f(CW\*(C`\e$\*(C'\fR and \&\f(CW\*(C`\e@\*(C'\fR, respectively. This isn't foolproof, of course, so don't embed \f(CW\*(C`\e$\*(C'\fR or \f(CW\*(C`\e@\*(C'\fR in double-quoted strings unless you're willing to deal with the consequences. (The slashes will end up escaped and the \f(CW\*(C`$\*(C'\fR or \f(CW\*(C`@\*(C'\fR will trigger variable interpolation) .SH GLOSSARY .IX Header "GLOSSARY" Most \f(CW\*(C`Config\*(C'\fR variables are determined by the \f(CW\*(C`Configure\*(C'\fR script on platforms supported by it (which is most UNIX platforms). Some platforms have custom-made \f(CW\*(C`Config\*(C'\fR variables, and may thus not have some of the variables described below, or may have extraneous variables specific to that particular port. See the port specific documentation in such cases. .SS P .IX Subsection "P" .ie n .IP """PERL_API_REVISION""" 4 .el .IP \f(CWPERL_API_REVISION\fR 4 .IX Item "PERL_API_REVISION" From \fIpatchlevel.h\fR: .Sp This number describes the earliest compatible \f(CW\*(C`PERL_REVISION\*(C'\fR of Perl (\f(CW\*(C`compatibility\*(C'\fR here being defined as sufficient \fIbinary/\fR\f(CI\*(C`API\*(C'\fR compatibility to run \f(CW\*(C`XS\*(C'\fR code built with the older version). Normally this does not change across maintenance releases. Please read the comment in \fIpatchlevel.h\fR. .ie n .IP """PERL_API_SUBVERSION""" 4 .el .IP \f(CWPERL_API_SUBVERSION\fR 4 .IX Item "PERL_API_SUBVERSION" From \fIpatchlevel.h\fR: .Sp This number describes the earliest compatible \f(CW\*(C`PERL_SUBVERSION\*(C'\fR of Perl (\f(CW\*(C`compatibility\*(C'\fR here being defined as sufficient \fIbinary/\fR\f(CI\*(C`API\*(C'\fR compatibility to run \f(CW\*(C`XS\*(C'\fR code built with the older version). Normally this does not change across maintenance releases. Please read the comment in \fIpatchlevel.h\fR. .ie n .IP """PERL_API_VERSION""" 4 .el .IP \f(CWPERL_API_VERSION\fR 4 .IX Item "PERL_API_VERSION" From \fIpatchlevel.h\fR: .Sp This number describes the earliest compatible \f(CW\*(C`PERL_VERSION\*(C'\fR of Perl (\f(CW\*(C`compatibility\*(C'\fR here being defined as sufficient \fIbinary/\fR\f(CI\*(C`API\*(C'\fR compatibility to run \f(CW\*(C`XS\*(C'\fR code built with the older version). Normally this does not change across maintenance releases. Please read the comment in \fIpatchlevel.h\fR. .ie n .IP """PERL_CONFIG_SH""" 4 .el .IP \f(CWPERL_CONFIG_SH\fR 4 .IX Item "PERL_CONFIG_SH" From \fIOldsyms.U\fR: .Sp This is set to \f(CW\*(C`true\*(C'\fR in \fIconfig.sh\fR so that a shell script sourcing \fIconfig.sh\fR can tell if it has been sourced already. .ie n .IP """PERL_PATCHLEVEL""" 4 .el .IP \f(CWPERL_PATCHLEVEL\fR 4 .IX Item "PERL_PATCHLEVEL" From \fIOldsyms.U\fR: .Sp This symbol reflects the patchlevel, if available. Will usually come from the \fI.patch\fR file, which is available when the perl source tree was fetched with rsync. .ie n .IP """PERL_REVISION""" 4 .el .IP \f(CWPERL_REVISION\fR 4 .IX Item "PERL_REVISION" From \fIOldsyms.U\fR: .Sp In a Perl version number such as 5.6.2, this is the 5. This value is manually set in \fIpatchlevel.h\fR .ie n .IP """PERL_SUBVERSION""" 4 .el .IP \f(CWPERL_SUBVERSION\fR 4 .IX Item "PERL_SUBVERSION" From \fIOldsyms.U\fR: .Sp In a Perl version number such as 5.6.2, this is the 2. Values greater than 50 represent potentially unstable development subversions. This value is manually set in \fIpatchlevel.h\fR .ie n .IP """PERL_VERSION""" 4 .el .IP \f(CWPERL_VERSION\fR 4 .IX Item "PERL_VERSION" From \fIOldsyms.U\fR: .Sp In a Perl version number such as 5.6.2, this is the 6. This value is manually set in \fIpatchlevel.h\fR .SS _ .IX Subsection "_" .ie n .IP """_a""" 4 .el .IP \f(CW_a\fR 4 .IX Item "_a" From \fIUnix.U\fR: .Sp This variable defines the extension used for ordinary library files. For unix, it is \fI.a\fR. The \fI.\fR is included. Other possible values include \fI.lib\fR. .ie n .IP """_exe""" 4 .el .IP \f(CW_exe\fR 4 .IX Item "_exe" From \fIUnix.U\fR: .Sp This variable defines the extension used for executable files. \&\f(CW\*(C`DJGPP\*(C'\fR, Cygwin and \fIOS/2\fR use \fI.exe\fR. Stratus \f(CW\*(C`VOS\*(C'\fR uses \fI.pm\fR. On operating systems which do not require a specific extension for executable files, this variable is empty. .ie n .IP """_o""" 4 .el .IP \f(CW_o\fR 4 .IX Item "_o" From \fIUnix.U\fR: .Sp This variable defines the extension used for object files. For unix, it is \fI.o\fR. The \fI.\fR is included. Other possible values include \fI.obj\fR. .SS a .IX Subsection "a" .ie n .IP """afs""" 4 .el .IP \f(CWafs\fR 4 .IX Item "afs" From \fIafs.U\fR: .Sp This variable is set to \f(CW\*(C`true\*(C'\fR if \f(CW\*(C`AFS\*(C'\fR (Andrew File System) is used on the system, \f(CW\*(C`false\*(C'\fR otherwise. It is possible to override this with a hint value or command line option, but you'd better know what you are doing. .ie n .IP """afsroot""" 4 .el .IP \f(CWafsroot\fR 4 .IX Item "afsroot" From \fIafs.U\fR: .Sp This variable is by default set to \fI/afs\fR. In the unlikely case this is not the correct root, it is possible to override this with a hint value or command line option. This will be used in subsequent tests for AFSness in the configure and test process. .ie n .IP """alignbytes""" 4 .el .IP \f(CWalignbytes\fR 4 .IX Item "alignbytes" From \fIalignbytes.U\fR: .Sp This variable holds the number of bytes required to align a double\-\- or a long double when applicable. Usual values are 2, 4 and 8. The default is eight, for safety. .ie n .IP """aphostname""" 4 .el .IP \f(CWaphostname\fR 4 .IX Item "aphostname" From \fId_gethname.U\fR: .Sp This variable contains the command which can be used to compute the host name. The command is fully qualified by its absolute path, to make it safe when used by a process with super-user privileges. .ie n .IP """api_revision""" 4 .el .IP \f(CWapi_revision\fR 4 .IX Item "api_revision" From \fIpatchlevel.U\fR: .Sp The three variables, api_revision, api_version, and api_subversion, specify the version of the oldest perl binary compatible with the present perl. In a full version string such as \fI5.6.1\fR, api_revision is the \f(CW5\fR. Prior to 5.5.640, the format was a floating point number, like 5.00563. .Sp \&\fIperl.c\fR:\fBincpush()\fR and \fIlib/lib.pm\fR will automatically search in \&\fR\f(CI$sitelib\fR\fI/.\fR. for older directories back to the limit specified by these api_ variables. This is only useful if you have a perl library directory tree structured like the default one. See \f(CW\*(C`INSTALL\*(C'\fR for how this works. The versioned site_perl directory was introduced in 5.005, so that is the lowest possible value. The version list appropriate for the current system is determined in \fIinc_version_list.U\fR. .Sp \&\f(CW\*(C`XXX\*(C'\fR To do: Since compatibility can depend on compile time options (such as bincompat, longlong, etc.) it should (perhaps) be set by Configure, but currently it isn't. Currently, we read a hard-wired value from \fIpatchlevel.h\fR. Perhaps what we ought to do is take the hard-wired value from \&\fIpatchlevel.h\fR but then modify it if the current Configure options warrant. \fIpatchlevel.h\fR then would use an #ifdef guard. .ie n .IP """api_subversion""" 4 .el .IP \f(CWapi_subversion\fR 4 .IX Item "api_subversion" From \fIpatchlevel.U\fR: .Sp The three variables, api_revision, api_version, and api_subversion, specify the version of the oldest perl binary compatible with the present perl. In a full version string such as \fI5.6.1\fR, api_subversion is the \f(CW1\fR. See api_revision for full details. .ie n .IP """api_version""" 4 .el .IP \f(CWapi_version\fR 4 .IX Item "api_version" From \fIpatchlevel.U\fR: .Sp The three variables, api_revision, api_version, and api_subversion, specify the version of the oldest perl binary compatible with the present perl. In a full version string such as \fI5.6.1\fR, api_version is the \f(CW6\fR. See api_revision for full details. As a special case, 5.5.0 is rendered in the old-style as 5.005. (In the 5.005_0x maintenance series, this was the only versioned directory in \f(CW$sitelib\fR.) .ie n .IP """api_versionstring""" 4 .el .IP \f(CWapi_versionstring\fR 4 .IX Item "api_versionstring" From \fIpatchlevel.U\fR: .Sp This variable combines api_revision, api_version, and api_subversion in a format such as 5.6.1 (or 5_6_1) suitable for use as a directory name. This is filesystem dependent. .ie n .IP """ar""" 4 .el .IP \f(CWar\fR 4 .IX Item "ar" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the ar program. After Configure runs, the value is reset to a plain \f(CW\*(C`ar\*(C'\fR and is not useful. .ie n .IP """archlib""" 4 .el .IP \f(CWarchlib\fR 4 .IX Item "archlib" From \fIarchlib.U\fR: .Sp This variable holds the name of the directory in which the user wants to put architecture-dependent public library files for \f(CW$package\fR. It is most often a local directory such as \fI/usr/local/lib\fR. Programs using this variable must be prepared to deal with filename expansion. .ie n .IP """archlibexp""" 4 .el .IP \f(CWarchlibexp\fR 4 .IX Item "archlibexp" From \fIarchlib.U\fR: .Sp This variable is the same as the archlib variable, but is filename expanded at configuration time, for convenient use. .ie n .IP """archname""" 4 .el .IP \f(CWarchname\fR 4 .IX Item "archname" From \fIarchname.U\fR: .Sp This variable is a short name to characterize the current architecture. It is used mainly to construct the default archlib. .ie n .IP """archname64""" 4 .el .IP \f(CWarchname64\fR 4 .IX Item "archname64" From \fIuse64bits.U\fR: .Sp This variable is used for the 64\-bitness part of \f(CW$archname\fR. .ie n .IP """archobjs""" 4 .el .IP \f(CWarchobjs\fR 4 .IX Item "archobjs" From \fIUnix.U\fR: .Sp This variable defines any additional objects that must be linked in with the program on this architecture. On unix, it is usually empty. It is typically used to include emulations of unix calls or other facilities. For perl on \fIOS/2\fR, for example, this would include \fIos2/os2.obj\fR. .ie n .IP """asctime_r_proto""" 4 .el .IP \f(CWasctime_r_proto\fR 4 .IX Item "asctime_r_proto" From \fId_asctime_r.U\fR: .Sp This variable encodes the prototype of asctime_r. It is zero if d_asctime_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_asctime_r is defined. .ie n .IP """awk""" 4 .el .IP \f(CWawk\fR 4 .IX Item "awk" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the awk program. After Configure runs, the value is reset to a plain \f(CW\*(C`awk\*(C'\fR and is not useful. .SS b .IX Subsection "b" .ie n .IP """baserev""" 4 .el .IP \f(CWbaserev\fR 4 .IX Item "baserev" From \fIbaserev.U\fR: .Sp The base revision level of this package, from the \fI.package\fR file. .ie n .IP """bash""" 4 .el .IP \f(CWbash\fR 4 .IX Item "bash" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """bin""" 4 .el .IP \f(CWbin\fR 4 .IX Item "bin" From \fIbin.U\fR: .Sp This variable holds the name of the directory in which the user wants to put publicly executable images for the package in question. It is most often a local directory such as \fI/usr/local/bin\fR. Programs using this variable must be prepared to deal with \fI~name\fR substitution. .ie n .IP """bin_ELF""" 4 .el .IP \f(CWbin_ELF\fR 4 .IX Item "bin_ELF" From \fIdlsrc.U\fR: .Sp This variable saves the result from configure if generated binaries are in \f(CW\*(C`ELF\*(C'\fR format. Only set to defined when the test has actually been performed, and the result was positive. .ie n .IP """binexp""" 4 .el .IP \f(CWbinexp\fR 4 .IX Item "binexp" From \fIbin.U\fR: .Sp This is the same as the bin variable, but is filename expanded at configuration time, for use in your makefiles. .ie n .IP """bison""" 4 .el .IP \f(CWbison\fR 4 .IX Item "bison" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the bison program. After Configure runs, the value is reset to a plain \f(CW\*(C`bison\*(C'\fR and is not useful. .ie n .IP """byacc""" 4 .el .IP \f(CWbyacc\fR 4 .IX Item "byacc" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the byacc program. After Configure runs, the value is reset to a plain \f(CW\*(C`byacc\*(C'\fR and is not useful. .ie n .IP """byteorder""" 4 .el .IP \f(CWbyteorder\fR 4 .IX Item "byteorder" From \fIbyteorder.U\fR: .Sp This variable holds the byte order in a \f(CW\*(C`UV\*(C'\fR. In the following, larger digits indicate more significance. The variable byteorder is either 4321 on a big-endian machine, or 1234 on a little-endian, or 87654321 on a Cray ... or 3412 with weird order ! .SS c .IX Subsection "c" .ie n .IP """c""" 4 .el .IP \f(CWc\fR 4 .IX Item "c" From \fIn.U\fR: .Sp This variable contains the \ec string if that is what causes the echo command to suppress newline. Otherwise it is null. Correct usage is \&\f(CW$echo\fR \f(CW$n\fR "prompt for a question: \f(CW$c\fR". .ie n .IP """castflags""" 4 .el .IP \f(CWcastflags\fR 4 .IX Item "castflags" From \fId_castneg.U\fR: .Sp This variable contains a flag that precise difficulties the compiler has casting odd floating values to unsigned long: 0 = ok 1 = couldn't cast < 0 2 = couldn't cast >= 0x80000000 4 = couldn't cast in argument expression list .ie n .IP """cat""" 4 .el .IP \f(CWcat\fR 4 .IX Item "cat" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the cat program. After Configure runs, the value is reset to a plain \f(CW\*(C`cat\*(C'\fR and is not useful. .ie n .IP """cc""" 4 .el .IP \f(CWcc\fR 4 .IX Item "cc" From \fIcc.U\fR: .Sp This variable holds the name of a command to execute a C compiler which can resolve multiple global references that happen to have the same name. Usual values are \f(CW\*(C`cc\*(C'\fR and \f(CW\*(C`gcc\*(C'\fR. Fervent \f(CW\*(C`ANSI\*(C'\fR compilers may be called \f(CW\*(C`c89\*(C'\fR. \f(CW\*(C`AIX\*(C'\fR has xlc. .ie n .IP """cccdlflags""" 4 .el .IP \f(CWcccdlflags\fR 4 .IX Item "cccdlflags" From \fIdlsrc.U\fR: .Sp This variable contains any special flags that might need to be passed with \f(CW\*(C`cc \-c\*(C'\fR to compile modules to be used to create a shared library that will be used for dynamic loading. For hpux, this should be +z. It is up to the makefile to use it. .ie n .IP """ccdlflags""" 4 .el .IP \f(CWccdlflags\fR 4 .IX Item "ccdlflags" From \fIdlsrc.U\fR: .Sp This variable contains any special flags that might need to be passed to cc to link with a shared library for dynamic loading. It is up to the makefile to use it. For sunos 4.1, it should be empty. .ie n .IP """ccflags""" 4 .el .IP \f(CWccflags\fR 4 .IX Item "ccflags" From \fIccflags.U\fR: .Sp This variable contains any additional C compiler flags desired by the user. It is up to the Makefile to use this. .ie n .IP """ccflags_uselargefiles""" 4 .el .IP \f(CWccflags_uselargefiles\fR 4 .IX Item "ccflags_uselargefiles" From \fIuselfs.U\fR: .Sp This variable contains the compiler flags needed by large file builds and added to ccflags by hints files. .ie n .IP """ccname""" 4 .el .IP \f(CWccname\fR 4 .IX Item "ccname" From \fICheckcc.U\fR: .Sp This can set either by hints files or by Configure. If using gcc, this is gcc, and if not, usually equal to cc, unimpressive, no? Some platforms, however, make good use of this by storing the flavor of the C compiler being used here. For example if using the Sun WorkShop suite, ccname will be \f(CW\*(C`workshop\*(C'\fR. .ie n .IP """ccsymbols""" 4 .el .IP \f(CWccsymbols\fR 4 .IX Item "ccsymbols" From \fICppsym.U\fR: .Sp The variable contains the symbols defined by the C compiler alone. The symbols defined by cpp or by cc when it calls cpp are not in this list, see cppsymbols and cppccsymbols. The list is a space-separated list of symbol=value tokens. .ie n .IP """ccversion""" 4 .el .IP \f(CWccversion\fR 4 .IX Item "ccversion" From \fICheckcc.U\fR: .Sp This can set either by hints files or by Configure. If using a (non-gcc) vendor cc, this variable may contain a version for the compiler. .ie n .IP """cf_by""" 4 .el .IP \f(CWcf_by\fR 4 .IX Item "cf_by" From \fIcf_who.U\fR: .Sp Login name of the person who ran the Configure script and answered the questions. This is used to tag both \fIconfig.sh\fR and \fIconfig_h.SH\fR. .ie n .IP """cf_email""" 4 .el .IP \f(CWcf_email\fR 4 .IX Item "cf_email" From \fIcf_email.U\fR: .Sp Electronic mail address of the person who ran Configure. This can be used by units that require the user's e\-mail, like \fIMailList.U\fR. .ie n .IP """cf_time""" 4 .el .IP \f(CWcf_time\fR 4 .IX Item "cf_time" From \fIcf_who.U\fR: .Sp Holds the output of the \f(CW\*(C`date\*(C'\fR command when the configuration file was produced. This is used to tag both \fIconfig.sh\fR and \fIconfig_h.SH\fR. .ie n .IP """charbits""" 4 .el .IP \f(CWcharbits\fR 4 .IX Item "charbits" From \fIcharsize.U\fR: .Sp This variable contains the value of the \f(CW\*(C`CHARBITS\*(C'\fR symbol, which indicates to the C program how many bits there are in a character. .ie n .IP """charsize""" 4 .el .IP \f(CWcharsize\fR 4 .IX Item "charsize" From \fIcharsize.U\fR: .Sp This variable contains the value of the \f(CW\*(C`CHARSIZE\*(C'\fR symbol, which indicates to the C program how many bytes there are in a character. .ie n .IP """chgrp""" 4 .el .IP \f(CWchgrp\fR 4 .IX Item "chgrp" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """chmod""" 4 .el .IP \f(CWchmod\fR 4 .IX Item "chmod" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the chmod program. After Configure runs, the value is reset to a plain \f(CW\*(C`chmod\*(C'\fR and is not useful. .ie n .IP """chown""" 4 .el .IP \f(CWchown\fR 4 .IX Item "chown" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """clocktype""" 4 .el .IP \f(CWclocktype\fR 4 .IX Item "clocktype" From \fId_times.U\fR: .Sp This variable holds the type returned by \fBtimes()\fR. It can be long, or clock_t on \f(CW\*(C`BSD\*(C'\fR sites (in which case should be included). .ie n .IP """comm""" 4 .el .IP \f(CWcomm\fR 4 .IX Item "comm" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the comm program. After Configure runs, the value is reset to a plain \f(CW\*(C`comm\*(C'\fR and is not useful. .ie n .IP """compiler_warning""" 4 .el .IP \f(CWcompiler_warning\fR 4 .IX Item "compiler_warning" From \fIcompiler_warning.U\fR: .Sp This variable holds the command to check if the file specified as a parameter contains a compiler warning .ie n .IP """compress""" 4 .el .IP \f(CWcompress\fR 4 .IX Item "compress" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """config_arg0""" 4 .el .IP \f(CWconfig_arg0\fR 4 .IX Item "config_arg0" From \fIOptions.U\fR: .Sp This variable contains the string used to invoke the Configure command, as reported by the shell in the \f(CW$0\fR variable. .ie n .IP """config_argc""" 4 .el .IP \f(CWconfig_argc\fR 4 .IX Item "config_argc" From \fIOptions.U\fR: .Sp This variable contains the number of command-line arguments passed to Configure, as reported by the shell in the $# variable. The individual arguments are stored as variables config_arg1, config_arg2, etc. .ie n .IP """config_args""" 4 .el .IP \f(CWconfig_args\fR 4 .IX Item "config_args" From \fIOptions.U\fR: .Sp This variable contains a single string giving the command-line arguments passed to Configure. Spaces within arguments, quotes, and escaped characters are not correctly preserved. To reconstruct the command line, you must assemble the individual command line pieces, given in config_arg[0\-9]*. .ie n .IP """contains""" 4 .el .IP \f(CWcontains\fR 4 .IX Item "contains" From \fIcontains.U\fR: .Sp This variable holds the command to do a grep with a proper return status. On most sane systems it is simply \f(CW\*(C`grep\*(C'\fR. On insane systems it is a grep followed by a cat followed by a test. This variable is primarily for the use of other Configure units. .ie n .IP """cp""" 4 .el .IP \f(CWcp\fR 4 .IX Item "cp" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the cp program. After Configure runs, the value is reset to a plain \f(CW\*(C`cp\*(C'\fR and is not useful. .ie n .IP """cpio""" 4 .el .IP \f(CWcpio\fR 4 .IX Item "cpio" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """cpp""" 4 .el .IP \f(CWcpp\fR 4 .IX Item "cpp" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the cpp program. After Configure runs, the value is reset to a plain \f(CW\*(C`cpp\*(C'\fR and is not useful. .ie n .IP """cpp_stuff""" 4 .el .IP \f(CWcpp_stuff\fR 4 .IX Item "cpp_stuff" From \fIcpp_stuff.U\fR: .Sp This variable contains an identification of the concatenation mechanism used by the C preprocessor. .ie n .IP """cppccsymbols""" 4 .el .IP \f(CWcppccsymbols\fR 4 .IX Item "cppccsymbols" From \fICppsym.U\fR: .Sp The variable contains the symbols defined by the C compiler when it calls cpp. The symbols defined by the cc alone or cpp alone are not in this list, see ccsymbols and cppsymbols. The list is a space-separated list of symbol=value tokens. .ie n .IP """cppflags""" 4 .el .IP \f(CWcppflags\fR 4 .IX Item "cppflags" From \fIccflags.U\fR: .Sp This variable holds the flags that will be passed to the C pre\- processor. It is up to the Makefile to use it. .ie n .IP """cpplast""" 4 .el .IP \f(CWcpplast\fR 4 .IX Item "cpplast" From \fIcppstdin.U\fR: .Sp This variable has the same functionality as cppminus, only it applies to cpprun and not cppstdin. .ie n .IP """cppminus""" 4 .el .IP \f(CWcppminus\fR 4 .IX Item "cppminus" From \fIcppstdin.U\fR: .Sp This variable contains the second part of the string which will invoke the C preprocessor on the standard input and produce to standard output. This variable will have the value \f(CW\*(C`\-\*(C'\fR if cppstdin needs a minus to specify standard input, otherwise the value is "". .ie n .IP """cpprun""" 4 .el .IP \f(CWcpprun\fR 4 .IX Item "cpprun" From \fIcppstdin.U\fR: .Sp This variable contains the command which will invoke a C preprocessor on standard input and put the output to stdout. It is guaranteed not to be a wrapper and may be a null string if no preprocessor can be made directly available. This preprocessor might be different from the one used by the C compiler. Don't forget to append cpplast after the preprocessor options. .ie n .IP """cppstdin""" 4 .el .IP \f(CWcppstdin\fR 4 .IX Item "cppstdin" From \fIcppstdin.U\fR: .Sp This variable contains the command which will invoke the C preprocessor on standard input and put the output to stdout. It is primarily used by other Configure units that ask about preprocessor symbols. .ie n .IP """cppsymbols""" 4 .el .IP \f(CWcppsymbols\fR 4 .IX Item "cppsymbols" From \fICppsym.U\fR: .Sp The variable contains the symbols defined by the C preprocessor alone. The symbols defined by cc or by cc when it calls cpp are not in this list, see ccsymbols and cppccsymbols. The list is a space-separated list of symbol=value tokens. .ie n .IP """crypt_r_proto""" 4 .el .IP \f(CWcrypt_r_proto\fR 4 .IX Item "crypt_r_proto" From \fId_crypt_r.U\fR: .Sp This variable encodes the prototype of crypt_r. It is zero if d_crypt_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_crypt_r is defined. .ie n .IP """cryptlib""" 4 .el .IP \f(CWcryptlib\fR 4 .IX Item "cryptlib" From \fId_crypt.U\fR: .Sp This variable holds \-lcrypt or the path to a \fIlibcrypt.a\fR archive if the \fBcrypt()\fR function is not defined in the standard C library. It is up to the Makefile to use this. .ie n .IP """csh""" 4 .el .IP \f(CWcsh\fR 4 .IX Item "csh" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the csh program. After Configure runs, the value is reset to a plain \f(CW\*(C`csh\*(C'\fR and is not useful. .ie n .IP """ctermid_r_proto""" 4 .el .IP \f(CWctermid_r_proto\fR 4 .IX Item "ctermid_r_proto" From \fId_ctermid_r.U\fR: .Sp This variable encodes the prototype of ctermid_r. It is zero if d_ctermid_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_ctermid_r is defined. .ie n .IP """ctime_r_proto""" 4 .el .IP \f(CWctime_r_proto\fR 4 .IX Item "ctime_r_proto" From \fId_ctime_r.U\fR: .Sp This variable encodes the prototype of ctime_r. It is zero if d_ctime_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_ctime_r is defined. .SS d .IX Subsection "d" .ie n .IP """d_Gconvert""" 4 .el .IP \f(CWd_Gconvert\fR 4 .IX Item "d_Gconvert" From \fId_gconvert.U\fR: .Sp This variable holds what Gconvert is defined as to convert floating point numbers into strings. By default, Configure sets \f(CW\*(C`this\*(C'\fR macro to use the first of gconvert, gcvt, or sprintf that pass sprintf\-%g\-like behavior tests. If perl is using long doubles, the macro uses the first of the following functions that pass Configure's tests: qgcvt, sprintf (if Configure knows how to make sprintf format long doubles\-\-see sPRIgldbl), gconvert, gcvt, and sprintf (casting to double). The gconvert_preference and gconvert_ld_preference variables can be used to alter Configure's preferences, for doubles and long doubles, respectively. If present, they contain a space-separated list of one or more of the above function names in the order they should be tried. .Sp d_Gconvert may be set to override Configure with a platform\- specific function. If this function expects a double, a different value may need to be set by the \fIuselongdouble.cbu\fR call-back unit so that long doubles can be formatted without loss of precision. .ie n .IP """d_PRIEUldbl""" 4 .el .IP \f(CWd_PRIEUldbl\fR 4 .IX Item "d_PRIEUldbl" From \fIlongdblfio.U\fR: .Sp This variable conditionally defines the PERL_PRIfldbl symbol, which indicates that stdio has a symbol to print long doubles. The \f(CW\*(C`U\*(C'\fR in the name is to separate this from d_PRIeldbl so that even case-blind systems can see the difference. .ie n .IP """d_PRIFUldbl""" 4 .el .IP \f(CWd_PRIFUldbl\fR 4 .IX Item "d_PRIFUldbl" From \fIlongdblfio.U\fR: .Sp This variable conditionally defines the PERL_PRIfldbl symbol, which indicates that stdio has a symbol to print long doubles. The \f(CW\*(C`U\*(C'\fR in the name is to separate this from d_PRIfldbl so that even case-blind systems can see the difference. .ie n .IP """d_PRIGUldbl""" 4 .el .IP \f(CWd_PRIGUldbl\fR 4 .IX Item "d_PRIGUldbl" From \fIlongdblfio.U\fR: .Sp This variable conditionally defines the PERL_PRIfldbl symbol, which indicates that stdio has a symbol to print long doubles. The \f(CW\*(C`U\*(C'\fR in the name is to separate this from d_PRIgldbl so that even case-blind systems can see the difference. .ie n .IP """d_PRIXU64""" 4 .el .IP \f(CWd_PRIXU64\fR 4 .IX Item "d_PRIXU64" From \fIquadfio.U\fR: .Sp This variable conditionally defines the PERL_PRIXU64 symbol, which indicates that stdio has a symbol to print 64\-bit hExADECimAl numbers. The \f(CW\*(C`U\*(C'\fR in the name is to separate this from d_PRIx64 so that even case-blind systems can see the difference. .ie n .IP """d_PRId64""" 4 .el .IP \f(CWd_PRId64\fR 4 .IX Item "d_PRId64" From \fIquadfio.U\fR: .Sp This variable conditionally defines the PERL_PRId64 symbol, which indicates that stdio has a symbol to print 64\-bit decimal numbers. .ie n .IP """d_PRIeldbl""" 4 .el .IP \f(CWd_PRIeldbl\fR 4 .IX Item "d_PRIeldbl" From \fIlongdblfio.U\fR: .Sp This variable conditionally defines the PERL_PRIfldbl symbol, which indicates that stdio has a symbol to print long doubles. .ie n .IP """d_PRIfldbl""" 4 .el .IP \f(CWd_PRIfldbl\fR 4 .IX Item "d_PRIfldbl" From \fIlongdblfio.U\fR: .Sp This variable conditionally defines the PERL_PRIfldbl symbol, which indicates that stdio has a symbol to print long doubles. .ie n .IP """d_PRIgldbl""" 4 .el .IP \f(CWd_PRIgldbl\fR 4 .IX Item "d_PRIgldbl" From \fIlongdblfio.U\fR: .Sp This variable conditionally defines the PERL_PRIfldbl symbol, which indicates that stdio has a symbol to print long doubles. .ie n .IP """d_PRIi64""" 4 .el .IP \f(CWd_PRIi64\fR 4 .IX Item "d_PRIi64" From \fIquadfio.U\fR: .Sp This variable conditionally defines the PERL_PRIi64 symbol, which indicates that stdio has a symbol to print 64\-bit decimal numbers. .ie n .IP """d_PRIo64""" 4 .el .IP \f(CWd_PRIo64\fR 4 .IX Item "d_PRIo64" From \fIquadfio.U\fR: .Sp This variable conditionally defines the PERL_PRIo64 symbol, which indicates that stdio has a symbol to print 64\-bit octal numbers. .ie n .IP """d_PRIu64""" 4 .el .IP \f(CWd_PRIu64\fR 4 .IX Item "d_PRIu64" From \fIquadfio.U\fR: .Sp This variable conditionally defines the PERL_PRIu64 symbol, which indicates that stdio has a symbol to print 64\-bit unsigned decimal numbers. .ie n .IP """d_PRIx64""" 4 .el .IP \f(CWd_PRIx64\fR 4 .IX Item "d_PRIx64" From \fIquadfio.U\fR: .Sp This variable conditionally defines the PERL_PRIx64 symbol, which indicates that stdio has a symbol to print 64\-bit hexadecimal numbers. .ie n .IP """d_SCNfldbl""" 4 .el .IP \f(CWd_SCNfldbl\fR 4 .IX Item "d_SCNfldbl" From \fIlongdblfio.U\fR: .Sp This variable conditionally defines the PERL_PRIfldbl symbol, which indicates that stdio has a symbol to scan long doubles. .ie n .IP """d_\|_fwalk""" 4 .el .IP \f(CWd_\|_fwalk\fR 4 .IX Item "d__fwalk" From \fId_\|_fwalk.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_\|_FWALK\*(C'\fR if \fB_fwalk()\fR is available to apply a function to all the file handles. .ie n .IP """d_accept4""" 4 .el .IP \f(CWd_accept4\fR 4 .IX Item "d_accept4" From \fId_accept4.U\fR: .Sp This variable conditionally defines HAS_ACCEPT4 if \fBaccept4()\fR is available to accept socket connections. .ie n .IP """d_access""" 4 .el .IP \f(CWd_access\fR 4 .IX Item "d_access" From \fId_access.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_ACCESS\*(C'\fR if the \fBaccess()\fR system call is available to check for access permissions using real IDs. .ie n .IP """d_accessx""" 4 .el .IP \f(CWd_accessx\fR 4 .IX Item "d_accessx" From \fId_accessx.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ACCESSX\*(C'\fR symbol, which indicates to the C program that the \fBaccessx()\fR routine is available. .ie n .IP """d_acosh""" 4 .el .IP \f(CWd_acosh\fR 4 .IX Item "d_acosh" From \fId_acosh.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ACOSH\*(C'\fR symbol, which indicates to the C program that the \fBacosh()\fR routine is available. .ie n .IP """d_aintl""" 4 .el .IP \f(CWd_aintl\fR 4 .IX Item "d_aintl" From \fId_aintl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_AINTL\*(C'\fR symbol, which indicates to the C program that the \fBaintl()\fR routine is available. If copysignl is also present we can emulate modfl. .ie n .IP """d_alarm""" 4 .el .IP \f(CWd_alarm\fR 4 .IX Item "d_alarm" From \fId_alarm.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ALARM\*(C'\fR symbol, which indicates to the C program that the \fBalarm()\fR routine is available. .ie n .IP """d_archlib""" 4 .el .IP \f(CWd_archlib\fR 4 .IX Item "d_archlib" From \fIarchlib.U\fR: .Sp This variable conditionally defines \f(CW\*(C`ARCHLIB\*(C'\fR to hold the pathname of architecture-dependent library files for \f(CW$package\fR. If \&\f(CW$archlib\fR is the same as \f(CW$privlib\fR, then this is set to undef. .ie n .IP """d_asctime64""" 4 .el .IP \f(CWd_asctime64\fR 4 .IX Item "d_asctime64" From \fId_timefuncs64.U\fR: .Sp This variable conditionally defines the HAS_ASCTIME64 symbol, which indicates to the C program that the asctime64 () routine is available. .ie n .IP """d_asctime_r""" 4 .el .IP \f(CWd_asctime_r\fR 4 .IX Item "d_asctime_r" From \fId_asctime_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ASCTIME_R\*(C'\fR symbol, which indicates to the C program that the \fBasctime_r()\fR routine is available. .ie n .IP """d_asinh""" 4 .el .IP \f(CWd_asinh\fR 4 .IX Item "d_asinh" From \fId_asinh.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ASINH\*(C'\fR symbol, which indicates to the C program that the \fBasinh()\fR routine is available. .ie n .IP """d_atanh""" 4 .el .IP \f(CWd_atanh\fR 4 .IX Item "d_atanh" From \fId_atanh.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ATANH\*(C'\fR symbol, which indicates to the C program that the \fBatanh()\fR routine is available. .ie n .IP """d_atolf""" 4 .el .IP \f(CWd_atolf\fR 4 .IX Item "d_atolf" From \fIatolf.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ATOLF\*(C'\fR symbol, which indicates to the C program that the \fBatolf()\fR routine is available. .ie n .IP """d_atoll""" 4 .el .IP \f(CWd_atoll\fR 4 .IX Item "d_atoll" From \fIatoll.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ATOLL\*(C'\fR symbol, which indicates to the C program that the \fBatoll()\fR routine is available. .ie n .IP """d_attribute_always_inline""" 4 .el .IP \f(CWd_attribute_always_inline\fR 4 .IX Item "d_attribute_always_inline" From \fId_attribut.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HASATTRIBUTE_ALWAYS_INLINE\*(C'\fR, which indicates that the C compiler can know that certain functions should always be inlined. .ie n .IP """d_attribute_deprecated""" 4 .el .IP \f(CWd_attribute_deprecated\fR 4 .IX Item "d_attribute_deprecated" From \fId_attribut.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HASATTRIBUTE_DEPRECATED\*(C'\fR, which indicates that \f(CW\*(C`GCC\*(C'\fR can handle the attribute for marking deprecated APIs .ie n .IP """d_attribute_format""" 4 .el .IP \f(CWd_attribute_format\fR 4 .IX Item "d_attribute_format" From \fId_attribut.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HASATTRIBUTE_FORMAT\*(C'\fR, which indicates the C compiler can check for printf-like formats. .ie n .IP """d_attribute_malloc""" 4 .el .IP \f(CWd_attribute_malloc\fR 4 .IX Item "d_attribute_malloc" From \fId_attribut.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HASATTRIBUTE_MALLOC\*(C'\fR, which indicates the C compiler can understand functions as having malloc-like semantics. .ie n .IP """d_attribute_nonnull""" 4 .el .IP \f(CWd_attribute_nonnull\fR 4 .IX Item "d_attribute_nonnull" From \fId_attribut.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HASATTRIBUTE_NONNULL\*(C'\fR, which indicates that the C compiler can know that certain arguments must not be \f(CW\*(C`NULL\*(C'\fR, and will check accordingly at compile time. .ie n .IP """d_attribute_noreturn""" 4 .el .IP \f(CWd_attribute_noreturn\fR 4 .IX Item "d_attribute_noreturn" From \fId_attribut.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HASATTRIBUTE_NORETURN\*(C'\fR, which indicates that the C compiler can know that certain functions are guaranteed never to return. .ie n .IP """d_attribute_pure""" 4 .el .IP \f(CWd_attribute_pure\fR 4 .IX Item "d_attribute_pure" From \fId_attribut.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HASATTRIBUTE_PURE\*(C'\fR, which indicates that the C compiler can know that certain functions are \f(CW\*(C`pure\*(C'\fR functions, meaning that they have no side effects, and only rely on function input \fIand/or\fR global data for their results. .ie n .IP """d_attribute_unused""" 4 .el .IP \f(CWd_attribute_unused\fR 4 .IX Item "d_attribute_unused" From \fId_attribut.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HASATTRIBUTE_UNUSED\*(C'\fR, which indicates that the C compiler can know that certain variables and arguments may not always be used, and to not throw warnings if they don't get used. .ie n .IP """d_attribute_visibility""" 4 .el .IP \f(CWd_attribute_visibility\fR 4 .IX Item "d_attribute_visibility" From \fId_attribut.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HASATTRIBUTE_VISIBILITY\*(C'\fR symbol, and indicates different \f(CW\*(C`GCC\*(C'\fR attribute visibility .ie n .IP """d_attribute_warn_unused_result""" 4 .el .IP \f(CWd_attribute_warn_unused_result\fR 4 .IX Item "d_attribute_warn_unused_result" From \fId_attribut.U\fR: .Sp This variable conditionally defines \&\f(CW\*(C`HASATTRIBUTE_WARN_UNUSED_RESULT\*(C'\fR, which indicates that the C compiler can know that certain functions have a return values that must not be ignored, such as \fBmalloc()\fR or \fBopen()\fR. .ie n .IP """d_backtrace""" 4 .el .IP \f(CWd_backtrace\fR 4 .IX Item "d_backtrace" From \fId_backtrace.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_BACKTRACE\*(C'\fR symbol, which indicates to the C program that the \fBbacktrace()\fR routine is available to get a stack trace. .ie n .IP """d_bsd""" 4 .el .IP \f(CWd_bsd\fR 4 .IX Item "d_bsd" From \fIGuess.U\fR: .Sp This symbol conditionally defines the symbol \f(CW\*(C`BSD\*(C'\fR when running on a \&\f(CW\*(C`BSD\*(C'\fR system. .ie n .IP """d_bsdgetpgrp""" 4 .el .IP \f(CWd_bsdgetpgrp\fR 4 .IX Item "d_bsdgetpgrp" From \fId_getpgrp.U\fR: .Sp This variable conditionally defines \f(CW\*(C`USE_BSD_GETPGRP\*(C'\fR if getpgrp needs one arguments whereas \f(CW\*(C`USG\*(C'\fR one needs none. .ie n .IP """d_bsdsetpgrp""" 4 .el .IP \f(CWd_bsdsetpgrp\fR 4 .IX Item "d_bsdsetpgrp" From \fId_setpgrp.U\fR: .Sp This variable conditionally defines \f(CW\*(C`USE_BSD_SETPGRP\*(C'\fR if setpgrp needs two arguments whereas \f(CW\*(C`USG\*(C'\fR one needs none. See also d_setpgid for a \f(CW\*(C`POSIX\*(C'\fR interface. .ie n .IP """d_builtin_add_overflow""" 4 .el .IP \f(CWd_builtin_add_overflow\fR 4 .IX Item "d_builtin_add_overflow" From \fId_builtin_overflow.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_BUILTIN_ADD_OVERFLOW\*(C'\fR, which indicates that the compiler supports _\|_builtin_add_overflow(x,y,&z) for safely adding x and y into z while checking for overflow. .ie n .IP """d_builtin_choose_expr""" 4 .el .IP \f(CWd_builtin_choose_expr\fR 4 .IX Item "d_builtin_choose_expr" From \fId_builtin.U\fR: .Sp This conditionally defines \f(CW\*(C`HAS_BUILTIN_CHOOSE_EXPR\*(C'\fR, which indicates that the compiler supports _\|_builtin_choose_expr(x,y,z). This built-in function is analogous to the \f(CW\*(C`x?y:z\*(C'\fR operator in C, except that the expression returned has its type unaltered by promotion rules. Also, the built-in function does not evaluate the expression that was not chosen. .ie n .IP """d_builtin_expect""" 4 .el .IP \f(CWd_builtin_expect\fR 4 .IX Item "d_builtin_expect" From \fId_builtin.U\fR: .Sp This conditionally defines \f(CW\*(C`HAS_BUILTIN_EXPECT\*(C'\fR, which indicates that the compiler supports _\|_builtin_expect(exp,c). You may use _\|_builtin_expect to provide the compiler with branch prediction information. .ie n .IP """d_builtin_mul_overflow""" 4 .el .IP \f(CWd_builtin_mul_overflow\fR 4 .IX Item "d_builtin_mul_overflow" From \fId_builtin_overflow.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_BUILTIN_MUL_OVERFLOW\*(C'\fR, which indicates that the compiler supports _\|_builtin_mul_overflow(x,y,&z) for safely multiplying x and y into z while checking for overflow. .ie n .IP """d_builtin_sub_overflow""" 4 .el .IP \f(CWd_builtin_sub_overflow\fR 4 .IX Item "d_builtin_sub_overflow" From \fId_builtin_overflow.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_BUILTIN_SUB_OVERFLOW\*(C'\fR, which indicates that the compiler supports _\|_builtin_sub_overflow(x,y,&z) for safely subtracting y from x into z while checking for overflow. .ie n .IP """d_c99_variadic_macros""" 4 .el .IP \f(CWd_c99_variadic_macros\fR 4 .IX Item "d_c99_variadic_macros" From \fId_c99_variadic.U\fR: .Sp This variable conditionally defines the HAS_C99_VARIADIC_MACROS symbol, which indicates to the C program that C99 variadic macros are available. .ie n .IP """d_casti32""" 4 .el .IP \f(CWd_casti32\fR 4 .IX Item "d_casti32" From \fId_casti32.U\fR: .Sp This variable conditionally defines CASTI32, which indicates whether the C compiler can cast large floats to 32\-bit ints. .ie n .IP """d_castneg""" 4 .el .IP \f(CWd_castneg\fR 4 .IX Item "d_castneg" From \fId_castneg.U\fR: .Sp This variable conditionally defines \f(CW\*(C`CASTNEG\*(C'\fR, which indicates whether the C compiler can cast negative float to unsigned. .ie n .IP """d_cbrt""" 4 .el .IP \f(CWd_cbrt\fR 4 .IX Item "d_cbrt" From \fId_cbrt.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_CBRT\*(C'\fR symbol, which indicates to the C program that the \fBcbrt()\fR (cube root) function is available. .ie n .IP """d_chown""" 4 .el .IP \f(CWd_chown\fR 4 .IX Item "d_chown" From \fId_chown.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_CHOWN\*(C'\fR symbol, which indicates to the C program that the \fBchown()\fR routine is available. .ie n .IP """d_chroot""" 4 .el .IP \f(CWd_chroot\fR 4 .IX Item "d_chroot" From \fId_chroot.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_CHROOT\*(C'\fR symbol, which indicates to the C program that the \fBchroot()\fR routine is available. .ie n .IP """d_chsize""" 4 .el .IP \f(CWd_chsize\fR 4 .IX Item "d_chsize" From \fId_chsize.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`CHSIZE\*(C'\fR symbol, which indicates to the C program that the \fBchsize()\fR routine is available to truncate files. You might need a \-lx to get this routine. .ie n .IP """d_class""" 4 .el .IP \f(CWd_class\fR 4 .IX Item "d_class" From \fId_class.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_CLASS\*(C'\fR symbol, which indicates to the C program that the \fBclass()\fR routine is available. .ie n .IP """d_clearenv""" 4 .el .IP \f(CWd_clearenv\fR 4 .IX Item "d_clearenv" From \fId_clearenv.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_CLEARENV\*(C'\fR symbol, which indicates to the C program that the clearenv () routine is available. .ie n .IP """d_closedir""" 4 .el .IP \f(CWd_closedir\fR 4 .IX Item "d_closedir" From \fId_closedir.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_CLOSEDIR\*(C'\fR if \fBclosedir()\fR is available. .ie n .IP """d_cmsghdr_s""" 4 .el .IP \f(CWd_cmsghdr_s\fR 4 .IX Item "d_cmsghdr_s" From \fId_cmsghdr_s.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRUCT_CMSGHDR\*(C'\fR symbol, which indicates that the struct cmsghdr is supported. .ie n .IP """d_copysign""" 4 .el .IP \f(CWd_copysign\fR 4 .IX Item "d_copysign" From \fId_copysign.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_COPYSIGN\*(C'\fR symbol, which indicates to the C program that the \fBcopysign()\fR routine is available. .ie n .IP """d_copysignl""" 4 .el .IP \f(CWd_copysignl\fR 4 .IX Item "d_copysignl" From \fId_copysignl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_COPYSIGNL\*(C'\fR symbol, which indicates to the C program that the \fBcopysignl()\fR routine is available. If aintl is also present we can emulate modfl. .ie n .IP """d_cplusplus""" 4 .el .IP \f(CWd_cplusplus\fR 4 .IX Item "d_cplusplus" From \fId_cplusplus.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`USE_CPLUSPLUS\*(C'\fR symbol, which indicates that a C++ compiler was used to compiled Perl and will be used to compile extensions. .ie n .IP """d_crypt""" 4 .el .IP \f(CWd_crypt\fR 4 .IX Item "d_crypt" From \fId_crypt.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`CRYPT\*(C'\fR symbol, which indicates to the C program that the \fBcrypt()\fR routine is available to encrypt passwords and the like. .ie n .IP """d_crypt_r""" 4 .el .IP \f(CWd_crypt_r\fR 4 .IX Item "d_crypt_r" From \fId_crypt_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_CRYPT_R\*(C'\fR symbol, which indicates to the C program that the \fBcrypt_r()\fR routine is available. .ie n .IP """d_csh""" 4 .el .IP \f(CWd_csh\fR 4 .IX Item "d_csh" From \fId_csh.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`CSH\*(C'\fR symbol, which indicates to the C program that the C\-shell exists. .ie n .IP """d_ctermid""" 4 .el .IP \f(CWd_ctermid\fR 4 .IX Item "d_ctermid" From \fId_ctermid.U\fR: .Sp This variable conditionally defines \f(CW\*(C`CTERMID\*(C'\fR if \fBctermid()\fR is available to generate filename for terminal. .ie n .IP """d_ctermid_r""" 4 .el .IP \f(CWd_ctermid_r\fR 4 .IX Item "d_ctermid_r" From \fId_ctermid_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_CTERMID_R\*(C'\fR symbol, which indicates to the C program that the \fBctermid_r()\fR routine is available. .ie n .IP """d_ctime64""" 4 .el .IP \f(CWd_ctime64\fR 4 .IX Item "d_ctime64" From \fId_timefuncs64.U\fR: .Sp This variable conditionally defines the HAS_CTIME64 symbol, which indicates to the C program that the ctime64 () routine is available. .ie n .IP """d_ctime_r""" 4 .el .IP \f(CWd_ctime_r\fR 4 .IX Item "d_ctime_r" From \fId_ctime_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_CTIME_R\*(C'\fR symbol, which indicates to the C program that the \fBctime_r()\fR routine is available. .ie n .IP """d_cuserid""" 4 .el .IP \f(CWd_cuserid\fR 4 .IX Item "d_cuserid" From \fId_cuserid.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_CUSERID\*(C'\fR symbol, which indicates to the C program that the \fBcuserid()\fR routine is available to get character login names. .ie n .IP """d_dbminitproto""" 4 .el .IP \f(CWd_dbminitproto\fR 4 .IX Item "d_dbminitproto" From \fId_dbminitproto.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_DBMINIT_PROTO\*(C'\fR symbol, which indicates to the C program that the system provides a prototype for the \fBdbminit()\fR function. Otherwise, it is up to the program to supply one. .ie n .IP """d_difftime""" 4 .el .IP \f(CWd_difftime\fR 4 .IX Item "d_difftime" From \fId_difftime.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_DIFFTIME\*(C'\fR symbol, which indicates to the C program that the \fBdifftime()\fR routine is available. .ie n .IP """d_difftime64""" 4 .el .IP \f(CWd_difftime64\fR 4 .IX Item "d_difftime64" From \fId_timefuncs64.U\fR: .Sp This variable conditionally defines the HAS_DIFFTIME64 symbol, which indicates to the C program that the difftime64 () routine is available. .ie n .IP """d_dir_dd_fd""" 4 .el .IP \f(CWd_dir_dd_fd\fR 4 .IX Item "d_dir_dd_fd" From \fId_dir_dd_fd.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_DIR_DD_FD\*(C'\fR symbol, which indicates that the \f(CW\*(C`DIR\*(C'\fR directory stream type contains a member variable called dd_fd. .ie n .IP """d_dirfd""" 4 .el .IP \f(CWd_dirfd\fR 4 .IX Item "d_dirfd" From \fId_dirfd.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_DIRFD\*(C'\fR constant, which indicates to the C program that \fBdirfd()\fR is available to return the file descriptor of a directory stream. .ie n .IP """d_dirnamlen""" 4 .el .IP \f(CWd_dirnamlen\fR 4 .IX Item "d_dirnamlen" From \fIi_dirent.U\fR: .Sp This variable conditionally defines \f(CW\*(C`DIRNAMLEN\*(C'\fR, which indicates to the C program that the length of directory entry names is provided by a d_namelen field. .ie n .IP """d_dladdr""" 4 .el .IP \f(CWd_dladdr\fR 4 .IX Item "d_dladdr" From \fId_dladdr.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_DLADDR\*(C'\fR symbol, which indicates to the C program that the \fBdladdr()\fR routine is available to get a stack trace. .ie n .IP """d_dlerror""" 4 .el .IP \f(CWd_dlerror\fR 4 .IX Item "d_dlerror" From \fId_dlerror.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_DLERROR\*(C'\fR symbol, which indicates to the C program that the \fBdlerror()\fR routine is available. .ie n .IP """d_dlopen""" 4 .el .IP \f(CWd_dlopen\fR 4 .IX Item "d_dlopen" From \fId_dlopen.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_DLOPEN\*(C'\fR symbol, which indicates to the C program that the \fBdlopen()\fR routine is available. .ie n .IP """d_dlsymun""" 4 .el .IP \f(CWd_dlsymun\fR 4 .IX Item "d_dlsymun" From \fId_dlsymun.U\fR: .Sp This variable conditionally defines \f(CW\*(C`DLSYM_NEEDS_UNDERSCORE\*(C'\fR, which indicates that we need to prepend an underscore to the symbol name before calling \fBdlsym()\fR. .ie n .IP """d_dosuid""" 4 .el .IP \f(CWd_dosuid\fR 4 .IX Item "d_dosuid" From \fId_dosuid.U\fR: .Sp This variable conditionally defines the symbol \f(CW\*(C`DOSUID\*(C'\fR, which tells the C program that it should insert setuid emulation code on hosts which have setuid #! scripts disabled. .ie n .IP """d_double_has_inf""" 4 .el .IP \f(CWd_double_has_inf\fR 4 .IX Item "d_double_has_inf" From \fIlongdblfio.U\fR: .Sp This variable conditionally defines the symbol \f(CW\*(C`DOUBLE_HAS_INF\*(C'\fR which indicates that the double type has an infinity. .ie n .IP """d_double_has_nan""" 4 .el .IP \f(CWd_double_has_nan\fR 4 .IX Item "d_double_has_nan" From \fIlongdblfio.U\fR: .Sp This variable conditionally defines the symbol \f(CW\*(C`DOUBLE_HAS_NAN\*(C'\fR which indicates that the double type has a not-a-number. .ie n .IP """d_double_has_negative_zero""" 4 .el .IP \f(CWd_double_has_negative_zero\fR 4 .IX Item "d_double_has_negative_zero" From \fIlongdblfio.U\fR: .Sp This variable conditionally defines the symbol \f(CW\*(C`DOUBLE_HAS_NEGATIVE_ZERO\*(C'\fR which indicates that the double type has a negative zero. .ie n .IP """d_double_has_subnormals""" 4 .el .IP \f(CWd_double_has_subnormals\fR 4 .IX Item "d_double_has_subnormals" From \fIlongdblfio.U\fR: .Sp This variable conditionally defines the symbol \f(CW\*(C`DOUBLE_HAS_SUBNORMALS\*(C'\fR which indicates that the double type has subnormals (denormals). .ie n .IP """d_double_style_cray""" 4 .el .IP \f(CWd_double_style_cray\fR 4 .IX Item "d_double_style_cray" From \fIlongdblfio.U\fR: .Sp This variable conditionally defines the symbol \f(CW\*(C`DOUBLE_STYLE_CRAY\*(C'\fR which indicates that the double is the 64\-bit \f(CW\*(C`CRAY\*(C'\fR mainframe format. .ie n .IP """d_double_style_ibm""" 4 .el .IP \f(CWd_double_style_ibm\fR 4 .IX Item "d_double_style_ibm" From \fIlongdblfio.U\fR: .Sp This variable conditionally defines the symbol \f(CW\*(C`DOUBLE_STYLE_IBM\*(C'\fR, which indicates that the double is the 64\-bit \f(CW\*(C`IBM\*(C'\fR mainframe format. .ie n .IP """d_double_style_ieee""" 4 .el .IP \f(CWd_double_style_ieee\fR 4 .IX Item "d_double_style_ieee" From \fIlongdblfio.U\fR: .Sp This variable conditionally defines the symbol \f(CW\*(C`DOUBLE_STYLE_IEEE\*(C'\fR, which indicates that the double is the 64\-bit \f(CW\*(C`IEEE\*(C'\fR 754. .ie n .IP """d_double_style_vax""" 4 .el .IP \f(CWd_double_style_vax\fR 4 .IX Item "d_double_style_vax" From \fIlongdblfio.U\fR: .Sp This variable conditionally defines the symbol \f(CW\*(C`DOUBLE_STYLE_VAX\*(C'\fR, which indicates that the double is the 64\-bit \f(CW\*(C`VAX\*(C'\fR format D or G. .ie n .IP """d_drand48_r""" 4 .el .IP \f(CWd_drand48_r\fR 4 .IX Item "d_drand48_r" From \fId_drand48_r.U\fR: .Sp This variable conditionally defines the HAS_DRAND48_R symbol, which indicates to the C program that the \fBdrand48_r()\fR routine is available. .ie n .IP """d_drand48proto""" 4 .el .IP \f(CWd_drand48proto\fR 4 .IX Item "d_drand48proto" From \fId_drand48proto.U\fR: .Sp This variable conditionally defines the HAS_DRAND48_PROTO symbol, which indicates to the C program that the system provides a prototype for the \fBdrand48()\fR function. Otherwise, it is up to the program to supply one. .ie n .IP """d_dup2""" 4 .el .IP \f(CWd_dup2\fR 4 .IX Item "d_dup2" From \fId_dup2.U\fR: .Sp This variable conditionally defines HAS_DUP2 if \fBdup2()\fR is available to duplicate file descriptors. .ie n .IP """d_dup3""" 4 .el .IP \f(CWd_dup3\fR 4 .IX Item "d_dup3" From \fId_dup3.U\fR: .Sp This variable conditionally defines HAS_DUP3 if \fBdup3()\fR is available to duplicate file descriptors. .ie n .IP """d_duplocale""" 4 .el .IP \f(CWd_duplocale\fR 4 .IX Item "d_duplocale" From \fId_newlocale.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_DUPLOCALE\*(C'\fR symbol, which indicates to the C program that the \fBduplocale()\fR routine is available to duplicate a locale object. .ie n .IP """d_eaccess""" 4 .el .IP \f(CWd_eaccess\fR 4 .IX Item "d_eaccess" From \fId_eaccess.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_EACCESS\*(C'\fR symbol, which indicates to the C program that the \fBeaccess()\fR routine is available. .ie n .IP """d_endgrent""" 4 .el .IP \f(CWd_endgrent\fR 4 .IX Item "d_endgrent" From \fId_endgrent.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ENDGRENT\*(C'\fR symbol, which indicates to the C program that the \fBendgrent()\fR routine is available for sequential access of the group database. .ie n .IP """d_endgrent_r""" 4 .el .IP \f(CWd_endgrent_r\fR 4 .IX Item "d_endgrent_r" From \fId_endgrent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ENDGRENT_R\*(C'\fR symbol, which indicates to the C program that the \fBendgrent_r()\fR routine is available. .ie n .IP """d_endhent""" 4 .el .IP \f(CWd_endhent\fR 4 .IX Item "d_endhent" From \fId_endhent.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_ENDHOSTENT\*(C'\fR if \fBendhostent()\fR is available to close whatever was being used for host queries. .ie n .IP """d_endhostent_r""" 4 .el .IP \f(CWd_endhostent_r\fR 4 .IX Item "d_endhostent_r" From \fId_endhostent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ENDHOSTENT_R\*(C'\fR symbol, which indicates to the C program that the \fBendhostent_r()\fR routine is available. .ie n .IP """d_endnent""" 4 .el .IP \f(CWd_endnent\fR 4 .IX Item "d_endnent" From \fId_endnent.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_ENDNETENT\*(C'\fR if \fBendnetent()\fR is available to close whatever was being used for network queries. .ie n .IP """d_endnetent_r""" 4 .el .IP \f(CWd_endnetent_r\fR 4 .IX Item "d_endnetent_r" From \fId_endnetent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ENDNETENT_R\*(C'\fR symbol, which indicates to the C program that the \fBendnetent_r()\fR routine is available. .ie n .IP """d_endpent""" 4 .el .IP \f(CWd_endpent\fR 4 .IX Item "d_endpent" From \fId_endpent.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_ENDPROTOENT\*(C'\fR if \fBendprotoent()\fR is available to close whatever was being used for protocol queries. .ie n .IP """d_endprotoent_r""" 4 .el .IP \f(CWd_endprotoent_r\fR 4 .IX Item "d_endprotoent_r" From \fId_endprotoent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ENDPROTOENT_R\*(C'\fR symbol, which indicates to the C program that the \fBendprotoent_r()\fR routine is available. .ie n .IP """d_endpwent""" 4 .el .IP \f(CWd_endpwent\fR 4 .IX Item "d_endpwent" From \fId_endpwent.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ENDPWENT\*(C'\fR symbol, which indicates to the C program that the \fBendpwent()\fR routine is available for sequential access of the passwd database. .ie n .IP """d_endpwent_r""" 4 .el .IP \f(CWd_endpwent_r\fR 4 .IX Item "d_endpwent_r" From \fId_endpwent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ENDPWENT_R\*(C'\fR symbol, which indicates to the C program that the \fBendpwent_r()\fR routine is available. .ie n .IP """d_endsent""" 4 .el .IP \f(CWd_endsent\fR 4 .IX Item "d_endsent" From \fId_endsent.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_ENDSERVENT\*(C'\fR if \fBendservent()\fR is available to close whatever was being used for service queries. .ie n .IP """d_endservent_r""" 4 .el .IP \f(CWd_endservent_r\fR 4 .IX Item "d_endservent_r" From \fId_endservent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ENDSERVENT_R\*(C'\fR symbol, which indicates to the C program that the \fBendservent_r()\fR routine is available. .ie n .IP """d_eofnblk""" 4 .el .IP \f(CWd_eofnblk\fR 4 .IX Item "d_eofnblk" From \fInblock_io.U\fR: .Sp This variable conditionally defines \f(CW\*(C`EOF_NONBLOCK\*(C'\fR if \f(CW\*(C`EOF\*(C'\fR can be seen when reading from a non-blocking I/O source. .ie n .IP """d_erf""" 4 .el .IP \f(CWd_erf\fR 4 .IX Item "d_erf" From \fId_erf.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ERF\*(C'\fR symbol, which indicates to the C program that the \fBerf()\fR routine is available. .ie n .IP """d_erfc""" 4 .el .IP \f(CWd_erfc\fR 4 .IX Item "d_erfc" From \fId_erfc.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ERFC\*(C'\fR symbol, which indicates to the C program that the \fBerfc()\fR routine is available. .ie n .IP """d_eunice""" 4 .el .IP \f(CWd_eunice\fR 4 .IX Item "d_eunice" From \fIGuess.U\fR: .Sp This variable conditionally defines the symbols \f(CW\*(C`EUNICE\*(C'\fR and \f(CW\*(C`VAX\*(C'\fR, which alerts the C program that it must deal with idiosyncrasies of \f(CW\*(C`VMS\*(C'\fR. .ie n .IP """d_exp2""" 4 .el .IP \f(CWd_exp2\fR 4 .IX Item "d_exp2" From \fId_exp2.U\fR: .Sp This variable conditionally defines the HAS_EXP2 symbol, which indicates to the C program that the \fBexp2()\fR routine is available. .ie n .IP """d_expm1""" 4 .el .IP \f(CWd_expm1\fR 4 .IX Item "d_expm1" From \fId_expm1.U\fR: .Sp This variable conditionally defines the HAS_EXPM1 symbol, which indicates to the C program that the \fBexpm1()\fR routine is available. .ie n .IP """d_faststdio""" 4 .el .IP \f(CWd_faststdio\fR 4 .IX Item "d_faststdio" From \fId_faststdio.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FAST_STDIO\*(C'\fR symbol, which indicates to the C program that the "fast stdio" is available to manipulate the stdio buffers directly. .ie n .IP """d_fchdir""" 4 .el .IP \f(CWd_fchdir\fR 4 .IX Item "d_fchdir" From \fId_fchdir.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FCHDIR\*(C'\fR symbol, which indicates to the C program that the \fBfchdir()\fR routine is available. .ie n .IP """d_fchmod""" 4 .el .IP \f(CWd_fchmod\fR 4 .IX Item "d_fchmod" From \fId_fchmod.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FCHMOD\*(C'\fR symbol, which indicates to the C program that the \fBfchmod()\fR routine is available to change mode of opened files. .ie n .IP """d_fchmodat""" 4 .el .IP \f(CWd_fchmodat\fR 4 .IX Item "d_fchmodat" From \fId_fsat.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FCHMODAT\*(C'\fR symbol, which indicates the \f(CW\*(C`POSIX\*(C'\fR \fBfchmodat()\fR function is available. .ie n .IP """d_fchown""" 4 .el .IP \f(CWd_fchown\fR 4 .IX Item "d_fchown" From \fId_fchown.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FCHOWN\*(C'\fR symbol, which indicates to the C program that the \fBfchown()\fR routine is available to change ownership of opened files. .ie n .IP """d_fcntl""" 4 .el .IP \f(CWd_fcntl\fR 4 .IX Item "d_fcntl" From \fId_fcntl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FCNTL\*(C'\fR symbol, and indicates whether the \fBfcntl()\fR function exists .ie n .IP """d_fcntl_can_lock""" 4 .el .IP \f(CWd_fcntl_can_lock\fR 4 .IX Item "d_fcntl_can_lock" From \fId_fcntl_can_lock.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`FCNTL_CAN_LOCK\*(C'\fR symbol and indicates whether file locking with \fBfcntl()\fR works. .ie n .IP """d_fd_macros""" 4 .el .IP \f(CWd_fd_macros\fR 4 .IX Item "d_fd_macros" From \fId_fd_set.U\fR: .Sp This variable contains the eventual value of the \f(CW\*(C`HAS_FD_MACROS\*(C'\fR symbol, which indicates if your C compiler knows about the macros which manipulate an fd_set. .ie n .IP """d_fd_set""" 4 .el .IP \f(CWd_fd_set\fR 4 .IX Item "d_fd_set" From \fId_fd_set.U\fR: .Sp This variable contains the eventual value of the \f(CW\*(C`HAS_FD_SET\*(C'\fR symbol, which indicates if your C compiler knows about the fd_set typedef. .ie n .IP """d_fdclose""" 4 .el .IP \f(CWd_fdclose\fR 4 .IX Item "d_fdclose" From \fId_fdclose.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FDCLOSE\*(C'\fR symbol, which indicates to the C program that the \fBfdclose()\fR routine is available. .ie n .IP """d_fdim""" 4 .el .IP \f(CWd_fdim\fR 4 .IX Item "d_fdim" From \fId_fdim.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FDIM\*(C'\fR symbol, which indicates to the C program that the \fBfdim()\fR routine is available. .ie n .IP """d_fds_bits""" 4 .el .IP \f(CWd_fds_bits\fR 4 .IX Item "d_fds_bits" From \fId_fd_set.U\fR: .Sp This variable contains the eventual value of the \f(CW\*(C`HAS_FDS_BITS\*(C'\fR symbol, which indicates if your fd_set typedef contains the fds_bits member. If you have an fd_set typedef, but the dweebs who installed it did a half-fast job and neglected to provide the macros to manipulate an fd_set, \f(CW\*(C`HAS_FDS_BITS\*(C'\fR will let us know how to fix the gaffe. .ie n .IP """d_fegetround""" 4 .el .IP \f(CWd_fegetround\fR 4 .IX Item "d_fegetround" From \fId_fegetround.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_FEGETROUND\*(C'\fR if \fBfegetround()\fR is available to get the floating point rounding mode. .ie n .IP """d_ffs""" 4 .el .IP \f(CWd_ffs\fR 4 .IX Item "d_ffs" From \fId_ffs.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FFS\*(C'\fR symbol, which indicates to the C program that the \fBffs()\fR routine is available to find the first bit which is set in its integer argument. .ie n .IP """d_ffsl""" 4 .el .IP \f(CWd_ffsl\fR 4 .IX Item "d_ffsl" From \fId_ffs.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FFSL\*(C'\fR symbol, which indicates to the C program that the \fBffsl()\fR routine is available to find the first bit which is set in its long integer argument. .ie n .IP """d_fgetpos""" 4 .el .IP \f(CWd_fgetpos\fR 4 .IX Item "d_fgetpos" From \fId_fgetpos.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_FGETPOS\*(C'\fR if \fBfgetpos()\fR is available to get the file position indicator. .ie n .IP """d_finite""" 4 .el .IP \f(CWd_finite\fR 4 .IX Item "d_finite" From \fId_finite.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FINITE\*(C'\fR symbol, which indicates to the C program that the \fBfinite()\fR routine is available. .ie n .IP """d_finitel""" 4 .el .IP \f(CWd_finitel\fR 4 .IX Item "d_finitel" From \fId_finitel.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FINITEL\*(C'\fR symbol, which indicates to the C program that the \fBfinitel()\fR routine is available. .ie n .IP """d_flexfnam""" 4 .el .IP \f(CWd_flexfnam\fR 4 .IX Item "d_flexfnam" From \fId_flexfnam.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`FLEXFILENAMES\*(C'\fR symbol, which indicates that the system supports filenames longer than 14 characters. .ie n .IP """d_flock""" 4 .el .IP \f(CWd_flock\fR 4 .IX Item "d_flock" From \fId_flock.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_FLOCK\*(C'\fR if \fBflock()\fR is available to do file locking. .ie n .IP """d_flockproto""" 4 .el .IP \f(CWd_flockproto\fR 4 .IX Item "d_flockproto" From \fId_flockproto.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FLOCK_PROTO\*(C'\fR symbol, which indicates to the C program that the system provides a prototype for the \fBflock()\fR function. Otherwise, it is up to the program to supply one. .ie n .IP """d_fma""" 4 .el .IP \f(CWd_fma\fR 4 .IX Item "d_fma" From \fId_fma.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FMA\*(C'\fR symbol, which indicates to the C program that the \fBfma()\fR routine is available. .ie n .IP """d_fmax""" 4 .el .IP \f(CWd_fmax\fR 4 .IX Item "d_fmax" From \fId_fmax.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FMAX\*(C'\fR symbol, which indicates to the C program that the \fBfmax()\fR routine is available. .ie n .IP """d_fmin""" 4 .el .IP \f(CWd_fmin\fR 4 .IX Item "d_fmin" From \fId_fmin.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FMIN\*(C'\fR symbol, which indicates to the C program that the \fBfmin()\fR routine is available. .ie n .IP """d_fork""" 4 .el .IP \f(CWd_fork\fR 4 .IX Item "d_fork" From \fId_fork.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FORK\*(C'\fR symbol, which indicates to the C program that the \fBfork()\fR routine is available. .ie n .IP """d_fp_class""" 4 .el .IP \f(CWd_fp_class\fR 4 .IX Item "d_fp_class" From \fId_fp_class.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FP_CLASS\*(C'\fR symbol, which indicates to the C program that the \fBfp_class()\fR routine is available. .ie n .IP """d_fp_classify""" 4 .el .IP \f(CWd_fp_classify\fR 4 .IX Item "d_fp_classify" From \fId_fpclassify.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FP_CLASSIFY\*(C'\fR symbol, which indicates to the C program that the \fBfp_classify()\fR routine is available. .ie n .IP """d_fp_classl""" 4 .el .IP \f(CWd_fp_classl\fR 4 .IX Item "d_fp_classl" From \fId_fp_classl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FP_CLASSL\*(C'\fR symbol, which indicates to the C program that the \fBfp_classl()\fR routine is available. .ie n .IP """d_fpathconf""" 4 .el .IP \f(CWd_fpathconf\fR 4 .IX Item "d_fpathconf" From \fId_pathconf.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FPATHCONF\*(C'\fR symbol, which indicates to the C program that the \fBpathconf()\fR routine is available to determine file-system related limits and options associated with a given open file descriptor. .ie n .IP """d_fpclass""" 4 .el .IP \f(CWd_fpclass\fR 4 .IX Item "d_fpclass" From \fId_fpclass.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FPCLASS\*(C'\fR symbol, which indicates to the C program that the \fBfpclass()\fR routine is available. .ie n .IP """d_fpclassify""" 4 .el .IP \f(CWd_fpclassify\fR 4 .IX Item "d_fpclassify" From \fId_fpclassify.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FPCLASSIFY\*(C'\fR symbol, which indicates to the C program that the \fBfpclassify()\fR routine is available. .ie n .IP """d_fpclassl""" 4 .el .IP \f(CWd_fpclassl\fR 4 .IX Item "d_fpclassl" From \fId_fpclassl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FPCLASSL\*(C'\fR symbol, which indicates to the C program that the \fBfpclassl()\fR routine is available. .ie n .IP """d_fpgetround""" 4 .el .IP \f(CWd_fpgetround\fR 4 .IX Item "d_fpgetround" From \fId_fpgetround.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_FPGETROUND\*(C'\fR if \fBfpgetround()\fR is available to get the floating point rounding mode. .ie n .IP """d_fpos64_t""" 4 .el .IP \f(CWd_fpos64_t\fR 4 .IX Item "d_fpos64_t" From \fId_fpos64_t.U\fR: .Sp This symbol will be defined if the C compiler supports fpos64_t. .ie n .IP """d_freelocale""" 4 .el .IP \f(CWd_freelocale\fR 4 .IX Item "d_freelocale" From \fId_newlocale.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FREELOCALE\*(C'\fR symbol, which indicates to the C program that the \fBfreelocale()\fR routine is available to deallocates the resources associated with a locale object. .ie n .IP """d_frexpl""" 4 .el .IP \f(CWd_frexpl\fR 4 .IX Item "d_frexpl" From \fId_frexpl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FREXPL\*(C'\fR symbol, which indicates to the C program that the \fBfrexpl()\fR routine is available. .ie n .IP """d_fs_data_s""" 4 .el .IP \f(CWd_fs_data_s\fR 4 .IX Item "d_fs_data_s" From \fId_fs_data_s.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRUCT_FS_DATA\*(C'\fR symbol, which indicates that the struct fs_data is supported. .ie n .IP """d_fseeko""" 4 .el .IP \f(CWd_fseeko\fR 4 .IX Item "d_fseeko" From \fId_fseeko.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FSEEKO\*(C'\fR symbol, which indicates to the C program that the \fBfseeko()\fR routine is available. .ie n .IP """d_fsetpos""" 4 .el .IP \f(CWd_fsetpos\fR 4 .IX Item "d_fsetpos" From \fId_fsetpos.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_FSETPOS\*(C'\fR if \fBfsetpos()\fR is available to set the file position indicator. .ie n .IP """d_fstatfs""" 4 .el .IP \f(CWd_fstatfs\fR 4 .IX Item "d_fstatfs" From \fId_fstatfs.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FSTATFS\*(C'\fR symbol, which indicates to the C program that the \fBfstatfs()\fR routine is available. .ie n .IP """d_fstatvfs""" 4 .el .IP \f(CWd_fstatvfs\fR 4 .IX Item "d_fstatvfs" From \fId_statvfs.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FSTATVFS\*(C'\fR symbol, which indicates to the C program that the \fBfstatvfs()\fR routine is available. .ie n .IP """d_fsync""" 4 .el .IP \f(CWd_fsync\fR 4 .IX Item "d_fsync" From \fId_fsync.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FSYNC\*(C'\fR symbol, which indicates to the C program that the \fBfsync()\fR routine is available. .ie n .IP """d_ftello""" 4 .el .IP \f(CWd_ftello\fR 4 .IX Item "d_ftello" From \fId_ftello.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FTELLO\*(C'\fR symbol, which indicates to the C program that the \fBftello()\fR routine is available. .ie n .IP """d_ftime""" 4 .el .IP \f(CWd_ftime\fR 4 .IX Item "d_ftime" From \fId_ftime.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FTIME\*(C'\fR symbol, which indicates that the \fBftime()\fR routine exists. The \fBftime()\fR routine is basically a sub-second accuracy clock. .ie n .IP """d_futimes""" 4 .el .IP \f(CWd_futimes\fR 4 .IX Item "d_futimes" From \fId_futimes.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_FUTIMES\*(C'\fR symbol, which indicates to the C program that the \fBfutimes()\fR routine is available. .ie n .IP """d_gai_strerror""" 4 .el .IP \f(CWd_gai_strerror\fR 4 .IX Item "d_gai_strerror" From \fId_gai_strerror.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GAI_STRERROR\*(C'\fR symbol if the \fBgai_strerror()\fR routine is available and can be used to translate error codes returned by \fBgetaddrinfo()\fR into human readable strings. .ie n .IP """d_gdbm_ndbm_h_uses_prototypes""" 4 .el .IP \f(CWd_gdbm_ndbm_h_uses_prototypes\fR 4 .IX Item "d_gdbm_ndbm_h_uses_prototypes" From \fIi_ndbm.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`NDBM_H_USES_PROTOTYPES\*(C'\fR symbol, which indicates that the gdbm\-\fIndbm.h\fR include file uses real \f(CW\*(C`ANSI\*(C'\fR C prototypes instead of K&R style function declarations. K&R style declarations are unsupported in C++, so the include file requires special handling when using a C++ compiler and this variable is undefined. Consult the different d_*ndbm_h_uses_prototypes variables to get the same information for alternative \fIndbm.h\fR include files. .ie n .IP """d_gdbmndbm_h_uses_prototypes""" 4 .el .IP \f(CWd_gdbmndbm_h_uses_prototypes\fR 4 .IX Item "d_gdbmndbm_h_uses_prototypes" From \fIi_ndbm.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`NDBM_H_USES_PROTOTYPES\*(C'\fR symbol, which indicates that the \fIgdbm/ndbm.h\fR include file uses real \f(CW\*(C`ANSI\*(C'\fR C prototypes instead of K&R style function declarations. K&R style declarations are unsupported in C++, so the include file requires special handling when using a C++ compiler and this variable is undefined. Consult the different d_*ndbm_h_uses_prototypes variables to get the same information for alternative \fIndbm.h\fR include files. .ie n .IP """d_getaddrinfo""" 4 .el .IP \f(CWd_getaddrinfo\fR 4 .IX Item "d_getaddrinfo" From \fId_getaddrinfo.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETADDRINFO\*(C'\fR symbol, which indicates to the C program that the \fBgetaddrinfo()\fR function is available. .ie n .IP """d_getcwd""" 4 .el .IP \f(CWd_getcwd\fR 4 .IX Item "d_getcwd" From \fId_getcwd.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETCWD\*(C'\fR symbol, which indicates to the C program that the \fBgetcwd()\fR routine is available to get the current working directory. .ie n .IP """d_getenv_preserves_other_thread""" 4 .el .IP \f(CWd_getenv_preserves_other_thread\fR 4 .IX Item "d_getenv_preserves_other_thread" From \fId_getenv_thread.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`GETENV_PRESERVES_OTHER_THREAD\*(C'\fR symbol, which indicates to the C program that the \fBgetenv()\fR system call does not zap the static buffer in a different thread. .ie n .IP """d_getespwnam""" 4 .el .IP \f(CWd_getespwnam\fR 4 .IX Item "d_getespwnam" From \fId_getespwnam.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_GETESPWNAM\*(C'\fR if \fBgetespwnam()\fR is available to retrieve enhanced (shadow) password entries by name. .ie n .IP """d_getfsstat""" 4 .el .IP \f(CWd_getfsstat\fR 4 .IX Item "d_getfsstat" From \fId_getfsstat.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETFSSTAT\*(C'\fR symbol, which indicates to the C program that the \fBgetfsstat()\fR routine is available. .ie n .IP """d_getgrent""" 4 .el .IP \f(CWd_getgrent\fR 4 .IX Item "d_getgrent" From \fId_getgrent.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETGRENT\*(C'\fR symbol, which indicates to the C program that the \fBgetgrent()\fR routine is available for sequential access of the group database. .ie n .IP """d_getgrent_r""" 4 .el .IP \f(CWd_getgrent_r\fR 4 .IX Item "d_getgrent_r" From \fId_getgrent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETGRENT_R\*(C'\fR symbol, which indicates to the C program that the \fBgetgrent_r()\fR routine is available. .ie n .IP """d_getgrgid_r""" 4 .el .IP \f(CWd_getgrgid_r\fR 4 .IX Item "d_getgrgid_r" From \fId_getgrgid_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETGRGID_R\*(C'\fR symbol, which indicates to the C program that the \fBgetgrgid_r()\fR routine is available. .ie n .IP """d_getgrnam_r""" 4 .el .IP \f(CWd_getgrnam_r\fR 4 .IX Item "d_getgrnam_r" From \fId_getgrnam_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETGRNAM_R\*(C'\fR symbol, which indicates to the C program that the \fBgetgrnam_r()\fR routine is available. .ie n .IP """d_getgrps""" 4 .el .IP \f(CWd_getgrps\fR 4 .IX Item "d_getgrps" From \fId_getgrps.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETGROUPS\*(C'\fR symbol, which indicates to the C program that the \fBgetgroups()\fR routine is available to get the list of process groups. .ie n .IP """d_gethbyaddr""" 4 .el .IP \f(CWd_gethbyaddr\fR 4 .IX Item "d_gethbyaddr" From \fId_gethbyad.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETHOSTBYADDR\*(C'\fR symbol, which indicates to the C program that the \fBgethostbyaddr()\fR routine is available to look up hosts by their \f(CW\*(C`IP\*(C'\fR addresses. .ie n .IP """d_gethbyname""" 4 .el .IP \f(CWd_gethbyname\fR 4 .IX Item "d_gethbyname" From \fId_gethbynm.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETHOSTBYNAME\*(C'\fR symbol, which indicates to the C program that the \fBgethostbyname()\fR routine is available to look up host names in some data base or other. .ie n .IP """d_gethent""" 4 .el .IP \f(CWd_gethent\fR 4 .IX Item "d_gethent" From \fId_gethent.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_GETHOSTENT\*(C'\fR if \fBgethostent()\fR is available to look up host names in some data base or another. .ie n .IP """d_gethname""" 4 .el .IP \f(CWd_gethname\fR 4 .IX Item "d_gethname" From \fId_gethname.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETHOSTNAME\*(C'\fR symbol, which indicates to the C program that the \fBgethostname()\fR routine may be used to derive the host name. .ie n .IP """d_gethostbyaddr_r""" 4 .el .IP \f(CWd_gethostbyaddr_r\fR 4 .IX Item "d_gethostbyaddr_r" From \fId_gethostbyaddr_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETHOSTBYADDR_R\*(C'\fR symbol, which indicates to the C program that the \fBgethostbyaddr_r()\fR routine is available. .ie n .IP """d_gethostbyname_r""" 4 .el .IP \f(CWd_gethostbyname_r\fR 4 .IX Item "d_gethostbyname_r" From \fId_gethostbyname_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETHOSTBYNAME_R\*(C'\fR symbol, which indicates to the C program that the \fBgethostbyname_r()\fR routine is available. .ie n .IP """d_gethostent_r""" 4 .el .IP \f(CWd_gethostent_r\fR 4 .IX Item "d_gethostent_r" From \fId_gethostent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETHOSTENT_R\*(C'\fR symbol, which indicates to the C program that the \fBgethostent_r()\fR routine is available. .ie n .IP """d_gethostprotos""" 4 .el .IP \f(CWd_gethostprotos\fR 4 .IX Item "d_gethostprotos" From \fId_gethostprotos.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETHOST_PROTOS\*(C'\fR symbol, which indicates to the C program that supplies prototypes for the various gethost*() functions. See also \fInetdbtype.U\fR for probing for various netdb types. .ie n .IP """d_getitimer""" 4 .el .IP \f(CWd_getitimer\fR 4 .IX Item "d_getitimer" From \fId_getitimer.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETITIMER\*(C'\fR symbol, which indicates to the C program that the \fBgetitimer()\fR routine is available. .ie n .IP """d_getlogin""" 4 .el .IP \f(CWd_getlogin\fR 4 .IX Item "d_getlogin" From \fId_getlogin.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETLOGIN\*(C'\fR symbol, which indicates to the C program that the \fBgetlogin()\fR routine is available to get the login name. .ie n .IP """d_getlogin_r""" 4 .el .IP \f(CWd_getlogin_r\fR 4 .IX Item "d_getlogin_r" From \fId_getlogin_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETLOGIN_R\*(C'\fR symbol, which indicates to the C program that the \fBgetlogin_r()\fR routine is available. .ie n .IP """d_getmnt""" 4 .el .IP \f(CWd_getmnt\fR 4 .IX Item "d_getmnt" From \fId_getmnt.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETMNT\*(C'\fR symbol, which indicates to the C program that the \fBgetmnt()\fR routine is available to retrieve one or more mount info blocks by filename. .ie n .IP """d_getmntent""" 4 .el .IP \f(CWd_getmntent\fR 4 .IX Item "d_getmntent" From \fId_getmntent.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETMNTENT\*(C'\fR symbol, which indicates to the C program that the \fBgetmntent()\fR routine is available to iterate through mounted files to get their mount info. .ie n .IP """d_getnameinfo""" 4 .el .IP \f(CWd_getnameinfo\fR 4 .IX Item "d_getnameinfo" From \fId_getnameinfo.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETNAMEINFO\*(C'\fR symbol, which indicates to the C program that the \fBgetnameinfo()\fR function is available. .ie n .IP """d_getnbyaddr""" 4 .el .IP \f(CWd_getnbyaddr\fR 4 .IX Item "d_getnbyaddr" From \fId_getnbyad.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETNETBYADDR\*(C'\fR symbol, which indicates to the C program that the \fBgetnetbyaddr()\fR routine is available to look up networks by their \f(CW\*(C`IP\*(C'\fR addresses. .ie n .IP """d_getnbyname""" 4 .el .IP \f(CWd_getnbyname\fR 4 .IX Item "d_getnbyname" From \fId_getnbynm.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETNETBYNAME\*(C'\fR symbol, which indicates to the C program that the \fBgetnetbyname()\fR routine is available to look up networks by their names. .ie n .IP """d_getnent""" 4 .el .IP \f(CWd_getnent\fR 4 .IX Item "d_getnent" From \fId_getnent.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_GETNETENT\*(C'\fR if \fBgetnetent()\fR is available to look up network names in some data base or another. .ie n .IP """d_getnetbyaddr_r""" 4 .el .IP \f(CWd_getnetbyaddr_r\fR 4 .IX Item "d_getnetbyaddr_r" From \fId_getnetbyaddr_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETNETBYADDR_R\*(C'\fR symbol, which indicates to the C program that the \fBgetnetbyaddr_r()\fR routine is available. .ie n .IP """d_getnetbyname_r""" 4 .el .IP \f(CWd_getnetbyname_r\fR 4 .IX Item "d_getnetbyname_r" From \fId_getnetbyname_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETNETBYNAME_R\*(C'\fR symbol, which indicates to the C program that the \fBgetnetbyname_r()\fR routine is available. .ie n .IP """d_getnetent_r""" 4 .el .IP \f(CWd_getnetent_r\fR 4 .IX Item "d_getnetent_r" From \fId_getnetent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETNETENT_R\*(C'\fR symbol, which indicates to the C program that the \fBgetnetent_r()\fR routine is available. .ie n .IP """d_getnetprotos""" 4 .el .IP \f(CWd_getnetprotos\fR 4 .IX Item "d_getnetprotos" From \fId_getnetprotos.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETNET_PROTOS\*(C'\fR symbol, which indicates to the C program that supplies prototypes for the various getnet*() functions. See also \fInetdbtype.U\fR for probing for various netdb types. .ie n .IP """d_getpagsz""" 4 .el .IP \f(CWd_getpagsz\fR 4 .IX Item "d_getpagsz" From \fId_getpagsz.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_GETPAGESIZE\*(C'\fR if \fBgetpagesize()\fR is available to get the system page size. .ie n .IP """d_getpbyname""" 4 .el .IP \f(CWd_getpbyname\fR 4 .IX Item "d_getpbyname" From \fId_getprotby.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETPROTOBYNAME\*(C'\fR symbol, which indicates to the C program that the \&\fBgetprotobyname()\fR routine is available to look up protocols by their name. .ie n .IP """d_getpbynumber""" 4 .el .IP \f(CWd_getpbynumber\fR 4 .IX Item "d_getpbynumber" From \fId_getprotby.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETPROTOBYNUMBER\*(C'\fR symbol, which indicates to the C program that the \&\fBgetprotobynumber()\fR routine is available to look up protocols by their number. .ie n .IP """d_getpent""" 4 .el .IP \f(CWd_getpent\fR 4 .IX Item "d_getpent" From \fId_getpent.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_GETPROTOENT\*(C'\fR if \fBgetprotoent()\fR is available to look up protocols in some data base or another. .ie n .IP """d_getpgid""" 4 .el .IP \f(CWd_getpgid\fR 4 .IX Item "d_getpgid" From \fId_getpgid.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETPGID\*(C'\fR symbol, which indicates to the C program that the getpgid(pid) function is available to get the process group id. .ie n .IP """d_getpgrp""" 4 .el .IP \f(CWd_getpgrp\fR 4 .IX Item "d_getpgrp" From \fId_getpgrp.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_GETPGRP\*(C'\fR if \fBgetpgrp()\fR is available to get the current process group. .ie n .IP """d_getpgrp2""" 4 .el .IP \f(CWd_getpgrp2\fR 4 .IX Item "d_getpgrp2" From \fId_getpgrp2.U\fR: .Sp This variable conditionally defines the HAS_GETPGRP2 symbol, which indicates to the C program that the \fBgetpgrp2()\fR (as in \fIDG/\fR\f(CI\*(C`UX\*(C'\fR) routine is available to get the current process group. .ie n .IP """d_getppid""" 4 .el .IP \f(CWd_getppid\fR 4 .IX Item "d_getppid" From \fId_getppid.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETPPID\*(C'\fR symbol, which indicates to the C program that the \fBgetppid()\fR routine is available to get the parent process \f(CW\*(C`ID\*(C'\fR. .ie n .IP """d_getprior""" 4 .el .IP \f(CWd_getprior\fR 4 .IX Item "d_getprior" From \fId_getprior.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_GETPRIORITY\*(C'\fR if \fBgetpriority()\fR is available to get a process's priority. .ie n .IP """d_getprotobyname_r""" 4 .el .IP \f(CWd_getprotobyname_r\fR 4 .IX Item "d_getprotobyname_r" From \fId_getprotobyname_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETPROTOBYNAME_R\*(C'\fR symbol, which indicates to the C program that the \fBgetprotobyname_r()\fR routine is available. .ie n .IP """d_getprotobynumber_r""" 4 .el .IP \f(CWd_getprotobynumber_r\fR 4 .IX Item "d_getprotobynumber_r" From \fId_getprotobynumber_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETPROTOBYNUMBER_R\*(C'\fR symbol, which indicates to the C program that the \fBgetprotobynumber_r()\fR routine is available. .ie n .IP """d_getprotoent_r""" 4 .el .IP \f(CWd_getprotoent_r\fR 4 .IX Item "d_getprotoent_r" From \fId_getprotoent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETPROTOENT_R\*(C'\fR symbol, which indicates to the C program that the \fBgetprotoent_r()\fR routine is available. .ie n .IP """d_getprotoprotos""" 4 .el .IP \f(CWd_getprotoprotos\fR 4 .IX Item "d_getprotoprotos" From \fId_getprotoprotos.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETPROTO_PROTOS\*(C'\fR symbol, which indicates to the C program that supplies prototypes for the various getproto*() functions. See also \fInetdbtype.U\fR for probing for various netdb types. .ie n .IP """d_getprpwnam""" 4 .el .IP \f(CWd_getprpwnam\fR 4 .IX Item "d_getprpwnam" From \fId_getprpwnam.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_GETPRPWNAM\*(C'\fR if \fBgetprpwnam()\fR is available to retrieve protected (shadow) password entries by name. .ie n .IP """d_getpwent""" 4 .el .IP \f(CWd_getpwent\fR 4 .IX Item "d_getpwent" From \fId_getpwent.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETPWENT\*(C'\fR symbol, which indicates to the C program that the \fBgetpwent()\fR routine is available for sequential access of the passwd database. .ie n .IP """d_getpwent_r""" 4 .el .IP \f(CWd_getpwent_r\fR 4 .IX Item "d_getpwent_r" From \fId_getpwent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETPWENT_R\*(C'\fR symbol, which indicates to the C program that the \fBgetpwent_r()\fR routine is available. .ie n .IP """d_getpwnam_r""" 4 .el .IP \f(CWd_getpwnam_r\fR 4 .IX Item "d_getpwnam_r" From \fId_getpwnam_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETPWNAM_R\*(C'\fR symbol, which indicates to the C program that the \fBgetpwnam_r()\fR routine is available. .ie n .IP """d_getpwuid_r""" 4 .el .IP \f(CWd_getpwuid_r\fR 4 .IX Item "d_getpwuid_r" From \fId_getpwuid_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETPWUID_R\*(C'\fR symbol, which indicates to the C program that the \fBgetpwuid_r()\fR routine is available. .ie n .IP """d_getsbyname""" 4 .el .IP \f(CWd_getsbyname\fR 4 .IX Item "d_getsbyname" From \fId_getsrvby.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETSERVBYNAME\*(C'\fR symbol, which indicates to the C program that the \&\fBgetservbyname()\fR routine is available to look up services by their name. .ie n .IP """d_getsbyport""" 4 .el .IP \f(CWd_getsbyport\fR 4 .IX Item "d_getsbyport" From \fId_getsrvby.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETSERVBYPORT\*(C'\fR symbol, which indicates to the C program that the \&\fBgetservbyport()\fR routine is available to look up services by their port. .ie n .IP """d_getsent""" 4 .el .IP \f(CWd_getsent\fR 4 .IX Item "d_getsent" From \fId_getsent.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_GETSERVENT\*(C'\fR if \fBgetservent()\fR is available to look up network services in some data base or another. .ie n .IP """d_getservbyname_r""" 4 .el .IP \f(CWd_getservbyname_r\fR 4 .IX Item "d_getservbyname_r" From \fId_getservbyname_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETSERVBYNAME_R\*(C'\fR symbol, which indicates to the C program that the \fBgetservbyname_r()\fR routine is available. .ie n .IP """d_getservbyport_r""" 4 .el .IP \f(CWd_getservbyport_r\fR 4 .IX Item "d_getservbyport_r" From \fId_getservbyport_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETSERVBYPORT_R\*(C'\fR symbol, which indicates to the C program that the \fBgetservbyport_r()\fR routine is available. .ie n .IP """d_getservent_r""" 4 .el .IP \f(CWd_getservent_r\fR 4 .IX Item "d_getservent_r" From \fId_getservent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETSERVENT_R\*(C'\fR symbol, which indicates to the C program that the \fBgetservent_r()\fR routine is available. .ie n .IP """d_getservprotos""" 4 .el .IP \f(CWd_getservprotos\fR 4 .IX Item "d_getservprotos" From \fId_getservprotos.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETSERV_PROTOS\*(C'\fR symbol, which indicates to the C program that supplies prototypes for the various getserv*() functions. See also \fInetdbtype.U\fR for probing for various netdb types. .ie n .IP """d_getspnam""" 4 .el .IP \f(CWd_getspnam\fR 4 .IX Item "d_getspnam" From \fId_getspnam.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_GETSPNAM\*(C'\fR if \fBgetspnam()\fR is available to retrieve SysV shadow password entries by name. .ie n .IP """d_getspnam_r""" 4 .el .IP \f(CWd_getspnam_r\fR 4 .IX Item "d_getspnam_r" From \fId_getspnam_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETSPNAM_R\*(C'\fR symbol, which indicates to the C program that the \fBgetspnam_r()\fR routine is available. .ie n .IP """d_gettimeod""" 4 .el .IP \f(CWd_gettimeod\fR 4 .IX Item "d_gettimeod" From \fId_ftime.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GETTIMEOFDAY\*(C'\fR symbol, which indicates that the \fBgettimeofday()\fR system call exists (to obtain a sub-second accuracy clock). You should probably include . .ie n .IP """d_gmtime64""" 4 .el .IP \f(CWd_gmtime64\fR 4 .IX Item "d_gmtime64" From \fId_timefuncs64.U\fR: .Sp This variable conditionally defines the HAS_GMTIME64 symbol, which indicates to the C program that the gmtime64 () routine is available. .ie n .IP """d_gmtime_r""" 4 .el .IP \f(CWd_gmtime_r\fR 4 .IX Item "d_gmtime_r" From \fId_gmtime_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_GMTIME_R\*(C'\fR symbol, which indicates to the C program that the \fBgmtime_r()\fR routine is available. .ie n .IP """d_gnulibc""" 4 .el .IP \f(CWd_gnulibc\fR 4 .IX Item "d_gnulibc" From \fId_gnulibc.U\fR: .Sp Defined if we're dealing with the \f(CW\*(C`GNU\*(C'\fR C Library. .ie n .IP """d_grpasswd""" 4 .el .IP \f(CWd_grpasswd\fR 4 .IX Item "d_grpasswd" From \fIi_grp.U\fR: .Sp This variable conditionally defines \f(CW\*(C`GRPASSWD\*(C'\fR, which indicates that struct group in contains gr_passwd. .ie n .IP """d_has_C_UTF8""" 4 .el .IP \f(CWd_has_C_UTF8\fR 4 .IX Item "d_has_C_UTF8" From \fId_setlocale.U\fR: .Sp This variable is set to either \f(CW\*(C`true\*(C'\fR or \f(CW\*(C`false\*(C'\fR depending on whether the compilation system supports the \fIC.UTF\fR\-8 locale. .ie n .IP """d_hasmntopt""" 4 .el .IP \f(CWd_hasmntopt\fR 4 .IX Item "d_hasmntopt" From \fId_hasmntopt.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_HASMNTOPT\*(C'\fR symbol, which indicates to the C program that the \fBhasmntopt()\fR routine is available to query the mount options of file systems. .ie n .IP """d_htonl""" 4 .el .IP \f(CWd_htonl\fR 4 .IX Item "d_htonl" From \fId_htonl.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_HTONL\*(C'\fR if \fBhtonl()\fR and its friends are available to do network order byte swapping. .ie n .IP """d_hypot""" 4 .el .IP \f(CWd_hypot\fR 4 .IX Item "d_hypot" From \fId_hypot.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_HYPOT\*(C'\fR if hypot is available for numerically stable hypotenuse function. .ie n .IP """d_ilogb""" 4 .el .IP \f(CWd_ilogb\fR 4 .IX Item "d_ilogb" From \fId_ilogb.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ILOGB\*(C'\fR symbol, which indicates to the C program that the \fBilogb()\fR routine is available for extracting the exponent of double x as a signed integer. .ie n .IP """d_ilogbl""" 4 .el .IP \f(CWd_ilogbl\fR 4 .IX Item "d_ilogbl" From \fId_ilogbl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ILOGBL\*(C'\fR symbol, which indicates to the C program that the \fBilogbl()\fR routine is available for extracting the exponent of long double x as a signed integer. If scalbnl is also present we can emulate frexpl. .ie n .IP """d_inc_version_list""" 4 .el .IP \f(CWd_inc_version_list\fR 4 .IX Item "d_inc_version_list" From \fIinc_version_list.U\fR: .Sp This variable conditionally defines \f(CW\*(C`PERL_INC_VERSION_LIST\*(C'\fR. It is set to undef when \f(CW\*(C`PERL_INC_VERSION_LIST\*(C'\fR is empty. .ie n .IP """d_inetaton""" 4 .el .IP \f(CWd_inetaton\fR 4 .IX Item "d_inetaton" From \fId_inetaton.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_INET_ATON\*(C'\fR symbol, which indicates to the C program that the \fBinet_aton()\fR function is available to parse \f(CW\*(C`IP\*(C'\fR address \f(CW\*(C`dotted\-quad\*(C'\fR strings. .ie n .IP """d_inetntop""" 4 .el .IP \f(CWd_inetntop\fR 4 .IX Item "d_inetntop" From \fId_inetntop.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_INETNTOP\*(C'\fR symbol, which indicates to the C program that the \fBinet_ntop()\fR function is available. .ie n .IP """d_inetpton""" 4 .el .IP \f(CWd_inetpton\fR 4 .IX Item "d_inetpton" From \fId_inetpton.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_INETPTON\*(C'\fR symbol, which indicates to the C program that the \fBinet_pton()\fR function is available. .ie n .IP """d_int64_t""" 4 .el .IP \f(CWd_int64_t\fR 4 .IX Item "d_int64_t" From \fId_int64_t.U\fR: .Sp This symbol will be defined if the C compiler supports int64_t. .ie n .IP """d_ip_mreq""" 4 .el .IP \f(CWd_ip_mreq\fR 4 .IX Item "d_ip_mreq" From \fId_socket.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_IP_MREQ\*(C'\fR symbol, which indicates the availability of a struct ip_mreq. .ie n .IP """d_ip_mreq_source""" 4 .el .IP \f(CWd_ip_mreq_source\fR 4 .IX Item "d_ip_mreq_source" From \fId_socket.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_IP_MREQ_SOURCE\*(C'\fR symbol, which indicates the availability of a struct ip_mreq_source. .ie n .IP """d_ipv6_mreq""" 4 .el .IP \f(CWd_ipv6_mreq\fR 4 .IX Item "d_ipv6_mreq" From \fId_socket.U\fR: .Sp This variable conditionally defines the HAS_IPV6_MREQ symbol, which indicates the availability of a struct ipv6_mreq. .ie n .IP """d_ipv6_mreq_source""" 4 .el .IP \f(CWd_ipv6_mreq_source\fR 4 .IX Item "d_ipv6_mreq_source" From \fId_socket.U\fR: .Sp This variable conditionally defines the HAS_IPV6_MREQ_SOURCE symbol, which indicates the availability of a struct ipv6_mreq_source. .ie n .IP """d_isascii""" 4 .el .IP \f(CWd_isascii\fR 4 .IX Item "d_isascii" From \fId_isascii.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ISASCII\*(C'\fR constant, which indicates to the C program that \fBisascii()\fR is available. .ie n .IP """d_isblank""" 4 .el .IP \f(CWd_isblank\fR 4 .IX Item "d_isblank" From \fId_isblank.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ISBLANK\*(C'\fR constant, which indicates to the C program that \fBisblank()\fR is available. .ie n .IP """d_isfinite""" 4 .el .IP \f(CWd_isfinite\fR 4 .IX Item "d_isfinite" From \fId_isfinite.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ISFINITE\*(C'\fR symbol, which indicates to the C program that the \fBisfinite()\fR routine is available. .ie n .IP """d_isfinitel""" 4 .el .IP \f(CWd_isfinitel\fR 4 .IX Item "d_isfinitel" From \fId_isfinitel.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ISFINITEL\*(C'\fR symbol, which indicates to the C program that the \fBisfinitel()\fR routine is available. .ie n .IP """d_isinf""" 4 .el .IP \f(CWd_isinf\fR 4 .IX Item "d_isinf" From \fId_isinf.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ISINF\*(C'\fR symbol, which indicates to the C program that the \fBisinf()\fR routine is available. .ie n .IP """d_isinfl""" 4 .el .IP \f(CWd_isinfl\fR 4 .IX Item "d_isinfl" From \fId_isinfl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ISINFL\*(C'\fR symbol, which indicates to the C program that the \fBisinfl()\fR routine is available. .ie n .IP """d_isless""" 4 .el .IP \f(CWd_isless\fR 4 .IX Item "d_isless" From \fId_isless.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ISLESS\*(C'\fR symbol, which indicates to the C program that the \fBisless()\fR routine is available. .ie n .IP """d_isnan""" 4 .el .IP \f(CWd_isnan\fR 4 .IX Item "d_isnan" From \fId_isnan.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ISNAN\*(C'\fR symbol, which indicates to the C program that the \fBisnan()\fR routine is available. .ie n .IP """d_isnanl""" 4 .el .IP \f(CWd_isnanl\fR 4 .IX Item "d_isnanl" From \fId_isnanl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ISNANL\*(C'\fR symbol, which indicates to the C program that the \fBisnanl()\fR routine is available. .ie n .IP """d_isnormal""" 4 .el .IP \f(CWd_isnormal\fR 4 .IX Item "d_isnormal" From \fId_isnormal.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ISNORMAL\*(C'\fR symbol, which indicates to the C program that the \fBisnormal()\fR routine is available. .ie n .IP """d_j0""" 4 .el .IP \f(CWd_j0\fR 4 .IX Item "d_j0" From \fId_j0.U\fR: .Sp This variable conditionally defines the HAS_J0 symbol, which indicates to the C program that the \fBj0()\fR routine is available. .ie n .IP """d_j0l""" 4 .el .IP \f(CWd_j0l\fR 4 .IX Item "d_j0l" From \fId_j0.U\fR: .Sp This variable conditionally defines the HAS_J0L symbol, which indicates to the C program that the \fBj0l()\fR routine is available. .ie n .IP """d_killpg""" 4 .el .IP \f(CWd_killpg\fR 4 .IX Item "d_killpg" From \fId_killpg.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_KILLPG\*(C'\fR symbol, which indicates to the C program that the \fBkillpg()\fR routine is available to kill process groups. .ie n .IP """d_lc_monetary_2008""" 4 .el .IP \f(CWd_lc_monetary_2008\fR 4 .IX Item "d_lc_monetary_2008" From \fId_lc_monetary_2008.U\fR: .Sp This variable conditionally defines HAS_LC_MONETARY_2008 if libc has the international currency locale rules from \f(CW\*(C`POSIX\*(C'\fR 1003.1\-2008. .ie n .IP """d_lchown""" 4 .el .IP \f(CWd_lchown\fR 4 .IX Item "d_lchown" From \fId_lchown.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_LCHOWN\*(C'\fR symbol, which indicates to the C program that the \fBlchown()\fR routine is available to operate on a symbolic link (instead of following the link). .ie n .IP """d_ldbl_dig""" 4 .el .IP \f(CWd_ldbl_dig\fR 4 .IX Item "d_ldbl_dig" From \fId_ldbl_dig.U\fR: .Sp This variable conditionally defines d_ldbl_dig if this system's header files provide \f(CW\*(C`LDBL_DIG\*(C'\fR, which is the number of significant digits in a long double precision number. .ie n .IP """d_ldexpl""" 4 .el .IP \f(CWd_ldexpl\fR 4 .IX Item "d_ldexpl" From \fId_longdbl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_LDEXPL\*(C'\fR symbol, which indicates to the C program that the \fBldexpl()\fR routine is available. .ie n .IP """d_lgamma""" 4 .el .IP \f(CWd_lgamma\fR 4 .IX Item "d_lgamma" From \fId_lgamma.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_LGAMMA\*(C'\fR symbol, which indicates to the C program that the \fBlgamma()\fR routine is available for the log gamma function. See also d_tgamma and d_lgamma_r. .ie n .IP """d_lgamma_r""" 4 .el .IP \f(CWd_lgamma_r\fR 4 .IX Item "d_lgamma_r" From \fId_lgamma_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_LGAMMA_R\*(C'\fR symbol, which indicates to the C program that the \fBlgamma_r()\fR routine is available for the log gamma function, without using the global signgam variable. .ie n .IP """d_libm_lib_version""" 4 .el .IP \f(CWd_libm_lib_version\fR 4 .IX Item "d_libm_lib_version" From \fId_libm_lib_version.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`LIBM_LIB_VERSION\*(C'\fR symbol, which indicates to the C program that \fImath.h\fR defines \f(CW\*(C`_LIB_VERSION\*(C'\fR being available in libm .ie n .IP """d_libname_unique""" 4 .el .IP \f(CWd_libname_unique\fR 4 .IX Item "d_libname_unique" From \fIso.U\fR: .Sp This variable is defined if the target system insists on unique basenames for shared library files. This is currently true on Android, false everywhere else we know of. Defaults to \f(CW\*(C`undef\*(C'\fR. .ie n .IP """d_link""" 4 .el .IP \f(CWd_link\fR 4 .IX Item "d_link" From \fId_link.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_LINK\*(C'\fR if \fBlink()\fR is available to create hard links. .ie n .IP """d_linkat""" 4 .el .IP \f(CWd_linkat\fR 4 .IX Item "d_linkat" From \fId_fsat.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_LINKAT\*(C'\fR symbol, which indicates the \f(CW\*(C`POSIX\*(C'\fR \fBlinkat()\fR function is available. .ie n .IP """d_llrint""" 4 .el .IP \f(CWd_llrint\fR 4 .IX Item "d_llrint" From \fId_llrint.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_LLRINT\*(C'\fR symbol, which indicates to the C program that the \fBllrint()\fR routine is available to return the long long value closest to a double (according to the current rounding mode). .ie n .IP """d_llrintl""" 4 .el .IP \f(CWd_llrintl\fR 4 .IX Item "d_llrintl" From \fId_llrintl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_LLRINTL\*(C'\fR symbol, which indicates to the C program that the \fBllrintl()\fR routine is available to return the long long value closest to a long double (according to the current rounding mode). .ie n .IP """d_llround""" 4 .el .IP \f(CWd_llround\fR 4 .IX Item "d_llround" From \fId_llround.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_LLROUND\*(C'\fR symbol, which indicates to the C program that the \fBllround()\fR routine is available to return the long long value nearest to x. .ie n .IP """d_llroundl""" 4 .el .IP \f(CWd_llroundl\fR 4 .IX Item "d_llroundl" From \fId_llroundl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_LLROUNDL\*(C'\fR symbol, which indicates to the C program that the \fBllroundl()\fR routine is available to return the long long value nearest to x away from zero. .ie n .IP """d_localeconv_l""" 4 .el .IP \f(CWd_localeconv_l\fR 4 .IX Item "d_localeconv_l" From \fId_localeconv_l.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_LOCALECONV_L\*(C'\fR symbol, which indicates to the C program that the \fBlocaleconv_l()\fR routine is available. .ie n .IP """d_localtime64""" 4 .el .IP \f(CWd_localtime64\fR 4 .IX Item "d_localtime64" From \fId_timefuncs64.U\fR: .Sp This variable conditionally defines the HAS_LOCALTIME64 symbol, which indicates to the C program that the localtime64 () routine is available. .ie n .IP """d_localtime_r""" 4 .el .IP \f(CWd_localtime_r\fR 4 .IX Item "d_localtime_r" From \fId_localtime_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_LOCALTIME_R\*(C'\fR symbol, which indicates to the C program that the \fBlocaltime_r()\fR routine is available. .ie n .IP """d_localtime_r_needs_tzset""" 4 .el .IP \f(CWd_localtime_r_needs_tzset\fR 4 .IX Item "d_localtime_r_needs_tzset" From \fId_localtime_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`LOCALTIME_R_NEEDS_TZSET\*(C'\fR symbol, which makes us call tzset before \fBlocaltime_r()\fR .ie n .IP """d_locconv""" 4 .el .IP \f(CWd_locconv\fR 4 .IX Item "d_locconv" From \fId_locconv.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_LOCALECONV\*(C'\fR if \fBlocaleconv()\fR is available for numeric and monetary formatting conventions. .ie n .IP """d_lockf""" 4 .el .IP \f(CWd_lockf\fR 4 .IX Item "d_lockf" From \fId_lockf.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_LOCKF\*(C'\fR if \fBlockf()\fR is available to do file locking. .ie n .IP """d_log1p""" 4 .el .IP \f(CWd_log1p\fR 4 .IX Item "d_log1p" From \fId_log1p.U\fR: .Sp This variable conditionally defines the HAS_LOG1P symbol, which indicates to the C program that the \fBlogp1()\fR routine is available to compute log(1 + x) for values of x close to zero. .ie n .IP """d_log2""" 4 .el .IP \f(CWd_log2\fR 4 .IX Item "d_log2" From \fId_log2.U\fR: .Sp This variable conditionally defines the HAS_LOG2 symbol, which indicates to the C program that the \fBlog2()\fR routine is available to compute log base two. .ie n .IP """d_logb""" 4 .el .IP \f(CWd_logb\fR 4 .IX Item "d_logb" From \fId_logb.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_LOGB\*(C'\fR symbol, which indicates to the C program that the \fBlogb()\fR routine is available to extract the exponent of x. .ie n .IP """d_long_double_style_ieee""" 4 .el .IP \f(CWd_long_double_style_ieee\fR 4 .IX Item "d_long_double_style_ieee" From \fId_longdbl.U\fR: .Sp This variable conditionally defines \f(CW\*(C`LONG_DOUBLE_STYLE_IEEE\*(C'\fR if the long double is any of the \f(CW\*(C`IEEE\*(C'\fR 754 style long doubles: \&\f(CW\*(C`LONG_DOUBLE_STYLE_IEEE_STD\*(C'\fR, \f(CW\*(C`LONG_DOUBLE_STYLE_IEEE_EXTENDED\*(C'\fR, \&\f(CW\*(C`LONG_DOUBLE_STYLE_IEEE_DOUBLEDOUBLE\*(C'\fR. .ie n .IP """d_long_double_style_ieee_doubledouble""" 4 .el .IP \f(CWd_long_double_style_ieee_doubledouble\fR 4 .IX Item "d_long_double_style_ieee_doubledouble" From \fId_longdbl.U\fR: .Sp This variable conditionally defines \f(CW\*(C`LONG_DOUBLE_STYLE_IEEE_DOUBLEDOUBLE\*(C'\fR if the long double is the 128\-bit \f(CW\*(C`IEEE\*(C'\fR 754 double-double. .ie n .IP """d_long_double_style_ieee_extended""" 4 .el .IP \f(CWd_long_double_style_ieee_extended\fR 4 .IX Item "d_long_double_style_ieee_extended" From \fId_longdbl.U\fR: .Sp This variable conditionally defines \f(CW\*(C`LONG_DOUBLE_STYLE_IEEE_EXTENDED\*(C'\fR if the long double is the 80\-bit \f(CW\*(C`IEEE\*(C'\fR 754 extended precision. Note that despite the \f(CW\*(C`extended\*(C'\fR this is less than the \f(CW\*(C`std\*(C'\fR, since this is an extension of the double precision. .ie n .IP """d_long_double_style_ieee_std""" 4 .el .IP \f(CWd_long_double_style_ieee_std\fR 4 .IX Item "d_long_double_style_ieee_std" From \fId_longdbl.U\fR: .Sp This variable conditionally defines \f(CW\*(C`LONG_DOUBLE_STYLE_IEEE_STD\*(C'\fR if the long double is the 128\-bit \f(CW\*(C`IEEE\*(C'\fR 754. .ie n .IP """d_long_double_style_vax""" 4 .el .IP \f(CWd_long_double_style_vax\fR 4 .IX Item "d_long_double_style_vax" From \fId_longdbl.U\fR: .Sp This variable conditionally defines \f(CW\*(C`LONG_DOUBLE_STYLE_VAX\*(C'\fR if the long double is the 128\-bit \f(CW\*(C`VAX\*(C'\fR format H. .ie n .IP """d_longdbl""" 4 .el .IP \f(CWd_longdbl\fR 4 .IX Item "d_longdbl" From \fId_longdbl.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_LONG_DOUBLE\*(C'\fR if the long double type is supported. .ie n .IP """d_longlong""" 4 .el .IP \f(CWd_longlong\fR 4 .IX Item "d_longlong" From \fId_longlong.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_LONG_LONG\*(C'\fR if the long long type is supported. .ie n .IP """d_lrint""" 4 .el .IP \f(CWd_lrint\fR 4 .IX Item "d_lrint" From \fId_lrint.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_LRINT\*(C'\fR symbol, which indicates to the C program that the \fBlrint()\fR routine is available to return the integral value closest to a double (according to the current rounding mode). .ie n .IP """d_lrintl""" 4 .el .IP \f(CWd_lrintl\fR 4 .IX Item "d_lrintl" From \fId_lrintl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_LRINTL\*(C'\fR symbol, which indicates to the C program that the \fBlrintl()\fR routine is available to return the integral value closest to a long double (according to the current rounding mode). .ie n .IP """d_lround""" 4 .el .IP \f(CWd_lround\fR 4 .IX Item "d_lround" From \fId_lround.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_LROUND\*(C'\fR symbol, which indicates to the C program that the \fBlround()\fR routine is available to return the integral value nearest to x. .ie n .IP """d_lroundl""" 4 .el .IP \f(CWd_lroundl\fR 4 .IX Item "d_lroundl" From \fId_lroundl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_LROUNDL\*(C'\fR symbol, which indicates to the C program that the \fBlroundl()\fR routine is available to return the integral value nearest to x away from zero. .ie n .IP """d_lseekproto""" 4 .el .IP \f(CWd_lseekproto\fR 4 .IX Item "d_lseekproto" From \fId_lseekproto.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_LSEEK_PROTO\*(C'\fR symbol, which indicates to the C program that the system provides a prototype for the \fBlseek()\fR function. Otherwise, it is up to the program to supply one. .ie n .IP """d_lstat""" 4 .el .IP \f(CWd_lstat\fR 4 .IX Item "d_lstat" From \fId_lstat.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_LSTAT\*(C'\fR if \fBlstat()\fR is available to do file stats on symbolic links. .ie n .IP """d_madvise""" 4 .el .IP \f(CWd_madvise\fR 4 .IX Item "d_madvise" From \fId_madvise.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_MADVISE\*(C'\fR if \fBmadvise()\fR is available to map a file into memory. .ie n .IP """d_malloc_good_size""" 4 .el .IP \f(CWd_malloc_good_size\fR 4 .IX Item "d_malloc_good_size" From \fId_malloc_size.U\fR: .Sp This symbol, if defined, indicates that the malloc_good_size routine is available for use. .ie n .IP """d_malloc_size""" 4 .el .IP \f(CWd_malloc_size\fR 4 .IX Item "d_malloc_size" From \fId_malloc_size.U\fR: .Sp This symbol, if defined, indicates that the malloc_size routine is available for use. .ie n .IP """d_malloc_usable_size""" 4 .el .IP \f(CWd_malloc_usable_size\fR 4 .IX Item "d_malloc_usable_size" From \fId_malloc_size.U\fR: .Sp This symbol, if defined, indicates that the malloc_usable_size routine is available for use. .ie n .IP """d_mblen""" 4 .el .IP \f(CWd_mblen\fR 4 .IX Item "d_mblen" From \fId_mblen.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MBLEN\*(C'\fR symbol, which indicates to the C program that the \fBmblen()\fR routine is available to find the number of bytes in a multibyte character. .ie n .IP """d_mbrlen""" 4 .el .IP \f(CWd_mbrlen\fR 4 .IX Item "d_mbrlen" From \fId_mbrlen.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MBRLEN\*(C'\fR symbol if the \&\fBmbrlen()\fR routine is available to be used to get the length of multi-byte character strings. .ie n .IP """d_mbrtowc""" 4 .el .IP \f(CWd_mbrtowc\fR 4 .IX Item "d_mbrtowc" From \fId_mbrtowc.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MBRTOWC\*(C'\fR symbol if the \&\fBmbrtowc()\fR routine is available to be used to convert a multi-byte character into a wide character. .ie n .IP """d_mbstowcs""" 4 .el .IP \f(CWd_mbstowcs\fR 4 .IX Item "d_mbstowcs" From \fId_mbstowcs.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MBSTOWCS\*(C'\fR symbol, which indicates to the C program that the \fBmbstowcs()\fR routine is available to convert a multibyte string into a wide character string. .ie n .IP """d_mbtowc""" 4 .el .IP \f(CWd_mbtowc\fR 4 .IX Item "d_mbtowc" From \fId_mbtowc.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MBTOWC\*(C'\fR symbol, which indicates to the C program that the \fBmbtowc()\fR routine is available to convert multibyte to a wide character. .ie n .IP """d_memmem""" 4 .el .IP \f(CWd_memmem\fR 4 .IX Item "d_memmem" From \fId_memmem.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MEMMEM\*(C'\fR symbol, which indicates to the C program that the \fBmemmem()\fR routine is available to return a pointer to the start of the first occurrence of a substring in a memory area (or \f(CW\*(C`NULL\*(C'\fR if not found). .ie n .IP """d_memrchr""" 4 .el .IP \f(CWd_memrchr\fR 4 .IX Item "d_memrchr" From \fId_memrchr.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MEMRCHR\*(C'\fR symbol, which indicates to the C program that the \fBmemrchr()\fR routine is available to return a pointer to the last occurrence of a byte in a memory area (or \f(CW\*(C`NULL\*(C'\fR if not found). .ie n .IP """d_mkdir""" 4 .el .IP \f(CWd_mkdir\fR 4 .IX Item "d_mkdir" From \fId_mkdir.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MKDIR\*(C'\fR symbol, which indicates to the C program that the \fBmkdir()\fR routine is available to create \fIdirectories.\fR. .ie n .IP """d_mkdtemp""" 4 .el .IP \f(CWd_mkdtemp\fR 4 .IX Item "d_mkdtemp" From \fId_mkdtemp.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MKDTEMP\*(C'\fR symbol, which indicates to the C program that the \fBmkdtemp()\fR routine is available to exclusively create a uniquely named temporary directory. .ie n .IP """d_mkfifo""" 4 .el .IP \f(CWd_mkfifo\fR 4 .IX Item "d_mkfifo" From \fId_mkfifo.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MKFIFO\*(C'\fR symbol, which indicates to the C program that the \fBmkfifo()\fR routine is available. .ie n .IP """d_mkostemp""" 4 .el .IP \f(CWd_mkostemp\fR 4 .IX Item "d_mkostemp" From \fId_mkostemp.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_MKOSTEMP\*(C'\fR if \fBmkostemp()\fR is available to exclusively create and open a uniquely named (with a suffix) temporary file. .ie n .IP """d_mkstemp""" 4 .el .IP \f(CWd_mkstemp\fR 4 .IX Item "d_mkstemp" From \fId_mkstemp.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MKSTEMP\*(C'\fR symbol, which indicates to the C program that the \fBmkstemp()\fR routine is available to exclusively create and open a uniquely named temporary file. .ie n .IP """d_mkstemps""" 4 .el .IP \f(CWd_mkstemps\fR 4 .IX Item "d_mkstemps" From \fId_mkstemps.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MKSTEMPS\*(C'\fR symbol, which indicates to the C program that the \fBmkstemps()\fR routine is available to exclusively create and open a uniquely named (with a suffix) temporary file. .ie n .IP """d_mktime""" 4 .el .IP \f(CWd_mktime\fR 4 .IX Item "d_mktime" From \fId_mktime.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MKTIME\*(C'\fR symbol, which indicates to the C program that the \fBmktime()\fR routine is available. .ie n .IP """d_mktime64""" 4 .el .IP \f(CWd_mktime64\fR 4 .IX Item "d_mktime64" From \fId_timefuncs64.U\fR: .Sp This variable conditionally defines the HAS_MKTIME64 symbol, which indicates to the C program that the mktime64 () routine is available. .ie n .IP """d_mmap""" 4 .el .IP \f(CWd_mmap\fR 4 .IX Item "d_mmap" From \fId_mmap.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_MMAP\*(C'\fR if \fBmmap()\fR is available to map a file into memory. .ie n .IP """d_modfl""" 4 .el .IP \f(CWd_modfl\fR 4 .IX Item "d_modfl" From \fId_modfl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MODFL\*(C'\fR symbol, which indicates to the C program that the \fBmodfl()\fR routine is available. .ie n .IP """d_modflproto""" 4 .el .IP \f(CWd_modflproto\fR 4 .IX Item "d_modflproto" From \fId_modfl.U\fR: .Sp This symbol, if defined, indicates that the system provides a prototype for the \fBmodfl()\fR function. Otherwise, it is up to the program to supply one. C99 says it should be long double modfl(long double, long double *); .ie n .IP """d_mprotect""" 4 .el .IP \f(CWd_mprotect\fR 4 .IX Item "d_mprotect" From \fId_mprotect.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_MPROTECT\*(C'\fR if \fBmprotect()\fR is available to modify the access protection of a memory mapped file. .ie n .IP """d_msg""" 4 .el .IP \f(CWd_msg\fR 4 .IX Item "d_msg" From \fId_msg.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MSG\*(C'\fR symbol, which indicates that the entire msg*(2) library is present. .ie n .IP """d_msg_ctrunc""" 4 .el .IP \f(CWd_msg_ctrunc\fR 4 .IX Item "d_msg_ctrunc" From \fId_socket.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MSG_CTRUNC\*(C'\fR symbol, which indicates that the \f(CW\*(C`MSG_CTRUNC\*(C'\fR is available. #ifdef is not enough because it may be an enum, glibc has been known to do this. .ie n .IP """d_msg_dontroute""" 4 .el .IP \f(CWd_msg_dontroute\fR 4 .IX Item "d_msg_dontroute" From \fId_socket.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MSG_DONTROUTE\*(C'\fR symbol, which indicates that the \f(CW\*(C`MSG_DONTROUTE\*(C'\fR is available. #ifdef is not enough because it may be an enum, glibc has been known to do this. .ie n .IP """d_msg_oob""" 4 .el .IP \f(CWd_msg_oob\fR 4 .IX Item "d_msg_oob" From \fId_socket.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MSG_OOB\*(C'\fR symbol, which indicates that the \f(CW\*(C`MSG_OOB\*(C'\fR is available. #ifdef is not enough because it may be an enum, glibc has been known to do this. .ie n .IP """d_msg_peek""" 4 .el .IP \f(CWd_msg_peek\fR 4 .IX Item "d_msg_peek" From \fId_socket.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MSG_PEEK\*(C'\fR symbol, which indicates that the \f(CW\*(C`MSG_PEEK\*(C'\fR is available. #ifdef is not enough because it may be an enum, glibc has been known to do this. .ie n .IP """d_msg_proxy""" 4 .el .IP \f(CWd_msg_proxy\fR 4 .IX Item "d_msg_proxy" From \fId_socket.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MSG_PROXY\*(C'\fR symbol, which indicates that the \f(CW\*(C`MSG_PROXY\*(C'\fR is available. #ifdef is not enough because it may be an enum, glibc has been known to do this. .ie n .IP """d_msgctl""" 4 .el .IP \f(CWd_msgctl\fR 4 .IX Item "d_msgctl" From \fId_msgctl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MSGCTL\*(C'\fR symbol, which indicates to the C program that the \fBmsgctl()\fR routine is available. .ie n .IP """d_msgget""" 4 .el .IP \f(CWd_msgget\fR 4 .IX Item "d_msgget" From \fId_msgget.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MSGGET\*(C'\fR symbol, which indicates to the C program that the \fBmsgget()\fR routine is available. .ie n .IP """d_msghdr_s""" 4 .el .IP \f(CWd_msghdr_s\fR 4 .IX Item "d_msghdr_s" From \fId_msghdr_s.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRUCT_MSGHDR\*(C'\fR symbol, which indicates that the struct msghdr is supported. .ie n .IP """d_msgrcv""" 4 .el .IP \f(CWd_msgrcv\fR 4 .IX Item "d_msgrcv" From \fId_msgrcv.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MSGRCV\*(C'\fR symbol, which indicates to the C program that the \fBmsgrcv()\fR routine is available. .ie n .IP """d_msgsnd""" 4 .el .IP \f(CWd_msgsnd\fR 4 .IX Item "d_msgsnd" From \fId_msgsnd.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_MSGSND\*(C'\fR symbol, which indicates to the C program that the \fBmsgsnd()\fR routine is available. .ie n .IP """d_msync""" 4 .el .IP \f(CWd_msync\fR 4 .IX Item "d_msync" From \fId_msync.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_MSYNC\*(C'\fR if \fBmsync()\fR is available to synchronize a mapped file. .ie n .IP """d_munmap""" 4 .el .IP \f(CWd_munmap\fR 4 .IX Item "d_munmap" From \fId_munmap.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_MUNMAP\*(C'\fR if \fBmunmap()\fR is available to unmap a region mapped by \fBmmap()\fR. .ie n .IP """d_mymalloc""" 4 .el .IP \f(CWd_mymalloc\fR 4 .IX Item "d_mymalloc" From \fImallocsrc.U\fR: .Sp This variable conditionally defines \f(CW\*(C`MYMALLOC\*(C'\fR in case other parts of the source want to take special action if \f(CW\*(C`MYMALLOC\*(C'\fR is used. This may include different sorts of profiling or error detection. .ie n .IP """d_nan""" 4 .el .IP \f(CWd_nan\fR 4 .IX Item "d_nan" From \fId_nan.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_NAN\*(C'\fR if \fBnan()\fR is available to generate NaN. .ie n .IP """d_nanosleep""" 4 .el .IP \f(CWd_nanosleep\fR 4 .IX Item "d_nanosleep" From \fId_nanosleep.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_NANOSLEEP\*(C'\fR if \fBnanosleep()\fR is available to sleep with 1E\-9 sec accuracy. .ie n .IP """d_ndbm""" 4 .el .IP \f(CWd_ndbm\fR 4 .IX Item "d_ndbm" From \fIi_ndbm.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_NDBM\*(C'\fR symbol, which indicates that both the \fIndbm.h\fR include file and an appropriate ndbm library exist. Consult the different i_*ndbm variables to find out the actual include location. Sometimes, a system has the header file but not the library. This variable will only be set if the system has both. .ie n .IP """d_ndbm_h_uses_prototypes""" 4 .el .IP \f(CWd_ndbm_h_uses_prototypes\fR 4 .IX Item "d_ndbm_h_uses_prototypes" From \fIi_ndbm.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`NDBM_H_USES_PROTOTYPES\*(C'\fR symbol, which indicates that the \fIndbm.h\fR include file uses real \f(CW\*(C`ANSI\*(C'\fR C prototypes instead of K&R style function declarations. K&R style declarations are unsupported in C++, so the include file requires special handling when using a C++ compiler and this variable is undefined. Consult the different d_*ndbm_h_uses_prototypes variables to get the same information for alternative \fIndbm.h\fR include files. .ie n .IP """d_nearbyint""" 4 .el .IP \f(CWd_nearbyint\fR 4 .IX Item "d_nearbyint" From \fId_nearbyint.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_NEARBYINT\*(C'\fR if \fBnearbyint()\fR is available to return the integral value closest to (according to the current rounding mode) to x. .ie n .IP """d_newlocale""" 4 .el .IP \f(CWd_newlocale\fR 4 .IX Item "d_newlocale" From \fId_newlocale.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_NEWLOCALE\*(C'\fR symbol, which indicates to the C program that the \fBnewlocale()\fR routine is available to return a new locale object or modify an existing locale object. .ie n .IP """d_nextafter""" 4 .el .IP \f(CWd_nextafter\fR 4 .IX Item "d_nextafter" From \fId_nextafter.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_NEXTAFTER\*(C'\fR if \fBnextafter()\fR is available to return the next machine representable double from x in direction y. .ie n .IP """d_nexttoward""" 4 .el .IP \f(CWd_nexttoward\fR 4 .IX Item "d_nexttoward" From \fId_nexttoward.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_NEXTTOWARD\*(C'\fR if \fBnexttoward()\fR is available to return the next machine representable long double from x in direction y. .ie n .IP """d_nice""" 4 .el .IP \f(CWd_nice\fR 4 .IX Item "d_nice" From \fId_nice.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_NICE\*(C'\fR symbol, which indicates to the C program that the \fBnice()\fR routine is available. .ie n .IP """d_nl_langinfo""" 4 .el .IP \f(CWd_nl_langinfo\fR 4 .IX Item "d_nl_langinfo" From \fId_nl_langinfo.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_NL_LANGINFO\*(C'\fR symbol, which indicates to the C program that the \fBnl_langinfo()\fR routine is available. .ie n .IP """d_nl_langinfo_l""" 4 .el .IP \f(CWd_nl_langinfo_l\fR 4 .IX Item "d_nl_langinfo_l" From \fId_nl_langinfo_l.U\fR: .Sp This variable contains the eventual value of the \&\f(CW\*(C`HAS_NL_LANGINFO_L\*(C'\fR symbol, which indicates if the \&\fBnl_langinfo_l()\fR function exists. .ie n .IP """d_non_int_bitfields""" 4 .el .IP \f(CWd_non_int_bitfields\fR 4 .IX Item "d_non_int_bitfields" From \fId_bitfield.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_NON_INT_BITFIELDS\*(C'\fR which indicates that the C compiler accepts struct bitfields of sizes that aren't \f(CW\*(C`int\*(C'\fR or \f(CW\*(C`unsigned int\*(C'\fR .ie n .IP """d_nv_preserves_uv""" 4 .el .IP \f(CWd_nv_preserves_uv\fR 4 .IX Item "d_nv_preserves_uv" From \fIperlxv.U\fR: .Sp This variable indicates whether a variable of type nvtype can preserve all the bits a variable of type uvtype. .ie n .IP """d_nv_zero_is_allbits_zero""" 4 .el .IP \f(CWd_nv_zero_is_allbits_zero\fR 4 .IX Item "d_nv_zero_is_allbits_zero" From \fIperlxv.U\fR: .Sp This variable indicates whether a variable of type nvtype stores 0.0 in memory as all bits zero. .ie n .IP """d_off64_t""" 4 .el .IP \f(CWd_off64_t\fR 4 .IX Item "d_off64_t" From \fId_off64_t.U\fR: .Sp This symbol will be defined if the C compiler supports off64_t. .ie n .IP """d_old_pthread_create_joinable""" 4 .el .IP \f(CWd_old_pthread_create_joinable\fR 4 .IX Item "d_old_pthread_create_joinable" From \fId_pthrattrj.U\fR: .Sp This variable conditionally defines pthread_create_joinable. undef if \fIpthread.h\fR defines \f(CW\*(C`PTHREAD_CREATE_JOINABLE\*(C'\fR. .ie n .IP """d_oldpthreads""" 4 .el .IP \f(CWd_oldpthreads\fR 4 .IX Item "d_oldpthreads" From \fIusethreads.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`OLD_PTHREADS_API\*(C'\fR symbol, and indicates that Perl should be built to use the old draft \f(CW\*(C`POSIX\*(C'\fR threads \f(CW\*(C`API\*(C'\fR. This is only potentially meaningful if usethreads is set. .ie n .IP """d_oldsock""" 4 .el .IP \f(CWd_oldsock\fR 4 .IX Item "d_oldsock" From \fId_socket.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`OLDSOCKET\*(C'\fR symbol, which indicates that the \f(CW\*(C`BSD\*(C'\fR socket interface is based on 4.1c and not 4.2. .ie n .IP """d_open3""" 4 .el .IP \f(CWd_open3\fR 4 .IX Item "d_open3" From \fId_open3.U\fR: .Sp This variable conditionally defines the HAS_OPEN3 manifest constant, which indicates to the C program that the 3 argument version of the \fBopen\fR\|(2) function is available. .ie n .IP """d_openat""" 4 .el .IP \f(CWd_openat\fR 4 .IX Item "d_openat" From \fId_fsat.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_OPENAT\*(C'\fR symbol, which indicates the \f(CW\*(C`POSIX\*(C'\fR \fBopenat()\fR function is available. .ie n .IP """d_pathconf""" 4 .el .IP \f(CWd_pathconf\fR 4 .IX Item "d_pathconf" From \fId_pathconf.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_PATHCONF\*(C'\fR symbol, which indicates to the C program that the \fBpathconf()\fR routine is available to determine file-system related limits and options associated with a given filename. .ie n .IP """d_pause""" 4 .el .IP \f(CWd_pause\fR 4 .IX Item "d_pause" From \fId_pause.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_PAUSE\*(C'\fR symbol, which indicates to the C program that the \fBpause()\fR routine is available to suspend a process until a signal is received. .ie n .IP """d_perl_otherlibdirs""" 4 .el .IP \f(CWd_perl_otherlibdirs\fR 4 .IX Item "d_perl_otherlibdirs" From \fIotherlibdirs.U\fR: .Sp This variable conditionally defines \f(CW\*(C`PERL_OTHERLIBDIRS\*(C'\fR, which contains a colon-separated set of paths for the perl binary to include in @\f(CW\*(C`INC\*(C'\fR. See also otherlibdirs. .ie n .IP """d_phostname""" 4 .el .IP \f(CWd_phostname\fR 4 .IX Item "d_phostname" From \fId_gethname.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_PHOSTNAME\*(C'\fR symbol, which contains the shell command which, when fed to \fBpopen()\fR, may be used to derive the host name. .ie n .IP """d_pipe""" 4 .el .IP \f(CWd_pipe\fR 4 .IX Item "d_pipe" From \fId_pipe.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_PIPE\*(C'\fR symbol, which indicates to the C program that the \fBpipe()\fR routine is available to create an inter-process channel. .ie n .IP """d_pipe2""" 4 .el .IP \f(CWd_pipe2\fR 4 .IX Item "d_pipe2" From \fId_pipe2.U\fR: .Sp This variable conditionally defines the HAS_PIPE2 symbol, which indicates to the C program that the \fBpipe2()\fR routine is available to create an inter-process channel. .ie n .IP """d_poll""" 4 .el .IP \f(CWd_poll\fR 4 .IX Item "d_poll" From \fId_poll.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_POLL\*(C'\fR symbol, which indicates to the C program that the \fBpoll()\fR routine is available to poll active file descriptors. .ie n .IP """d_portable""" 4 .el .IP \f(CWd_portable\fR 4 .IX Item "d_portable" From \fId_portable.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`PORTABLE\*(C'\fR symbol, which indicates to the C program that it should not assume that it is running on the machine it was compiled on. .ie n .IP """d_prctl""" 4 .el .IP \f(CWd_prctl\fR 4 .IX Item "d_prctl" From \fId_prctl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_PRCTL\*(C'\fR symbol, which indicates to the C program that the \fBprctl()\fR routine is available. Note that there are at least two prctl variants: Linux and Irix. While they are somewhat similar, they are incompatible. .ie n .IP """d_prctl_set_name""" 4 .el .IP \f(CWd_prctl_set_name\fR 4 .IX Item "d_prctl_set_name" From \fId_prctl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_PRCTL_SET_NAME\*(C'\fR symbol, which indicates to the C program that the \fBprctl()\fR routine supports the \f(CW\*(C`PR_SET_NAME\*(C'\fR option. .ie n .IP """d_printf_format_null""" 4 .el .IP \f(CWd_printf_format_null\fR 4 .IX Item "d_printf_format_null" From \fId_attribut.U\fR: .Sp This variable conditionally defines \f(CW\*(C`PRINTF_FORMAT_NULL_OK\*(C'\fR, which indicates the C compiler allows printf-like formats to be null. .ie n .IP """d_procselfexe""" 4 .el .IP \f(CWd_procselfexe\fR 4 .IX Item "d_procselfexe" From \fId_procselfexe.U\fR: .Sp Defined if \f(CW$procselfexe\fR is symlink to the absolute pathname of the executing program. .ie n .IP """d_pseudofork""" 4 .el .IP \f(CWd_pseudofork\fR 4 .IX Item "d_pseudofork" From \fId_vfork.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_PSEUDOFORK\*(C'\fR symbol, which indicates that an emulation of the fork routine is available. .ie n .IP """d_pthread_atfork""" 4 .el .IP \f(CWd_pthread_atfork\fR 4 .IX Item "d_pthread_atfork" From \fId_pthread_atfork.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_PTHREAD_ATFORK\*(C'\fR symbol, which indicates to the C program that the \fBpthread_atfork()\fR routine is available. .ie n .IP """d_pthread_attr_setscope""" 4 .el .IP \f(CWd_pthread_attr_setscope\fR 4 .IX Item "d_pthread_attr_setscope" From \fId_pthread_attr_ss.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_PTHREAD_ATTR_SETSCOPE\*(C'\fR if \&\fBpthread_attr_setscope()\fR is available to set the contention scope attribute of a thread attribute object. .ie n .IP """d_pthread_yield""" 4 .el .IP \f(CWd_pthread_yield\fR 4 .IX Item "d_pthread_yield" From \fId_pthread_y.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_PTHREAD_YIELD\*(C'\fR symbol if the pthread_yield routine is available to yield the execution of the current thread. .ie n .IP """d_ptrdiff_t""" 4 .el .IP \f(CWd_ptrdiff_t\fR 4 .IX Item "d_ptrdiff_t" From \fId_ptrdiff_t.U\fR: .Sp This symbol will be defined if the C compiler supports ptrdiff_t. .ie n .IP """d_pwage""" 4 .el .IP \f(CWd_pwage\fR 4 .IX Item "d_pwage" From \fIi_pwd.U\fR: .Sp This variable conditionally defines \f(CW\*(C`PWAGE\*(C'\fR, which indicates that struct passwd contains pw_age. .ie n .IP """d_pwchange""" 4 .el .IP \f(CWd_pwchange\fR 4 .IX Item "d_pwchange" From \fIi_pwd.U\fR: .Sp This variable conditionally defines \f(CW\*(C`PWCHANGE\*(C'\fR, which indicates that struct passwd contains pw_change. .ie n .IP """d_pwclass""" 4 .el .IP \f(CWd_pwclass\fR 4 .IX Item "d_pwclass" From \fIi_pwd.U\fR: .Sp This variable conditionally defines \f(CW\*(C`PWCLASS\*(C'\fR, which indicates that struct passwd contains pw_class. .ie n .IP """d_pwcomment""" 4 .el .IP \f(CWd_pwcomment\fR 4 .IX Item "d_pwcomment" From \fIi_pwd.U\fR: .Sp This variable conditionally defines \f(CW\*(C`PWCOMMENT\*(C'\fR, which indicates that struct passwd contains pw_comment. .ie n .IP """d_pwexpire""" 4 .el .IP \f(CWd_pwexpire\fR 4 .IX Item "d_pwexpire" From \fIi_pwd.U\fR: .Sp This variable conditionally defines \f(CW\*(C`PWEXPIRE\*(C'\fR, which indicates that struct passwd contains pw_expire. .ie n .IP """d_pwgecos""" 4 .el .IP \f(CWd_pwgecos\fR 4 .IX Item "d_pwgecos" From \fIi_pwd.U\fR: .Sp This variable conditionally defines \f(CW\*(C`PWGECOS\*(C'\fR, which indicates that struct passwd contains pw_gecos. .ie n .IP """d_pwpasswd""" 4 .el .IP \f(CWd_pwpasswd\fR 4 .IX Item "d_pwpasswd" From \fIi_pwd.U\fR: .Sp This variable conditionally defines \f(CW\*(C`PWPASSWD\*(C'\fR, which indicates that struct passwd contains pw_passwd. .ie n .IP """d_pwquota""" 4 .el .IP \f(CWd_pwquota\fR 4 .IX Item "d_pwquota" From \fIi_pwd.U\fR: .Sp This variable conditionally defines \f(CW\*(C`PWQUOTA\*(C'\fR, which indicates that struct passwd contains pw_quota. .ie n .IP """d_qgcvt""" 4 .el .IP \f(CWd_qgcvt\fR 4 .IX Item "d_qgcvt" From \fId_qgcvt.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_QGCVT\*(C'\fR symbol, which indicates to the C program that the \fBqgcvt()\fR routine is available. .ie n .IP """d_quad""" 4 .el .IP \f(CWd_quad\fR 4 .IX Item "d_quad" From \fIquadtype.U\fR: .Sp This variable, if defined, tells that there's a 64\-bit integer type, quadtype. .ie n .IP """d_querylocale""" 4 .el .IP \f(CWd_querylocale\fR 4 .IX Item "d_querylocale" From \fId_newlocale.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_QUERYLOCALE\*(C'\fR symbol, which indicates to the C program that the \fBquerylocale()\fR routine is available to return the name of the locale for a category mask. .ie n .IP """d_random_r""" 4 .el .IP \f(CWd_random_r\fR 4 .IX Item "d_random_r" From \fId_random_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_RANDOM_R\*(C'\fR symbol, which indicates to the C program that the \fBrandom_r()\fR routine is available. .ie n .IP """d_re_comp""" 4 .el .IP \f(CWd_re_comp\fR 4 .IX Item "d_re_comp" From \fId_regcmp.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_RECOMP\*(C'\fR symbol, which indicates to the C program that the \fBre_comp()\fR routine is available for regular pattern matching (usually on \f(CW\*(C`BSD\*(C'\fR). If so, it is likely that \&\fBre_exec()\fR exists. .ie n .IP """d_readdir""" 4 .el .IP \f(CWd_readdir\fR 4 .IX Item "d_readdir" From \fId_readdir.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_READDIR\*(C'\fR if \fBreaddir()\fR is available to read directory entries. .ie n .IP """d_readdir64_r""" 4 .el .IP \f(CWd_readdir64_r\fR 4 .IX Item "d_readdir64_r" From \fId_readdir64_r.U\fR: .Sp This variable conditionally defines the HAS_READDIR64_R symbol, which indicates to the C program that the \fBreaddir64_r()\fR routine is available. .ie n .IP """d_readdir_r""" 4 .el .IP \f(CWd_readdir_r\fR 4 .IX Item "d_readdir_r" From \fId_readdir_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_READDIR_R\*(C'\fR symbol, which indicates to the C program that the \fBreaddir_r()\fR routine is available. .ie n .IP """d_readlink""" 4 .el .IP \f(CWd_readlink\fR 4 .IX Item "d_readlink" From \fId_readlink.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_READLINK\*(C'\fR symbol, which indicates to the C program that the \fBreadlink()\fR routine is available to read the value of a symbolic link. .ie n .IP """d_readv""" 4 .el .IP \f(CWd_readv\fR 4 .IX Item "d_readv" From \fId_readv.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_READV\*(C'\fR symbol, which indicates to the C program that the \fBreadv()\fR routine is available. .ie n .IP """d_recvmsg""" 4 .el .IP \f(CWd_recvmsg\fR 4 .IX Item "d_recvmsg" From \fId_recvmsg.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_RECVMSG\*(C'\fR symbol, which indicates to the C program that the \fBrecvmsg()\fR routine is available. .ie n .IP """d_regcmp""" 4 .el .IP \f(CWd_regcmp\fR 4 .IX Item "d_regcmp" From \fId_regcmp.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_REGCMP\*(C'\fR symbol, which indicates to the C program that the \fBregcmp()\fR routine is available for regular pattern matching (usually on System V). .ie n .IP """d_regcomp""" 4 .el .IP \f(CWd_regcomp\fR 4 .IX Item "d_regcomp" From \fId_regcmp.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_REGCOMP\*(C'\fR symbol, which indicates to the C program that the \fBregcomp()\fR routine is available for regular pattern matching (usually on \fIPOSIX.2\fR conforming systems). .ie n .IP """d_remainder""" 4 .el .IP \f(CWd_remainder\fR 4 .IX Item "d_remainder" From \fId_remainder.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_REMAINDER\*(C'\fR symbol, which indicates to the C program that the \fBremainder()\fR routine is available. .ie n .IP """d_remquo""" 4 .el .IP \f(CWd_remquo\fR 4 .IX Item "d_remquo" From \fId_remquo.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_REMQUO\*(C'\fR symbol, which indicates to the C program that the \fBremquo()\fR routine is available. .ie n .IP """d_rename""" 4 .el .IP \f(CWd_rename\fR 4 .IX Item "d_rename" From \fId_rename.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_RENAME\*(C'\fR symbol, which indicates to the C program that the \fBrename()\fR routine is available to rename files. .ie n .IP """d_renameat""" 4 .el .IP \f(CWd_renameat\fR 4 .IX Item "d_renameat" From \fId_fsat.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_RENAMEAT\*(C'\fR symbol, which indicates the \f(CW\*(C`POSIX\*(C'\fR \fBrenameat()\fR function is available. .ie n .IP """d_rewinddir""" 4 .el .IP \f(CWd_rewinddir\fR 4 .IX Item "d_rewinddir" From \fId_readdir.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_REWINDDIR\*(C'\fR if \fBrewinddir()\fR is available. .ie n .IP """d_rint""" 4 .el .IP \f(CWd_rint\fR 4 .IX Item "d_rint" From \fId_rint.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_RINT\*(C'\fR symbol, which indicates to the C program that the \fBrint()\fR routine is available. .ie n .IP """d_rmdir""" 4 .el .IP \f(CWd_rmdir\fR 4 .IX Item "d_rmdir" From \fId_rmdir.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_RMDIR\*(C'\fR if \fBrmdir()\fR is available to remove directories. .ie n .IP """d_round""" 4 .el .IP \f(CWd_round\fR 4 .IX Item "d_round" From \fId_round.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_ROUND\*(C'\fR symbol, which indicates to the C program that the \fBround()\fR routine is available. .ie n .IP """d_sbrkproto""" 4 .el .IP \f(CWd_sbrkproto\fR 4 .IX Item "d_sbrkproto" From \fId_sbrkproto.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SBRK_PROTO\*(C'\fR symbol, which indicates to the C program that the system provides a prototype for the \fBsbrk()\fR function. Otherwise, it is up to the program to supply one. .ie n .IP """d_scalbn""" 4 .el .IP \f(CWd_scalbn\fR 4 .IX Item "d_scalbn" From \fId_scalbn.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SCALBN\*(C'\fR symbol, which indicates to the C program that the \fBscalbn()\fR routine is available. .ie n .IP """d_scalbnl""" 4 .el .IP \f(CWd_scalbnl\fR 4 .IX Item "d_scalbnl" From \fId_scalbnl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SCALBNL\*(C'\fR symbol, which indicates to the C program that the \fBscalbnl()\fR routine is available. If ilogbl is also present we can emulate frexpl. .ie n .IP """d_sched_yield""" 4 .el .IP \f(CWd_sched_yield\fR 4 .IX Item "d_sched_yield" From \fId_pthread_y.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SCHED_YIELD\*(C'\fR symbol if the sched_yield routine is available to yield the execution of the current thread. .ie n .IP """d_scm_rights""" 4 .el .IP \f(CWd_scm_rights\fR 4 .IX Item "d_scm_rights" From \fId_socket.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SCM_RIGHTS\*(C'\fR symbol, which indicates that the \f(CW\*(C`SCM_RIGHTS\*(C'\fR is available. #ifdef is not enough because it may be an enum, glibc has been known to do this. .ie n .IP """d_seekdir""" 4 .el .IP \f(CWd_seekdir\fR 4 .IX Item "d_seekdir" From \fId_readdir.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SEEKDIR\*(C'\fR if \fBseekdir()\fR is available. .ie n .IP """d_select""" 4 .el .IP \f(CWd_select\fR 4 .IX Item "d_select" From \fId_select.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SELECT\*(C'\fR if \fBselect()\fR is available to select active file descriptors. A inclusion may be necessary for the timeout field. .ie n .IP """d_sem""" 4 .el .IP \f(CWd_sem\fR 4 .IX Item "d_sem" From \fId_sem.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SEM\*(C'\fR symbol, which indicates that the entire sem*(2) library is present. .ie n .IP """d_semctl""" 4 .el .IP \f(CWd_semctl\fR 4 .IX Item "d_semctl" From \fId_semctl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SEMCTL\*(C'\fR symbol, which indicates to the C program that the \fBsemctl()\fR routine is available. .ie n .IP """d_semctl_semid_ds""" 4 .el .IP \f(CWd_semctl_semid_ds\fR 4 .IX Item "d_semctl_semid_ds" From \fId_union_semun.U\fR: .Sp This variable conditionally defines \f(CW\*(C`USE_SEMCTL_SEMID_DS\*(C'\fR, which indicates that struct semid_ds * is to be used for semctl \f(CW\*(C`IPC_STAT\*(C'\fR. .ie n .IP """d_semctl_semun""" 4 .el .IP \f(CWd_semctl_semun\fR 4 .IX Item "d_semctl_semun" From \fId_union_semun.U\fR: .Sp This variable conditionally defines \f(CW\*(C`USE_SEMCTL_SEMUN\*(C'\fR, which indicates that union semun is to be used for semctl \f(CW\*(C`IPC_STAT\*(C'\fR. .ie n .IP """d_semget""" 4 .el .IP \f(CWd_semget\fR 4 .IX Item "d_semget" From \fId_semget.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SEMGET\*(C'\fR symbol, which indicates to the C program that the \fBsemget()\fR routine is available. .ie n .IP """d_semop""" 4 .el .IP \f(CWd_semop\fR 4 .IX Item "d_semop" From \fId_semop.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SEMOP\*(C'\fR symbol, which indicates to the C program that the \fBsemop()\fR routine is available. .ie n .IP """d_sendmsg""" 4 .el .IP \f(CWd_sendmsg\fR 4 .IX Item "d_sendmsg" From \fId_sendmsg.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SENDMSG\*(C'\fR symbol, which indicates to the C program that the \fBsendmsg()\fR routine is available. .ie n .IP """d_setegid""" 4 .el .IP \f(CWd_setegid\fR 4 .IX Item "d_setegid" From \fId_setegid.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETEGID\*(C'\fR symbol, which indicates to the C program that the \fBsetegid()\fR routine is available to change the effective gid of the current program. .ie n .IP """d_setenv""" 4 .el .IP \f(CWd_setenv\fR 4 .IX Item "d_setenv" From \fId_setenv.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETENV\*(C'\fR symbol, which indicates to the C program that the setenv routine is available. .ie n .IP """d_seteuid""" 4 .el .IP \f(CWd_seteuid\fR 4 .IX Item "d_seteuid" From \fId_seteuid.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETEUID\*(C'\fR symbol, which indicates to the C program that the \fBseteuid()\fR routine is available to change the effective uid of the current program. .ie n .IP """d_setgrent""" 4 .el .IP \f(CWd_setgrent\fR 4 .IX Item "d_setgrent" From \fId_setgrent.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETGRENT\*(C'\fR symbol, which indicates to the C program that the \fBsetgrent()\fR routine is available for initializing sequential access to the group database. .ie n .IP """d_setgrent_r""" 4 .el .IP \f(CWd_setgrent_r\fR 4 .IX Item "d_setgrent_r" From \fId_setgrent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETGRENT_R\*(C'\fR symbol, which indicates to the C program that the \fBsetgrent_r()\fR routine is available. .ie n .IP """d_setgrps""" 4 .el .IP \f(CWd_setgrps\fR 4 .IX Item "d_setgrps" From \fId_setgrps.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETGROUPS\*(C'\fR symbol, which indicates to the C program that the \fBsetgroups()\fR routine is available to set the list of process groups. .ie n .IP """d_sethent""" 4 .el .IP \f(CWd_sethent\fR 4 .IX Item "d_sethent" From \fId_sethent.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SETHOSTENT\*(C'\fR if \fBsethostent()\fR is available. .ie n .IP """d_sethostent_r""" 4 .el .IP \f(CWd_sethostent_r\fR 4 .IX Item "d_sethostent_r" From \fId_sethostent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETHOSTENT_R\*(C'\fR symbol, which indicates to the C program that the \fBsethostent_r()\fR routine is available. .ie n .IP """d_setitimer""" 4 .el .IP \f(CWd_setitimer\fR 4 .IX Item "d_setitimer" From \fId_setitimer.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETITIMER\*(C'\fR symbol, which indicates to the C program that the \fBsetitimer()\fR routine is available. .ie n .IP """d_setlinebuf""" 4 .el .IP \f(CWd_setlinebuf\fR 4 .IX Item "d_setlinebuf" From \fId_setlnbuf.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETLINEBUF\*(C'\fR symbol, which indicates to the C program that the \fBsetlinebuf()\fR routine is available to change stderr or stdout from block-buffered or unbuffered to a line-buffered mode. .ie n .IP """d_setlocale""" 4 .el .IP \f(CWd_setlocale\fR 4 .IX Item "d_setlocale" From \fId_setlocale.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SETLOCALE\*(C'\fR if \fBsetlocale()\fR is available to handle locale-specific ctype implementations. .ie n .IP """d_setlocale_accepts_any_locale_name""" 4 .el .IP \f(CWd_setlocale_accepts_any_locale_name\fR 4 .IX Item "d_setlocale_accepts_any_locale_name" From \fId_setlocale.U\fR: .Sp This variable conditionally defines \f(CW\*(C`SETLOCALE_ACCEPTS_ANY_LOCALE_NAME\*(C'\fR if \fBsetlocale()\fR accepts any locale name. .ie n .IP """d_setlocale_r""" 4 .el .IP \f(CWd_setlocale_r\fR 4 .IX Item "d_setlocale_r" From \fId_setlocale_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETLOCALE_R\*(C'\fR symbol, which indicates to the C program that the \fBsetlocale_r()\fR routine is available. .ie n .IP """d_setnent""" 4 .el .IP \f(CWd_setnent\fR 4 .IX Item "d_setnent" From \fId_setnent.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SETNETENT\*(C'\fR if \fBsetnetent()\fR is available. .ie n .IP """d_setnetent_r""" 4 .el .IP \f(CWd_setnetent_r\fR 4 .IX Item "d_setnetent_r" From \fId_setnetent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETNETENT_R\*(C'\fR symbol, which indicates to the C program that the \fBsetnetent_r()\fR routine is available. .ie n .IP """d_setpent""" 4 .el .IP \f(CWd_setpent\fR 4 .IX Item "d_setpent" From \fId_setpent.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SETPROTOENT\*(C'\fR if \fBsetprotoent()\fR is available. .ie n .IP """d_setpgid""" 4 .el .IP \f(CWd_setpgid\fR 4 .IX Item "d_setpgid" From \fId_setpgid.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETPGID\*(C'\fR symbol if the setpgid(pid, gpid) function is available to set process group \f(CW\*(C`ID\*(C'\fR. .ie n .IP """d_setpgrp""" 4 .el .IP \f(CWd_setpgrp\fR 4 .IX Item "d_setpgrp" From \fId_setpgrp.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SETPGRP\*(C'\fR if \fBsetpgrp()\fR is available to set the current process group. .ie n .IP """d_setpgrp2""" 4 .el .IP \f(CWd_setpgrp2\fR 4 .IX Item "d_setpgrp2" From \fId_setpgrp2.U\fR: .Sp This variable conditionally defines the HAS_SETPGRP2 symbol, which indicates to the C program that the \fBsetpgrp2()\fR (as in \fIDG/\fR\f(CI\*(C`UX\*(C'\fR) routine is available to set the current process group. .ie n .IP """d_setprior""" 4 .el .IP \f(CWd_setprior\fR 4 .IX Item "d_setprior" From \fId_setprior.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SETPRIORITY\*(C'\fR if \fBsetpriority()\fR is available to set a process's priority. .ie n .IP """d_setproctitle""" 4 .el .IP \f(CWd_setproctitle\fR 4 .IX Item "d_setproctitle" From \fId_setproctitle.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETPROCTITLE\*(C'\fR symbol, which indicates to the C program that the \fBsetproctitle()\fR routine is available. .ie n .IP """d_setprotoent_r""" 4 .el .IP \f(CWd_setprotoent_r\fR 4 .IX Item "d_setprotoent_r" From \fId_setprotoent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETPROTOENT_R\*(C'\fR symbol, which indicates to the C program that the \fBsetprotoent_r()\fR routine is available. .ie n .IP """d_setpwent""" 4 .el .IP \f(CWd_setpwent\fR 4 .IX Item "d_setpwent" From \fId_setpwent.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETPWENT\*(C'\fR symbol, which indicates to the C program that the \fBsetpwent()\fR routine is available for initializing sequential access to the passwd database. .ie n .IP """d_setpwent_r""" 4 .el .IP \f(CWd_setpwent_r\fR 4 .IX Item "d_setpwent_r" From \fId_setpwent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETPWENT_R\*(C'\fR symbol, which indicates to the C program that the \fBsetpwent_r()\fR routine is available. .ie n .IP """d_setregid""" 4 .el .IP \f(CWd_setregid\fR 4 .IX Item "d_setregid" From \fId_setregid.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SETREGID\*(C'\fR if \fBsetregid()\fR is available to change the real and effective gid of the current process. .ie n .IP """d_setresgid""" 4 .el .IP \f(CWd_setresgid\fR 4 .IX Item "d_setresgid" From \fId_setregid.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SETRESGID\*(C'\fR if \fBsetresgid()\fR is available to change the real, effective and saved gid of the current process. .ie n .IP """d_setresuid""" 4 .el .IP \f(CWd_setresuid\fR 4 .IX Item "d_setresuid" From \fId_setreuid.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SETREUID\*(C'\fR if \fBsetresuid()\fR is available to change the real, effective and saved uid of the current process. .ie n .IP """d_setreuid""" 4 .el .IP \f(CWd_setreuid\fR 4 .IX Item "d_setreuid" From \fId_setreuid.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SETREUID\*(C'\fR if \fBsetreuid()\fR is available to change the real and effective uid of the current process. .ie n .IP """d_setrgid""" 4 .el .IP \f(CWd_setrgid\fR 4 .IX Item "d_setrgid" From \fId_setrgid.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETRGID\*(C'\fR symbol, which indicates to the C program that the \fBsetrgid()\fR routine is available to change the real gid of the current program. .ie n .IP """d_setruid""" 4 .el .IP \f(CWd_setruid\fR 4 .IX Item "d_setruid" From \fId_setruid.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETRUID\*(C'\fR symbol, which indicates to the C program that the \fBsetruid()\fR routine is available to change the real uid of the current program. .ie n .IP """d_setsent""" 4 .el .IP \f(CWd_setsent\fR 4 .IX Item "d_setsent" From \fId_setsent.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SETSERVENT\*(C'\fR if \fBsetservent()\fR is available. .ie n .IP """d_setservent_r""" 4 .el .IP \f(CWd_setservent_r\fR 4 .IX Item "d_setservent_r" From \fId_setservent_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETSERVENT_R\*(C'\fR symbol, which indicates to the C program that the \fBsetservent_r()\fR routine is available. .ie n .IP """d_setsid""" 4 .el .IP \f(CWd_setsid\fR 4 .IX Item "d_setsid" From \fId_setsid.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SETSID\*(C'\fR if \fBsetsid()\fR is available to set the process group \f(CW\*(C`ID\*(C'\fR. .ie n .IP """d_setvbuf""" 4 .el .IP \f(CWd_setvbuf\fR 4 .IX Item "d_setvbuf" From \fId_setvbuf.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETVBUF\*(C'\fR symbol, which indicates to the C program that the \fBsetvbuf()\fR routine is available to change buffering on an open stdio stream. .ie n .IP """d_shm""" 4 .el .IP \f(CWd_shm\fR 4 .IX Item "d_shm" From \fId_shm.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SHM\*(C'\fR symbol, which indicates that the entire shm*(2) library is present. .ie n .IP """d_shmat""" 4 .el .IP \f(CWd_shmat\fR 4 .IX Item "d_shmat" From \fId_shmat.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SHMAT\*(C'\fR symbol, which indicates to the C program that the \fBshmat()\fR routine is available. .ie n .IP """d_shmatprototype""" 4 .el .IP \f(CWd_shmatprototype\fR 4 .IX Item "d_shmatprototype" From \fId_shmat.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SHMAT_PROTOTYPE\*(C'\fR symbol, which indicates that \fIsys/shm.h\fR has a prototype for shmat. .ie n .IP """d_shmctl""" 4 .el .IP \f(CWd_shmctl\fR 4 .IX Item "d_shmctl" From \fId_shmctl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SHMCTL\*(C'\fR symbol, which indicates to the C program that the \fBshmctl()\fR routine is available. .ie n .IP """d_shmdt""" 4 .el .IP \f(CWd_shmdt\fR 4 .IX Item "d_shmdt" From \fId_shmdt.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SHMDT\*(C'\fR symbol, which indicates to the C program that the \fBshmdt()\fR routine is available. .ie n .IP """d_shmget""" 4 .el .IP \f(CWd_shmget\fR 4 .IX Item "d_shmget" From \fId_shmget.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SHMGET\*(C'\fR symbol, which indicates to the C program that the \fBshmget()\fR routine is available. .ie n .IP """d_sigaction""" 4 .el .IP \f(CWd_sigaction\fR 4 .IX Item "d_sigaction" From \fId_sigaction.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SIGACTION\*(C'\fR symbol, which indicates that the Vr4 \fBsigaction()\fR routine is available. .ie n .IP """d_siginfo_si_addr""" 4 .el .IP \f(CWd_siginfo_si_addr\fR 4 .IX Item "d_siginfo_si_addr" From \fId_siginfo_si.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SIGINFO_SI_ADDR\*(C'\fR symbol, which indicates that the siginfo_t struct has the si_addr member. .ie n .IP """d_siginfo_si_band""" 4 .el .IP \f(CWd_siginfo_si_band\fR 4 .IX Item "d_siginfo_si_band" From \fId_siginfo_si.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SIGINFO_SI_BAND\*(C'\fR symbol, which indicates that the siginfo_t struct has the si_band member. .ie n .IP """d_siginfo_si_errno""" 4 .el .IP \f(CWd_siginfo_si_errno\fR 4 .IX Item "d_siginfo_si_errno" From \fId_siginfo_si.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SIGINFO_SI_ERRNO\*(C'\fR symbol, which indicates that the siginfo_t struct has the si_errno member. .ie n .IP """d_siginfo_si_fd""" 4 .el .IP \f(CWd_siginfo_si_fd\fR 4 .IX Item "d_siginfo_si_fd" From \fId_siginfo_si.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SIGINFO_SI_FD\*(C'\fR symbol, which indicates that the siginfo_t struct has the si_fd member. .ie n .IP """d_siginfo_si_pid""" 4 .el .IP \f(CWd_siginfo_si_pid\fR 4 .IX Item "d_siginfo_si_pid" From \fId_siginfo_si.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SIGINFO_SI_PID\*(C'\fR symbol, which indicates that the siginfo_t struct has the si_pid member. .ie n .IP """d_siginfo_si_status""" 4 .el .IP \f(CWd_siginfo_si_status\fR 4 .IX Item "d_siginfo_si_status" From \fId_siginfo_si.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SIGINFO_SI_STATUS\*(C'\fR symbol, which indicates that the siginfo_t struct has the si_status member. .ie n .IP """d_siginfo_si_uid""" 4 .el .IP \f(CWd_siginfo_si_uid\fR 4 .IX Item "d_siginfo_si_uid" From \fId_siginfo_si.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SIGINFO_SI_UID\*(C'\fR symbol, which indicates that the siginfo_t struct has the si_uid member. .ie n .IP """d_siginfo_si_value""" 4 .el .IP \f(CWd_siginfo_si_value\fR 4 .IX Item "d_siginfo_si_value" From \fId_siginfo_si.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SIGINFO_SI_VALUE\*(C'\fR symbol, which indicates that the siginfo_t struct has the si_value member. .ie n .IP """d_signbit""" 4 .el .IP \f(CWd_signbit\fR 4 .IX Item "d_signbit" From \fId_signbit.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SIGNBIT\*(C'\fR symbol, which indicates to the C program that the \fBsignbit()\fR routine is available and safe to use with perl's intern \f(CW\*(C`NV\*(C'\fR type. .ie n .IP """d_sigprocmask""" 4 .el .IP \f(CWd_sigprocmask\fR 4 .IX Item "d_sigprocmask" From \fId_sigprocmask.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SIGPROCMASK\*(C'\fR if \fBsigprocmask()\fR is available to examine or change the signal mask of the calling process. .ie n .IP """d_sigsetjmp""" 4 .el .IP \f(CWd_sigsetjmp\fR 4 .IX Item "d_sigsetjmp" From \fId_sigsetjmp.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SIGSETJMP\*(C'\fR symbol, which indicates that the \fBsigsetjmp()\fR routine is available to call \fBsetjmp()\fR and optionally save the process's signal mask. .ie n .IP """d_sin6_scope_id""" 4 .el .IP \f(CWd_sin6_scope_id\fR 4 .IX Item "d_sin6_scope_id" From \fId_socket.U\fR: .Sp This variable conditionally defines the HAS_SIN6_SCOPE_ID symbol, which indicates that a struct sockaddr_in6 structure has the sin6_scope_id member. .ie n .IP """d_sitearch""" 4 .el .IP \f(CWd_sitearch\fR 4 .IX Item "d_sitearch" From \fIsitearch.U\fR: .Sp This variable conditionally defines \f(CW\*(C`SITEARCH\*(C'\fR to hold the pathname of architecture-dependent library files for \f(CW$package\fR. If \&\f(CW$sitearch\fR is the same as \f(CW$archlib\fR, then this is set to undef. .ie n .IP """d_snprintf""" 4 .el .IP \f(CWd_snprintf\fR 4 .IX Item "d_snprintf" From \fId_snprintf.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SNPRINTF\*(C'\fR symbol, which indicates to the C program that the snprintf () library function is available. .ie n .IP """d_sockaddr_in6""" 4 .el .IP \f(CWd_sockaddr_in6\fR 4 .IX Item "d_sockaddr_in6" From \fId_socket.U\fR: .Sp This variable conditionally defines the HAS_SOCKADDR_IN6 symbol, which indicates the availability of a struct sockaddr_in6. .ie n .IP """d_sockaddr_sa_len""" 4 .el .IP \f(CWd_sockaddr_sa_len\fR 4 .IX Item "d_sockaddr_sa_len" From \fId_socket.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SOCKADDR_SA_LEN\*(C'\fR symbol, which indicates that a struct sockaddr structure has the sa_len member. .ie n .IP """d_sockaddr_storage""" 4 .el .IP \f(CWd_sockaddr_storage\fR 4 .IX Item "d_sockaddr_storage" From \fId_socket.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SOCKADDR_STORAGE\*(C'\fR symbol, which indicates the availability of a struct sockaddr_storage. .ie n .IP """d_sockatmark""" 4 .el .IP \f(CWd_sockatmark\fR 4 .IX Item "d_sockatmark" From \fId_sockatmark.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SOCKATMARK\*(C'\fR symbol, which indicates to the C program that the \fBsockatmark()\fR routine is available. .ie n .IP """d_sockatmarkproto""" 4 .el .IP \f(CWd_sockatmarkproto\fR 4 .IX Item "d_sockatmarkproto" From \fId_sockatmarkproto.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SOCKATMARK_PROTO\*(C'\fR symbol, which indicates to the C program that the system provides a prototype for the \fBsockatmark()\fR function. Otherwise, it is up to the program to supply one. .ie n .IP """d_socket""" 4 .el .IP \f(CWd_socket\fR 4 .IX Item "d_socket" From \fId_socket.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SOCKET\*(C'\fR, which indicates that the \f(CW\*(C`BSD\*(C'\fR socket interface is supported. .ie n .IP """d_socklen_t""" 4 .el .IP \f(CWd_socklen_t\fR 4 .IX Item "d_socklen_t" From \fId_socklen_t.U\fR: .Sp This symbol will be defined if the C compiler supports socklen_t. .ie n .IP """d_sockpair""" 4 .el .IP \f(CWd_sockpair\fR 4 .IX Item "d_sockpair" From \fId_socket.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SOCKETPAIR\*(C'\fR symbol, which indicates that the \f(CW\*(C`BSD\*(C'\fR \fBsocketpair()\fR is supported. .ie n .IP """d_socks5_init""" 4 .el .IP \f(CWd_socks5_init\fR 4 .IX Item "d_socks5_init" From \fId_socks5_init.U\fR: .Sp This variable conditionally defines the HAS_SOCKS5_INIT symbol, which indicates to the C program that the \fBsocks5_init()\fR routine is available. .ie n .IP """d_sqrtl""" 4 .el .IP \f(CWd_sqrtl\fR 4 .IX Item "d_sqrtl" From \fId_sqrtl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SQRTL\*(C'\fR symbol, which indicates to the C program that the \fBsqrtl()\fR routine is available. .ie n .IP """d_srand48_r""" 4 .el .IP \f(CWd_srand48_r\fR 4 .IX Item "d_srand48_r" From \fId_srand48_r.U\fR: .Sp This variable conditionally defines the HAS_SRAND48_R symbol, which indicates to the C program that the \fBsrand48_r()\fR routine is available. .ie n .IP """d_srandom_r""" 4 .el .IP \f(CWd_srandom_r\fR 4 .IX Item "d_srandom_r" From \fId_srandom_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SRANDOM_R\*(C'\fR symbol, which indicates to the C program that the \fBsrandom_r()\fR routine is available. .ie n .IP """d_sresgproto""" 4 .el .IP \f(CWd_sresgproto\fR 4 .IX Item "d_sresgproto" From \fId_sresgproto.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETRESGID_PROTO\*(C'\fR symbol, which indicates to the C program that the system provides a prototype for the \fBsetresgid()\fR function. Otherwise, it is up to the program to supply one. .ie n .IP """d_sresuproto""" 4 .el .IP \f(CWd_sresuproto\fR 4 .IX Item "d_sresuproto" From \fId_sresuproto.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SETRESUID_PROTO\*(C'\fR symbol, which indicates to the C program that the system provides a prototype for the \fBsetresuid()\fR function. Otherwise, it is up to the program to supply one. .ie n .IP """d_stat""" 4 .el .IP \f(CWd_stat\fR 4 .IX Item "d_stat" From \fId_stat.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_STAT\*(C'\fR if \fBstat()\fR is available to get file status. .ie n .IP """d_statblks""" 4 .el .IP \f(CWd_statblks\fR 4 .IX Item "d_statblks" From \fId_statblks.U\fR: .Sp This variable conditionally defines \f(CW\*(C`USE_STAT_BLOCKS\*(C'\fR if this system has a stat structure declaring st_blksize and st_blocks. .ie n .IP """d_statfs_f_flags""" 4 .el .IP \f(CWd_statfs_f_flags\fR 4 .IX Item "d_statfs_f_flags" From \fId_statfs_f_flags.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRUCT_STATFS_F_FLAGS\*(C'\fR symbol, which indicates to struct statfs from has f_flags member. This kind of struct statfs is coming from \fIsys/mount.h\fR (\f(CW\*(C`BSD\*(C'\fR), not from \fIsys/statfs.h\fR (\f(CW\*(C`SYSV\*(C'\fR). .ie n .IP """d_statfs_s""" 4 .el .IP \f(CWd_statfs_s\fR 4 .IX Item "d_statfs_s" From \fId_statfs_s.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRUCT_STATFS\*(C'\fR symbol, which indicates that the struct statfs is supported. .ie n .IP """d_static_inline""" 4 .el .IP \f(CWd_static_inline\fR 4 .IX Item "d_static_inline" From \fId_static_inline.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STATIC_INLINE\*(C'\fR symbol, which indicates that the C compiler supports C99\-style static inline. That is, the function can't be called from another translation unit. .ie n .IP """d_statvfs""" 4 .el .IP \f(CWd_statvfs\fR 4 .IX Item "d_statvfs" From \fId_statvfs.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STATVFS\*(C'\fR symbol, which indicates to the C program that the \fBstatvfs()\fR routine is available. .ie n .IP """d_stdio_cnt_lval""" 4 .el .IP \f(CWd_stdio_cnt_lval\fR 4 .IX Item "d_stdio_cnt_lval" From \fId_stdstdio.U\fR: .Sp This variable conditionally defines \f(CW\*(C`STDIO_CNT_LVALUE\*(C'\fR if the \&\f(CW\*(C`FILE_cnt\*(C'\fR macro can be used as an lvalue. .ie n .IP """d_stdio_ptr_lval""" 4 .el .IP \f(CWd_stdio_ptr_lval\fR 4 .IX Item "d_stdio_ptr_lval" From \fId_stdstdio.U\fR: .Sp This variable conditionally defines \f(CW\*(C`STDIO_PTR_LVALUE\*(C'\fR if the \&\f(CW\*(C`FILE_ptr\*(C'\fR macro can be used as an lvalue. .ie n .IP """d_stdio_ptr_lval_nochange_cnt""" 4 .el .IP \f(CWd_stdio_ptr_lval_nochange_cnt\fR 4 .IX Item "d_stdio_ptr_lval_nochange_cnt" From \fId_stdstdio.U\fR: .Sp This symbol is defined if using the \f(CW\*(C`FILE_ptr\*(C'\fR macro as an lvalue to increase the pointer by n leaves File_cnt(fp) unchanged. .ie n .IP """d_stdio_ptr_lval_sets_cnt""" 4 .el .IP \f(CWd_stdio_ptr_lval_sets_cnt\fR 4 .IX Item "d_stdio_ptr_lval_sets_cnt" From \fId_stdstdio.U\fR: .Sp This symbol is defined if using the \f(CW\*(C`FILE_ptr\*(C'\fR macro as an lvalue to increase the pointer by n has the side effect of decreasing the value of File_cnt(fp) by n. .ie n .IP """d_stdio_stream_array""" 4 .el .IP \f(CWd_stdio_stream_array\fR 4 .IX Item "d_stdio_stream_array" From \fIstdio_streams.U\fR: .Sp This variable tells whether there is an array holding the stdio streams. .ie n .IP """d_stdiobase""" 4 .el .IP \f(CWd_stdiobase\fR 4 .IX Item "d_stdiobase" From \fId_stdstdio.U\fR: .Sp This variable conditionally defines \f(CW\*(C`USE_STDIO_BASE\*(C'\fR if this system has a \f(CW\*(C`FILE\*(C'\fR structure declaring a usable _base field (or equivalent) in \fIstdio.h\fR. .ie n .IP """d_stdstdio""" 4 .el .IP \f(CWd_stdstdio\fR 4 .IX Item "d_stdstdio" From \fId_stdstdio.U\fR: .Sp This variable conditionally defines \f(CW\*(C`USE_STDIO_PTR\*(C'\fR if this system has a \f(CW\*(C`FILE\*(C'\fR structure declaring usable _ptr and _cnt fields (or equivalent) in \fIstdio.h\fR. .ie n .IP """d_strcoll""" 4 .el .IP \f(CWd_strcoll\fR 4 .IX Item "d_strcoll" From \fId_strcoll.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_STRCOLL\*(C'\fR if \fBstrcoll()\fR is available to compare strings using collating information. .ie n .IP """d_strerror_l""" 4 .el .IP \f(CWd_strerror_l\fR 4 .IX Item "d_strerror_l" From \fId_strerror_l.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRERROR_L\*(C'\fR symbol, which indicates to the C program that the \fBstrerror_l()\fR routine is available to return the error message for a given errno value in a particular locale (identified by a locale_t object). .ie n .IP """d_strerror_r""" 4 .el .IP \f(CWd_strerror_r\fR 4 .IX Item "d_strerror_r" From \fId_strerror_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRERROR_R\*(C'\fR symbol, which indicates to the C program that the \fBstrerror_r()\fR routine is available. .ie n .IP """d_strftime""" 4 .el .IP \f(CWd_strftime\fR 4 .IX Item "d_strftime" From \fId_strftime.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRFTIME\*(C'\fR symbol, which indicates to the C program that the \fBstrftime()\fR routine is available. .ie n .IP """d_strlcat""" 4 .el .IP \f(CWd_strlcat\fR 4 .IX Item "d_strlcat" From \fId_strlcat.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRLCAT\*(C'\fR symbol, which indicates to the C program that the strlcat () routine is available. .ie n .IP """d_strlcpy""" 4 .el .IP \f(CWd_strlcpy\fR 4 .IX Item "d_strlcpy" From \fId_strlcpy.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRLCPY\*(C'\fR symbol, which indicates to the C program that the strlcpy () routine is available. .ie n .IP """d_strnlen""" 4 .el .IP \f(CWd_strnlen\fR 4 .IX Item "d_strnlen" From \fId_strnlen.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRNLEN\*(C'\fR symbol, which indicates to the C program that the strnlen () routine is available. .ie n .IP """d_strtod""" 4 .el .IP \f(CWd_strtod\fR 4 .IX Item "d_strtod" From \fId_strtod.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRTOD\*(C'\fR symbol, which indicates to the C program that the \fBstrtod()\fR routine is available to provide better numeric string conversion than \fBatof()\fR. .ie n .IP """d_strtod_l""" 4 .el .IP \f(CWd_strtod_l\fR 4 .IX Item "d_strtod_l" From \fId_strtod_l.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRTOD_L\*(C'\fR symbol, which indicates to the C program that the \fBstrtod_l()\fR routine is available. .ie n .IP """d_strtol""" 4 .el .IP \f(CWd_strtol\fR 4 .IX Item "d_strtol" From \fId_strtol.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRTOL\*(C'\fR symbol, which indicates to the C program that the \fBstrtol()\fR routine is available to provide better numeric string conversion than \fBatoi()\fR and friends. .ie n .IP """d_strtold""" 4 .el .IP \f(CWd_strtold\fR 4 .IX Item "d_strtold" From \fId_strtold.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRTOLD\*(C'\fR symbol, which indicates to the C program that the \fBstrtold()\fR routine is available. .ie n .IP """d_strtold_l""" 4 .el .IP \f(CWd_strtold_l\fR 4 .IX Item "d_strtold_l" From \fId_strtold_l.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRTOLD_L\*(C'\fR symbol, which indicates to the C program that the \fBstrtold_l()\fR routine is available. .ie n .IP """d_strtoll""" 4 .el .IP \f(CWd_strtoll\fR 4 .IX Item "d_strtoll" From \fId_strtoll.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRTOLL\*(C'\fR symbol, which indicates to the C program that the \fBstrtoll()\fR routine is available. .ie n .IP """d_strtoq""" 4 .el .IP \f(CWd_strtoq\fR 4 .IX Item "d_strtoq" From \fId_strtoq.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRTOQ\*(C'\fR symbol, which indicates to the C program that the \fBstrtoq()\fR routine is available. .ie n .IP """d_strtoul""" 4 .el .IP \f(CWd_strtoul\fR 4 .IX Item "d_strtoul" From \fId_strtoul.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRTOUL\*(C'\fR symbol, which indicates to the C program that the \fBstrtoul()\fR routine is available to provide conversion of strings to unsigned long. .ie n .IP """d_strtoull""" 4 .el .IP \f(CWd_strtoull\fR 4 .IX Item "d_strtoull" From \fId_strtoull.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRTOULL\*(C'\fR symbol, which indicates to the C program that the \fBstrtoull()\fR routine is available. .ie n .IP """d_strtouq""" 4 .el .IP \f(CWd_strtouq\fR 4 .IX Item "d_strtouq" From \fId_strtouq.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_STRTOUQ\*(C'\fR symbol, which indicates to the C program that the \fBstrtouq()\fR routine is available. .ie n .IP """d_strxfrm""" 4 .el .IP \f(CWd_strxfrm\fR 4 .IX Item "d_strxfrm" From \fId_strxfrm.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_STRXFRM\*(C'\fR if \fBstrxfrm()\fR is available to transform strings. .ie n .IP """d_strxfrm_l""" 4 .el .IP \f(CWd_strxfrm_l\fR 4 .IX Item "d_strxfrm_l" From \fId_strxfrm_l.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_STRXFRM_L\*(C'\fR if \fBstrxfrm_l()\fR is available to transform strings. .ie n .IP """d_suidsafe""" 4 .el .IP \f(CWd_suidsafe\fR 4 .IX Item "d_suidsafe" From \fId_dosuid.U\fR: .Sp This variable conditionally defines \f(CW\*(C`SETUID_SCRIPTS_ARE_SECURE_NOW\*(C'\fR if setuid scripts can be secure. This test looks in \fI/dev/fd/\fR. .ie n .IP """d_symlink""" 4 .el .IP \f(CWd_symlink\fR 4 .IX Item "d_symlink" From \fId_symlink.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SYMLINK\*(C'\fR symbol, which indicates to the C program that the \fBsymlink()\fR routine is available to create symbolic links. .ie n .IP """d_syscall""" 4 .el .IP \f(CWd_syscall\fR 4 .IX Item "d_syscall" From \fId_syscall.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SYSCALL\*(C'\fR if \fBsyscall()\fR is available call arbitrary system calls. .ie n .IP """d_syscallproto""" 4 .el .IP \f(CWd_syscallproto\fR 4 .IX Item "d_syscallproto" From \fId_syscallproto.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SYSCALL_PROTO\*(C'\fR symbol, which indicates to the C program that the system provides a prototype for the \fBsyscall()\fR function. Otherwise, it is up to the program to supply one. .ie n .IP """d_sysconf""" 4 .el .IP \f(CWd_sysconf\fR 4 .IX Item "d_sysconf" From \fId_sysconf.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_SYSCONF\*(C'\fR symbol, which indicates to the C program that the \fBsysconf()\fR routine is available to determine system related limits and options. .ie n .IP """d_sysernlst""" 4 .el .IP \f(CWd_sysernlst\fR 4 .IX Item "d_sysernlst" From \fId_strerror.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SYS_ERRNOLIST\*(C'\fR if sys_errnolist[] is available to translate error numbers to the symbolic name. .ie n .IP """d_syserrlst""" 4 .el .IP \f(CWd_syserrlst\fR 4 .IX Item "d_syserrlst" From \fId_strerror.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SYS_ERRLIST\*(C'\fR if sys_errlist[] is available to translate error numbers to strings. .ie n .IP """d_system""" 4 .el .IP \f(CWd_system\fR 4 .IX Item "d_system" From \fId_system.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_SYSTEM\*(C'\fR if \fBsystem()\fR is available to issue a shell command. .ie n .IP """d_tcgetpgrp""" 4 .el .IP \f(CWd_tcgetpgrp\fR 4 .IX Item "d_tcgetpgrp" From \fId_tcgtpgrp.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_TCGETPGRP\*(C'\fR symbol, which indicates to the C program that the \fBtcgetpgrp()\fR routine is available. to get foreground process group \f(CW\*(C`ID\*(C'\fR. .ie n .IP """d_tcsetpgrp""" 4 .el .IP \f(CWd_tcsetpgrp\fR 4 .IX Item "d_tcsetpgrp" From \fId_tcstpgrp.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_TCSETPGRP\*(C'\fR symbol, which indicates to the C program that the \fBtcsetpgrp()\fR routine is available to set foreground process group \f(CW\*(C`ID\*(C'\fR. .ie n .IP """d_telldir""" 4 .el .IP \f(CWd_telldir\fR 4 .IX Item "d_telldir" From \fId_readdir.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_TELLDIR\*(C'\fR if \fBtelldir()\fR is available. .ie n .IP """d_telldirproto""" 4 .el .IP \f(CWd_telldirproto\fR 4 .IX Item "d_telldirproto" From \fId_telldirproto.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_TELLDIR_PROTO\*(C'\fR symbol, which indicates to the C program that the system provides a prototype for the \fBtelldir()\fR function. Otherwise, it is up to the program to supply one. .ie n .IP """d_tgamma""" 4 .el .IP \f(CWd_tgamma\fR 4 .IX Item "d_tgamma" From \fId_tgamma.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_TGAMMA\*(C'\fR symbol, which indicates to the C program that the \fBtgamma()\fR routine is available for the gamma function. See also d_lgamma. .ie n .IP """d_thread_local""" 4 .el .IP \f(CWd_thread_local\fR 4 .IX Item "d_thread_local" From \fId_thread_local.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`PERL_THREAD_LOCAL\*(C'\fR symbol. In turn that gives a linkage specification for thread-local storage. .ie n .IP """d_thread_safe_nl_langinfo_l""" 4 .el .IP \f(CWd_thread_safe_nl_langinfo_l\fR 4 .IX Item "d_thread_safe_nl_langinfo_l" From \fId_nl_langinfo_l.U\fR: .Sp This variable contains the eventual value of the \&\f(CW\*(C`HAS_THREAD_SAFE_NL_LANGINFO_L\*(C'\fR symbol, which indicates if the \&\fBnl_langinfo_l()\fR function exists and is thread-safe. .ie n .IP """d_time""" 4 .el .IP \f(CWd_time\fR 4 .IX Item "d_time" From \fId_time.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_TIME\*(C'\fR symbol, which indicates that the \fBtime()\fR routine exists. The \fBtime()\fR routine is normally provided on \f(CW\*(C`UNIX\*(C'\fR systems. .ie n .IP """d_timegm""" 4 .el .IP \f(CWd_timegm\fR 4 .IX Item "d_timegm" From \fId_timegm.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_TIMEGM\*(C'\fR symbol, which indicates to the C program that the timegm () routine is available. .ie n .IP """d_times""" 4 .el .IP \f(CWd_times\fR 4 .IX Item "d_times" From \fId_times.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_TIMES\*(C'\fR symbol, which indicates that the \fBtimes()\fR routine exists. The \fBtimes()\fR routine is normally provided on \f(CW\*(C`UNIX\*(C'\fR systems. You may have to include . .ie n .IP """d_tm_tm_gmtoff""" 4 .el .IP \f(CWd_tm_tm_gmtoff\fR 4 .IX Item "d_tm_tm_gmtoff" From \fIi_time.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_TM_TM_GMTOFF\*(C'\fR, which indicates to the C program that the struct tm has the tm_gmtoff field. .ie n .IP """d_tm_tm_zone""" 4 .el .IP \f(CWd_tm_tm_zone\fR 4 .IX Item "d_tm_tm_zone" From \fIi_time.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_TM_TM_ZONE\*(C'\fR, which indicates to the C program that the struct tm has the tm_zone field. .ie n .IP """d_tmpnam_r""" 4 .el .IP \f(CWd_tmpnam_r\fR 4 .IX Item "d_tmpnam_r" From \fId_tmpnam_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_TMPNAM_R\*(C'\fR symbol, which indicates to the C program that the \fBtmpnam_r()\fR routine is available. .ie n .IP """d_towlower""" 4 .el .IP \f(CWd_towlower\fR 4 .IX Item "d_towlower" From \fId_towlower.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_TOWLOWER\*(C'\fR symbol, which indicates to the C program that the \fBtowlower()\fR routine is available. .ie n .IP """d_towupper""" 4 .el .IP \f(CWd_towupper\fR 4 .IX Item "d_towupper" From \fId_towupper.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_TOWUPPER\*(C'\fR symbol, which indicates to the C program that the \fBtowupper()\fR routine is available. .ie n .IP """d_trunc""" 4 .el .IP \f(CWd_trunc\fR 4 .IX Item "d_trunc" From \fId_trunc.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_TRUNC\*(C'\fR symbol, which indicates to the C program that the \fBtrunc()\fR routine is available to round doubles towards zero. .ie n .IP """d_truncate""" 4 .el .IP \f(CWd_truncate\fR 4 .IX Item "d_truncate" From \fId_truncate.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_TRUNCATE\*(C'\fR if \fBtruncate()\fR is available to truncate files. .ie n .IP """d_truncl""" 4 .el .IP \f(CWd_truncl\fR 4 .IX Item "d_truncl" From \fId_truncl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_TRUNCL\*(C'\fR symbol, which indicates to the C program that the \fBtruncl()\fR routine is available to round long doubles towards zero. If copysignl is also present, we can emulate modfl. .ie n .IP """d_ttyname_r""" 4 .el .IP \f(CWd_ttyname_r\fR 4 .IX Item "d_ttyname_r" From \fId_ttyname_r.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_TTYNAME_R\*(C'\fR symbol, which indicates to the C program that the \fBttyname_r()\fR routine is available. .ie n .IP """d_tzname""" 4 .el .IP \f(CWd_tzname\fR 4 .IX Item "d_tzname" From \fId_tzname.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_TZNAME\*(C'\fR if tzname[] is available to access timezone names. .ie n .IP """d_u32align""" 4 .el .IP \f(CWd_u32align\fR 4 .IX Item "d_u32align" From \fId_u32align.U\fR: .Sp This variable tells whether you must access character data through U32\-aligned pointers. .ie n .IP """d_ualarm""" 4 .el .IP \f(CWd_ualarm\fR 4 .IX Item "d_ualarm" From \fId_ualarm.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_UALARM\*(C'\fR symbol, which indicates to the C program that the \fBualarm()\fR routine is available. .ie n .IP """d_umask""" 4 .el .IP \f(CWd_umask\fR 4 .IX Item "d_umask" From \fId_umask.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_UMASK\*(C'\fR symbol, which indicates to the C program that the \fBumask()\fR routine is available. to set and get the value of the file creation mask. .ie n .IP """d_uname""" 4 .el .IP \f(CWd_uname\fR 4 .IX Item "d_uname" From \fId_gethname.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_UNAME\*(C'\fR symbol, which indicates to the C program that the \fBuname()\fR routine may be used to derive the host name. .ie n .IP """d_union_semun""" 4 .el .IP \f(CWd_union_semun\fR 4 .IX Item "d_union_semun" From \fId_union_semun.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_UNION_SEMUN\*(C'\fR if the union semun is defined by including . .ie n .IP """d_unlinkat""" 4 .el .IP \f(CWd_unlinkat\fR 4 .IX Item "d_unlinkat" From \fId_fsat.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_UNLINKAT\*(C'\fR symbol, which indicates the \f(CW\*(C`POSIX\*(C'\fR \fBunlinkat()\fR function isavailable. .ie n .IP """d_unordered""" 4 .el .IP \f(CWd_unordered\fR 4 .IX Item "d_unordered" From \fId_unordered.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_UNORDERED\*(C'\fR symbol, which indicates to the C program that the \fBunordered()\fR routine is available. .ie n .IP """d_unsetenv""" 4 .el .IP \f(CWd_unsetenv\fR 4 .IX Item "d_unsetenv" From \fId_unsetenv.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_UNSETENV\*(C'\fR symbol, which indicates to the C program that the unsetenv () routine is available. .ie n .IP """d_uselocale""" 4 .el .IP \f(CWd_uselocale\fR 4 .IX Item "d_uselocale" From \fId_newlocale.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_USELOCALE\*(C'\fR symbol, which indicates to the C program that the \fBuselocale()\fR routine is available to set the current locale for the calling thread. .ie n .IP """d_usleep""" 4 .el .IP \f(CWd_usleep\fR 4 .IX Item "d_usleep" From \fId_usleep.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_USLEEP\*(C'\fR if \fBusleep()\fR is available to do high granularity sleeps. .ie n .IP """d_usleepproto""" 4 .el .IP \f(CWd_usleepproto\fR 4 .IX Item "d_usleepproto" From \fId_usleepproto.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_USLEEP_PROTO\*(C'\fR symbol, which indicates to the C program that the system provides a prototype for the \fBusleep()\fR function. Otherwise, it is up to the program to supply one. .ie n .IP """d_ustat""" 4 .el .IP \f(CWd_ustat\fR 4 .IX Item "d_ustat" From \fId_ustat.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_USTAT\*(C'\fR if \fBustat()\fR is available to query file system statistics by dev_t. .ie n .IP """d_vendorarch""" 4 .el .IP \f(CWd_vendorarch\fR 4 .IX Item "d_vendorarch" From \fIvendorarch.U\fR: .Sp This variable conditionally defined \f(CW\*(C`PERL_VENDORARCH\*(C'\fR. .ie n .IP """d_vendorbin""" 4 .el .IP \f(CWd_vendorbin\fR 4 .IX Item "d_vendorbin" From \fIvendorbin.U\fR: .Sp This variable conditionally defines \f(CW\*(C`PERL_VENDORBIN\*(C'\fR. .ie n .IP """d_vendorlib""" 4 .el .IP \f(CWd_vendorlib\fR 4 .IX Item "d_vendorlib" From \fIvendorlib.U\fR: .Sp This variable conditionally defines \f(CW\*(C`PERL_VENDORLIB\*(C'\fR. .ie n .IP """d_vendorscript""" 4 .el .IP \f(CWd_vendorscript\fR 4 .IX Item "d_vendorscript" From \fIvendorscript.U\fR: .Sp This variable conditionally defines \f(CW\*(C`PERL_VENDORSCRIPT\*(C'\fR. .ie n .IP """d_vfork""" 4 .el .IP \f(CWd_vfork\fR 4 .IX Item "d_vfork" From \fId_vfork.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_VFORK\*(C'\fR symbol, which indicates the \fBvfork()\fR routine is available. .ie n .IP """d_void_closedir""" 4 .el .IP \f(CWd_void_closedir\fR 4 .IX Item "d_void_closedir" From \fId_closedir.U\fR: .Sp This variable conditionally defines \f(CW\*(C`VOID_CLOSEDIR\*(C'\fR if \fBclosedir()\fR does not return a value. .ie n .IP """d_voidsig""" 4 .el .IP \f(CWd_voidsig\fR 4 .IX Item "d_voidsig" From \fId_voidsig.U\fR: .Sp This variable conditionally defines \f(CW\*(C`VOIDSIG\*(C'\fR if this system declares "void (*signal(...))()" in \fIsignal.h\fR. The old way was to declare it as "int (*signal(...))()". .ie n .IP """d_voidtty""" 4 .el .IP \f(CWd_voidtty\fR 4 .IX Item "d_voidtty" From \fIi_sysioctl.U\fR: .Sp This variable conditionally defines \f(CW\*(C`USE_IOCNOTTY\*(C'\fR to indicate that the \&\fBioctl()\fR call with \f(CW\*(C`TIOCNOTTY\*(C'\fR should be used to void tty association. Otherwise (on \f(CW\*(C`USG\*(C'\fR probably), it is enough to close the standard file descriptors and do a \fBsetpgrp()\fR. .ie n .IP """d_vsnprintf""" 4 .el .IP \f(CWd_vsnprintf\fR 4 .IX Item "d_vsnprintf" From \fId_snprintf.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_VSNPRINTF\*(C'\fR symbol, which indicates to the C program that the vsnprintf () library function is available. .ie n .IP """d_wait4""" 4 .el .IP \f(CWd_wait4\fR 4 .IX Item "d_wait4" From \fId_wait4.U\fR: .Sp This variable conditionally defines the HAS_WAIT4 symbol, which indicates the \fBwait4()\fR routine is available. .ie n .IP """d_waitpid""" 4 .el .IP \f(CWd_waitpid\fR 4 .IX Item "d_waitpid" From \fId_waitpid.U\fR: .Sp This variable conditionally defines \f(CW\*(C`HAS_WAITPID\*(C'\fR if \fBwaitpid()\fR is available to wait for child process. .ie n .IP """d_wcrtomb""" 4 .el .IP \f(CWd_wcrtomb\fR 4 .IX Item "d_wcrtomb" From \fId_wcrtomb.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_WCRTOMB\*(C'\fR symbol if the \&\fBwcrtomb()\fR routine is available to be used to convert a wide character into a multi-byte character. .ie n .IP """d_wcscmp""" 4 .el .IP \f(CWd_wcscmp\fR 4 .IX Item "d_wcscmp" From \fId_wcscmp.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_WCSCMP\*(C'\fR symbol if the \&\fBwcscmp()\fR routine is available and can be used to compare wide character strings. .ie n .IP """d_wcstombs""" 4 .el .IP \f(CWd_wcstombs\fR 4 .IX Item "d_wcstombs" From \fId_wcstombs.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_WCSTOMBS\*(C'\fR symbol, which indicates to the C program that the \fBwcstombs()\fR routine is available to convert wide character strings to multibyte strings. .ie n .IP """d_wcsxfrm""" 4 .el .IP \f(CWd_wcsxfrm\fR 4 .IX Item "d_wcsxfrm" From \fId_wcsxfrm.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_WCSXFRM\*(C'\fR symbol if the \&\fBwcsxfrm()\fR routine is available and can be used to compare wide character strings. .ie n .IP """d_wctomb""" 4 .el .IP \f(CWd_wctomb\fR 4 .IX Item "d_wctomb" From \fId_wctomb.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_WCTOMB\*(C'\fR symbol, which indicates to the C program that the \fBwctomb()\fR routine is available to convert a wide character to a multibyte. .ie n .IP """d_writev""" 4 .el .IP \f(CWd_writev\fR 4 .IX Item "d_writev" From \fId_writev.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`HAS_WRITEV\*(C'\fR symbol, which indicates to the C program that the \fBwritev()\fR routine is available. .ie n .IP """d_xenix""" 4 .el .IP \f(CWd_xenix\fR 4 .IX Item "d_xenix" From \fIGuess.U\fR: .Sp This variable conditionally defines the symbol \f(CW\*(C`XENIX\*(C'\fR, which alerts the C program that it runs under Xenix. .ie n .IP """date""" 4 .el .IP \f(CWdate\fR 4 .IX Item "date" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the date program. After Configure runs, the value is reset to a plain \f(CW\*(C`date\*(C'\fR and is not useful. .ie n .IP """db_hashtype""" 4 .el .IP \f(CWdb_hashtype\fR 4 .IX Item "db_hashtype" From \fIi_db.U\fR: .Sp This variable contains the type of the hash structure element in the header file. In older versions of \f(CW\*(C`DB\*(C'\fR, it was int, while in newer ones it is u_int32_t. .ie n .IP """db_prefixtype""" 4 .el .IP \f(CWdb_prefixtype\fR 4 .IX Item "db_prefixtype" From \fIi_db.U\fR: .Sp This variable contains the type of the prefix structure element in the header file. In older versions of \f(CW\*(C`DB\*(C'\fR, it was int, while in newer ones it is size_t. .ie n .IP """db_version_major""" 4 .el .IP \f(CWdb_version_major\fR 4 .IX Item "db_version_major" From \fIi_db.U\fR: .Sp This variable contains the major version number of Berkeley \f(CW\*(C`DB\*(C'\fR found in the header file. .ie n .IP """db_version_minor""" 4 .el .IP \f(CWdb_version_minor\fR 4 .IX Item "db_version_minor" From \fIi_db.U\fR: .Sp This variable contains the minor version number of Berkeley \f(CW\*(C`DB\*(C'\fR found in the header file. For \f(CW\*(C`DB\*(C'\fR version 1 this is always 0. .ie n .IP """db_version_patch""" 4 .el .IP \f(CWdb_version_patch\fR 4 .IX Item "db_version_patch" From \fIi_db.U\fR: .Sp This variable contains the patch version number of Berkeley \f(CW\*(C`DB\*(C'\fR found in the header file. For \f(CW\*(C`DB\*(C'\fR version 1 this is always 0. .ie n .IP """default_inc_excludes_dot""" 4 .el .IP \f(CWdefault_inc_excludes_dot\fR 4 .IX Item "default_inc_excludes_dot" From \fIdefaultincdot.U\fR: .Sp When defined, remove the legacy \fI.\fR from @\f(CW\*(C`INC\*(C'\fR .ie n .IP """direntrytype""" 4 .el .IP \f(CWdirentrytype\fR 4 .IX Item "direntrytype" From \fIi_dirent.U\fR: .Sp This symbol is set to \f(CW\*(C`struct direct\*(C'\fR or \f(CW\*(C`struct dirent\*(C'\fR depending on whether dirent is available or not. You should use this pseudo type to portably declare your directory entries. .ie n .IP """dlext""" 4 .el .IP \f(CWdlext\fR 4 .IX Item "dlext" From \fIdlext.U\fR: .Sp This variable contains the extension that is to be used for the dynamically loaded modules that perl generates. .ie n .IP """dlsrc""" 4 .el .IP \f(CWdlsrc\fR 4 .IX Item "dlsrc" From \fIdlsrc.U\fR: .Sp This variable contains the name of the dynamic loading file that will be used with the package. .ie n .IP """doubleinfbytes""" 4 .el .IP \f(CWdoubleinfbytes\fR 4 .IX Item "doubleinfbytes" From \fIinfnan.U\fR: .Sp This variable contains comma-separated list of hexadecimal bytes for the double precision infinity. .ie n .IP """doublekind""" 4 .el .IP \f(CWdoublekind\fR 4 .IX Item "doublekind" From \fIlongdblfio.U\fR: .Sp This variable, if defined, encodes the type of a double: 1 = \f(CW\*(C`IEEE\*(C'\fR 754 32\-bit little endian, 2 = \f(CW\*(C`IEEE\*(C'\fR 754 32\-bit big endian, 3 = \f(CW\*(C`IEEE\*(C'\fR 754 64\-bit little endian, 4 = \f(CW\*(C`IEEE\*(C'\fR 754 64\-bit big endian, 5 = \f(CW\*(C`IEEE\*(C'\fR 754 128\-bit little endian, 6 = \f(CW\*(C`IEEE\*(C'\fR 754 128\-bit big endian, 7 = \f(CW\*(C`IEEE\*(C'\fR 754 64\-bit mixed endian le-be, 8 = \f(CW\*(C`IEEE\*(C'\fR 754 64\-bit mixed endian be-le, 9 = \f(CW\*(C`VAX\*(C'\fR 32bit little endian F float format 10 = \f(CW\*(C`VAX\*(C'\fR 64bit little endian D float format 11 = \f(CW\*(C`VAX\*(C'\fR 64bit little endian G float format 12 = \f(CW\*(C`IBM\*(C'\fR 32bit format 13 = \f(CW\*(C`IBM\*(C'\fR 64bit format 14 = Cray 64bit format \&\-1 = unknown format. .ie n .IP """doublemantbits""" 4 .el .IP \f(CWdoublemantbits\fR 4 .IX Item "doublemantbits" From \fImantbits.U\fR: .Sp This symbol, if defined, tells how many mantissa bits there are in double precision floating point format. Note that this is usually \f(CW\*(C`DBL_MANT_DIG\*(C'\fR minus one, since with the standard \f(CW\*(C`IEEE\*(C'\fR 754 formats \f(CW\*(C`DBL_MANT_DIG\*(C'\fR includes the implicit bit which doesn't really exist. .ie n .IP """doublenanbytes""" 4 .el .IP \f(CWdoublenanbytes\fR 4 .IX Item "doublenanbytes" From \fIinfnan.U\fR: .Sp This variable contains comma-separated list of hexadecimal bytes for the double precision not-a-number. .ie n .IP """doublesize""" 4 .el .IP \f(CWdoublesize\fR 4 .IX Item "doublesize" From \fIdoublesize.U\fR: .Sp This variable contains the value of the \f(CW\*(C`DOUBLESIZE\*(C'\fR symbol, which indicates to the C program how many bytes there are in a double. .ie n .IP """drand01""" 4 .el .IP \f(CWdrand01\fR 4 .IX Item "drand01" From \fIrandfunc.U\fR: .Sp Indicates the macro to be used to generate normalized random numbers. Uses randfunc, often divided by (double) (((unsigned long) 1 << randbits)) in order to normalize the result. In C programs, the macro \f(CW\*(C`Drand01\*(C'\fR is mapped to drand01. .ie n .IP """drand48_r_proto""" 4 .el .IP \f(CWdrand48_r_proto\fR 4 .IX Item "drand48_r_proto" From \fId_drand48_r.U\fR: .Sp This variable encodes the prototype of drand48_r. It is zero if d_drand48_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_drand48_r is defined. .ie n .IP """dtrace""" 4 .el .IP \f(CWdtrace\fR 4 .IX Item "dtrace" From \fIusedtrace.U\fR: .Sp This variable holds the location of the dtrace executable. .ie n .IP """dtraceobject""" 4 .el .IP \f(CWdtraceobject\fR 4 .IX Item "dtraceobject" From \fIdtraceobject.U\fR: .Sp Whether we need to build an object file with the dtrace tool. .ie n .IP """dtracexnolibs""" 4 .el .IP \f(CWdtracexnolibs\fR 4 .IX Item "dtracexnolibs" From \fIdtraceobject.U\fR: .Sp Whether dtrace accepts \-xnolibs. If available we call dtrace \-h and dtrace \-G with \-xnolibs to allow dtrace to run in a jail on FreeBSD. .ie n .IP """dynamic_ext""" 4 .el .IP \f(CWdynamic_ext\fR 4 .IX Item "dynamic_ext" From \fIExtensions.U\fR: .Sp This variable holds a list of \f(CW\*(C`XS\*(C'\fR extension files we want to link dynamically into the package. It is used by Makefile. .SS e .IX Subsection "e" .ie n .IP """eagain""" 4 .el .IP \f(CWeagain\fR 4 .IX Item "eagain" From \fInblock_io.U\fR: .Sp This variable bears the symbolic errno code set by \fBread()\fR when no data is present on the file and non-blocking I/O was enabled (otherwise, \&\fBread()\fR blocks naturally). .ie n .IP """ebcdic""" 4 .el .IP \f(CWebcdic\fR 4 .IX Item "ebcdic" From \fIebcdic.U\fR: .Sp This variable conditionally defines \f(CW\*(C`EBCDIC\*(C'\fR if this system uses \f(CW\*(C`EBCDIC\*(C'\fR encoding. .ie n .IP """echo""" 4 .el .IP \f(CWecho\fR 4 .IX Item "echo" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the echo program. After Configure runs, the value is reset to a plain \f(CW\*(C`echo\*(C'\fR and is not useful. .ie n .IP """egrep""" 4 .el .IP \f(CWegrep\fR 4 .IX Item "egrep" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the egrep program. After Configure runs, the value is reset to a plain \f(CW\*(C`egrep\*(C'\fR and is not useful. .ie n .IP """emacs""" 4 .el .IP \f(CWemacs\fR 4 .IX Item "emacs" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """endgrent_r_proto""" 4 .el .IP \f(CWendgrent_r_proto\fR 4 .IX Item "endgrent_r_proto" From \fId_endgrent_r.U\fR: .Sp This variable encodes the prototype of endgrent_r. It is zero if d_endgrent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_endgrent_r is defined. .ie n .IP """endhostent_r_proto""" 4 .el .IP \f(CWendhostent_r_proto\fR 4 .IX Item "endhostent_r_proto" From \fId_endhostent_r.U\fR: .Sp This variable encodes the prototype of endhostent_r. It is zero if d_endhostent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_endhostent_r is defined. .ie n .IP """endnetent_r_proto""" 4 .el .IP \f(CWendnetent_r_proto\fR 4 .IX Item "endnetent_r_proto" From \fId_endnetent_r.U\fR: .Sp This variable encodes the prototype of endnetent_r. It is zero if d_endnetent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_endnetent_r is defined. .ie n .IP """endprotoent_r_proto""" 4 .el .IP \f(CWendprotoent_r_proto\fR 4 .IX Item "endprotoent_r_proto" From \fId_endprotoent_r.U\fR: .Sp This variable encodes the prototype of endprotoent_r. It is zero if d_endprotoent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_endprotoent_r is defined. .ie n .IP """endpwent_r_proto""" 4 .el .IP \f(CWendpwent_r_proto\fR 4 .IX Item "endpwent_r_proto" From \fId_endpwent_r.U\fR: .Sp This variable encodes the prototype of endpwent_r. It is zero if d_endpwent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_endpwent_r is defined. .ie n .IP """endservent_r_proto""" 4 .el .IP \f(CWendservent_r_proto\fR 4 .IX Item "endservent_r_proto" From \fId_endservent_r.U\fR: .Sp This variable encodes the prototype of endservent_r. It is zero if d_endservent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_endservent_r is defined. .ie n .IP """eunicefix""" 4 .el .IP \f(CWeunicefix\fR 4 .IX Item "eunicefix" From \fIInit.U\fR: .Sp When running under Eunice this variable contains a command which will convert a shell script to the proper form of text file for it to be executable by the shell. On other systems it is a no-op. .ie n .IP """exe_ext""" 4 .el .IP \f(CWexe_ext\fR 4 .IX Item "exe_ext" From \fIUnix.U\fR: .Sp This is an old synonym for _exe. .ie n .IP """expr""" 4 .el .IP \f(CWexpr\fR 4 .IX Item "expr" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the expr program. After Configure runs, the value is reset to a plain \f(CW\*(C`expr\*(C'\fR and is not useful. .ie n .IP """extensions""" 4 .el .IP \f(CWextensions\fR 4 .IX Item "extensions" From \fIExtensions.U\fR: .Sp This variable holds a list of all extension files (both \f(CW\*(C`XS\*(C'\fR and non-xs) installed with the package. It is propagated to \fIConfig.pm\fR and is typically used to test whether a particular extension is available. .ie n .IP """extern_C""" 4 .el .IP \f(CWextern_C\fR 4 .IX Item "extern_C" From \fICsym.U\fR: .Sp \&\f(CW\*(C`ANSI\*(C'\fR C requires \f(CW\*(C`extern\*(C'\fR where C++ requires 'extern \f(CW\*(C`C\*(C'\fR'. This variable can be used in Configure to do the right thing. .ie n .IP """extras""" 4 .el .IP \f(CWextras\fR 4 .IX Item "extras" From \fIExtras.U\fR: .Sp This variable holds a list of extra modules to install. .SS f .IX Subsection "f" .ie n .IP """fflushNULL""" 4 .el .IP \f(CWfflushNULL\fR 4 .IX Item "fflushNULL" From \fIfflushall.U\fR: .Sp This symbol, if defined, tells that fflush(\f(CW\*(C`NULL\*(C'\fR) correctly flushes all pending stdio output without side effects. In particular, on some platforms calling fflush(\f(CW\*(C`NULL\*(C'\fR) *still* corrupts \f(CW\*(C`STDIN\*(C'\fR if it is a pipe. .ie n .IP """fflushall""" 4 .el .IP \f(CWfflushall\fR 4 .IX Item "fflushall" From \fIfflushall.U\fR: .Sp This symbol, if defined, tells that to flush all pending stdio output one must loop through all the stdio file handles stored in an array and fflush them. Note that if fflushNULL is defined, fflushall will not even be probed for and will be left undefined. .ie n .IP """find""" 4 .el .IP \f(CWfind\fR 4 .IX Item "find" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """firstmakefile""" 4 .el .IP \f(CWfirstmakefile\fR 4 .IX Item "firstmakefile" From \fIUnix.U\fR: .Sp This variable defines the first file searched by make. On unix, it is makefile (then Makefile). On case-insensitive systems, it might be something else. This is only used to deal with convoluted make depend tricks. .ie n .IP """flex""" 4 .el .IP \f(CWflex\fR 4 .IX Item "flex" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """fpossize""" 4 .el .IP \f(CWfpossize\fR 4 .IX Item "fpossize" From \fIfpossize.U\fR: .Sp This variable contains the size of a fpostype in bytes. .ie n .IP """fpostype""" 4 .el .IP \f(CWfpostype\fR 4 .IX Item "fpostype" From \fIfpostype.U\fR: .Sp This variable defines Fpos_t to be something like fpos_t, long, uint, or whatever type is used to declare file positions in libc. .ie n .IP """freetype""" 4 .el .IP \f(CWfreetype\fR 4 .IX Item "freetype" From \fImallocsrc.U\fR: .Sp This variable contains the return type of \fBfree()\fR. It is usually void, but occasionally int. .ie n .IP """from""" 4 .el .IP \f(CWfrom\fR 4 .IX Item "from" From \fICross.U\fR: .Sp This variable contains the command used by Configure to copy files from the target host. Useful and available only during Perl build. The string \f(CW\*(C`:\*(C'\fR if not cross-compiling. .ie n .IP """full_ar""" 4 .el .IP \f(CWfull_ar\fR 4 .IX Item "full_ar" From \fILoc_ar.U\fR: .Sp This variable contains the full pathname to \f(CW\*(C`ar\*(C'\fR, whether or not the user has specified \f(CW\*(C`portability\*(C'\fR. This is only used in the \fIMakefile.SH\fR. .ie n .IP """full_csh""" 4 .el .IP \f(CWfull_csh\fR 4 .IX Item "full_csh" From \fId_csh.U\fR: .Sp This variable contains the full pathname to \f(CW\*(C`csh\*(C'\fR, whether or not the user has specified \f(CW\*(C`portability\*(C'\fR. This is only used in the compiled C program, and we assume that all systems which can share this executable will have the same full pathname to \&\fIcsh.\fR .ie n .IP """full_sed""" 4 .el .IP \f(CWfull_sed\fR 4 .IX Item "full_sed" From \fILoc_sed.U\fR: .Sp This variable contains the full pathname to \f(CW\*(C`sed\*(C'\fR, whether or not the user has specified \f(CW\*(C`portability\*(C'\fR. This is only used in the compiled C program, and we assume that all systems which can share this executable will have the same full pathname to \&\fIsed.\fR .SS g .IX Subsection "g" .ie n .IP """gccansipedantic""" 4 .el .IP \f(CWgccansipedantic\fR 4 .IX Item "gccansipedantic" From \fIgccvers.U\fR: .Sp If \f(CW\*(C`GNU\*(C'\fR cc (gcc) is used, this variable will enable (if set) the \&\-ansi and \-pedantic ccflags for building core files (through cflags script). (See \fIPorting/pumpkin.pod\fR for full description). .ie n .IP """gccosandvers""" 4 .el .IP \f(CWgccosandvers\fR 4 .IX Item "gccosandvers" From \fIgccvers.U\fR: .Sp If \f(CW\*(C`GNU\*(C'\fR cc (gcc) is used, this variable holds the operating system and version used to compile gcc. It is set to '' if not gcc, or if nothing useful can be parsed as the os version. .ie n .IP """gccversion""" 4 .el .IP \f(CWgccversion\fR 4 .IX Item "gccversion" From \fIgccvers.U\fR: .Sp If \f(CW\*(C`GNU\*(C'\fR cc (gcc) is used, this variable holds \f(CW1\fR or \f(CW2\fR to indicate whether the compiler is version 1 or 2. This is used in setting some of the default cflags. It is set to '' if not gcc. .ie n .IP """getgrent_r_proto""" 4 .el .IP \f(CWgetgrent_r_proto\fR 4 .IX Item "getgrent_r_proto" From \fId_getgrent_r.U\fR: .Sp This variable encodes the prototype of getgrent_r. It is zero if d_getgrent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_getgrent_r is defined. .ie n .IP """getgrgid_r_proto""" 4 .el .IP \f(CWgetgrgid_r_proto\fR 4 .IX Item "getgrgid_r_proto" From \fId_getgrgid_r.U\fR: .Sp This variable encodes the prototype of getgrgid_r. It is zero if d_getgrgid_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_getgrgid_r is defined. .ie n .IP """getgrnam_r_proto""" 4 .el .IP \f(CWgetgrnam_r_proto\fR 4 .IX Item "getgrnam_r_proto" From \fId_getgrnam_r.U\fR: .Sp This variable encodes the prototype of getgrnam_r. It is zero if d_getgrnam_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_getgrnam_r is defined. .ie n .IP """gethostbyaddr_r_proto""" 4 .el .IP \f(CWgethostbyaddr_r_proto\fR 4 .IX Item "gethostbyaddr_r_proto" From \fId_gethostbyaddr_r.U\fR: .Sp This variable encodes the prototype of gethostbyaddr_r. It is zero if d_gethostbyaddr_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_gethostbyaddr_r is defined. .ie n .IP """gethostbyname_r_proto""" 4 .el .IP \f(CWgethostbyname_r_proto\fR 4 .IX Item "gethostbyname_r_proto" From \fId_gethostbyname_r.U\fR: .Sp This variable encodes the prototype of gethostbyname_r. It is zero if d_gethostbyname_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_gethostbyname_r is defined. .ie n .IP """gethostent_r_proto""" 4 .el .IP \f(CWgethostent_r_proto\fR 4 .IX Item "gethostent_r_proto" From \fId_gethostent_r.U\fR: .Sp This variable encodes the prototype of gethostent_r. It is zero if d_gethostent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_gethostent_r is defined. .ie n .IP """getlogin_r_proto""" 4 .el .IP \f(CWgetlogin_r_proto\fR 4 .IX Item "getlogin_r_proto" From \fId_getlogin_r.U\fR: .Sp This variable encodes the prototype of getlogin_r. It is zero if d_getlogin_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_getlogin_r is defined. .ie n .IP """getnetbyaddr_r_proto""" 4 .el .IP \f(CWgetnetbyaddr_r_proto\fR 4 .IX Item "getnetbyaddr_r_proto" From \fId_getnetbyaddr_r.U\fR: .Sp This variable encodes the prototype of getnetbyaddr_r. It is zero if d_getnetbyaddr_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_getnetbyaddr_r is defined. .ie n .IP """getnetbyname_r_proto""" 4 .el .IP \f(CWgetnetbyname_r_proto\fR 4 .IX Item "getnetbyname_r_proto" From \fId_getnetbyname_r.U\fR: .Sp This variable encodes the prototype of getnetbyname_r. It is zero if d_getnetbyname_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_getnetbyname_r is defined. .ie n .IP """getnetent_r_proto""" 4 .el .IP \f(CWgetnetent_r_proto\fR 4 .IX Item "getnetent_r_proto" From \fId_getnetent_r.U\fR: .Sp This variable encodes the prototype of getnetent_r. It is zero if d_getnetent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_getnetent_r is defined. .ie n .IP """getprotobyname_r_proto""" 4 .el .IP \f(CWgetprotobyname_r_proto\fR 4 .IX Item "getprotobyname_r_proto" From \fId_getprotobyname_r.U\fR: .Sp This variable encodes the prototype of getprotobyname_r. It is zero if d_getprotobyname_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_getprotobyname_r is defined. .ie n .IP """getprotobynumber_r_proto""" 4 .el .IP \f(CWgetprotobynumber_r_proto\fR 4 .IX Item "getprotobynumber_r_proto" From \fId_getprotobynumber_r.U\fR: .Sp This variable encodes the prototype of getprotobynumber_r. It is zero if d_getprotobynumber_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_getprotobynumber_r is defined. .ie n .IP """getprotoent_r_proto""" 4 .el .IP \f(CWgetprotoent_r_proto\fR 4 .IX Item "getprotoent_r_proto" From \fId_getprotoent_r.U\fR: .Sp This variable encodes the prototype of getprotoent_r. It is zero if d_getprotoent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_getprotoent_r is defined. .ie n .IP """getpwent_r_proto""" 4 .el .IP \f(CWgetpwent_r_proto\fR 4 .IX Item "getpwent_r_proto" From \fId_getpwent_r.U\fR: .Sp This variable encodes the prototype of getpwent_r. It is zero if d_getpwent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_getpwent_r is defined. .ie n .IP """getpwnam_r_proto""" 4 .el .IP \f(CWgetpwnam_r_proto\fR 4 .IX Item "getpwnam_r_proto" From \fId_getpwnam_r.U\fR: .Sp This variable encodes the prototype of getpwnam_r. It is zero if d_getpwnam_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_getpwnam_r is defined. .ie n .IP """getpwuid_r_proto""" 4 .el .IP \f(CWgetpwuid_r_proto\fR 4 .IX Item "getpwuid_r_proto" From \fId_getpwuid_r.U\fR: .Sp This variable encodes the prototype of getpwuid_r. It is zero if d_getpwuid_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_getpwuid_r is defined. .ie n .IP """getservbyname_r_proto""" 4 .el .IP \f(CWgetservbyname_r_proto\fR 4 .IX Item "getservbyname_r_proto" From \fId_getservbyname_r.U\fR: .Sp This variable encodes the prototype of getservbyname_r. It is zero if d_getservbyname_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_getservbyname_r is defined. .ie n .IP """getservbyport_r_proto""" 4 .el .IP \f(CWgetservbyport_r_proto\fR 4 .IX Item "getservbyport_r_proto" From \fId_getservbyport_r.U\fR: .Sp This variable encodes the prototype of getservbyport_r. It is zero if d_getservbyport_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_getservbyport_r is defined. .ie n .IP """getservent_r_proto""" 4 .el .IP \f(CWgetservent_r_proto\fR 4 .IX Item "getservent_r_proto" From \fId_getservent_r.U\fR: .Sp This variable encodes the prototype of getservent_r. It is zero if d_getservent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_getservent_r is defined. .ie n .IP """getspnam_r_proto""" 4 .el .IP \f(CWgetspnam_r_proto\fR 4 .IX Item "getspnam_r_proto" From \fId_getspnam_r.U\fR: .Sp This variable encodes the prototype of getspnam_r. It is zero if d_getspnam_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_getspnam_r is defined. .ie n .IP """gidformat""" 4 .el .IP \f(CWgidformat\fR 4 .IX Item "gidformat" From \fIgidf.U\fR: .Sp This variable contains the format string used for printing a Gid_t. .ie n .IP """gidsign""" 4 .el .IP \f(CWgidsign\fR 4 .IX Item "gidsign" From \fIgidsign.U\fR: .Sp This variable contains the signedness of a gidtype. 1 for unsigned, \-1 for signed. .ie n .IP """gidsize""" 4 .el .IP \f(CWgidsize\fR 4 .IX Item "gidsize" From \fIgidsize.U\fR: .Sp This variable contains the size of a gidtype in bytes. .ie n .IP """gidtype""" 4 .el .IP \f(CWgidtype\fR 4 .IX Item "gidtype" From \fIgidtype.U\fR: .Sp This variable defines Gid_t to be something like gid_t, int, ushort, or whatever type is used to declare the return type of \fBgetgid()\fR. Typically, it is the type of group ids in the kernel. .ie n .IP """glibpth""" 4 .el .IP \f(CWglibpth\fR 4 .IX Item "glibpth" From \fIlibpth.U\fR: .Sp This variable holds the general path (space-separated) used to find libraries. It may contain directories that do not exist on this platform, libpth is the cleaned-up version. .ie n .IP """gmake""" 4 .el .IP \f(CWgmake\fR 4 .IX Item "gmake" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the gmake program. After Configure runs, the value is reset to a plain \f(CW\*(C`gmake\*(C'\fR and is not useful. .ie n .IP """gmtime_r_proto""" 4 .el .IP \f(CWgmtime_r_proto\fR 4 .IX Item "gmtime_r_proto" From \fId_gmtime_r.U\fR: .Sp This variable encodes the prototype of gmtime_r. It is zero if d_gmtime_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_gmtime_r is defined. .ie n .IP """gnulibc_version""" 4 .el .IP \f(CWgnulibc_version\fR 4 .IX Item "gnulibc_version" From \fId_gnulibc.U\fR: .Sp This variable contains the version number of the \f(CW\*(C`GNU\*(C'\fR C library. It is usually something like \fI2.2.5\fR. It is a plain '' if this is not the \f(CW\*(C`GNU\*(C'\fR C library, or if the version is unknown. .ie n .IP """grep""" 4 .el .IP \f(CWgrep\fR 4 .IX Item "grep" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the grep program. After Configure runs, the value is reset to a plain \f(CW\*(C`grep\*(C'\fR and is not useful. .ie n .IP """groupcat""" 4 .el .IP \f(CWgroupcat\fR 4 .IX Item "groupcat" From \fInis.U\fR: .Sp This variable contains a command that produces the text of the \&\fI/etc/group\fR file. This is normally "cat \fI/etc/group\fR", but can be "ypcat group" when \f(CW\*(C`NIS\*(C'\fR is used. On some systems, such as os390, there may be no equivalent command, in which case this variable is unset. .ie n .IP """groupstype""" 4 .el .IP \f(CWgroupstype\fR 4 .IX Item "groupstype" From \fIgroupstype.U\fR: .Sp This variable defines Groups_t to be something like gid_t, int, ushort, or whatever type is used for the second argument to \&\fBgetgroups()\fR and \fBsetgroups()\fR. Usually, this is the same as gidtype (gid_t), but sometimes it isn't. .ie n .IP """gzip""" 4 .el .IP \f(CWgzip\fR 4 .IX Item "gzip" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the gzip program. After Configure runs, the value is reset to a plain \f(CW\*(C`gzip\*(C'\fR and is not useful. .SS h .IX Subsection "h" .ie n .IP """h_fcntl""" 4 .el .IP \f(CWh_fcntl\fR 4 .IX Item "h_fcntl" From \fIh_fcntl.U\fR: .Sp This is variable gets set in various places to tell i_fcntl that should be included. .ie n .IP """h_sysfile""" 4 .el .IP \f(CWh_sysfile\fR 4 .IX Item "h_sysfile" From \fIh_sysfile.U\fR: .Sp This is variable gets set in various places to tell i_sys_file that should be included. .ie n .IP """hint""" 4 .el .IP \f(CWhint\fR 4 .IX Item "hint" From \fIOldconfig.U\fR: .Sp Gives the type of hints used for previous answers. May be one of \&\f(CW\*(C`default\*(C'\fR, \f(CW\*(C`recommended\*(C'\fR or \f(CW\*(C`previous\*(C'\fR. .ie n .IP """hostcat""" 4 .el .IP \f(CWhostcat\fR 4 .IX Item "hostcat" From \fInis.U\fR: .Sp This variable contains a command that produces the text of the \&\fI/etc/hosts\fR file. This is normally "cat \fI/etc/hosts\fR", but can be "ypcat hosts" when \f(CW\*(C`NIS\*(C'\fR is used. On some systems, such as os390, there may be no equivalent command, in which case this variable is unset. .ie n .IP """hostgenerate""" 4 .el .IP \f(CWhostgenerate\fR 4 .IX Item "hostgenerate" From \fICross.U\fR: .Sp This variable contains the path to a generate_uudmap binary that can be run on the host \f(CW\*(C`OS\*(C'\fR when cross-compiling. Useful and available only during Perl build. Empty string '' if not cross-compiling. .ie n .IP """hostosname""" 4 .el .IP \f(CWhostosname\fR 4 .IX Item "hostosname" From \fICross.U\fR: .Sp This variable contains the original value of \f(CW$^O\fR for hostperl when cross-compiling. This is useful to pick the proper tools when running build code in the host. Empty string '' if not cross-compiling. .ie n .IP """hostperl""" 4 .el .IP \f(CWhostperl\fR 4 .IX Item "hostperl" From \fICross.U\fR: .Sp This variable contains the path to a miniperl binary that can be run on the host \f(CW\*(C`OS\*(C'\fR when cross-compiling. Useful and available only during Perl build. Empty string '' if not cross-compiling. .ie n .IP """html1dir""" 4 .el .IP \f(CWhtml1dir\fR 4 .IX Item "html1dir" From \fIhtml1dir.U\fR: .Sp This variable contains the name of the directory in which html source pages are to be put. This directory is for pages that describe whole programs, not libraries or modules. It is intended to correspond roughly to section 1 of the Unix manuals. .ie n .IP """html1direxp""" 4 .el .IP \f(CWhtml1direxp\fR 4 .IX Item "html1direxp" From \fIhtml1dir.U\fR: .Sp This variable is the same as the html1dir variable, but is filename expanded at configuration time, for convenient use in makefiles. .ie n .IP """html3dir""" 4 .el .IP \f(CWhtml3dir\fR 4 .IX Item "html3dir" From \fIhtml3dir.U\fR: .Sp This variable contains the name of the directory in which html source pages are to be put. This directory is for pages that describe libraries or modules. It is intended to correspond roughly to section 3 of the Unix manuals. .ie n .IP """html3direxp""" 4 .el .IP \f(CWhtml3direxp\fR 4 .IX Item "html3direxp" From \fIhtml3dir.U\fR: .Sp This variable is the same as the html3dir variable, but is filename expanded at configuration time, for convenient use in makefiles. .SS i .IX Subsection "i" .ie n .IP """i16size""" 4 .el .IP \f(CWi16size\fR 4 .IX Item "i16size" From \fIperlxv.U\fR: .Sp This variable is the size of an I16 in bytes. .ie n .IP """i16type""" 4 .el .IP \f(CWi16type\fR 4 .IX Item "i16type" From \fIperlxv.U\fR: .Sp This variable contains the C type used for Perl's I16. .ie n .IP """i32dformat""" 4 .el .IP \f(CWi32dformat\fR 4 .IX Item "i32dformat" From \fIperlx32f.U\fR: .Sp This variable contains the format string used for printing a Perl I32 as a signed decimal integer. .ie n .IP """i32size""" 4 .el .IP \f(CWi32size\fR 4 .IX Item "i32size" From \fIperlxv.U\fR: .Sp This variable is the size of an I32 in bytes. .ie n .IP """i32type""" 4 .el .IP \f(CWi32type\fR 4 .IX Item "i32type" From \fIperlxv.U\fR: .Sp This variable contains the C type used for Perl's I32. .ie n .IP """i64size""" 4 .el .IP \f(CWi64size\fR 4 .IX Item "i64size" From \fIperlxv.U\fR: .Sp This variable is the size of an I64 in bytes. .ie n .IP """i64type""" 4 .el .IP \f(CWi64type\fR 4 .IX Item "i64type" From \fIperlxv.U\fR: .Sp This variable contains the C type used for Perl's I64. .ie n .IP """i8size""" 4 .el .IP \f(CWi8size\fR 4 .IX Item "i8size" From \fIperlxv.U\fR: .Sp This variable is the size of an I8 in bytes. .ie n .IP """i8type""" 4 .el .IP \f(CWi8type\fR 4 .IX Item "i8type" From \fIperlxv.U\fR: .Sp This variable contains the C type used for Perl's I8. .ie n .IP """i_arpainet""" 4 .el .IP \f(CWi_arpainet\fR 4 .IX Item "i_arpainet" From \fIi_arpainet.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_ARPA_INET\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_bfd""" 4 .el .IP \f(CWi_bfd\fR 4 .IX Item "i_bfd" From \fIi_bfd.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_BFD\*(C'\fR symbol, and indicates whether a C program can include . .ie n .IP """i_bsdioctl""" 4 .el .IP \f(CWi_bsdioctl\fR 4 .IX Item "i_bsdioctl" From \fIi_sysioctl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYS_BSDIOCTL\*(C'\fR symbol, which indicates to the C program that exists and should be included. .ie n .IP """i_crypt""" 4 .el .IP \f(CWi_crypt\fR 4 .IX Item "i_crypt" From \fIi_crypt.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_CRYPT\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_db""" 4 .el .IP \f(CWi_db\fR 4 .IX Item "i_db" From \fIi_db.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_DB\*(C'\fR symbol, and indicates whether a C program may include Berkeley's \f(CW\*(C`DB\*(C'\fR include file . .ie n .IP """i_dbm""" 4 .el .IP \f(CWi_dbm\fR 4 .IX Item "i_dbm" From \fIi_dbm.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_DBM\*(C'\fR symbol, which indicates to the C program that exists and should be included. .ie n .IP """i_dirent""" 4 .el .IP \f(CWi_dirent\fR 4 .IX Item "i_dirent" From \fIi_dirent.U\fR: .Sp This variable conditionally defines \f(CW\*(C`I_DIRENT\*(C'\fR, which indicates to the C program that it should include . .ie n .IP """i_dlfcn""" 4 .el .IP \f(CWi_dlfcn\fR 4 .IX Item "i_dlfcn" From \fIi_dlfcn.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_DLFCN\*(C'\fR symbol, which indicates to the C program that exists and should be included. .ie n .IP """i_execinfo""" 4 .el .IP \f(CWi_execinfo\fR 4 .IX Item "i_execinfo" From \fIi_execinfo.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_EXECINFO\*(C'\fR symbol, and indicates whether a C program may include , for \fBbacktrace()\fR support. .ie n .IP """i_fcntl""" 4 .el .IP \f(CWi_fcntl\fR 4 .IX Item "i_fcntl" From \fIi_fcntl.U\fR: .Sp This variable controls the value of \f(CW\*(C`I_FCNTL\*(C'\fR (which tells the C program to include ). .ie n .IP """i_fenv""" 4 .el .IP \f(CWi_fenv\fR 4 .IX Item "i_fenv" From \fIi_fenv.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_FENV\*(C'\fR symbol, which indicates to the C program that exists and should be included. .ie n .IP """i_fp""" 4 .el .IP \f(CWi_fp\fR 4 .IX Item "i_fp" From \fIi_fp.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_FP\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_fp_class""" 4 .el .IP \f(CWi_fp_class\fR 4 .IX Item "i_fp_class" From \fIi_fp_class.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_FP_CLASS\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_gdbm""" 4 .el .IP \f(CWi_gdbm\fR 4 .IX Item "i_gdbm" From \fIi_gdbm.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_GDBM\*(C'\fR symbol, which indicates to the C program that exists and should be included. .ie n .IP """i_gdbm_ndbm""" 4 .el .IP \f(CWi_gdbm_ndbm\fR 4 .IX Item "i_gdbm_ndbm" From \fIi_ndbm.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_GDBM_NDBM\*(C'\fR symbol, which indicates to the C program that exists and should be included. This is the location of the \fIndbm.h\fR compatibility file in Debian 4.0. .ie n .IP """i_gdbmndbm""" 4 .el .IP \f(CWi_gdbmndbm\fR 4 .IX Item "i_gdbmndbm" From \fIi_ndbm.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_GDBMNDBM\*(C'\fR symbol, which indicates to the C program that exists and should be included. This was the location of the \fIndbm.h\fR compatibility file in RedHat 7.1. .ie n .IP """i_grp""" 4 .el .IP \f(CWi_grp\fR 4 .IX Item "i_grp" From \fIi_grp.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_GRP\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_ieeefp""" 4 .el .IP \f(CWi_ieeefp\fR 4 .IX Item "i_ieeefp" From \fIi_ieeefp.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_IEEEFP\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_inttypes""" 4 .el .IP \f(CWi_inttypes\fR 4 .IX Item "i_inttypes" From \fIi_inttypes.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_INTTYPES\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_langinfo""" 4 .el .IP \f(CWi_langinfo\fR 4 .IX Item "i_langinfo" From \fIi_langinfo.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_LANGINFO\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_libutil""" 4 .el .IP \f(CWi_libutil\fR 4 .IX Item "i_libutil" From \fIi_libutil.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_LIBUTIL\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_locale""" 4 .el .IP \f(CWi_locale\fR 4 .IX Item "i_locale" From \fIi_locale.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_LOCALE\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_machcthr""" 4 .el .IP \f(CWi_machcthr\fR 4 .IX Item "i_machcthr" From \fIi_machcthr.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_MACH_CTHREADS\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_malloc""" 4 .el .IP \f(CWi_malloc\fR 4 .IX Item "i_malloc" From \fIi_malloc.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_MALLOC\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_mallocmalloc""" 4 .el .IP \f(CWi_mallocmalloc\fR 4 .IX Item "i_mallocmalloc" From \fIi_mallocmalloc.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_MALLOCMALLOC\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_mntent""" 4 .el .IP \f(CWi_mntent\fR 4 .IX Item "i_mntent" From \fIi_mntent.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_MNTENT\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_ndbm""" 4 .el .IP \f(CWi_ndbm\fR 4 .IX Item "i_ndbm" From \fIi_ndbm.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_NDBM\*(C'\fR symbol, which indicates to the C program that exists and should be included. .ie n .IP """i_netdb""" 4 .el .IP \f(CWi_netdb\fR 4 .IX Item "i_netdb" From \fIi_netdb.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_NETDB\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_neterrno""" 4 .el .IP \f(CWi_neterrno\fR 4 .IX Item "i_neterrno" From \fIi_neterrno.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_NET_ERRNO\*(C'\fR symbol, which indicates to the C program that exists and should be included. .ie n .IP """i_netinettcp""" 4 .el .IP \f(CWi_netinettcp\fR 4 .IX Item "i_netinettcp" From \fIi_netinettcp.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_NETINET_TCP\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_niin""" 4 .el .IP \f(CWi_niin\fR 4 .IX Item "i_niin" From \fIi_niin.U\fR: .Sp This variable conditionally defines \f(CW\*(C`I_NETINET_IN\*(C'\fR, which indicates to the C program that it should include . Otherwise, you may try . .ie n .IP """i_poll""" 4 .el .IP \f(CWi_poll\fR 4 .IX Item "i_poll" From \fIi_poll.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_POLL\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_prot""" 4 .el .IP \f(CWi_prot\fR 4 .IX Item "i_prot" From \fIi_prot.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_PROT\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_pthread""" 4 .el .IP \f(CWi_pthread\fR 4 .IX Item "i_pthread" From \fIi_pthread.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_PTHREAD\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_pwd""" 4 .el .IP \f(CWi_pwd\fR 4 .IX Item "i_pwd" From \fIi_pwd.U\fR: .Sp This variable conditionally defines \f(CW\*(C`I_PWD\*(C'\fR, which indicates to the C program that it should include . .ie n .IP """i_quadmath""" 4 .el .IP \f(CWi_quadmath\fR 4 .IX Item "i_quadmath" From \fIi_quadmath.U\fR: .Sp This variable conditionally defines \f(CW\*(C`I_QUADMATH\*(C'\fR, which indicates to the C program that it should include . .ie n .IP """i_rpcsvcdbm""" 4 .el .IP \f(CWi_rpcsvcdbm\fR 4 .IX Item "i_rpcsvcdbm" From \fIi_dbm.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_RPCSVC_DBM\*(C'\fR symbol, which indicates to the C program that exists and should be included. Some System V systems might need this instead of . .ie n .IP """i_sgtty""" 4 .el .IP \f(CWi_sgtty\fR 4 .IX Item "i_sgtty" From \fIi_termio.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SGTTY\*(C'\fR symbol, which indicates to the C program that it should include rather than . .ie n .IP """i_shadow""" 4 .el .IP \f(CWi_shadow\fR 4 .IX Item "i_shadow" From \fIi_shadow.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SHADOW\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_socks""" 4 .el .IP \f(CWi_socks\fR 4 .IX Item "i_socks" From \fIi_socks.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SOCKS\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_stdbool""" 4 .el .IP \f(CWi_stdbool\fR 4 .IX Item "i_stdbool" From \fIi_stdbool.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_STDBOOL\*(C'\fR symbol, which indicates to the C program that exists and should be included. .ie n .IP """i_stdint""" 4 .el .IP \f(CWi_stdint\fR 4 .IX Item "i_stdint" From \fIi_stdint.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_STDINT\*(C'\fR symbol, which indicates to the C program that exists and should be included. .ie n .IP """i_stdlib""" 4 .el .IP \f(CWi_stdlib\fR 4 .IX Item "i_stdlib" From \fIi_stdlib.U\fR: .Sp This variable unconditionally defines the \f(CW\*(C`I_STDLIB\*(C'\fR symbol. .ie n .IP """i_sunmath""" 4 .el .IP \f(CWi_sunmath\fR 4 .IX Item "i_sunmath" From \fIi_sunmath.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SUNMATH\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_sysaccess""" 4 .el .IP \f(CWi_sysaccess\fR 4 .IX Item "i_sysaccess" From \fIi_sysaccess.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYS_ACCESS\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_sysdir""" 4 .el .IP \f(CWi_sysdir\fR 4 .IX Item "i_sysdir" From \fIi_sysdir.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYS_DIR\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_sysfile""" 4 .el .IP \f(CWi_sysfile\fR 4 .IX Item "i_sysfile" From \fIi_sysfile.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYS_FILE\*(C'\fR symbol, and indicates whether a C program should include to get \f(CW\*(C`R_OK\*(C'\fR and friends. .ie n .IP """i_sysfilio""" 4 .el .IP \f(CWi_sysfilio\fR 4 .IX Item "i_sysfilio" From \fIi_sysioctl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYS_FILIO\*(C'\fR symbol, which indicates to the C program that exists and should be included in preference to . .ie n .IP """i_sysin""" 4 .el .IP \f(CWi_sysin\fR 4 .IX Item "i_sysin" From \fIi_niin.U\fR: .Sp This variable conditionally defines \f(CW\*(C`I_SYS_IN\*(C'\fR, which indicates to the C program that it should include instead of . .ie n .IP """i_sysioctl""" 4 .el .IP \f(CWi_sysioctl\fR 4 .IX Item "i_sysioctl" From \fIi_sysioctl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYS_IOCTL\*(C'\fR symbol, which indicates to the C program that exists and should be included. .ie n .IP """i_syslog""" 4 .el .IP \f(CWi_syslog\fR 4 .IX Item "i_syslog" From \fIi_syslog.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYSLOG\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_sysmman""" 4 .el .IP \f(CWi_sysmman\fR 4 .IX Item "i_sysmman" From \fIi_sysmman.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYS_MMAN\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_sysmode""" 4 .el .IP \f(CWi_sysmode\fR 4 .IX Item "i_sysmode" From \fIi_sysmode.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYSMODE\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_sysmount""" 4 .el .IP \f(CWi_sysmount\fR 4 .IX Item "i_sysmount" From \fIi_sysmount.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYSMOUNT\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_sysndir""" 4 .el .IP \f(CWi_sysndir\fR 4 .IX Item "i_sysndir" From \fIi_sysndir.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYS_NDIR\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_sysparam""" 4 .el .IP \f(CWi_sysparam\fR 4 .IX Item "i_sysparam" From \fIi_sysparam.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYS_PARAM\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_syspoll""" 4 .el .IP \f(CWi_syspoll\fR 4 .IX Item "i_syspoll" From \fIi_syspoll.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYS_POLL\*(C'\fR symbol, which indicates to the C program that it should include . .ie n .IP """i_sysresrc""" 4 .el .IP \f(CWi_sysresrc\fR 4 .IX Item "i_sysresrc" From \fIi_sysresrc.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYS_RESOURCE\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_syssecrt""" 4 .el .IP \f(CWi_syssecrt\fR 4 .IX Item "i_syssecrt" From \fIi_syssecrt.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYS_SECURITY\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_sysselct""" 4 .el .IP \f(CWi_sysselct\fR 4 .IX Item "i_sysselct" From \fIi_sysselct.U\fR: .Sp This variable conditionally defines \f(CW\*(C`I_SYS_SELECT\*(C'\fR, which indicates to the C program that it should include in order to get the definition of struct timeval. .ie n .IP """i_syssockio""" 4 .el .IP \f(CWi_syssockio\fR 4 .IX Item "i_syssockio" From \fIi_sysioctl.U\fR: .Sp This variable conditionally defines \f(CW\*(C`I_SYS_SOCKIO\*(C'\fR to indicate to the C program that socket ioctl codes may be found in instead of . .ie n .IP """i_sysstat""" 4 .el .IP \f(CWi_sysstat\fR 4 .IX Item "i_sysstat" From \fIi_sysstat.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYS_STAT\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_sysstatfs""" 4 .el .IP \f(CWi_sysstatfs\fR 4 .IX Item "i_sysstatfs" From \fIi_sysstatfs.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYSSTATFS\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_sysstatvfs""" 4 .el .IP \f(CWi_sysstatvfs\fR 4 .IX Item "i_sysstatvfs" From \fIi_sysstatvfs.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYSSTATVFS\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_syssyscall""" 4 .el .IP \f(CWi_syssyscall\fR 4 .IX Item "i_syssyscall" From \fIi_syssyscall.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYS_SYSCALL\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_systime""" 4 .el .IP \f(CWi_systime\fR 4 .IX Item "i_systime" From \fIi_time.U\fR: .Sp This variable conditionally defines \f(CW\*(C`I_SYS_TIME\*(C'\fR, which indicates to the C program that it should include . .ie n .IP """i_systimek""" 4 .el .IP \f(CWi_systimek\fR 4 .IX Item "i_systimek" From \fIi_time.U\fR: .Sp This variable conditionally defines \f(CW\*(C`I_SYS_TIME_KERNEL\*(C'\fR, which indicates to the C program that it should include with \f(CW\*(C`KERNEL\*(C'\fR defined. .ie n .IP """i_systimes""" 4 .el .IP \f(CWi_systimes\fR 4 .IX Item "i_systimes" From \fIi_systimes.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYS_TIMES\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_systypes""" 4 .el .IP \f(CWi_systypes\fR 4 .IX Item "i_systypes" From \fIi_systypes.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYS_TYPES\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_sysuio""" 4 .el .IP \f(CWi_sysuio\fR 4 .IX Item "i_sysuio" From \fIi_sysuio.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYSUIO\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_sysun""" 4 .el .IP \f(CWi_sysun\fR 4 .IX Item "i_sysun" From \fIi_sysun.U\fR: .Sp This variable conditionally defines \f(CW\*(C`I_SYS_UN\*(C'\fR, which indicates to the C program that it should include to get \f(CW\*(C`UNIX\*(C'\fR domain socket definitions. .ie n .IP """i_sysutsname""" 4 .el .IP \f(CWi_sysutsname\fR 4 .IX Item "i_sysutsname" From \fIi_sysutsname.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYSUTSNAME\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_sysvfs""" 4 .el .IP \f(CWi_sysvfs\fR 4 .IX Item "i_sysvfs" From \fIi_sysvfs.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_SYSVFS\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_syswait""" 4 .el .IP \f(CWi_syswait\fR 4 .IX Item "i_syswait" From \fIi_syswait.U\fR: .Sp This variable conditionally defines \f(CW\*(C`I_SYS_WAIT\*(C'\fR, which indicates to the C program that it should include . .ie n .IP """i_termio""" 4 .el .IP \f(CWi_termio\fR 4 .IX Item "i_termio" From \fIi_termio.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_TERMIO\*(C'\fR symbol, which indicates to the C program that it should include rather than . .ie n .IP """i_termios""" 4 .el .IP \f(CWi_termios\fR 4 .IX Item "i_termios" From \fIi_termio.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_TERMIOS\*(C'\fR symbol, which indicates to the C program that the \f(CW\*(C`POSIX\*(C'\fR file is to be included. .ie n .IP """i_time""" 4 .el .IP \f(CWi_time\fR 4 .IX Item "i_time" From \fIi_time.U\fR: .Sp This variable unconditionally defines \f(CW\*(C`I_TIME\*(C'\fR, which indicates to the C program that it should include . .ie n .IP """i_unistd""" 4 .el .IP \f(CWi_unistd\fR 4 .IX Item "i_unistd" From \fIi_unistd.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_UNISTD\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_ustat""" 4 .el .IP \f(CWi_ustat\fR 4 .IX Item "i_ustat" From \fIi_ustat.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_USTAT\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_utime""" 4 .el .IP \f(CWi_utime\fR 4 .IX Item "i_utime" From \fIi_utime.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_UTIME\*(C'\fR symbol, and indicates whether a C program should include . .ie n .IP """i_vfork""" 4 .el .IP \f(CWi_vfork\fR 4 .IX Item "i_vfork" From \fIi_vfork.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_VFORK\*(C'\fR symbol, and indicates whether a C program should include \fIvfork.h\fR. .ie n .IP """i_wchar""" 4 .el .IP \f(CWi_wchar\fR 4 .IX Item "i_wchar" From \fIi_wchar.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_WCHAR\*(C'\fR symbol, that indicates whether a C program may include . .ie n .IP """i_wctype""" 4 .el .IP \f(CWi_wctype\fR 4 .IX Item "i_wctype" From \fIi_wctype.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`I_WCTYPE\*(C'\fR symbol, that indicates whether a C program may include . .ie n .IP """i_xlocale""" 4 .el .IP \f(CWi_xlocale\fR 4 .IX Item "i_xlocale" From \fId_newlocale.U\fR: .Sp This symbol, if defined, indicates to the C program that the header \fIxlocale.h\fR is available. See also xlocale_needed. .ie n .IP """ignore_versioned_solibs""" 4 .el .IP \f(CWignore_versioned_solibs\fR 4 .IX Item "ignore_versioned_solibs" From \fIlibs.U\fR: .Sp This variable should be non-empty if non-versioned shared libraries (\fIlibfoo.so.x.y\fR) are to be ignored (because they cannot be linked against). .ie n .IP """inc_version_list""" 4 .el .IP \f(CWinc_version_list\fR 4 .IX Item "inc_version_list" From \fIinc_version_list.U\fR: .Sp This variable specifies the list of subdirectories in over which \fIperl.c\fR:\fBincpush()\fR and \fIlib/lib.pm\fR will automatically search when adding directories to @\f(CW\*(C`INC\*(C'\fR. The elements in the list are separated by spaces. This is only useful if you have a perl library directory tree structured like the default one. See \f(CW\*(C`INSTALL\*(C'\fR for how this works. The versioned site_perl directory was introduced in 5.005, so that is the lowest possible value. .Sp This list includes architecture-dependent directories back to version \f(CW$api_versionstring\fR (e.g. 5.5.640) and architecture-independent directories all the way back to 5.005. .ie n .IP """inc_version_list_init""" 4 .el .IP \f(CWinc_version_list_init\fR 4 .IX Item "inc_version_list_init" From \fIinc_version_list.U\fR: .Sp This variable holds the same list as inc_version_list, but each item is enclosed in double quotes and separated by commas, suitable for use in the \f(CW\*(C`PERL_INC_VERSION_LIST\*(C'\fR initialization. .ie n .IP """incpath""" 4 .el .IP \f(CWincpath\fR 4 .IX Item "incpath" From \fIusrinc.U\fR: .Sp This variable must precede the normal include path to get the right one, as in \fR\f(CI$incpath\fR\fI/usr/include\fR or \fI\fR\f(CI$incpath\fR\fI/usr/lib\fR. Value can be "" or \fI/bsd43\fR on mips. .ie n .IP """incpth""" 4 .el .IP \f(CWincpth\fR 4 .IX Item "incpth" From \fIlibpth.U\fR: .Sp This variable must precede the normal include path to get the right one, as in \fR\f(CI$incpath\fR\fI/usr/include\fR or \fI\fR\f(CI$incpath\fR\fI/usr/lib\fR. Value can be "" or \fI/bsd43\fR on mips. .ie n .IP """inews""" 4 .el .IP \f(CWinews\fR 4 .IX Item "inews" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """initialinstalllocation""" 4 .el .IP \f(CWinitialinstalllocation\fR 4 .IX Item "initialinstalllocation" From \fIbin.U\fR: .Sp When userelocatableinc is true, this variable holds the location that make install should copy the perl binary to, with all the run-time relocatable paths calculated from this at install time. When used, it is initialized to the original value of binexp, and then binexp is set to \fI.../\fR, as the other binaries are found relative to the perl binary. .ie n .IP """installarchlib""" 4 .el .IP \f(CWinstallarchlib\fR 4 .IX Item "installarchlib" From \fIarchlib.U\fR: .Sp This variable is really the same as archlibexp but may differ on those systems using \f(CW\*(C`AFS\*(C'\fR. For extra portability, only this variable should be used in makefiles. .ie n .IP """installbin""" 4 .el .IP \f(CWinstallbin\fR 4 .IX Item "installbin" From \fIbin.U\fR: .Sp This variable is the same as binexp unless \f(CW\*(C`AFS\*(C'\fR is running in which case the user is explicitly prompted for it. This variable should always be used in your makefiles for maximum portability. .ie n .IP """installhtml1dir""" 4 .el .IP \f(CWinstallhtml1dir\fR 4 .IX Item "installhtml1dir" From \fIhtml1dir.U\fR: .Sp This variable is really the same as html1direxp, unless you are using a different installprefix. For extra portability, you should only use this variable within your makefiles. .ie n .IP """installhtml3dir""" 4 .el .IP \f(CWinstallhtml3dir\fR 4 .IX Item "installhtml3dir" From \fIhtml3dir.U\fR: .Sp This variable is really the same as html3direxp, unless you are using a different installprefix. For extra portability, you should only use this variable within your makefiles. .ie n .IP """installman1dir""" 4 .el .IP \f(CWinstallman1dir\fR 4 .IX Item "installman1dir" From \fIman1dir.U\fR: .Sp This variable is really the same as man1direxp, unless you are using \&\f(CW\*(C`AFS\*(C'\fR in which case it points to the read/write location whereas man1direxp only points to the read-only access location. For extra portability, you should only use this variable within your makefiles. .ie n .IP """installman3dir""" 4 .el .IP \f(CWinstallman3dir\fR 4 .IX Item "installman3dir" From \fIman3dir.U\fR: .Sp This variable is really the same as man3direxp, unless you are using \&\f(CW\*(C`AFS\*(C'\fR in which case it points to the read/write location whereas man3direxp only points to the read-only access location. For extra portability, you should only use this variable within your makefiles. .ie n .IP """installprefix""" 4 .el .IP \f(CWinstallprefix\fR 4 .IX Item "installprefix" From \fIinstallprefix.U\fR: .Sp This variable holds the name of the directory below which "make install" will install the package. For most users, this is the same as prefix. However, it is useful for installing the software into a different (usually temporary) location after which it can be bundled up and moved somehow to the final location specified by prefix. .ie n .IP """installprefixexp""" 4 .el .IP \f(CWinstallprefixexp\fR 4 .IX Item "installprefixexp" From \fIinstallprefix.U\fR: .Sp This variable holds the full absolute path of installprefix with all \fI~\fR\-expansion done. .ie n .IP """installprivlib""" 4 .el .IP \f(CWinstallprivlib\fR 4 .IX Item "installprivlib" From \fIprivlib.U\fR: .Sp This variable is really the same as privlibexp but may differ on those systems using \f(CW\*(C`AFS\*(C'\fR. For extra portability, only this variable should be used in makefiles. .ie n .IP """installscript""" 4 .el .IP \f(CWinstallscript\fR 4 .IX Item "installscript" From \fIscriptdir.U\fR: .Sp This variable is usually the same as scriptdirexp, unless you are on a system running \f(CW\*(C`AFS\*(C'\fR, in which case they may differ slightly. You should always use this variable within your makefiles for portability. .ie n .IP """installsitearch""" 4 .el .IP \f(CWinstallsitearch\fR 4 .IX Item "installsitearch" From \fIsitearch.U\fR: .Sp This variable is really the same as sitearchexp but may differ on those systems using \f(CW\*(C`AFS\*(C'\fR. For extra portability, only this variable should be used in makefiles. .ie n .IP """installsitebin""" 4 .el .IP \f(CWinstallsitebin\fR 4 .IX Item "installsitebin" From \fIsitebin.U\fR: .Sp This variable is usually the same as sitebinexp, unless you are on a system running \f(CW\*(C`AFS\*(C'\fR, in which case they may differ slightly. You should always use this variable within your makefiles for portability. .ie n .IP """installsitehtml1dir""" 4 .el .IP \f(CWinstallsitehtml1dir\fR 4 .IX Item "installsitehtml1dir" From \fIsitehtml1dir.U\fR: .Sp This variable is really the same as sitehtml1direxp, unless you are using \&\f(CW\*(C`AFS\*(C'\fR in which case it points to the read/write location whereas html1direxp only points to the read-only access location. For extra portability, you should only use this variable within your makefiles. .ie n .IP """installsitehtml3dir""" 4 .el .IP \f(CWinstallsitehtml3dir\fR 4 .IX Item "installsitehtml3dir" From \fIsitehtml3dir.U\fR: .Sp This variable is really the same as sitehtml3direxp, unless you are using \&\f(CW\*(C`AFS\*(C'\fR in which case it points to the read/write location whereas html3direxp only points to the read-only access location. For extra portability, you should only use this variable within your makefiles. .ie n .IP """installsitelib""" 4 .el .IP \f(CWinstallsitelib\fR 4 .IX Item "installsitelib" From \fIsitelib.U\fR: .Sp This variable is really the same as sitelibexp but may differ on those systems using \f(CW\*(C`AFS\*(C'\fR. For extra portability, only this variable should be used in makefiles. .ie n .IP """installsiteman1dir""" 4 .el .IP \f(CWinstallsiteman1dir\fR 4 .IX Item "installsiteman1dir" From \fIsiteman1dir.U\fR: .Sp This variable is really the same as siteman1direxp, unless you are using \&\f(CW\*(C`AFS\*(C'\fR in which case it points to the read/write location whereas man1direxp only points to the read-only access location. For extra portability, you should only use this variable within your makefiles. .ie n .IP """installsiteman3dir""" 4 .el .IP \f(CWinstallsiteman3dir\fR 4 .IX Item "installsiteman3dir" From \fIsiteman3dir.U\fR: .Sp This variable is really the same as siteman3direxp, unless you are using \&\f(CW\*(C`AFS\*(C'\fR in which case it points to the read/write location whereas man3direxp only points to the read-only access location. For extra portability, you should only use this variable within your makefiles. .ie n .IP """installsitescript""" 4 .el .IP \f(CWinstallsitescript\fR 4 .IX Item "installsitescript" From \fIsitescript.U\fR: .Sp This variable is usually the same as sitescriptexp, unless you are on a system running \f(CW\*(C`AFS\*(C'\fR, in which case they may differ slightly. You should always use this variable within your makefiles for portability. .ie n .IP """installstyle""" 4 .el .IP \f(CWinstallstyle\fR 4 .IX Item "installstyle" From \fIinstallstyle.U\fR: .Sp This variable describes the \f(CW\*(C`style\*(C'\fR of the perl installation. This is intended to be useful for tools that need to manipulate entire perl distributions. Perl itself doesn't use this to find its libraries \-\- the library directories are stored directly in \fIConfig.pm\fR. Currently, there are only two styles: \f(CW\*(C`lib\*(C'\fR and \fIlib/perl5\fR. The default library locations (e.g. privlib, sitelib) are either \fR\f(CI$prefix\fR\fI/lib\fR or \&\fI\fR\f(CI$prefix\fR\fI/lib/perl5\fR. The former is useful if \f(CW$prefix\fR is a directory dedicated to perl (e.g. \fI/opt/perl\fR), while the latter is useful if \f(CW$prefix\fR is shared by many packages, e.g. if \&\f(CW$prefix\fR=\fI/usr/local\fR. .Sp Unfortunately, while this \f(CW\*(C`style\*(C'\fR variable is used to set defaults for all three directory hierarchies (core, vendor, and site), there is no guarantee that the same style is actually appropriate for all those directories. For example, \f(CW$prefix\fR might be \fI/opt/perl\fR, but \f(CW$siteprefix\fR might be \fI/usr/local\fR. (Perhaps, in retrospect, the \f(CW\*(C`lib\*(C'\fR style should never have been supported, but it did seem like a nice idea at the time.) .Sp The situation is even less clear for tools such as MakeMaker that can be used to install additional modules into non-standard places. For example, if a user intends to install a module into a private directory (perhaps by setting \f(CW\*(C`PREFIX\*(C'\fR on the \fIMakefile.PL\fR command line), then there is no reason to assume that the Configure-time \f(CW$installstyle\fR setting will be relevant for that \f(CW\*(C`PREFIX\*(C'\fR. .Sp This may later be extended to include other information, so be careful with pattern-matching on the results. .Sp For compatibility with \fIperl5.005\fR and earlier, the default setting is based on whether or not \f(CW$prefix\fR contains the string \&\f(CW\*(C`perl\*(C'\fR. .ie n .IP """installusrbinperl""" 4 .el .IP \f(CWinstallusrbinperl\fR 4 .IX Item "installusrbinperl" From \fIinstubperl.U\fR: .Sp This variable tells whether Perl should be installed also as \&\fI/usr/bin/perl\fR in addition to \&\fR\f(CI$installbin\fR\fI/perl\fR .ie n .IP """installvendorarch""" 4 .el .IP \f(CWinstallvendorarch\fR 4 .IX Item "installvendorarch" From \fIvendorarch.U\fR: .Sp This variable is really the same as vendorarchexp but may differ on those systems using \f(CW\*(C`AFS\*(C'\fR. For extra portability, only this variable should be used in makefiles. .ie n .IP """installvendorbin""" 4 .el .IP \f(CWinstallvendorbin\fR 4 .IX Item "installvendorbin" From \fIvendorbin.U\fR: .Sp This variable is really the same as vendorbinexp but may differ on those systems using \f(CW\*(C`AFS\*(C'\fR. For extra portability, only this variable should be used in makefiles. .ie n .IP """installvendorhtml1dir""" 4 .el .IP \f(CWinstallvendorhtml1dir\fR 4 .IX Item "installvendorhtml1dir" From \fIvendorhtml1dir.U\fR: .Sp This variable is really the same as vendorhtml1direxp but may differ on those systems using \f(CW\*(C`AFS\*(C'\fR. For extra portability, only this variable should be used in makefiles. .ie n .IP """installvendorhtml3dir""" 4 .el .IP \f(CWinstallvendorhtml3dir\fR 4 .IX Item "installvendorhtml3dir" From \fIvendorhtml3dir.U\fR: .Sp This variable is really the same as vendorhtml3direxp but may differ on those systems using \f(CW\*(C`AFS\*(C'\fR. For extra portability, only this variable should be used in makefiles. .ie n .IP """installvendorlib""" 4 .el .IP \f(CWinstallvendorlib\fR 4 .IX Item "installvendorlib" From \fIvendorlib.U\fR: .Sp This variable is really the same as vendorlibexp but may differ on those systems using \f(CW\*(C`AFS\*(C'\fR. For extra portability, only this variable should be used in makefiles. .ie n .IP """installvendorman1dir""" 4 .el .IP \f(CWinstallvendorman1dir\fR 4 .IX Item "installvendorman1dir" From \fIvendorman1dir.U\fR: .Sp This variable is really the same as vendorman1direxp but may differ on those systems using \f(CW\*(C`AFS\*(C'\fR. For extra portability, only this variable should be used in makefiles. .ie n .IP """installvendorman3dir""" 4 .el .IP \f(CWinstallvendorman3dir\fR 4 .IX Item "installvendorman3dir" From \fIvendorman3dir.U\fR: .Sp This variable is really the same as vendorman3direxp but may differ on those systems using \f(CW\*(C`AFS\*(C'\fR. For extra portability, only this variable should be used in makefiles. .ie n .IP """installvendorscript""" 4 .el .IP \f(CWinstallvendorscript\fR 4 .IX Item "installvendorscript" From \fIvendorscript.U\fR: .Sp This variable is really the same as vendorscriptexp but may differ on those systems using \f(CW\*(C`AFS\*(C'\fR. For extra portability, only this variable should be used in makefiles. .ie n .IP """intsize""" 4 .el .IP \f(CWintsize\fR 4 .IX Item "intsize" From \fIintsize.U\fR: .Sp This variable contains the value of the \f(CW\*(C`INTSIZE\*(C'\fR symbol, which indicates to the C program how many bytes there are in an int. .ie n .IP """issymlink""" 4 .el .IP \f(CWissymlink\fR 4 .IX Item "issymlink" From \fIissymlink.U\fR: .Sp This variable holds the test command to test for a symbolic link (if they are supported). Typical values include \f(CW\*(C`test \-h\*(C'\fR and \&\f(CW\*(C`test \-L\*(C'\fR. .ie n .IP """ivdformat""" 4 .el .IP \f(CWivdformat\fR 4 .IX Item "ivdformat" From \fIperlxvf.U\fR: .Sp This variable contains the format string used for printing a Perl \f(CW\*(C`IV\*(C'\fR as a signed decimal integer. .ie n .IP """ivsize""" 4 .el .IP \f(CWivsize\fR 4 .IX Item "ivsize" From \fIperlxv.U\fR: .Sp This variable is the size of an \f(CW\*(C`IV\*(C'\fR in bytes. .ie n .IP """ivtype""" 4 .el .IP \f(CWivtype\fR 4 .IX Item "ivtype" From \fIperlxv.U\fR: .Sp This variable contains the C type used for Perl's \f(CW\*(C`IV\*(C'\fR. .SS k .IX Subsection "k" .ie n .IP """known_extensions""" 4 .el .IP \f(CWknown_extensions\fR 4 .IX Item "known_extensions" From \fIExtensions.U\fR: .Sp This variable holds a list of all extensions (both \f(CW\*(C`XS\*(C'\fR and non-xs) included in the package source distribution. This information is only really of use during the Perl build, as the list makes no distinction between extensions which were build and installed, and those which where not. See \f(CW\*(C`extensions\*(C'\fR for the list of extensions actually built and available. .ie n .IP """ksh""" 4 .el .IP \f(CWksh\fR 4 .IX Item "ksh" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .SS l .IX Subsection "l" .ie n .IP """ld""" 4 .el .IP \f(CWld\fR 4 .IX Item "ld" From \fIdlsrc.U\fR: .Sp This variable indicates the program to be used to link libraries for dynamic loading. On some systems, it is \f(CW\*(C`ld\*(C'\fR. On \f(CW\*(C`ELF\*(C'\fR systems, it should be \f(CW$cc\fR. Mostly, we'll try to respect the hint file setting. .ie n .IP """ld_can_script""" 4 .el .IP \f(CWld_can_script\fR 4 .IX Item "ld_can_script" From \fIdlsrc.U\fR: .Sp This variable shows if the loader accepts scripts in the form of \&\-Wl,\-\-version\-script=\fIld.script\fR. This is currently only supported for \f(CW\*(C`GNU\*(C'\fR ld on \f(CW\*(C`ELF\*(C'\fR in dynamic loading builds. .ie n .IP """lddlflags""" 4 .el .IP \f(CWlddlflags\fR 4 .IX Item "lddlflags" From \fIdlsrc.U\fR: .Sp This variable contains any special flags that might need to be passed to \f(CW$ld\fR to create a shared library suitable for dynamic loading. It is up to the makefile to use it. For hpux, it should be \f(CW\*(C`\-b\*(C'\fR. For sunos 4.1, it is empty. .ie n .IP """ldflags""" 4 .el .IP \f(CWldflags\fR 4 .IX Item "ldflags" From \fIccflags.U\fR: .Sp This variable contains any additional C loader flags desired by the user. It is up to the Makefile to use this. .ie n .IP """ldflags_uselargefiles""" 4 .el .IP \f(CWldflags_uselargefiles\fR 4 .IX Item "ldflags_uselargefiles" From \fIuselfs.U\fR: .Sp This variable contains the loader flags needed by large file builds and added to ldflags by hints files. .ie n .IP """ldlibpthname""" 4 .el .IP \f(CWldlibpthname\fR 4 .IX Item "ldlibpthname" From \fIlibperl.U\fR: .Sp This variable holds the name of the shared library search path, often \f(CW\*(C`LD_LIBRARY_PATH\*(C'\fR. To get an empty string, the hints file must set this to \f(CW\*(C`none\*(C'\fR. .ie n .IP """less""" 4 .el .IP \f(CWless\fR 4 .IX Item "less" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the less program. After Configure runs, the value is reset to a plain \f(CW\*(C`less\*(C'\fR and is not useful. .ie n .IP """lib_ext""" 4 .el .IP \f(CWlib_ext\fR 4 .IX Item "lib_ext" From \fIUnix.U\fR: .Sp This is an old synonym for _a. .ie n .IP """libc""" 4 .el .IP \f(CWlibc\fR 4 .IX Item "libc" From \fIlibc.U\fR: .Sp This variable contains the location of the C library. .ie n .IP """libperl""" 4 .el .IP \f(CWlibperl\fR 4 .IX Item "libperl" From \fIlibperl.U\fR: .Sp The perl executable is obtained by linking \fIperlmain.c\fR with libperl, any static extensions (usually just DynaLoader), and any other libraries needed on this system. libperl is usually \fIlibperl.a\fR, but can also be \fIlibperl.so.xxx\fR if the user wishes to build a perl executable with a shared library. .ie n .IP """libpth""" 4 .el .IP \f(CWlibpth\fR 4 .IX Item "libpth" From \fIlibpth.U\fR: .Sp This variable holds the general path (space-separated) used to find libraries. It is intended to be used by other units. .ie n .IP """libs""" 4 .el .IP \f(CWlibs\fR 4 .IX Item "libs" From \fIlibs.U\fR: .Sp This variable holds the additional libraries we want to use. It is up to the Makefile to deal with it. The list can be empty. .ie n .IP """libsdirs""" 4 .el .IP \f(CWlibsdirs\fR 4 .IX Item "libsdirs" From \fIlibs.U\fR: .Sp This variable holds the directory names aka dirnames of the libraries we found and accepted, duplicates are removed. .ie n .IP """libsfiles""" 4 .el .IP \f(CWlibsfiles\fR 4 .IX Item "libsfiles" From \fIlibs.U\fR: .Sp This variable holds the filenames aka basenames of the libraries we found and accepted. .ie n .IP """libsfound""" 4 .el .IP \f(CWlibsfound\fR 4 .IX Item "libsfound" From \fIlibs.U\fR: .Sp This variable holds the full pathnames of the libraries we found and accepted. .ie n .IP """libspath""" 4 .el .IP \f(CWlibspath\fR 4 .IX Item "libspath" From \fIlibs.U\fR: .Sp This variable holds the directory names probed for libraries. .ie n .IP """libswanted""" 4 .el .IP \f(CWlibswanted\fR 4 .IX Item "libswanted" From \fIMyinit.U\fR: .Sp This variable holds a list of all the libraries we want to search. The order is chosen to pick up the c library ahead of ucb or bsd libraries for SVR4. .ie n .IP """libswanted_uselargefiles""" 4 .el .IP \f(CWlibswanted_uselargefiles\fR 4 .IX Item "libswanted_uselargefiles" From \fIuselfs.U\fR: .Sp This variable contains the libraries needed by large file builds and added to ldflags by hints files. It is a space separated list of the library names without the \f(CW\*(C`lib\*(C'\fR prefix or any suffix, just like \fIlibswanted.\fR. .ie n .IP """line""" 4 .el .IP \f(CWline\fR 4 .IX Item "line" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """lint""" 4 .el .IP \f(CWlint\fR 4 .IX Item "lint" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """lkflags""" 4 .el .IP \f(CWlkflags\fR 4 .IX Item "lkflags" From \fIccflags.U\fR: .Sp This variable contains any additional C partial linker flags desired by the user. It is up to the Makefile to use this. .ie n .IP """ln""" 4 .el .IP \f(CWln\fR 4 .IX Item "ln" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the ln program. After Configure runs, the value is reset to a plain \f(CW\*(C`ln\*(C'\fR and is not useful. .ie n .IP """lns""" 4 .el .IP \f(CWlns\fR 4 .IX Item "lns" From \fIlns.U\fR: .Sp This variable holds the name of the command to make symbolic links (if they are supported). It can be used in the Makefile. It is either \f(CW\*(C`ln \-s\*(C'\fR or \f(CW\*(C`ln\*(C'\fR .ie n .IP """localtime_r_proto""" 4 .el .IP \f(CWlocaltime_r_proto\fR 4 .IX Item "localtime_r_proto" From \fId_localtime_r.U\fR: .Sp This variable encodes the prototype of localtime_r. It is zero if d_localtime_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_localtime_r is defined. .ie n .IP """locincpth""" 4 .el .IP \f(CWlocincpth\fR 4 .IX Item "locincpth" From \fIccflags.U\fR: .Sp This variable contains a list of additional directories to be searched by the compiler. The appropriate \f(CW\*(C`\-I\*(C'\fR directives will be added to ccflags. This is intended to simplify setting local directories from the Configure command line. It's not much, but it parallels the loclibpth stuff in \fIlibpth.U\fR. .ie n .IP """loclibpth""" 4 .el .IP \f(CWloclibpth\fR 4 .IX Item "loclibpth" From \fIlibpth.U\fR: .Sp This variable holds the paths (space-separated) used to find local libraries. It is prepended to libpth, and is intended to be easily set from the command line. .ie n .IP """longdblinfbytes""" 4 .el .IP \f(CWlongdblinfbytes\fR 4 .IX Item "longdblinfbytes" From \fIinfnan.U\fR: .Sp This variable contains comma-separated list of hexadecimal bytes for the long double precision infinity. .ie n .IP """longdblkind""" 4 .el .IP \f(CWlongdblkind\fR 4 .IX Item "longdblkind" From \fId_longdbl.U\fR: .Sp This variable, if defined, encodes the type of a long double: 0 = double, 1 = \f(CW\*(C`IEEE\*(C'\fR 754 128\-bit little endian, 2 = \f(CW\*(C`IEEE\*(C'\fR 754 128\-bit big endian, 3 = x86 80\-bit little endian, 4 = x86 80\-bit big endian, 5 = double-double 128\-bit little endian, 6 = double-double 128\-bit big endian, 7 = 128\-bit mixed-endian double-double (64\-bit LEs in \f(CW\*(C`BE\*(C'\fR), 8 = 128\-bit mixed-endian double-double (64\-bit BEs in \f(CW\*(C`LE\*(C'\fR), 9 = 128\-bit \f(CW\*(C`PDP\*(C'\fR\-style mixed-endian long doubles, \&\-1 = unknown format. .ie n .IP """longdblmantbits""" 4 .el .IP \f(CWlongdblmantbits\fR 4 .IX Item "longdblmantbits" From \fImantbits.U\fR: .Sp This symbol, if defined, tells how many mantissa bits there are in long double precision floating point format. Note that this can be \f(CW\*(C`LDBL_MANT_DIG\*(C'\fR minus one, since \f(CW\*(C`LDBL_MANT_DIG\*(C'\fR can include the \f(CW\*(C`IEEE\*(C'\fR 754 implicit bit. The common x86\-style 80\-bit long double does not have an implicit bit. .ie n .IP """longdblnanbytes""" 4 .el .IP \f(CWlongdblnanbytes\fR 4 .IX Item "longdblnanbytes" From \fIinfnan.U\fR: .Sp This variable contains comma-separated list of hexadecimal bytes for the long double precision not-a-number. .ie n .IP """longdblsize""" 4 .el .IP \f(CWlongdblsize\fR 4 .IX Item "longdblsize" From \fId_longdbl.U\fR: .Sp This variable contains the value of the \f(CW\*(C`LONG_DOUBLESIZE\*(C'\fR symbol, which indicates to the C program how many bytes there are in a long double, if this system supports long doubles. Note that this is sizeof(long double), which may include unused bytes. .ie n .IP """longlongsize""" 4 .el .IP \f(CWlonglongsize\fR 4 .IX Item "longlongsize" From \fId_longlong.U\fR: .Sp This variable contains the value of the \f(CW\*(C`LONGLONGSIZE\*(C'\fR symbol, which indicates to the C program how many bytes there are in a long long, if this system supports long long. .ie n .IP """longsize""" 4 .el .IP \f(CWlongsize\fR 4 .IX Item "longsize" From \fIintsize.U\fR: .Sp This variable contains the value of the \f(CW\*(C`LONGSIZE\*(C'\fR symbol, which indicates to the C program how many bytes there are in a long. .ie n .IP """lp""" 4 .el .IP \f(CWlp\fR 4 .IX Item "lp" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """lpr""" 4 .el .IP \f(CWlpr\fR 4 .IX Item "lpr" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """ls""" 4 .el .IP \f(CWls\fR 4 .IX Item "ls" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the ls program. After Configure runs, the value is reset to a plain \f(CW\*(C`ls\*(C'\fR and is not useful. .ie n .IP """lseeksize""" 4 .el .IP \f(CWlseeksize\fR 4 .IX Item "lseeksize" From \fIlseektype.U\fR: .Sp This variable defines lseektype to be something like off_t, long, or whatever type is used to declare lseek offset's type in the kernel (which also appears to be lseek's return type). .ie n .IP """lseektype""" 4 .el .IP \f(CWlseektype\fR 4 .IX Item "lseektype" From \fIlseektype.U\fR: .Sp This variable defines lseektype to be something like off_t, long, or whatever type is used to declare lseek offset's type in the kernel (which also appears to be lseek's return type). .SS m .IX Subsection "m" .ie n .IP """mail""" 4 .el .IP \f(CWmail\fR 4 .IX Item "mail" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """mailx""" 4 .el .IP \f(CWmailx\fR 4 .IX Item "mailx" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """make""" 4 .el .IP \f(CWmake\fR 4 .IX Item "make" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the make program. After Configure runs, the value is reset to a plain \f(CW\*(C`make\*(C'\fR and is not useful. .ie n .IP """make_set_make""" 4 .el .IP \f(CWmake_set_make\fR 4 .IX Item "make_set_make" From \fImake.U\fR: .Sp Some versions of \f(CW\*(C`make\*(C'\fR set the variable \f(CW\*(C`MAKE\*(C'\fR. Others do not. This variable contains the string to be included in \fIMakefile.SH\fR so that \f(CW\*(C`MAKE\*(C'\fR is set if needed, and not if not needed. Possible values are: .Sp make_set_make=\f(CW\*(C`#\*(C'\fR # If your make program handles this for you, .Sp make_set_make=\f(CW\*(C`MAKE=$make\*(C'\fR # if it doesn't. .Sp This uses a comment character so that we can distinguish a \&\f(CW\*(C`set\*(C'\fR value (from a previous \fIconfig.sh\fR or Configure \f(CW\*(C`\-D\*(C'\fR option) from an uncomputed value. .ie n .IP """mallocobj""" 4 .el .IP \f(CWmallocobj\fR 4 .IX Item "mallocobj" From \fImallocsrc.U\fR: .Sp This variable contains the name of the \fImalloc.o\fR that this package generates, if that \fImalloc.o\fR is preferred over the system malloc. Otherwise the value is null. This variable is intended for generating Makefiles. See mallocsrc. .ie n .IP """mallocsrc""" 4 .el .IP \f(CWmallocsrc\fR 4 .IX Item "mallocsrc" From \fImallocsrc.U\fR: .Sp This variable contains the name of the \fImalloc.c\fR that comes with the package, if that \fImalloc.c\fR is preferred over the system malloc. Otherwise the value is null. This variable is intended for generating Makefiles. .ie n .IP """malloctype""" 4 .el .IP \f(CWmalloctype\fR 4 .IX Item "malloctype" From \fImallocsrc.U\fR: .Sp This variable contains the kind of ptr returned by malloc and realloc. .ie n .IP """man1dir""" 4 .el .IP \f(CWman1dir\fR 4 .IX Item "man1dir" From \fIman1dir.U\fR: .Sp This variable contains the name of the directory in which manual source pages are to be put. It is the responsibility of the \&\fIMakefile.SH\fR to get the value of this into the proper command. You must be prepared to do the \fI~name\fR expansion yourself. .ie n .IP """man1direxp""" 4 .el .IP \f(CWman1direxp\fR 4 .IX Item "man1direxp" From \fIman1dir.U\fR: .Sp This variable is the same as the man1dir variable, but is filename expanded at configuration time, for convenient use in makefiles. .ie n .IP """man1ext""" 4 .el .IP \f(CWman1ext\fR 4 .IX Item "man1ext" From \fIman1dir.U\fR: .Sp This variable contains the extension that the manual page should have: one of \f(CW\*(C`n\*(C'\fR, \f(CW\*(C`l\*(C'\fR, or \f(CW1\fR. The Makefile must supply the \fI.\fR. See man1dir. .ie n .IP """man3dir""" 4 .el .IP \f(CWman3dir\fR 4 .IX Item "man3dir" From \fIman3dir.U\fR: .Sp This variable contains the name of the directory in which manual source pages are to be put. It is the responsibility of the \&\fIMakefile.SH\fR to get the value of this into the proper command. You must be prepared to do the \fI~name\fR expansion yourself. .ie n .IP """man3direxp""" 4 .el .IP \f(CWman3direxp\fR 4 .IX Item "man3direxp" From \fIman3dir.U\fR: .Sp This variable is the same as the man3dir variable, but is filename expanded at configuration time, for convenient use in makefiles. .ie n .IP """man3ext""" 4 .el .IP \f(CWman3ext\fR 4 .IX Item "man3ext" From \fIman3dir.U\fR: .Sp This variable contains the extension that the manual page should have: one of \f(CW\*(C`n\*(C'\fR, \f(CW\*(C`l\*(C'\fR, or \f(CW3\fR. The Makefile must supply the \fI.\fR. See man3dir. .ie n .IP """mips_type""" 4 .el .IP \f(CWmips_type\fR 4 .IX Item "mips_type" From \fIusrinc.U\fR: .Sp This variable holds the environment type for the mips system. Possible values are "BSD 4.3" and "System V". .ie n .IP """mistrustnm""" 4 .el .IP \f(CWmistrustnm\fR 4 .IX Item "mistrustnm" From \fICsym.U\fR: .Sp This variable can be used to establish a fallthrough for the cases where nm fails to find a symbol. If usenm is false or usenm is true and mistrustnm is false, this variable has no effect. If usenm is true and mistrustnm is \f(CW\*(C`compile\*(C'\fR, a test program will be compiled to try to find any symbol that can't be located via nm lookup. If mistrustnm is \&\f(CW\*(C`run\*(C'\fR, the test program will be run as well as being compiled. .ie n .IP """mkdir""" 4 .el .IP \f(CWmkdir\fR 4 .IX Item "mkdir" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the mkdir program. After Configure runs, the value is reset to a plain \f(CW\*(C`mkdir\*(C'\fR and is not useful. .ie n .IP """mmaptype""" 4 .el .IP \f(CWmmaptype\fR 4 .IX Item "mmaptype" From \fId_mmap.U\fR: .Sp This symbol contains the type of pointer returned by \fBmmap()\fR (and simultaneously the type of the first argument). It can be \f(CW\*(C`void *\*(C'\fR or \f(CW\*(C`caddr_t\*(C'\fR. .ie n .IP """modetype""" 4 .el .IP \f(CWmodetype\fR 4 .IX Item "modetype" From \fImodetype.U\fR: .Sp This variable defines modetype to be something like mode_t, int, unsigned short, or whatever type is used to declare file modes for system calls. .ie n .IP """more""" 4 .el .IP \f(CWmore\fR 4 .IX Item "more" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the more program. After Configure runs, the value is reset to a plain \f(CW\*(C`more\*(C'\fR and is not useful. .ie n .IP """multiarch""" 4 .el .IP \f(CWmultiarch\fR 4 .IX Item "multiarch" From \fImultiarch.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`MULTIARCH\*(C'\fR symbol which signifies the presence of multiplatform files. This is normally set by hints files. .ie n .IP """mv""" 4 .el .IP \f(CWmv\fR 4 .IX Item "mv" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """myarchname""" 4 .el .IP \f(CWmyarchname\fR 4 .IX Item "myarchname" From \fIarchname.U\fR: .Sp This variable holds the architecture name computed by Configure in a previous run. It is not intended to be perused by any user and should never be set in a hint file. .ie n .IP """mydomain""" 4 .el .IP \f(CWmydomain\fR 4 .IX Item "mydomain" From \fImyhostname.U\fR: .Sp This variable contains the eventual value of the \f(CW\*(C`MYDOMAIN\*(C'\fR symbol, which is the domain of the host the program is going to run on. The domain must be appended to myhostname to form a complete host name. The dot comes with mydomain, and need not be supplied by the program. .ie n .IP """myhostname""" 4 .el .IP \f(CWmyhostname\fR 4 .IX Item "myhostname" From \fImyhostname.U\fR: .Sp This variable contains the eventual value of the \f(CW\*(C`MYHOSTNAME\*(C'\fR symbol, which is the name of the host the program is going to run on. The domain is not kept with hostname, but must be gotten from mydomain. The dot comes with mydomain, and need not be supplied by the program. .ie n .IP """myuname""" 4 .el .IP \f(CWmyuname\fR 4 .IX Item "myuname" From \fIOldconfig.U\fR: .Sp The output of \f(CW\*(C`uname \-a\*(C'\fR if available, otherwise the hostname. The whole thing is then lower-cased and slashes and single quotes are removed. .SS n .IX Subsection "n" .ie n .IP """n""" 4 .el .IP \f(CWn\fR 4 .IX Item "n" From \fIn.U\fR: .Sp This variable contains the \f(CW\*(C`\-n\*(C'\fR flag if that is what causes the echo command to suppress newline. Otherwise it is null. Correct usage is \&\f(CW$echo\fR \f(CW$n\fR "prompt for a question: \f(CW$c\fR". .ie n .IP """need_va_copy""" 4 .el .IP \f(CWneed_va_copy\fR 4 .IX Item "need_va_copy" From \fIneed_va_copy.U\fR: .Sp This symbol, if defined, indicates that the system stores the variable argument list datatype, va_list, in a format that cannot be copied by simple assignment, so that some other means must be used when copying is required. As such systems vary in their provision (or non-provision) of copying mechanisms, \fIhandy.h\fR defines a platform\- \&\f(CW\*(C`independent\*(C'\fR macro, Perl_va_copy(src, dst), to do the job. .ie n .IP """netdb_hlen_type""" 4 .el .IP \f(CWnetdb_hlen_type\fR 4 .IX Item "netdb_hlen_type" From \fInetdbtype.U\fR: .Sp This variable holds the type used for the 2nd argument to \&\fBgethostbyaddr()\fR. Usually, this is int or size_t or unsigned. This is only useful if you have \fBgethostbyaddr()\fR, naturally. .ie n .IP """netdb_host_type""" 4 .el .IP \f(CWnetdb_host_type\fR 4 .IX Item "netdb_host_type" From \fInetdbtype.U\fR: .Sp This variable holds the type used for the 1st argument to \&\fBgethostbyaddr()\fR. Usually, this is char * or void *, possibly with or without a const prefix. This is only useful if you have \fBgethostbyaddr()\fR, naturally. .ie n .IP """netdb_name_type""" 4 .el .IP \f(CWnetdb_name_type\fR 4 .IX Item "netdb_name_type" From \fInetdbtype.U\fR: .Sp This variable holds the type used for the argument to \&\fBgethostbyname()\fR. Usually, this is char * or const char *. This is only useful if you have \fBgethostbyname()\fR, naturally. .ie n .IP """netdb_net_type""" 4 .el .IP \f(CWnetdb_net_type\fR 4 .IX Item "netdb_net_type" From \fInetdbtype.U\fR: .Sp This variable holds the type used for the 1st argument to \&\fBgetnetbyaddr()\fR. Usually, this is int or long. This is only useful if you have \fBgetnetbyaddr()\fR, naturally. .ie n .IP """nm""" 4 .el .IP \f(CWnm\fR 4 .IX Item "nm" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the nm program. After Configure runs, the value is reset to a plain \f(CW\*(C`nm\*(C'\fR and is not useful. .ie n .IP """nm_opt""" 4 .el .IP \f(CWnm_opt\fR 4 .IX Item "nm_opt" From \fIusenm.U\fR: .Sp This variable holds the options that may be necessary for nm. .ie n .IP """nm_so_opt""" 4 .el .IP \f(CWnm_so_opt\fR 4 .IX Item "nm_so_opt" From \fIusenm.U\fR: .Sp This variable holds the options that may be necessary for nm to work on a shared library but that can not be used on an archive library. Currently, this is only used by Linux, where nm \-\-dynamic is *required* to get symbols from an \f(CW\*(C`ELF\*(C'\fR library which has been stripped, but nm \-\-dynamic is *fatal* on an archive library. Maybe Linux should just always set usenm=false. .ie n .IP """nonxs_ext""" 4 .el .IP \f(CWnonxs_ext\fR 4 .IX Item "nonxs_ext" From \fIExtensions.U\fR: .Sp This variable holds a list of all non-xs extensions built and installed by the package. By default, all non-xs extensions distributed will be built, with the exception of platform-specific extensions (currently only one \f(CW\*(C`VMS\*(C'\fR specific extension). .ie n .IP """nroff""" 4 .el .IP \f(CWnroff\fR 4 .IX Item "nroff" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the nroff program. After Configure runs, the value is reset to a plain \f(CW\*(C`nroff\*(C'\fR and is not useful. .ie n .IP """nvEUformat""" 4 .el .IP \f(CWnvEUformat\fR 4 .IX Item "nvEUformat" From \fIperlxvf.U\fR: .Sp This variable contains the format string used for printing a Perl \f(CW\*(C`NV\*(C'\fR using \f(CW%E\fR\-ish floating point format. .ie n .IP """nvFUformat""" 4 .el .IP \f(CWnvFUformat\fR 4 .IX Item "nvFUformat" From \fIperlxvf.U\fR: .Sp This variable contains the format string used for printing a Perl \f(CW\*(C`NV\*(C'\fR using \f(CW%F\fR\-ish floating point format. .ie n .IP """nvGUformat""" 4 .el .IP \f(CWnvGUformat\fR 4 .IX Item "nvGUformat" From \fIperlxvf.U\fR: .Sp This variable contains the format string used for printing a Perl \f(CW\*(C`NV\*(C'\fR using \f(CW%G\fR\-ish floating point format. .ie n .IP """nv_overflows_integers_at""" 4 .el .IP \f(CWnv_overflows_integers_at\fR 4 .IX Item "nv_overflows_integers_at" From \fIperlxv.U\fR: .Sp This variable gives the largest integer value that NVs can hold as a constant floating point expression. If it could not be determined, it holds the value 0. .ie n .IP """nv_preserves_uv_bits""" 4 .el .IP \f(CWnv_preserves_uv_bits\fR 4 .IX Item "nv_preserves_uv_bits" From \fIperlxv.U\fR: .Sp This variable indicates how many of bits type uvtype a variable nvtype can preserve. .ie n .IP """nveformat""" 4 .el .IP \f(CWnveformat\fR 4 .IX Item "nveformat" From \fIperlxvf.U\fR: .Sp This variable contains the format string used for printing a Perl \f(CW\*(C`NV\*(C'\fR using \f(CW%e\fR\-ish floating point format. .ie n .IP """nvfformat""" 4 .el .IP \f(CWnvfformat\fR 4 .IX Item "nvfformat" From \fIperlxvf.U\fR: .Sp This variable contains the format string used for printing a Perl \f(CW\*(C`NV\*(C'\fR using \f(CW%f\fR\-ish floating point format. .ie n .IP """nvgformat""" 4 .el .IP \f(CWnvgformat\fR 4 .IX Item "nvgformat" From \fIperlxvf.U\fR: .Sp This variable contains the format string used for printing a Perl \f(CW\*(C`NV\*(C'\fR using \f(CW%g\fR\-ish floating point format. .ie n .IP """nvmantbits""" 4 .el .IP \f(CWnvmantbits\fR 4 .IX Item "nvmantbits" From \fImantbits.U\fR: .Sp This variable tells how many bits the mantissa of a Perl \f(CW\*(C`NV\*(C'\fR has, not including the possible implicit bit. .ie n .IP """nvsize""" 4 .el .IP \f(CWnvsize\fR 4 .IX Item "nvsize" From \fIperlxv.U\fR: .Sp This variable is the size of a Perl \f(CW\*(C`NV\*(C'\fR in bytes. Note that some floating point formats have unused bytes. .ie n .IP """nvtype""" 4 .el .IP \f(CWnvtype\fR 4 .IX Item "nvtype" From \fIperlxv.U\fR: .Sp This variable contains the C type used for Perl's \f(CW\*(C`NV\*(C'\fR. .SS o .IX Subsection "o" .ie n .IP """o_nonblock""" 4 .el .IP \f(CWo_nonblock\fR 4 .IX Item "o_nonblock" From \fInblock_io.U\fR: .Sp This variable bears the symbol value to be used during \fBopen()\fR or \fBfcntl()\fR to turn on non-blocking I/O for a file descriptor. If you wish to switch between blocking and non-blocking, you may try ioctl(\f(CW\*(C`FIOSNBIO\*(C'\fR) instead, but that is only supported by some devices. .ie n .IP """obj_ext""" 4 .el .IP \f(CWobj_ext\fR 4 .IX Item "obj_ext" From \fIUnix.U\fR: .Sp This is an old synonym for _o. .ie n .IP """old_pthread_create_joinable""" 4 .el .IP \f(CWold_pthread_create_joinable\fR 4 .IX Item "old_pthread_create_joinable" From \fId_pthrattrj.U\fR: .Sp This variable defines the constant to use for creating joinable (aka undetached) pthreads. Unused if \fIpthread.h\fR defines \&\f(CW\*(C`PTHREAD_CREATE_JOINABLE\*(C'\fR. If used, possible values are \&\f(CW\*(C`PTHREAD_CREATE_UNDETACHED\*(C'\fR and \f(CW\*(C`_\|_UNDETACHED\*(C'\fR. .ie n .IP """optimize""" 4 .el .IP \f(CWoptimize\fR 4 .IX Item "optimize" From \fIccflags.U\fR: .Sp This variable contains any \fIoptimizer/debugger\fR flag that should be used. It is up to the Makefile to use it. .ie n .IP """orderlib""" 4 .el .IP \f(CWorderlib\fR 4 .IX Item "orderlib" From \fIorderlib.U\fR: .Sp This variable is \f(CW\*(C`true\*(C'\fR if the components of libraries must be ordered (with `lorder $* | tsort`) before placing them in an archive. Set to \&\f(CW\*(C`false\*(C'\fR if ranlib or ar can generate random libraries. .ie n .IP """osname""" 4 .el .IP \f(CWosname\fR 4 .IX Item "osname" From \fIOldconfig.U\fR: .Sp This variable contains the operating system name (e.g. sunos, solaris, hpux, etc.). It can be useful later on for setting defaults. Any spaces are replaced with underscores. It is set to a null string if we can't figure it out. .ie n .IP """osvers""" 4 .el .IP \f(CWosvers\fR 4 .IX Item "osvers" From \fIOldconfig.U\fR: .Sp This variable contains the operating system version (e.g. 4.1.3, 5.2, etc.). It is primarily used for helping select an appropriate hints file, but might be useful elsewhere for setting defaults. It is set to '' if we can't figure it out. We try to be flexible about how much of the version number to keep, e.g. if 4.1.1, 4.1.2, and 4.1.3 are essentially the same for this package, hints files might just be \fIos_4.0\fR or \&\fIos_4.1\fR, etc., not keeping separate files for each little release. .ie n .IP """otherlibdirs""" 4 .el .IP \f(CWotherlibdirs\fR 4 .IX Item "otherlibdirs" From \fIotherlibdirs.U\fR: .Sp This variable contains a colon-separated set of paths for the perl binary to search for additional library files or modules. These directories will be tacked to the end of @\f(CW\*(C`INC\*(C'\fR. Perl will automatically search below each path for version\- and architecture-specific directories. See inc_version_list for more details. A value of \f(CW\*(C` \*(C'\fR means \f(CW\*(C`none\*(C'\fR and is used to preserve this value for the next run through Configure. .SS p .IX Subsection "p" .ie n .IP """package""" 4 .el .IP \f(CWpackage\fR 4 .IX Item "package" From \fIpackage.U\fR: .Sp This variable contains the name of the package being constructed. It is primarily intended for the use of later Configure units. .ie n .IP """pager""" 4 .el .IP \f(CWpager\fR 4 .IX Item "pager" From \fIpager.U\fR: .Sp This variable contains the name of the preferred pager on the system. Usual values are (the full pathnames of) more, less, pg, or cat. .ie n .IP """passcat""" 4 .el .IP \f(CWpasscat\fR 4 .IX Item "passcat" From \fInis.U\fR: .Sp This variable contains a command that produces the text of the \&\fI/etc/passwd\fR file. This is normally "cat \fI/etc/passwd\fR", but can be "ypcat passwd" when \f(CW\*(C`NIS\*(C'\fR is used. On some systems, such as os390, there may be no equivalent command, in which case this variable is unset. .ie n .IP """patchlevel""" 4 .el .IP \f(CWpatchlevel\fR 4 .IX Item "patchlevel" From \fIpatchlevel.U\fR: .Sp The patchlevel level of this package. The value of patchlevel comes from the \fIpatchlevel.h\fR file. In a version number such as 5.6.1, this is the \f(CW6\fR. In \fIpatchlevel.h\fR, this is referred to as \f(CW\*(C`PERL_VERSION\*(C'\fR. .ie n .IP """path_sep""" 4 .el .IP \f(CWpath_sep\fR 4 .IX Item "path_sep" From \fIUnix.U\fR: .Sp This is an old synonym for p_ in \fIHead.U\fR, the character used to separate elements in the command shell search \f(CW\*(C`PATH\*(C'\fR. .ie n .IP """perl""" 4 .el .IP \f(CWperl\fR 4 .IX Item "perl" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the perl program. After Configure runs, the value is reset to a plain \f(CW\*(C`perl\*(C'\fR and is not useful. .ie n .IP """perl5""" 4 .el .IP \f(CWperl5\fR 4 .IX Item "perl5" From \fIperl5.U\fR: .Sp This variable contains the full path (if any) to a previously installed \fIperl5.005\fR or later suitable for running the script to determine inc_version_list. .ie n .IP """perl_patchlevel""" 4 .el .IP \f(CWperl_patchlevel\fR 4 .IX Item "perl_patchlevel" From \fIpatchlevel.U\fR: .Sp This is the Perl patch level, a numeric change identifier, as defined by whichever source code maintenance system is used to maintain the patches; currently Perforce. It does not correlate with the Perl version numbers or the maintenance versus development dichotomy except by also being increasing. .ie n .IP """perl_static_inline""" 4 .el .IP \f(CWperl_static_inline\fR 4 .IX Item "perl_static_inline" From \fId_static_inline.U\fR: .Sp This variable defines the \f(CW\*(C`PERL_STATIC_INLINE\*(C'\fR symbol to the best-guess incantation to use for static inline functions. Possibilities include static inline (c99) static _\|_inline_\|_ (gcc \-ansi) static _\|_inline (\f(CW\*(C`MSVC\*(C'\fR) static _inline (older \f(CW\*(C`MSVC\*(C'\fR) static (c89 compilers) .ie n .IP """perl_thread_local""" 4 .el .IP \f(CWperl_thread_local\fR 4 .IX Item "perl_thread_local" From \fId_thread_local.U\fR: .Sp This variable gives the value for the \f(CW\*(C`PERL_THREAD_LOCAL\*(C'\fR symbol (when defined), which gives a linkage specification for thread-local storage. .ie n .IP """perladmin""" 4 .el .IP \f(CWperladmin\fR 4 .IX Item "perladmin" From \fIperladmin.U\fR: .Sp Electronic mail address of the perl5 administrator. .ie n .IP """perllibs""" 4 .el .IP \f(CWperllibs\fR 4 .IX Item "perllibs" From \fIEnd.U\fR: .Sp The list of libraries needed by Perl only (any libraries needed by extensions only will by dropped, if using dynamic loading). .ie n .IP """perlpath""" 4 .el .IP \f(CWperlpath\fR 4 .IX Item "perlpath" From \fIperlpath.U\fR: .Sp This variable contains the eventual value of the \f(CW\*(C`PERLPATH\*(C'\fR symbol, which contains the name of the perl interpreter to be used in shell scripts and in the "eval \f(CW\*(C`exec\*(C'\fR" idiom. This variable is not necessarily the pathname of the file containing the perl interpreter; you must append the executable extension (_exe) if it is not already present. Note that Perl code that runs during the Perl build process cannot reference this variable, as Perl may not have been installed, or even if installed, may be a different version of Perl. .ie n .IP """pg""" 4 .el .IP \f(CWpg\fR 4 .IX Item "pg" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the pg program. After Configure runs, the value is reset to a plain \f(CW\*(C`pg\*(C'\fR and is not useful. .ie n .IP """phostname""" 4 .el .IP \f(CWphostname\fR 4 .IX Item "phostname" From \fImyhostname.U\fR: .Sp This variable contains the eventual value of the \f(CW\*(C`PHOSTNAME\*(C'\fR symbol, which is a command that can be fed to \fBpopen()\fR to get the host name. The program should probably not presume that the domain is or isn't there already. .ie n .IP """pidtype""" 4 .el .IP \f(CWpidtype\fR 4 .IX Item "pidtype" From \fIpidtype.U\fR: .Sp This variable defines \f(CW\*(C`PIDTYPE\*(C'\fR to be something like pid_t, int, ushort, or whatever type is used to declare process ids in the kernel. .ie n .IP """plibpth""" 4 .el .IP \f(CWplibpth\fR 4 .IX Item "plibpth" From \fIlibpth.U\fR: .Sp Holds the private path used by Configure to find out the libraries. Its value is prepend to libpth. This variable takes care of special machines, like the mips. Usually, it should be empty. .ie n .IP """pmake""" 4 .el .IP \f(CWpmake\fR 4 .IX Item "pmake" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """pr""" 4 .el .IP \f(CWpr\fR 4 .IX Item "pr" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """prefix""" 4 .el .IP \f(CWprefix\fR 4 .IX Item "prefix" From \fIprefix.U\fR: .Sp This variable holds the name of the directory below which the user will install the package. Usually, this is \fI/usr/local\fR, and executables go in \fI/usr/local/bin\fR, library stuff in \fI/usr/local/lib\fR, man pages in \fI/usr/local/man\fR, etc. It is only used to set defaults for things in \fIbin.U\fR, \fImansrc.U\fR, \fIprivlib.U\fR, or \fIscriptdir.U\fR. .ie n .IP """prefixexp""" 4 .el .IP \f(CWprefixexp\fR 4 .IX Item "prefixexp" From \fIprefix.U\fR: .Sp This variable holds the full absolute path of the directory below which the user will install the package. Derived from prefix. .ie n .IP """privlib""" 4 .el .IP \f(CWprivlib\fR 4 .IX Item "privlib" From \fIprivlib.U\fR: .Sp This variable contains the eventual value of the \f(CW\*(C`PRIVLIB\*(C'\fR symbol, which is the name of the private library for this package. It may have a \fI~\fR on the front. It is up to the makefile to eventually create this directory while performing installation (with \fI~\fR substitution). .ie n .IP """privlibexp""" 4 .el .IP \f(CWprivlibexp\fR 4 .IX Item "privlibexp" From \fIprivlib.U\fR: .Sp This variable is the \fI~name\fR expanded version of privlib, so that you may use it directly in Makefiles or shell scripts. .ie n .IP """procselfexe""" 4 .el .IP \f(CWprocselfexe\fR 4 .IX Item "procselfexe" From \fId_procselfexe.U\fR: .Sp If d_procselfexe is defined, \f(CW$procselfexe\fR is the filename of the symbolic link pointing to the absolute pathname of the executing program. .ie n .IP """ptrsize""" 4 .el .IP \f(CWptrsize\fR 4 .IX Item "ptrsize" From \fIptrsize.U\fR: .Sp This variable contains the value of the \f(CW\*(C`PTRSIZE\*(C'\fR symbol, which indicates to the C program how many bytes there are in a pointer. .SS q .IX Subsection "q" .ie n .IP """quadkind""" 4 .el .IP \f(CWquadkind\fR 4 .IX Item "quadkind" From \fIquadtype.U\fR: .Sp This variable, if defined, encodes the type of a quad: 1 = int, 2 = long, 3 = long long, 4 = int64_t. .ie n .IP """quadtype""" 4 .el .IP \f(CWquadtype\fR 4 .IX Item "quadtype" From \fIquadtype.U\fR: .Sp This variable defines Quad_t to be something like long, int, long long, int64_t, or whatever type is used for 64\-bit integers. .SS r .IX Subsection "r" .ie n .IP """randbits""" 4 .el .IP \f(CWrandbits\fR 4 .IX Item "randbits" From \fIrandfunc.U\fR: .Sp Indicates how many bits are produced by the function used to generate normalized random numbers. .ie n .IP """randfunc""" 4 .el .IP \f(CWrandfunc\fR 4 .IX Item "randfunc" From \fIrandfunc.U\fR: .Sp Indicates the name of the random number function to use. Values include drand48, random, and rand. In C programs, the \f(CW\*(C`Drand01\*(C'\fR macro is defined to generate uniformly distributed random numbers over the range [0., 1.[ (see drand01 and nrand). .ie n .IP """random_r_proto""" 4 .el .IP \f(CWrandom_r_proto\fR 4 .IX Item "random_r_proto" From \fId_random_r.U\fR: .Sp This variable encodes the prototype of random_r. It is zero if d_random_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_random_r is defined. .ie n .IP """randseedtype""" 4 .el .IP \f(CWrandseedtype\fR 4 .IX Item "randseedtype" From \fIrandfunc.U\fR: .Sp Indicates the type of the argument of the seedfunc. .ie n .IP """ranlib""" 4 .el .IP \f(CWranlib\fR 4 .IX Item "ranlib" From \fIorderlib.U\fR: .Sp This variable is set to the pathname of the ranlib program, if it is needed to generate random libraries. Set to \f(CW\*(C`:\*(C'\fR if ar can generate random libraries or if random libraries are not supported .ie n .IP """rd_nodata""" 4 .el .IP \f(CWrd_nodata\fR 4 .IX Item "rd_nodata" From \fInblock_io.U\fR: .Sp This variable holds the return code from \fBread()\fR when no data is present. It should be \-1, but some systems return 0 when \f(CW\*(C`O_NDELAY\*(C'\fR is used, which is a shame because you cannot make the difference between no data and an \fIEOF.\fR. Sigh! .ie n .IP """readdir64_r_proto""" 4 .el .IP \f(CWreaddir64_r_proto\fR 4 .IX Item "readdir64_r_proto" From \fId_readdir64_r.U\fR: .Sp This variable encodes the prototype of readdir64_r. It is zero if d_readdir64_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_readdir64_r is defined. .ie n .IP """readdir_r_proto""" 4 .el .IP \f(CWreaddir_r_proto\fR 4 .IX Item "readdir_r_proto" From \fId_readdir_r.U\fR: .Sp This variable encodes the prototype of readdir_r. It is zero if d_readdir_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_readdir_r is defined. .ie n .IP """revision""" 4 .el .IP \f(CWrevision\fR 4 .IX Item "revision" From \fIpatchlevel.U\fR: .Sp The value of revision comes from the \fIpatchlevel.h\fR file. In a version number such as 5.6.1, this is the \f(CW5\fR. In \fIpatchlevel.h\fR, this is referred to as \f(CW\*(C`PERL_REVISION\*(C'\fR. .ie n .IP """rm""" 4 .el .IP \f(CWrm\fR 4 .IX Item "rm" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the rm program. After Configure runs, the value is reset to a plain \f(CW\*(C`rm\*(C'\fR and is not useful. .ie n .IP """rm_try""" 4 .el .IP \f(CWrm_try\fR 4 .IX Item "rm_try" From \fIUnix.U\fR: .Sp This is a cleanup variable for try test programs. Internal Configure use only. .ie n .IP """rmail""" 4 .el .IP \f(CWrmail\fR 4 .IX Item "rmail" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """run""" 4 .el .IP \f(CWrun\fR 4 .IX Item "run" From \fICross.U\fR: .Sp This variable contains the command used by Configure to copy and execute a cross-compiled executable in the target host. Useful and available only during Perl build. Empty string '' if not cross-compiling. .ie n .IP """runnm""" 4 .el .IP \f(CWrunnm\fR 4 .IX Item "runnm" From \fIusenm.U\fR: .Sp This variable contains \f(CW\*(C`true\*(C'\fR or \f(CW\*(C`false\*(C'\fR depending whether the nm extraction should be performed or not, according to the value of usenm and the flags on the Configure command line. .SS s .IX Subsection "s" .ie n .IP """sGMTIME_max""" 4 .el .IP \f(CWsGMTIME_max\fR 4 .IX Item "sGMTIME_max" From \fItime_size.U\fR: .Sp This variable defines the maximum value of the time_t offset that the system function gmtime () accepts .ie n .IP """sGMTIME_min""" 4 .el .IP \f(CWsGMTIME_min\fR 4 .IX Item "sGMTIME_min" From \fItime_size.U\fR: .Sp This variable defines the minimum value of the time_t offset that the system function gmtime () accepts .ie n .IP """sLOCALTIME_max""" 4 .el .IP \f(CWsLOCALTIME_max\fR 4 .IX Item "sLOCALTIME_max" From \fItime_size.U\fR: .Sp This variable defines the maximum value of the time_t offset that the system function localtime () accepts .ie n .IP """sLOCALTIME_min""" 4 .el .IP \f(CWsLOCALTIME_min\fR 4 .IX Item "sLOCALTIME_min" From \fItime_size.U\fR: .Sp This variable defines the minimum value of the time_t offset that the system function localtime () accepts .ie n .IP """sPRIEUldbl""" 4 .el .IP \f(CWsPRIEUldbl\fR 4 .IX Item "sPRIEUldbl" From \fIlongdblfio.U\fR: .Sp This variable, if defined, contains the string used by stdio to format long doubles (format \f(CW\*(C`E\*(C'\fR) for output. The \f(CW\*(C`U\*(C'\fR in the name is to separate this from sPRIeldbl so that even case-blind systems can see the difference. .ie n .IP """sPRIFUldbl""" 4 .el .IP \f(CWsPRIFUldbl\fR 4 .IX Item "sPRIFUldbl" From \fIlongdblfio.U\fR: .Sp This variable, if defined, contains the string used by stdio to format long doubles (format \f(CW\*(C`F\*(C'\fR) for output. The \f(CW\*(C`U\*(C'\fR in the name is to separate this from sPRIfldbl so that even case-blind systems can see the difference. .ie n .IP """sPRIGUldbl""" 4 .el .IP \f(CWsPRIGUldbl\fR 4 .IX Item "sPRIGUldbl" From \fIlongdblfio.U\fR: .Sp This variable, if defined, contains the string used by stdio to format long doubles (format \f(CW\*(C`G\*(C'\fR) for output. The \f(CW\*(C`U\*(C'\fR in the name is to separate this from sPRIgldbl so that even case-blind systems can see the difference. .ie n .IP """sPRIXU64""" 4 .el .IP \f(CWsPRIXU64\fR 4 .IX Item "sPRIXU64" From \fIquadfio.U\fR: .Sp This variable, if defined, contains the string used by stdio to format 64\-bit hExADECimAl numbers (format \f(CW\*(C`X\*(C'\fR) for output. The \f(CW\*(C`U\*(C'\fR in the name is to separate this from sPRIx64 so that even case-blind systems can see the difference. .ie n .IP """sPRId64""" 4 .el .IP \f(CWsPRId64\fR 4 .IX Item "sPRId64" From \fIquadfio.U\fR: .Sp This variable, if defined, contains the string used by stdio to format 64\-bit decimal numbers (format \f(CW\*(C`d\*(C'\fR) for output. .ie n .IP """sPRIeldbl""" 4 .el .IP \f(CWsPRIeldbl\fR 4 .IX Item "sPRIeldbl" From \fIlongdblfio.U\fR: .Sp This variable, if defined, contains the string used by stdio to format long doubles (format \f(CW\*(C`e\*(C'\fR) for output. .ie n .IP """sPRIfldbl""" 4 .el .IP \f(CWsPRIfldbl\fR 4 .IX Item "sPRIfldbl" From \fIlongdblfio.U\fR: .Sp This variable, if defined, contains the string used by stdio to format long doubles (format \f(CW\*(C`f\*(C'\fR) for output. .ie n .IP """sPRIgldbl""" 4 .el .IP \f(CWsPRIgldbl\fR 4 .IX Item "sPRIgldbl" From \fIlongdblfio.U\fR: .Sp This variable, if defined, contains the string used by stdio to format long doubles (format \f(CW\*(C`g\*(C'\fR) for output. .ie n .IP """sPRIi64""" 4 .el .IP \f(CWsPRIi64\fR 4 .IX Item "sPRIi64" From \fIquadfio.U\fR: .Sp This variable, if defined, contains the string used by stdio to format 64\-bit decimal numbers (format \f(CW\*(C`i\*(C'\fR) for output. .ie n .IP """sPRIo64""" 4 .el .IP \f(CWsPRIo64\fR 4 .IX Item "sPRIo64" From \fIquadfio.U\fR: .Sp This variable, if defined, contains the string used by stdio to format 64\-bit octal numbers (format \f(CW\*(C`o\*(C'\fR) for output. .ie n .IP """sPRIu64""" 4 .el .IP \f(CWsPRIu64\fR 4 .IX Item "sPRIu64" From \fIquadfio.U\fR: .Sp This variable, if defined, contains the string used by stdio to format 64\-bit unsigned decimal numbers (format \f(CW\*(C`u\*(C'\fR) for output. .ie n .IP """sPRIx64""" 4 .el .IP \f(CWsPRIx64\fR 4 .IX Item "sPRIx64" From \fIquadfio.U\fR: .Sp This variable, if defined, contains the string used by stdio to format 64\-bit hexadecimal numbers (format \f(CW\*(C`x\*(C'\fR) for output. .ie n .IP """sSCNfldbl""" 4 .el .IP \f(CWsSCNfldbl\fR 4 .IX Item "sSCNfldbl" From \fIlongdblfio.U\fR: .Sp This variable, if defined, contains the string used by stdio to format long doubles (format \f(CW\*(C`f\*(C'\fR) for input. .ie n .IP """sched_yield""" 4 .el .IP \f(CWsched_yield\fR 4 .IX Item "sched_yield" From \fId_pthread_y.U\fR: .Sp This variable defines the way to yield the execution of the current thread. .ie n .IP """scriptdir""" 4 .el .IP \f(CWscriptdir\fR 4 .IX Item "scriptdir" From \fIscriptdir.U\fR: .Sp This variable holds the name of the directory in which the user wants to put publicly scripts for the package in question. It is either the same directory as for binaries, or a special one that can be mounted across different architectures, like \fI/usr/share\fR. Programs must be prepared to deal with \fI~name\fR expansion. .ie n .IP """scriptdirexp""" 4 .el .IP \f(CWscriptdirexp\fR 4 .IX Item "scriptdirexp" From \fIscriptdir.U\fR: .Sp This variable is the same as scriptdir, but is filename expanded at configuration time, for programs not wanting to bother with it. .ie n .IP """sed""" 4 .el .IP \f(CWsed\fR 4 .IX Item "sed" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the sed program. After Configure runs, the value is reset to a plain \f(CW\*(C`sed\*(C'\fR and is not useful. .ie n .IP """seedfunc""" 4 .el .IP \f(CWseedfunc\fR 4 .IX Item "seedfunc" From \fIrandfunc.U\fR: .Sp Indicates the random number generating seed function. Values include srand48, srandom, and srand. .ie n .IP """selectminbits""" 4 .el .IP \f(CWselectminbits\fR 4 .IX Item "selectminbits" From \fIselectminbits.U\fR: .Sp This variable holds the minimum number of bits operated by select. That is, if you do select(n, ...), how many bits at least will be cleared in the masks if some activity is detected. Usually this is either n or 32*ceil(\fIn/32\fR), especially many little-endians do the latter. This is only useful if you have \fBselect()\fR, naturally. .ie n .IP """selecttype""" 4 .el .IP \f(CWselecttype\fR 4 .IX Item "selecttype" From \fIselecttype.U\fR: .Sp This variable holds the type used for the 2nd, 3rd, and 4th arguments to select. Usually, this is \f(CW\*(C`fd_set *\*(C'\fR, if \f(CW\*(C`HAS_FD_SET\*(C'\fR is defined, and \f(CW\*(C`int *\*(C'\fR otherwise. This is only useful if you have \fBselect()\fR, naturally. .ie n .IP """sendmail""" 4 .el .IP \f(CWsendmail\fR 4 .IX Item "sendmail" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """setgrent_r_proto""" 4 .el .IP \f(CWsetgrent_r_proto\fR 4 .IX Item "setgrent_r_proto" From \fId_setgrent_r.U\fR: .Sp This variable encodes the prototype of setgrent_r. It is zero if d_setgrent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_setgrent_r is defined. .ie n .IP """sethostent_r_proto""" 4 .el .IP \f(CWsethostent_r_proto\fR 4 .IX Item "sethostent_r_proto" From \fId_sethostent_r.U\fR: .Sp This variable encodes the prototype of sethostent_r. It is zero if d_sethostent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_sethostent_r is defined. .ie n .IP """setlocale_r_proto""" 4 .el .IP \f(CWsetlocale_r_proto\fR 4 .IX Item "setlocale_r_proto" From \fId_setlocale_r.U\fR: .Sp This variable encodes the prototype of setlocale_r. It is zero if d_setlocale_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_setlocale_r is defined. .ie n .IP """setnetent_r_proto""" 4 .el .IP \f(CWsetnetent_r_proto\fR 4 .IX Item "setnetent_r_proto" From \fId_setnetent_r.U\fR: .Sp This variable encodes the prototype of setnetent_r. It is zero if d_setnetent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_setnetent_r is defined. .ie n .IP """setprotoent_r_proto""" 4 .el .IP \f(CWsetprotoent_r_proto\fR 4 .IX Item "setprotoent_r_proto" From \fId_setprotoent_r.U\fR: .Sp This variable encodes the prototype of setprotoent_r. It is zero if d_setprotoent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_setprotoent_r is defined. .ie n .IP """setpwent_r_proto""" 4 .el .IP \f(CWsetpwent_r_proto\fR 4 .IX Item "setpwent_r_proto" From \fId_setpwent_r.U\fR: .Sp This variable encodes the prototype of setpwent_r. It is zero if d_setpwent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_setpwent_r is defined. .ie n .IP """setservent_r_proto""" 4 .el .IP \f(CWsetservent_r_proto\fR 4 .IX Item "setservent_r_proto" From \fId_setservent_r.U\fR: .Sp This variable encodes the prototype of setservent_r. It is zero if d_setservent_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_setservent_r is defined. .ie n .IP """sh""" 4 .el .IP \f(CWsh\fR 4 .IX Item "sh" From \fIsh.U\fR: .Sp This variable contains the full pathname of the shell used on this system to execute Bourne shell scripts. Usually, this will be \&\fI/bin/sh\fR, though it's possible that some systems will have \fI/bin/ksh\fR, \&\fI/bin/pdksh\fR, \fI/bin/ash\fR, \fI/bin/bash\fR, or even something such as D:\fI/bin/sh.exe\fR. This unit comes before \fIOptions.U\fR, so you can't set sh with a \f(CW\*(C`\-D\*(C'\fR option, though you can override this (and startsh) with \f(CW\*(C`\-O \-Dsh=\fR\f(CI/bin/whatever\fR\f(CW \-Dstartsh=whatever\*(C'\fR .ie n .IP """shar""" 4 .el .IP \f(CWshar\fR 4 .IX Item "shar" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """sharpbang""" 4 .el .IP \f(CWsharpbang\fR 4 .IX Item "sharpbang" From \fIspitshell.U\fR: .Sp This variable contains the string #! if this system supports that construct. .ie n .IP """shmattype""" 4 .el .IP \f(CWshmattype\fR 4 .IX Item "shmattype" From \fId_shmat.U\fR: .Sp This symbol contains the type of pointer returned by \fBshmat()\fR. It can be \f(CW\*(C`void *\*(C'\fR or \f(CW\*(C`char *\*(C'\fR. .ie n .IP """shortsize""" 4 .el .IP \f(CWshortsize\fR 4 .IX Item "shortsize" From \fIintsize.U\fR: .Sp This variable contains the value of the \f(CW\*(C`SHORTSIZE\*(C'\fR symbol which indicates to the C program how many bytes there are in a short. .ie n .IP """shrpenv""" 4 .el .IP \f(CWshrpenv\fR 4 .IX Item "shrpenv" From \fIlibperl.U\fR: .Sp If the user builds a shared \fIlibperl.so\fR, then we need to tell the \&\f(CW\*(C`perl\*(C'\fR executable where it will be able to find the installed \fIlibperl.so\fR. One way to do this on some systems is to set the environment variable \&\f(CW\*(C`LD_RUN_PATH\*(C'\fR to the directory that will be the final location of the shared \fIlibperl.so\fR. The makefile can use this with something like \&\f(CW$shrpenv\fR $(\f(CW\*(C`CC\*(C'\fR) \-o perl \fIperlmain.o\fR \f(CW$libperl\fR \f(CW$libs\fR Typical values are shrpenv="env \f(CW\*(C`LD_RUN_PATH\*(C'\fR=\fR\f(CI$archlibexp\fR\fI/\fR\f(CI\*(C`CORE\*(C'\fR\fI\fR" or shrpenv='' See the main perl \fIMakefile.SH\fR for actual working usage. .Sp Alternatively, we might be able to use a command line option such as \-R \fR\f(CI$archlibexp\fR\fI/\fR\f(CI\*(C`CORE\*(C'\fR\fI\fR (Solaris) or \-Wl,\-rpath \&\fI\fR\f(CI$archlibexp\fR\fI/\fR\f(CI\*(C`CORE\*(C'\fR\fI\fR (Linux). .ie n .IP """shsharp""" 4 .el .IP \f(CWshsharp\fR 4 .IX Item "shsharp" From \fIspitshell.U\fR: .Sp This variable tells further Configure units whether your sh can handle # comments. .ie n .IP """sig_count""" 4 .el .IP \f(CWsig_count\fR 4 .IX Item "sig_count" From \fIsig_name.U\fR: .Sp This variable holds a number larger than the largest valid signal number. This is usually the same as the \f(CW\*(C`NSIG\*(C'\fR macro. .ie n .IP """sig_name""" 4 .el .IP \f(CWsig_name\fR 4 .IX Item "sig_name" From \fIsig_name.U\fR: .Sp This variable holds the signal names, space separated. The leading \&\f(CW\*(C`SIG\*(C'\fR in signal name is removed. A \f(CW\*(C`ZERO\*(C'\fR is prepended to the list. This is currently not used, sig_name_init is used instead. .ie n .IP """sig_name_init""" 4 .el .IP \f(CWsig_name_init\fR 4 .IX Item "sig_name_init" From \fIsig_name.U\fR: .Sp This variable holds the signal names, enclosed in double quotes and separated by commas, suitable for use in the \f(CW\*(C`SIG_NAME\*(C'\fR definition below. A \f(CW\*(C`ZERO\*(C'\fR is prepended to the list, and the list is terminated with a plain 0. The leading \f(CW\*(C`SIG\*(C'\fR in signal names is removed. See sig_num. .ie n .IP """sig_num""" 4 .el .IP \f(CWsig_num\fR 4 .IX Item "sig_num" From \fIsig_name.U\fR: .Sp This variable holds the signal numbers, space separated. A \f(CW\*(C`ZERO\*(C'\fR is prepended to the list (corresponding to the fake \f(CW\*(C`SIGZERO\*(C'\fR). Those numbers correspond to the value of the signal listed in the same place within the sig_name list. This is currently not used, sig_num_init is used instead. .ie n .IP """sig_num_init""" 4 .el .IP \f(CWsig_num_init\fR 4 .IX Item "sig_num_init" From \fIsig_name.U\fR: .Sp This variable holds the signal numbers, enclosed in double quotes and separated by commas, suitable for use in the \f(CW\*(C`SIG_NUM\*(C'\fR definition below. A \f(CW\*(C`ZERO\*(C'\fR is prepended to the list, and the list is terminated with a plain 0. .ie n .IP """sig_size""" 4 .el .IP \f(CWsig_size\fR 4 .IX Item "sig_size" From \fIsig_name.U\fR: .Sp This variable contains the number of elements of the sig_name and sig_num arrays. .ie n .IP """signal_t""" 4 .el .IP \f(CWsignal_t\fR 4 .IX Item "signal_t" From \fId_voidsig.U\fR: .Sp This variable holds the type of the signal handler (void or int). .ie n .IP """sitearch""" 4 .el .IP \f(CWsitearch\fR 4 .IX Item "sitearch" From \fIsitearch.U\fR: .Sp This variable contains the eventual value of the \f(CW\*(C`SITEARCH\*(C'\fR symbol, which is the name of the private library for this package. It may have a \fI~\fR on the front. It is up to the makefile to eventually create this directory while performing installation (with \fI~\fR substitution). The standard distribution will put nothing in this directory. After perl has been installed, users may install their own local architecture-dependent modules in this directory with MakeMaker \fIMakefile.PL\fR or equivalent. See \f(CW\*(C`INSTALL\*(C'\fR for details. .ie n .IP """sitearchexp""" 4 .el .IP \f(CWsitearchexp\fR 4 .IX Item "sitearchexp" From \fIsitearch.U\fR: .Sp This variable is the \fI~name\fR expanded version of sitearch, so that you may use it directly in Makefiles or shell scripts. .ie n .IP """sitebin""" 4 .el .IP \f(CWsitebin\fR 4 .IX Item "sitebin" From \fIsitebin.U\fR: .Sp This variable holds the name of the directory in which the user wants to put add-on publicly executable files for the package in question. It is most often a local directory such as \fI/usr/local/bin\fR. Programs using this variable must be prepared to deal with \fI~name\fR substitution. The standard distribution will put nothing in this directory. After perl has been installed, users may install their own local executables in this directory with MakeMaker \fIMakefile.PL\fR or equivalent. See \f(CW\*(C`INSTALL\*(C'\fR for details. .ie n .IP """sitebinexp""" 4 .el .IP \f(CWsitebinexp\fR 4 .IX Item "sitebinexp" From \fIsitebin.U\fR: .Sp This is the same as the sitebin variable, but is filename expanded at configuration time, for use in your makefiles. .ie n .IP """sitehtml1dir""" 4 .el .IP \f(CWsitehtml1dir\fR 4 .IX Item "sitehtml1dir" From \fIsitehtml1dir.U\fR: .Sp This variable contains the name of the directory in which site-specific html source pages are to be put. It is the responsibility of the \&\fIMakefile.SH\fR to get the value of this into the proper command. You must be prepared to do the \fI~name\fR expansion yourself. The standard distribution will put nothing in this directory. After perl has been installed, users may install their own local html pages in this directory with MakeMaker \fIMakefile.PL\fR or equivalent. See \f(CW\*(C`INSTALL\*(C'\fR for details. .ie n .IP """sitehtml1direxp""" 4 .el .IP \f(CWsitehtml1direxp\fR 4 .IX Item "sitehtml1direxp" From \fIsitehtml1dir.U\fR: .Sp This variable is the same as the sitehtml1dir variable, but is filename expanded at configuration time, for convenient use in makefiles. .ie n .IP """sitehtml3dir""" 4 .el .IP \f(CWsitehtml3dir\fR 4 .IX Item "sitehtml3dir" From \fIsitehtml3dir.U\fR: .Sp This variable contains the name of the directory in which site-specific library html source pages are to be put. It is the responsibility of the \&\fIMakefile.SH\fR to get the value of this into the proper command. You must be prepared to do the \fI~name\fR expansion yourself. The standard distribution will put nothing in this directory. After perl has been installed, users may install their own local library html pages in this directory with MakeMaker \fIMakefile.PL\fR or equivalent. See \f(CW\*(C`INSTALL\*(C'\fR for details. .ie n .IP """sitehtml3direxp""" 4 .el .IP \f(CWsitehtml3direxp\fR 4 .IX Item "sitehtml3direxp" From \fIsitehtml3dir.U\fR: .Sp This variable is the same as the sitehtml3dir variable, but is filename expanded at configuration time, for convenient use in makefiles. .ie n .IP """sitelib""" 4 .el .IP \f(CWsitelib\fR 4 .IX Item "sitelib" From \fIsitelib.U\fR: .Sp This variable contains the eventual value of the \f(CW\*(C`SITELIB\*(C'\fR symbol, which is the name of the private library for this package. It may have a \fI~\fR on the front. It is up to the makefile to eventually create this directory while performing installation (with \fI~\fR substitution). The standard distribution will put nothing in this directory. After perl has been installed, users may install their own local architecture-independent modules in this directory with MakeMaker \fIMakefile.PL\fR or equivalent. See \f(CW\*(C`INSTALL\*(C'\fR for details. .ie n .IP """sitelib_stem""" 4 .el .IP \f(CWsitelib_stem\fR 4 .IX Item "sitelib_stem" From \fIsitelib.U\fR: .Sp This variable is \f(CW$sitelibexp\fR with any trailing version-specific component removed. The elements in inc_version_list (\fIinc_version_list.U\fR) can be tacked onto this variable to generate a list of directories to search. .ie n .IP """sitelibexp""" 4 .el .IP \f(CWsitelibexp\fR 4 .IX Item "sitelibexp" From \fIsitelib.U\fR: .Sp This variable is the \fI~name\fR expanded version of sitelib, so that you may use it directly in Makefiles or shell scripts. .ie n .IP """siteman1dir""" 4 .el .IP \f(CWsiteman1dir\fR 4 .IX Item "siteman1dir" From \fIsiteman1dir.U\fR: .Sp This variable contains the name of the directory in which site-specific manual source pages are to be put. It is the responsibility of the \&\fIMakefile.SH\fR to get the value of this into the proper command. You must be prepared to do the \fI~name\fR expansion yourself. The standard distribution will put nothing in this directory. After perl has been installed, users may install their own local man1 pages in this directory with MakeMaker \fIMakefile.PL\fR or equivalent. See \f(CW\*(C`INSTALL\*(C'\fR for details. .ie n .IP """siteman1direxp""" 4 .el .IP \f(CWsiteman1direxp\fR 4 .IX Item "siteman1direxp" From \fIsiteman1dir.U\fR: .Sp This variable is the same as the siteman1dir variable, but is filename expanded at configuration time, for convenient use in makefiles. .ie n .IP """siteman3dir""" 4 .el .IP \f(CWsiteman3dir\fR 4 .IX Item "siteman3dir" From \fIsiteman3dir.U\fR: .Sp This variable contains the name of the directory in which site-specific library man source pages are to be put. It is the responsibility of the \&\fIMakefile.SH\fR to get the value of this into the proper command. You must be prepared to do the \fI~name\fR expansion yourself. The standard distribution will put nothing in this directory. After perl has been installed, users may install their own local man3 pages in this directory with MakeMaker \fIMakefile.PL\fR or equivalent. See \f(CW\*(C`INSTALL\*(C'\fR for details. .ie n .IP """siteman3direxp""" 4 .el .IP \f(CWsiteman3direxp\fR 4 .IX Item "siteman3direxp" From \fIsiteman3dir.U\fR: .Sp This variable is the same as the siteman3dir variable, but is filename expanded at configuration time, for convenient use in makefiles. .ie n .IP """siteprefix""" 4 .el .IP \f(CWsiteprefix\fR 4 .IX Item "siteprefix" From \fIsiteprefix.U\fR: .Sp This variable holds the full absolute path of the directory below which the user will install add-on packages. See \f(CW\*(C`INSTALL\*(C'\fR for usage and examples. .ie n .IP """siteprefixexp""" 4 .el .IP \f(CWsiteprefixexp\fR 4 .IX Item "siteprefixexp" From \fIsiteprefix.U\fR: .Sp This variable holds the full absolute path of the directory below which the user will install add-on packages. Derived from siteprefix. .ie n .IP """sitescript""" 4 .el .IP \f(CWsitescript\fR 4 .IX Item "sitescript" From \fIsitescript.U\fR: .Sp This variable holds the name of the directory in which the user wants to put add-on publicly executable files for the package in question. It is most often a local directory such as \fI/usr/local/bin\fR. Programs using this variable must be prepared to deal with \fI~name\fR substitution. The standard distribution will put nothing in this directory. After perl has been installed, users may install their own local scripts in this directory with MakeMaker \fIMakefile.PL\fR or equivalent. See \f(CW\*(C`INSTALL\*(C'\fR for details. .ie n .IP """sitescriptexp""" 4 .el .IP \f(CWsitescriptexp\fR 4 .IX Item "sitescriptexp" From \fIsitescript.U\fR: .Sp This is the same as the sitescript variable, but is filename expanded at configuration time, for use in your makefiles. .ie n .IP """sizesize""" 4 .el .IP \f(CWsizesize\fR 4 .IX Item "sizesize" From \fIsizesize.U\fR: .Sp This variable contains the size of a sizetype in bytes. .ie n .IP """sizetype""" 4 .el .IP \f(CWsizetype\fR 4 .IX Item "sizetype" From \fIsizetype.U\fR: .Sp This variable defines sizetype to be something like size_t, unsigned long, or whatever type is used to declare length parameters for string functions. .ie n .IP """sleep""" 4 .el .IP \f(CWsleep\fR 4 .IX Item "sleep" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """smail""" 4 .el .IP \f(CWsmail\fR 4 .IX Item "smail" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """so""" 4 .el .IP \f(CWso\fR 4 .IX Item "so" From \fIso.U\fR: .Sp This variable holds the extension used to identify shared libraries (also known as shared objects) on the system. Usually set to \f(CW\*(C`so\*(C'\fR. .ie n .IP """sockethdr""" 4 .el .IP \f(CWsockethdr\fR 4 .IX Item "sockethdr" From \fId_socket.U\fR: .Sp This variable has any cpp \f(CW\*(C`\-I\*(C'\fR flags needed for socket support. .ie n .IP """socketlib""" 4 .el .IP \f(CWsocketlib\fR 4 .IX Item "socketlib" From \fId_socket.U\fR: .Sp This variable has the names of any libraries needed for socket support. .ie n .IP """socksizetype""" 4 .el .IP \f(CWsocksizetype\fR 4 .IX Item "socksizetype" From \fIsocksizetype.U\fR: .Sp This variable holds the type used for the size argument for various socket calls like accept. Usual values include socklen_t, size_t, and int. .ie n .IP """sort""" 4 .el .IP \f(CWsort\fR 4 .IX Item "sort" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the sort program. After Configure runs, the value is reset to a plain \f(CW\*(C`sort\*(C'\fR and is not useful. .ie n .IP """spackage""" 4 .el .IP \f(CWspackage\fR 4 .IX Item "spackage" From \fIpackage.U\fR: .Sp This variable contains the name of the package being constructed, with the first letter uppercased, \fIi.e\fR. suitable for starting sentences. .ie n .IP """spitshell""" 4 .el .IP \f(CWspitshell\fR 4 .IX Item "spitshell" From \fIspitshell.U\fR: .Sp This variable contains the command necessary to spit out a runnable shell on this system. It is either cat or a grep \f(CW\*(C`\-v\*(C'\fR for # comments. .ie n .IP """srand48_r_proto""" 4 .el .IP \f(CWsrand48_r_proto\fR 4 .IX Item "srand48_r_proto" From \fId_srand48_r.U\fR: .Sp This variable encodes the prototype of srand48_r. It is zero if d_srand48_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_srand48_r is defined. .ie n .IP """srandom_r_proto""" 4 .el .IP \f(CWsrandom_r_proto\fR 4 .IX Item "srandom_r_proto" From \fId_srandom_r.U\fR: .Sp This variable encodes the prototype of srandom_r. It is zero if d_srandom_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_srandom_r is defined. .ie n .IP """src""" 4 .el .IP \f(CWsrc\fR 4 .IX Item "src" From \fIsrc.U\fR: .Sp This variable holds the (possibly relative) path of the package source. It is up to the Makefile to use this variable and set \f(CW\*(C`VPATH\*(C'\fR accordingly to find the sources remotely. Use \f(CW$pkgsrc\fR to have an absolute path. .ie n .IP """ssizetype""" 4 .el .IP \f(CWssizetype\fR 4 .IX Item "ssizetype" From \fIssizetype.U\fR: .Sp This variable defines ssizetype to be something like ssize_t, long or int. It is used by functions that return a count of bytes or an error condition. It must be a signed type. We will pick a type such that sizeof(SSize_t) == sizeof(Size_t). .ie n .IP """st_dev_sign""" 4 .el .IP \f(CWst_dev_sign\fR 4 .IX Item "st_dev_sign" From \fIst_dev_def.U\fR: .Sp This variable contains the signedness of struct stat's st_dev. 1 for unsigned, \-1 for signed. .ie n .IP """st_dev_size""" 4 .el .IP \f(CWst_dev_size\fR 4 .IX Item "st_dev_size" From \fIst_dev_def.U\fR: .Sp This variable contains the size of struct stat's st_dev in bytes. .ie n .IP """st_ino_sign""" 4 .el .IP \f(CWst_ino_sign\fR 4 .IX Item "st_ino_sign" From \fIst_ino_def.U\fR: .Sp This variable contains the signedness of struct stat's st_ino. 1 for unsigned, \-1 for signed. .ie n .IP """st_ino_size""" 4 .el .IP \f(CWst_ino_size\fR 4 .IX Item "st_ino_size" From \fIst_ino_def.U\fR: .Sp This variable contains the size of struct stat's st_ino in bytes. .ie n .IP """startperl""" 4 .el .IP \f(CWstartperl\fR 4 .IX Item "startperl" From \fIstartperl.U\fR: .Sp This variable contains the string to put on the front of a perl script to make sure (hopefully) that it runs with perl and not some shell. Of course, that leading line must be followed by the classical perl idiom: eval 'exec perl \-S \f(CW$0\fR ${1+\f(CW$@\fR}' if \f(CW$running_under_some_shell\fR; to guarantee perl startup should the shell execute the script. Note that this magic incantation is not understood by csh. .ie n .IP """startsh""" 4 .el .IP \f(CWstartsh\fR 4 .IX Item "startsh" From \fIstartsh.U\fR: .Sp This variable contains the string to put on the front of a shell script to make sure (hopefully) that it runs with sh and not some other shell. .ie n .IP """static_ext""" 4 .el .IP \f(CWstatic_ext\fR 4 .IX Item "static_ext" From \fIExtensions.U\fR: .Sp This variable holds a list of \f(CW\*(C`XS\*(C'\fR extension files we want to link statically into the package. It is used by Makefile. .ie n .IP """stdchar""" 4 .el .IP \f(CWstdchar\fR 4 .IX Item "stdchar" From \fIstdchar.U\fR: .Sp This variable conditionally defines \f(CW\*(C`STDCHAR\*(C'\fR to be the type of char used in \fIstdio.h\fR. It has the values "unsigned char" or \f(CW\*(C`char\*(C'\fR. .ie n .IP """stdio_base""" 4 .el .IP \f(CWstdio_base\fR 4 .IX Item "stdio_base" From \fId_stdstdio.U\fR: .Sp This variable defines how, given a \f(CW\*(C`FILE\*(C'\fR pointer, fp, to access the _base field (or equivalent) of \fIstdio.h\fR's \f(CW\*(C`FILE\*(C'\fR structure. This will be used to define the macro FILE_base(fp). .ie n .IP """stdio_bufsiz""" 4 .el .IP \f(CWstdio_bufsiz\fR 4 .IX Item "stdio_bufsiz" From \fId_stdstdio.U\fR: .Sp This variable defines how, given a \f(CW\*(C`FILE\*(C'\fR pointer, fp, to determine the number of bytes store in the I/O buffer pointer to by the _base field (or equivalent) of \fIstdio.h\fR's \f(CW\*(C`FILE\*(C'\fR structure. This will be used to define the macro FILE_bufsiz(fp). .ie n .IP """stdio_cnt""" 4 .el .IP \f(CWstdio_cnt\fR 4 .IX Item "stdio_cnt" From \fId_stdstdio.U\fR: .Sp This variable defines how, given a \f(CW\*(C`FILE\*(C'\fR pointer, fp, to access the _cnt field (or equivalent) of \fIstdio.h\fR's \f(CW\*(C`FILE\*(C'\fR structure. This will be used to define the macro FILE_cnt(fp). .ie n .IP """stdio_filbuf""" 4 .el .IP \f(CWstdio_filbuf\fR 4 .IX Item "stdio_filbuf" From \fId_stdstdio.U\fR: .Sp This variable defines how, given a \f(CW\*(C`FILE\*(C'\fR pointer, fp, to tell stdio to refill its internal buffers (?). This will be used to define the macro FILE_filbuf(fp). .ie n .IP """stdio_ptr""" 4 .el .IP \f(CWstdio_ptr\fR 4 .IX Item "stdio_ptr" From \fId_stdstdio.U\fR: .Sp This variable defines how, given a \f(CW\*(C`FILE\*(C'\fR pointer, fp, to access the _ptr field (or equivalent) of \fIstdio.h\fR's \f(CW\*(C`FILE\*(C'\fR structure. This will be used to define the macro FILE_ptr(fp). .ie n .IP """stdio_stream_array""" 4 .el .IP \f(CWstdio_stream_array\fR 4 .IX Item "stdio_stream_array" From \fIstdio_streams.U\fR: .Sp This variable tells the name of the array holding the stdio streams. Usual values include _iob, _\|_iob, and _\|_sF. .ie n .IP """strerror_r_proto""" 4 .el .IP \f(CWstrerror_r_proto\fR 4 .IX Item "strerror_r_proto" From \fId_strerror_r.U\fR: .Sp This variable encodes the prototype of strerror_r. It is zero if d_strerror_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_strerror_r is defined. .ie n .IP """submit""" 4 .el .IP \f(CWsubmit\fR 4 .IX Item "submit" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """subversion""" 4 .el .IP \f(CWsubversion\fR 4 .IX Item "subversion" From \fIpatchlevel.U\fR: .Sp The subversion level of this package. The value of subversion comes from the \fIpatchlevel.h\fR file. In a version number such as 5.6.1, this is the \f(CW1\fR. In \fIpatchlevel.h\fR, this is referred to as \f(CW\*(C`PERL_SUBVERSION\*(C'\fR. This is unique to perl. .ie n .IP """sysman""" 4 .el .IP \f(CWsysman\fR 4 .IX Item "sysman" From \fIsysman.U\fR: .Sp This variable holds the place where the manual is located on this system. It is not the place where the user wants to put his manual pages. Rather it is the place where Configure may look to find manual for unix commands (section 1 of the manual usually). See mansrc. .ie n .IP """sysroot""" 4 .el .IP \f(CWsysroot\fR 4 .IX Item "sysroot" From \fISysroot.U\fR: .Sp This variable is empty unless supplied by the Configure user. It can contain a path to an alternative root directory, under which headers and libraries for the compilation target can be found. This is generally used when cross-compiling using a gcc-like compiler. .SS t .IX Subsection "t" .ie n .IP """tail""" 4 .el .IP \f(CWtail\fR 4 .IX Item "tail" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """taint_disabled""" 4 .el .IP \f(CWtaint_disabled\fR 4 .IX Item "taint_disabled" From define: \f(CW\*(C`SILENT_NO_TAINT_SUPPORT\*(C'\fR or \f(CW\*(C`NO_TAINT_SUPPORT\*(C'\fR .Sp If this perl is compiled with support for taint mode this variable will be set to the empty string, if it was compiled with \&\f(CW\*(C`SILENT_NO_TAINT_SUPPORT\*(C'\fR defined then it will be set to be "silent", and if it was compiled with \f(CW\*(C`NO_TAINT_SUPPORT\*(C'\fR defined it will be \&'define'. Either of the above defines will results in it being a true value. This property was added in 5.37.11. See also "taint_support". .ie n .IP """taint_support""" 4 .el .IP \f(CWtaint_support\fR 4 .IX Item "taint_support" From define: \f(CW\*(C`SILENT_NO_TAINT_SUPPORT\*(C'\fR or \f(CW\*(C`NO_TAINT_SUPPORT\*(C'\fR .Sp If this perl is compiled with support for taint mode this variable will be set to 'define', if it is not it will be set to the empty string. Either of the above defines will result in it being empty. This property was added in version 5.37.11. See also "taint_disabled". .ie n .IP """tar""" 4 .el .IP \f(CWtar\fR 4 .IX Item "tar" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """targetarch""" 4 .el .IP \f(CWtargetarch\fR 4 .IX Item "targetarch" From \fICross.U\fR: .Sp If cross-compiling, this variable contains the target architecture. If not, this will be empty. .ie n .IP """targetdir""" 4 .el .IP \f(CWtargetdir\fR 4 .IX Item "targetdir" From \fICross.U\fR: .Sp This variable contains a path that will be created on the target host using targetmkdir, and then used to copy the cross-compiled executables to. Defaults to \fI/tmp\fR if not set. .ie n .IP """targetenv""" 4 .el .IP \f(CWtargetenv\fR 4 .IX Item "targetenv" From \fICross.U\fR: .Sp If cross-compiling, this variable can be used to modify the environment on the target system. However, how and where it's used, and even if it's used at all, is entirely dependent on both the transport mechanism (targetrun) and what the target system is. Unless the relevant documentation says otherwise, it is genereally not useful. .ie n .IP """targethost""" 4 .el .IP \f(CWtargethost\fR 4 .IX Item "targethost" From \fICross.U\fR: .Sp This variable contains the name of a separate host machine that can be used to run compiled test programs and perl tests on. Set to empty string if not in use. .ie n .IP """targetmkdir""" 4 .el .IP \f(CWtargetmkdir\fR 4 .IX Item "targetmkdir" From \fICross.U\fR: .Sp This variable contains the command used by Configure to create a new directory on the target host. .ie n .IP """targetport""" 4 .el .IP \f(CWtargetport\fR 4 .IX Item "targetport" From \fICross.U\fR: .Sp This variable contains the number of a network port to be used to connect to the host in targethost, if unset defaults to 22 for ssh. .ie n .IP """targetsh""" 4 .el .IP \f(CWtargetsh\fR 4 .IX Item "targetsh" From \fIsh.U\fR: .Sp If cross-compiling, this variable contains the location of sh on the target system. If not, this will be the same as \f(CW$sh\fR. .ie n .IP """tbl""" 4 .el .IP \f(CWtbl\fR 4 .IX Item "tbl" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """tee""" 4 .el .IP \f(CWtee\fR 4 .IX Item "tee" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """test""" 4 .el .IP \f(CWtest\fR 4 .IX Item "test" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the test program. After Configure runs, the value is reset to a plain \f(CW\*(C`test\*(C'\fR and is not useful. .ie n .IP """timeincl""" 4 .el .IP \f(CWtimeincl\fR 4 .IX Item "timeincl" From \fIi_time.U\fR: .Sp This variable holds the full path of the included time header(s). .ie n .IP """timetype""" 4 .el .IP \f(CWtimetype\fR 4 .IX Item "timetype" From \fId_time.U\fR: .Sp This variable holds the type returned by \fBtime()\fR. It can be long, or time_t on \f(CW\*(C`BSD\*(C'\fR sites (in which case should be included). Anyway, the type Time_t should be used. .ie n .IP """tmpnam_r_proto""" 4 .el .IP \f(CWtmpnam_r_proto\fR 4 .IX Item "tmpnam_r_proto" From \fId_tmpnam_r.U\fR: .Sp This variable encodes the prototype of tmpnam_r. It is zero if d_tmpnam_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_tmpnam_r is defined. .ie n .IP """to""" 4 .el .IP \f(CWto\fR 4 .IX Item "to" From \fICross.U\fR: .Sp This variable contains the command used by Configure to copy to from the target host. Useful and available only during Perl build. The string \f(CW\*(C`:\*(C'\fR if not cross-compiling. .ie n .IP """touch""" 4 .el .IP \f(CWtouch\fR 4 .IX Item "touch" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the touch program. After Configure runs, the value is reset to a plain \f(CW\*(C`touch\*(C'\fR and is not useful. .ie n .IP """tr""" 4 .el .IP \f(CWtr\fR 4 .IX Item "tr" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the tr program. After Configure runs, the value is reset to a plain \f(CW\*(C`tr\*(C'\fR and is not useful. .ie n .IP """trnl""" 4 .el .IP \f(CWtrnl\fR 4 .IX Item "trnl" From \fItrnl.U\fR: .Sp This variable contains the value to be passed to the \fBtr\fR\|(1) command to transliterate a newline. Typical values are \&\f(CW\*(C`\e012\*(C'\fR and \f(CW\*(C`\en\*(C'\fR. This is needed for \f(CW\*(C`EBCDIC\*(C'\fR systems where newline is not necessarily \f(CW\*(C`\e012\*(C'\fR. .ie n .IP """troff""" 4 .el .IP \f(CWtroff\fR 4 .IX Item "troff" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """ttyname_r_proto""" 4 .el .IP \f(CWttyname_r_proto\fR 4 .IX Item "ttyname_r_proto" From \fId_ttyname_r.U\fR: .Sp This variable encodes the prototype of ttyname_r. It is zero if d_ttyname_r is undef, and one of the \&\f(CW\*(C`REENTRANT_PROTO_T_ABC\*(C'\fR macros of \fIreentr.h\fR if d_ttyname_r is defined. .SS u .IX Subsection "u" .ie n .IP """u16size""" 4 .el .IP \f(CWu16size\fR 4 .IX Item "u16size" From \fIperlxv.U\fR: .Sp This variable is the size of an U16 in bytes. .ie n .IP """u16type""" 4 .el .IP \f(CWu16type\fR 4 .IX Item "u16type" From \fIperlxv.U\fR: .Sp This variable contains the C type used for Perl's U16. .ie n .IP """u32XUformat""" 4 .el .IP \f(CWu32XUformat\fR 4 .IX Item "u32XUformat" From \fIperlx32f.U\fR: .Sp This variable contains the format string used for printing a Perl U32 as an unsigned hexadecimal integer in uppercase \f(CW\*(C`ABCDEF\*(C'\fR. .ie n .IP """u32oformat""" 4 .el .IP \f(CWu32oformat\fR 4 .IX Item "u32oformat" From \fIperlx32f.U\fR: .Sp This variable contains the format string used for printing a Perl U32 as an unsigned octal integer. .ie n .IP """u32size""" 4 .el .IP \f(CWu32size\fR 4 .IX Item "u32size" From \fIperlxv.U\fR: .Sp This variable is the size of an U32 in bytes. .ie n .IP """u32type""" 4 .el .IP \f(CWu32type\fR 4 .IX Item "u32type" From \fIperlxv.U\fR: .Sp This variable contains the C type used for Perl's U32. .ie n .IP """u32uformat""" 4 .el .IP \f(CWu32uformat\fR 4 .IX Item "u32uformat" From \fIperlx32f.U\fR: .Sp This variable contains the format string used for printing a Perl U32 as an unsigned decimal integer. .ie n .IP """u32xformat""" 4 .el .IP \f(CWu32xformat\fR 4 .IX Item "u32xformat" From \fIperlx32f.U\fR: .Sp This variable contains the format string used for printing a Perl U32 as an unsigned hexadecimal integer in lowercase abcdef. .ie n .IP """u64size""" 4 .el .IP \f(CWu64size\fR 4 .IX Item "u64size" From \fIperlxv.U\fR: .Sp This variable is the size of an U64 in bytes. .ie n .IP """u64type""" 4 .el .IP \f(CWu64type\fR 4 .IX Item "u64type" From \fIperlxv.U\fR: .Sp This variable contains the C type used for Perl's U64. .ie n .IP """u8size""" 4 .el .IP \f(CWu8size\fR 4 .IX Item "u8size" From \fIperlxv.U\fR: .Sp This variable is the size of an U8 in bytes. .ie n .IP """u8type""" 4 .el .IP \f(CWu8type\fR 4 .IX Item "u8type" From \fIperlxv.U\fR: .Sp This variable contains the C type used for Perl's U8. .ie n .IP """uidformat""" 4 .el .IP \f(CWuidformat\fR 4 .IX Item "uidformat" From \fIuidf.U\fR: .Sp This variable contains the format string used for printing a Uid_t. .ie n .IP """uidsign""" 4 .el .IP \f(CWuidsign\fR 4 .IX Item "uidsign" From \fIuidsign.U\fR: .Sp This variable contains the signedness of a uidtype. 1 for unsigned, \-1 for signed. .ie n .IP """uidsize""" 4 .el .IP \f(CWuidsize\fR 4 .IX Item "uidsize" From \fIuidsize.U\fR: .Sp This variable contains the size of a uidtype in bytes. .ie n .IP """uidtype""" 4 .el .IP \f(CWuidtype\fR 4 .IX Item "uidtype" From \fIuidtype.U\fR: .Sp This variable defines Uid_t to be something like uid_t, int, ushort, or whatever type is used to declare user ids in the kernel. .ie n .IP """uname""" 4 .el .IP \f(CWuname\fR 4 .IX Item "uname" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the uname program. After Configure runs, the value is reset to a plain \f(CW\*(C`uname\*(C'\fR and is not useful. .ie n .IP """uniq""" 4 .el .IP \f(CWuniq\fR 4 .IX Item "uniq" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the uniq program. After Configure runs, the value is reset to a plain \f(CW\*(C`uniq\*(C'\fR and is not useful. .ie n .IP """uquadtype""" 4 .el .IP \f(CWuquadtype\fR 4 .IX Item "uquadtype" From \fIquadtype.U\fR: .Sp This variable defines Uquad_t to be something like unsigned long, unsigned int, unsigned long long, uint64_t, or whatever type is used for 64\-bit integers. .ie n .IP """use64bitall""" 4 .el .IP \f(CWuse64bitall\fR 4 .IX Item "use64bitall" From \fIuse64bits.U\fR: .Sp This variable conditionally defines the USE_64_BIT_ALL symbol, and indicates that 64\-bit integer types should be used when available. The maximal possible 64\-bitness is employed: LP64 or ILP64, meaning that you will be able to use more than 2 gigabytes of memory. This mode is even more binary incompatible than USE_64_BIT_INT. You may not be able to run the resulting executable in a 32\-bit \f(CW\*(C`CPU\*(C'\fR at all or you may need at least to reboot your \f(CW\*(C`OS\*(C'\fR to 64\-bit mode. .ie n .IP """use64bitint""" 4 .el .IP \f(CWuse64bitint\fR 4 .IX Item "use64bitint" From \fIuse64bits.U\fR: .Sp This variable conditionally defines the USE_64_BIT_INT symbol, and indicates that 64\-bit integer types should be used when available. The minimal possible 64\-bitness is employed, just enough to get 64\-bit integers into Perl. This may mean using for example "long longs", while your memory may still be limited to 2 gigabytes. .ie n .IP """usecbacktrace""" 4 .el .IP \f(CWusecbacktrace\fR 4 .IX Item "usecbacktrace" From \fIusebacktrace.U\fR: .Sp This variable indicates whether we are compiling with backtrace support. .ie n .IP """usecrosscompile""" 4 .el .IP \f(CWusecrosscompile\fR 4 .IX Item "usecrosscompile" From \fICross.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`USE_CROSS_COMPILE\*(C'\fR symbol, and indicates that Perl has been cross-compiled. .ie n .IP """usedefaultstrict""" 4 .el .IP \f(CWusedefaultstrict\fR 4 .IX Item "usedefaultstrict" From \fIusedefaultstrict.U\fR: .Sp This setting provides a mechanism for perl developers to enable strict by default. These defaults do not apply when perl is run via \-e or \-E. .ie n .IP """usedevel""" 4 .el .IP \f(CWusedevel\fR 4 .IX Item "usedevel" From \fIDevel.U\fR: .Sp This variable indicates that Perl was configured with development features enabled. This should not be done for production builds. .ie n .IP """usedl""" 4 .el .IP \f(CWusedl\fR 4 .IX Item "usedl" From \fIdlsrc.U\fR: .Sp This variable indicates if the system supports dynamic loading of some sort. See also dlsrc and dlobj. .ie n .IP """usedtrace""" 4 .el .IP \f(CWusedtrace\fR 4 .IX Item "usedtrace" From \fIusedtrace.U\fR: .Sp This variable indicates whether we are compiling with dtrace support. See also dtrace. .ie n .IP """usefaststdio""" 4 .el .IP \f(CWusefaststdio\fR 4 .IX Item "usefaststdio" From \fIusefaststdio.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`USE_FAST_STDIO\*(C'\fR symbol, and indicates that Perl should be built to use \f(CW\*(C`fast stdio\*(C'\fR. Defaults to define in Perls 5.8 and earlier, to undef later. .ie n .IP """useithreads""" 4 .el .IP \f(CWuseithreads\fR 4 .IX Item "useithreads" From \fIusethreads.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`USE_ITHREADS\*(C'\fR symbol, and indicates that Perl should be built to use the interpreter-based threading implementation. .ie n .IP """usekernprocpathname""" 4 .el .IP \f(CWusekernprocpathname\fR 4 .IX Item "usekernprocpathname" From \fIusekernprocpathname.U\fR: .Sp This variable, indicates that we can use sysctl with \&\f(CW\*(C`KERN_PROC_PATHNAME\*(C'\fR to get a full path for the executable, and hence convert $^X to an absolute path. .ie n .IP """uselanginfo""" 4 .el .IP \f(CWuselanginfo\fR 4 .IX Item "uselanginfo" From \fIExtensions.U\fR: .Sp This variable holds either \f(CW\*(C`true\*(C'\fR or \f(CW\*(C`false\*(C'\fR to indicate whether the I18N::Langinfo extension should be used. The sole use for this currently is to allow an easy mechanism for users to skip this extension from the Configure command line. .ie n .IP """uselargefiles""" 4 .el .IP \f(CWuselargefiles\fR 4 .IX Item "uselargefiles" From \fIuselfs.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`USE_LARGE_FILES\*(C'\fR symbol, and indicates that large file interfaces should be used when available. .ie n .IP """uselongdouble""" 4 .el .IP \f(CWuselongdouble\fR 4 .IX Item "uselongdouble" From \fIuselongdbl.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`USE_LONG_DOUBLE\*(C'\fR symbol, and indicates that long doubles should be used when available. .ie n .IP """usemallocwrap""" 4 .el .IP \f(CWusemallocwrap\fR 4 .IX Item "usemallocwrap" From \fImallocsrc.U\fR: .Sp This variable contains y if we are wrapping malloc to prevent integer overflow during size calculations. .ie n .IP """usemorebits""" 4 .el .IP \f(CWusemorebits\fR 4 .IX Item "usemorebits" From \fIusemorebits.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`USE_MORE_BITS\*(C'\fR symbol, and indicates that explicit 64\-bit interfaces and long doubles should be used when available. .ie n .IP """usemultiplicity""" 4 .el .IP \f(CWusemultiplicity\fR 4 .IX Item "usemultiplicity" From \fIusemultiplicity.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`MULTIPLICITY\*(C'\fR symbol, and indicates that Perl should be built to use multiplicity. .ie n .IP """usemymalloc""" 4 .el .IP \f(CWusemymalloc\fR 4 .IX Item "usemymalloc" From \fImallocsrc.U\fR: .Sp This variable contains y if the malloc that comes with this package is desired over the system's version of malloc. People often include special versions of malloc for efficiency, but such versions are often less portable. See also mallocsrc and mallocobj. If this is \f(CW\*(C`y\*(C'\fR, then \-lmalloc is removed from \f(CW$libs\fR. .ie n .IP """usenm""" 4 .el .IP \f(CWusenm\fR 4 .IX Item "usenm" From \fIusenm.U\fR: .Sp This variable contains \f(CW\*(C`true\*(C'\fR or \f(CW\*(C`false\*(C'\fR depending whether the nm extraction is wanted or not. .ie n .IP """usensgetexecutablepath""" 4 .el .IP \f(CWusensgetexecutablepath\fR 4 .IX Item "usensgetexecutablepath" From \fIusensgetexecutablepath.U\fR: .Sp This symbol, if defined, indicates that we can use _NSGetExecutablePath and realpath to get a full path for the executable, and hence convert $^X to an absolute path. .ie n .IP """useopcode""" 4 .el .IP \f(CWuseopcode\fR 4 .IX Item "useopcode" From \fIExtensions.U\fR: .Sp This variable holds either \f(CW\*(C`true\*(C'\fR or \f(CW\*(C`false\*(C'\fR to indicate whether the Opcode extension should be used. The sole use for this currently is to allow an easy mechanism for users to skip the Opcode extension from the Configure command line. .ie n .IP """useperlio""" 4 .el .IP \f(CWuseperlio\fR 4 .IX Item "useperlio" From \fIuseperlio.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`USE_PERLIO\*(C'\fR symbol, and indicates that the PerlIO abstraction should be used throughout. .ie n .IP """useposix""" 4 .el .IP \f(CWuseposix\fR 4 .IX Item "useposix" From \fIExtensions.U\fR: .Sp This variable holds either \f(CW\*(C`true\*(C'\fR or \f(CW\*(C`false\*(C'\fR to indicate whether the \f(CW\*(C`POSIX\*(C'\fR extension should be used. The sole use for this currently is to allow an easy mechanism for hints files to indicate that \f(CW\*(C`POSIX\*(C'\fR will not compile on a particular system. .ie n .IP """usequadmath""" 4 .el .IP \f(CWusequadmath\fR 4 .IX Item "usequadmath" From \fIusequadmath.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`USE_QUADMATH\*(C'\fR symbol, and indicates that the quadmath library _\|_float128 long doubles should be used when available. .ie n .IP """usereentrant""" 4 .el .IP \f(CWusereentrant\fR 4 .IX Item "usereentrant" From \fIusethreads.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`USE_REENTRANT_API\*(C'\fR symbol, which indicates that the thread code may try to use the various _r versions of library functions. This is only potentially meaningful if usethreads is set and is very experimental, it is not even prompted for. .ie n .IP """userelocatableinc""" 4 .el .IP \f(CWuserelocatableinc\fR 4 .IX Item "userelocatableinc" From \fIbin.U\fR: .Sp This variable is set to true to indicate that perl should relocate @\f(CW\*(C`INC\*(C'\fR entries at runtime based on the path to the perl binary. Any @\f(CW\*(C`INC\*(C'\fR paths starting \fI.../\fR are relocated relative to the directory containing the perl binary, and a logical cleanup of the path is then made around the join point (removing \fIdir/../\fR pairs) .ie n .IP """useshrplib""" 4 .el .IP \f(CWuseshrplib\fR 4 .IX Item "useshrplib" From \fIlibperl.U\fR: .Sp This variable is set to \f(CW\*(C`true\*(C'\fR if the user wishes to build a shared libperl, and \f(CW\*(C`false\*(C'\fR otherwise. .ie n .IP """usesitecustomize""" 4 .el .IP \f(CWusesitecustomize\fR 4 .IX Item "usesitecustomize" From \fId_sitecustomize.U\fR: .Sp This variable is set to true when the user requires a mechanism that allows the sysadmin to add entries to @\f(CW\*(C`INC\*(C'\fR at runtime. This variable being set, makes perl run \fR\f(CI$sitelib\fR\fI/sitecustomize.pl\fR at startup. .ie n .IP """usesocks""" 4 .el .IP \f(CWusesocks\fR 4 .IX Item "usesocks" From \fIusesocks.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`USE_SOCKS\*(C'\fR symbol, and indicates that Perl should be built to use \f(CW\*(C`SOCKS\*(C'\fR. .ie n .IP """usethreads""" 4 .el .IP \f(CWusethreads\fR 4 .IX Item "usethreads" From \fIusethreads.U\fR: .Sp This variable conditionally defines the \f(CW\*(C`USE_THREADS\*(C'\fR symbol, and indicates that Perl should be built to use threads. .ie n .IP """usevendorprefix""" 4 .el .IP \f(CWusevendorprefix\fR 4 .IX Item "usevendorprefix" From \fIvendorprefix.U\fR: .Sp This variable tells whether the vendorprefix and consequently other vendor* paths are in use. .ie n .IP """useversionedarchname""" 4 .el .IP \f(CWuseversionedarchname\fR 4 .IX Item "useversionedarchname" From \fIarchname.U\fR: .Sp This variable indicates whether to include the \f(CW$api_versionstring\fR as a component of the \f(CW$archname\fR. .ie n .IP """usevfork""" 4 .el .IP \f(CWusevfork\fR 4 .IX Item "usevfork" From \fId_vfork.U\fR: .Sp This variable is set to true when the user accepts to use vfork. It is set to false when no vfork is available or when the user explicitly requests not to use vfork. .ie n .IP """usrinc""" 4 .el .IP \f(CWusrinc\fR 4 .IX Item "usrinc" From \fIusrinc.U\fR: .Sp This variable holds the path of the include files, which is usually \fI/usr/include\fR. It is mainly used by other Configure units. .ie n .IP """uuname""" 4 .el .IP \f(CWuuname\fR 4 .IX Item "uuname" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """uvXUformat""" 4 .el .IP \f(CWuvXUformat\fR 4 .IX Item "uvXUformat" From \fIperlxvf.U\fR: .Sp This variable contains the format string used for printing a Perl \f(CW\*(C`UV\*(C'\fR as an unsigned hexadecimal integer in uppercase \f(CW\*(C`ABCDEF\*(C'\fR. .ie n .IP """uvoformat""" 4 .el .IP \f(CWuvoformat\fR 4 .IX Item "uvoformat" From \fIperlxvf.U\fR: .Sp This variable contains the format string used for printing a Perl \f(CW\*(C`UV\*(C'\fR as an unsigned octal integer. .ie n .IP """uvsize""" 4 .el .IP \f(CWuvsize\fR 4 .IX Item "uvsize" From \fIperlxv.U\fR: .Sp This variable is the size of a \f(CW\*(C`UV\*(C'\fR in bytes. .ie n .IP """uvtype""" 4 .el .IP \f(CWuvtype\fR 4 .IX Item "uvtype" From \fIperlxv.U\fR: .Sp This variable contains the C type used for Perl's \f(CW\*(C`UV\*(C'\fR. .ie n .IP """uvuformat""" 4 .el .IP \f(CWuvuformat\fR 4 .IX Item "uvuformat" From \fIperlxvf.U\fR: .Sp This variable contains the format string used for printing a Perl \f(CW\*(C`UV\*(C'\fR as an unsigned decimal integer. .ie n .IP """uvxformat""" 4 .el .IP \f(CWuvxformat\fR 4 .IX Item "uvxformat" From \fIperlxvf.U\fR: .Sp This variable contains the format string used for printing a Perl \f(CW\*(C`UV\*(C'\fR as an unsigned hexadecimal integer in lowercase abcdef. .SS v .IX Subsection "v" .ie n .IP """vendorarch""" 4 .el .IP \f(CWvendorarch\fR 4 .IX Item "vendorarch" From \fIvendorarch.U\fR: .Sp This variable contains the value of the \f(CW\*(C`PERL_VENDORARCH\*(C'\fR symbol. It may have a \fI~\fR on the front. The standard distribution will put nothing in this directory. Vendors who distribute perl may wish to place their own architecture-dependent modules and extensions in this directory with MakeMaker \fIMakefile.PL\fR \f(CW\*(C`INSTALLDIRS\*(C'\fR=vendor or equivalent. See \f(CW\*(C`INSTALL\*(C'\fR for details. .ie n .IP """vendorarchexp""" 4 .el .IP \f(CWvendorarchexp\fR 4 .IX Item "vendorarchexp" From \fIvendorarch.U\fR: .Sp This variable is the \fI~name\fR expanded version of vendorarch, so that you may use it directly in Makefiles or shell scripts. .ie n .IP """vendorbin""" 4 .el .IP \f(CWvendorbin\fR 4 .IX Item "vendorbin" From \fIvendorbin.U\fR: .Sp This variable contains the eventual value of the \f(CW\*(C`VENDORBIN\*(C'\fR symbol. It may have a \fI~\fR on the front. The standard distribution will put nothing in this directory. Vendors who distribute perl may wish to place additional binaries in this directory with MakeMaker \fIMakefile.PL\fR \f(CW\*(C`INSTALLDIRS\*(C'\fR=vendor or equivalent. See \f(CW\*(C`INSTALL\*(C'\fR for details. .ie n .IP """vendorbinexp""" 4 .el .IP \f(CWvendorbinexp\fR 4 .IX Item "vendorbinexp" From \fIvendorbin.U\fR: .Sp This variable is the \fI~name\fR expanded version of vendorbin, so that you may use it directly in Makefiles or shell scripts. .ie n .IP """vendorhtml1dir""" 4 .el .IP \f(CWvendorhtml1dir\fR 4 .IX Item "vendorhtml1dir" From \fIvendorhtml1dir.U\fR: .Sp This variable contains the name of the directory for html pages. It may have a \fI~\fR on the front. The standard distribution will put nothing in this directory. Vendors who distribute perl may wish to place their own html pages in this directory with MakeMaker \fIMakefile.PL\fR \f(CW\*(C`INSTALLDIRS\*(C'\fR=vendor or equivalent. See \f(CW\*(C`INSTALL\*(C'\fR for details. .ie n .IP """vendorhtml1direxp""" 4 .el .IP \f(CWvendorhtml1direxp\fR 4 .IX Item "vendorhtml1direxp" From \fIvendorhtml1dir.U\fR: .Sp This variable is the \fI~name\fR expanded version of vendorhtml1dir, so that you may use it directly in Makefiles or shell scripts. .ie n .IP """vendorhtml3dir""" 4 .el .IP \f(CWvendorhtml3dir\fR 4 .IX Item "vendorhtml3dir" From \fIvendorhtml3dir.U\fR: .Sp This variable contains the name of the directory for html library pages. It may have a \fI~\fR on the front. The standard distribution will put nothing in this directory. Vendors who distribute perl may wish to place their own html pages for modules and extensions in this directory with MakeMaker \fIMakefile.PL\fR \f(CW\*(C`INSTALLDIRS\*(C'\fR=vendor or equivalent. See \f(CW\*(C`INSTALL\*(C'\fR for details. .ie n .IP """vendorhtml3direxp""" 4 .el .IP \f(CWvendorhtml3direxp\fR 4 .IX Item "vendorhtml3direxp" From \fIvendorhtml3dir.U\fR: .Sp This variable is the \fI~name\fR expanded version of vendorhtml3dir, so that you may use it directly in Makefiles or shell scripts. .ie n .IP """vendorlib""" 4 .el .IP \f(CWvendorlib\fR 4 .IX Item "vendorlib" From \fIvendorlib.U\fR: .Sp This variable contains the eventual value of the \f(CW\*(C`VENDORLIB\*(C'\fR symbol, which is the name of the private library for this package. The standard distribution will put nothing in this directory. Vendors who distribute perl may wish to place their own modules in this directory with MakeMaker \fIMakefile.PL\fR \f(CW\*(C`INSTALLDIRS\*(C'\fR=vendor or equivalent. See \f(CW\*(C`INSTALL\*(C'\fR for details. .ie n .IP """vendorlib_stem""" 4 .el .IP \f(CWvendorlib_stem\fR 4 .IX Item "vendorlib_stem" From \fIvendorlib.U\fR: .Sp This variable is \f(CW$vendorlibexp\fR with any trailing version-specific component removed. The elements in inc_version_list (\fIinc_version_list.U\fR) can be tacked onto this variable to generate a list of directories to search. .ie n .IP """vendorlibexp""" 4 .el .IP \f(CWvendorlibexp\fR 4 .IX Item "vendorlibexp" From \fIvendorlib.U\fR: .Sp This variable is the \fI~name\fR expanded version of vendorlib, so that you may use it directly in Makefiles or shell scripts. .ie n .IP """vendorman1dir""" 4 .el .IP \f(CWvendorman1dir\fR 4 .IX Item "vendorman1dir" From \fIvendorman1dir.U\fR: .Sp This variable contains the name of the directory for man1 pages. It may have a \fI~\fR on the front. The standard distribution will put nothing in this directory. Vendors who distribute perl may wish to place their own man1 pages in this directory with MakeMaker \fIMakefile.PL\fR \f(CW\*(C`INSTALLDIRS\*(C'\fR=vendor or equivalent. See \f(CW\*(C`INSTALL\*(C'\fR for details. .ie n .IP """vendorman1direxp""" 4 .el .IP \f(CWvendorman1direxp\fR 4 .IX Item "vendorman1direxp" From \fIvendorman1dir.U\fR: .Sp This variable is the \fI~name\fR expanded version of vendorman1dir, so that you may use it directly in Makefiles or shell scripts. .ie n .IP """vendorman3dir""" 4 .el .IP \f(CWvendorman3dir\fR 4 .IX Item "vendorman3dir" From \fIvendorman3dir.U\fR: .Sp This variable contains the name of the directory for man3 pages. It may have a \fI~\fR on the front. The standard distribution will put nothing in this directory. Vendors who distribute perl may wish to place their own man3 pages in this directory with MakeMaker \fIMakefile.PL\fR \f(CW\*(C`INSTALLDIRS\*(C'\fR=vendor or equivalent. See \f(CW\*(C`INSTALL\*(C'\fR for details. .ie n .IP """vendorman3direxp""" 4 .el .IP \f(CWvendorman3direxp\fR 4 .IX Item "vendorman3direxp" From \fIvendorman3dir.U\fR: .Sp This variable is the \fI~name\fR expanded version of vendorman3dir, so that you may use it directly in Makefiles or shell scripts. .ie n .IP """vendorprefix""" 4 .el .IP \f(CWvendorprefix\fR 4 .IX Item "vendorprefix" From \fIvendorprefix.U\fR: .Sp This variable holds the full absolute path of the directory below which the vendor will install add-on packages. See \f(CW\*(C`INSTALL\*(C'\fR for usage and examples. .ie n .IP """vendorprefixexp""" 4 .el .IP \f(CWvendorprefixexp\fR 4 .IX Item "vendorprefixexp" From \fIvendorprefix.U\fR: .Sp This variable holds the full absolute path of the directory below which the vendor will install add-on packages. Derived from vendorprefix. .ie n .IP """vendorscript""" 4 .el .IP \f(CWvendorscript\fR 4 .IX Item "vendorscript" From \fIvendorscript.U\fR: .Sp This variable contains the eventual value of the \f(CW\*(C`VENDORSCRIPT\*(C'\fR symbol. It may have a \fI~\fR on the front. The standard distribution will put nothing in this directory. Vendors who distribute perl may wish to place additional executable scripts in this directory with MakeMaker \fIMakefile.PL\fR \f(CW\*(C`INSTALLDIRS\*(C'\fR=vendor or equivalent. See \f(CW\*(C`INSTALL\*(C'\fR for details. .ie n .IP """vendorscriptexp""" 4 .el .IP \f(CWvendorscriptexp\fR 4 .IX Item "vendorscriptexp" From \fIvendorscript.U\fR: .Sp This variable is the \fI~name\fR expanded version of vendorscript, so that you may use it directly in Makefiles or shell scripts. .ie n .IP """version""" 4 .el .IP \f(CWversion\fR 4 .IX Item "version" From \fIpatchlevel.U\fR: .Sp The full version number of this package, such as 5.6.1 (or 5_6_1). This combines revision, patchlevel, and subversion to get the full version number, including any possible subversions. This is suitable for use as a directory name, and hence is filesystem dependent. .ie n .IP """version_patchlevel_string""" 4 .el .IP \f(CWversion_patchlevel_string\fR 4 .IX Item "version_patchlevel_string" From \fIpatchlevel.U\fR: .Sp This is a string combining version, subversion and perl_patchlevel (if perl_patchlevel is non-zero). It is typically something like \&'version 7 subversion 1' or \&'version 7 subversion 1 patchlevel 11224' It is computed here to avoid duplication of code in \fImyconfig.SH\fR and \fIlib/Config.pm\fR. .ie n .IP """versiononly""" 4 .el .IP \f(CWversiononly\fR 4 .IX Item "versiononly" From \fIversiononly.U\fR: .Sp If set, this symbol indicates that only the version-specific components of a perl installation should be installed. This may be useful for making a test installation of a new version without disturbing the existing installation. Setting versiononly is equivalent to setting installperl's \-v option. In particular, the non-versioned scripts and programs such as a2p, c2ph, h2xs, pod2*, and perldoc are not installed (see \f(CW\*(C`INSTALL\*(C'\fR for a more complete list). Nor are the man pages installed. Usually, this is undef. .ie n .IP """vi""" 4 .el .IP \f(CWvi\fR 4 .IX Item "vi" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .SS x .IX Subsection "x" .ie n .IP """xlibpth""" 4 .el .IP \f(CWxlibpth\fR 4 .IX Item "xlibpth" From \fIlibpth.U\fR: .Sp This variable holds extra path (space-separated) used to find libraries on this platform, for example \f(CW\*(C`CPU\*(C'\fR\-specific libraries (on multi\-\f(CW\*(C`CPU\*(C'\fR platforms) may be listed here. .ie n .IP """xlocale_needed""" 4 .el .IP \f(CWxlocale_needed\fR 4 .IX Item "xlocale_needed" From \fId_newlocale.U\fR: .Sp This symbol, if defined, indicates that the C program should include to get \fBnewlocale()\fR and its friends. .SS y .IX Subsection "y" .ie n .IP """yacc""" 4 .el .IP \f(CWyacc\fR 4 .IX Item "yacc" From \fIyacc.U\fR: .Sp This variable holds the name of the compiler compiler we want to use in the Makefile. It can be yacc, byacc, or bison \-y. .ie n .IP """yaccflags""" 4 .el .IP \f(CWyaccflags\fR 4 .IX Item "yaccflags" From \fIyacc.U\fR: .Sp This variable contains any additional yacc flags desired by the user. It is up to the Makefile to use this. .SS z .IX Subsection "z" .ie n .IP """zcat""" 4 .el .IP \f(CWzcat\fR 4 .IX Item "zcat" From \fILoc.U\fR: .Sp This variable is defined but not used by Configure. The value is the empty string and is not useful. .ie n .IP """zip""" 4 .el .IP \f(CWzip\fR 4 .IX Item "zip" From \fILoc.U\fR: .Sp This variable is used internally by Configure to determine the full pathname (if any) of the zip program. After Configure runs, the value is reset to a plain \f(CW\*(C`zip\*(C'\fR and is not useful. .SH "GIT DATA" .IX Header "GIT DATA" Information on the git commit from which the current perl binary was compiled can be found in the variable \f(CW$Config::Git_Data\fR. The variable is a structured string that looks something like this: .PP .Vb 6 \& git_commit_id=\*(Aqea0c2dbd5f5ac6845ecc7ec6696415bf8e27bd52\*(Aq \& git_describe=\*(AqGitLive\-blead\-1076\-gea0c2db\*(Aq \& git_branch=\*(Aqsmartmatch\*(Aq \& git_uncommitted_changes=\*(Aq\*(Aq \& git_commit_id_title=\*(AqCommit id:\*(Aq \& git_commit_date=\*(Aq2009\-05\-09 17:47:31 +0200\*(Aq .Ve .PP Its format is not guaranteed not to change over time. .SH NOTE .IX Header "NOTE" This module contains a good example of how to use tie to implement a cache and an example of how to make a tied variable readonly to those outside of it.