This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update IO-Compress to CPAN version 2.093
[perl5.git] / Porting / Glossary
index ddcd7e5..16acb5e 100644 (file)
@@ -394,8 +394,8 @@ d__fwalk (d__fwalk.U):
        available to apply a function to all the file handles.
 
 d_accept4 (d_accept4.U):
-       This variable conditionally defines HAS_ACCEPT4
-       if accept4() is available to accept socket connections.
+       This variable conditionally defines HAS_ACCEPT4 if accept4() is
+       available to accept socket connections.
 
 d_access (d_access.U):
        This variable conditionally defines HAS_ACCESS if the access() system
@@ -584,11 +584,6 @@ d_cmsghdr_s (d_cmsghdr_s.U):
        This variable conditionally defines the HAS_STRUCT_CMSGHDR symbol,
        which indicates that the struct cmsghdr is supported.
 
-d_const (d_const.U):
-       This variable conditionally defines the HASCONST symbol, which
-       indicates to the C program that this C compiler knows about the
-       const type.
-
 d_copysign (d_copysign.U):
        This variable conditionally defines the HAS_COPYSIGN symbol, which
        indicates to the C program that the copysign() routine is available.
@@ -740,8 +735,8 @@ d_dup2 (d_dup2.U):
        available to duplicate file descriptors.
 
 d_dup3 (d_dup3.U):
-       This variable conditionally defines HAS_DUP3
-       if dup3() is available to duplicate file descriptors.
+       This variable conditionally defines HAS_DUP3 if dup3() is
+       available to duplicate file descriptors.
 
 d_duplocale (d_newlocale.U):
        This variable conditionally defines the HAS_DUPLOCALE symbol, which
@@ -1363,6 +1358,10 @@ d_grpasswd (i_grp.U):
        This variable conditionally defines GRPASSWD, which indicates
        that struct group in <grp.h> contains gr_passwd.
 
+d_has_C_UTF8 (d_setlocale.U):
+       This variable is set to either "true" or "false" depending on
+       whether the compilation system supports the C.UTF-8 locale.
+
 d_hasmntopt (d_hasmntopt.U):
        This variable conditionally defines the HAS_HASMNTOPT symbol, which
        indicates to the C program that the hasmntopt() routine is available
@@ -1715,6 +1714,11 @@ d_mkfifo (d_mkfifo.U):
        This variable conditionally defines the HAS_MKFIFO symbol, which
        indicates to the C program that the mkfifo() routine is available.
 
+d_mkostemp (d_mkostemp.U):
+       This variable conditionally defines HAS_MKOSTEMP if mkostemp() is
+       available to exclusively create and open a uniquely named (with a
+       suffix) temporary file.
+
 d_mkstemp (d_mkstemp.U):
        This variable conditionally defines the HAS_MKSTEMP symbol, which
        indicates to the C program that the mkstemp() routine is available
@@ -1928,8 +1932,9 @@ d_pipe (d_pipe.U):
        to create an inter-process channel.
 
 d_pipe2 (d_pipe2.U):
-       This variable conditionally defines HAS_PIPE2
-       if pipe2() is available to create inter-process pipes.
+       This variable conditionally defines the HAS_PIPE2 symbol, which
+       indicates to the C program that the pipe2() routine is available
+       to create an inter-process channel.
 
 d_poll (d_poll.U):
        This variable conditionally defines the HAS_POLL symbol, which
@@ -2279,6 +2284,10 @@ d_setlocale (d_setlocale.U):
        This variable conditionally defines HAS_SETLOCALE if setlocale() is
        available to handle locale-specific ctype implementations.
 
+d_setlocale_accepts_any_locale_name (d_setlocale.U):
+       This variable conditionally defines SETLOCALE_ACCEPTS_ANY_LOCALE_NAME
+       if setlocale() accepts any locale name.
+
 d_setlocale_r (d_setlocale_r.U):
        This variable conditionally defines the HAS_SETLOCALE_R symbol,
        which indicates to the C program that the setlocale_r()
@@ -2629,6 +2638,10 @@ d_strtod (d_strtod.U):
        indicates to the C program that the strtod() routine is available
        to provide better numeric string conversion than atof().
 
+d_strtod_l (d_strtod_l.U):
+       This variable conditionally defines the HAS_STRTOD_L symbol, which
+       indicates to the C program that the strtod_l() routine is available.
+
 d_strtol (d_strtol.U):
        This variable conditionally defines the HAS_STRTOL symbol, which
        indicates to the C program that the strtol() routine is available
@@ -2760,6 +2773,14 @@ d_tmpnam_r (d_tmpnam_r.U):
        which indicates to the C program that the tmpnam_r()
        routine is available.
 
+d_towlower (d_towlower.U):
+       This variable conditionally defines the HAS_TOWLOWER symbol, which
+       indicates to the C program that the towlower() routine is available.
+
+d_towupper (d_towupper.U):
+       This variable conditionally defines the HAS_TOWUPPER symbol, which
+       indicates to the C program that the towupper() routine is available.
+
 d_trunc (d_trunc.U):
        This variable conditionally defines the HAS_TRUNC symbol, which
        indicates to the C program that the trunc() routine is available
@@ -3791,6 +3812,10 @@ i_wchar (i_wchar.U):
        This variable conditionally defines the I_WCHAR symbol,
        that indicates whether a C program may include <wchar.h>.
 
+i_wctype (i_wctype.U):
+       This variable conditionally defines the I_WCTYPE symbol,
+       that indicates whether a C program may include <wctype.h>.
+
 i_xlocale (d_newlocale.U):
        This symbol, if defined, indicates to the C program that it should
        include <xlocale.h> to get uselocale() and its friends
@@ -4915,6 +4940,7 @@ shrpenv (libperl.U):
        or
        shrpenv=''
        See the main perl Makefile.SH for actual working usage.
+
        Alternatively, we might be able to use a command line option such
        as -R $archlibexp/CORE (Solaris) or -Wl,-rpath
        $archlibexp/CORE (Linux).
@@ -5531,6 +5557,12 @@ usekernprocpathname (usekernprocpathname.U):
        KERN_PROC_PATHNAME to get a full path for the executable, and hence
        convert $^X to an absolute path.
 
+uselanginfo (Extensions.U):
+       This variable holds either 'true' or 'false' 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.
+
 uselargefiles (uselfs.U):
        This variable conditionally defines the USE_LARGE_FILES symbol,
        and indicates that large file interfaces should be used when