This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Carp: paranoid sub lookup
[perl5.git] / uconfig.h
index c379902..0af7286 100644 (file)
--- a/uconfig.h
+++ b/uconfig.h
  *     This symbol, if defined, indicates that the strtol routine is available
  *     to provide better numeric string conversion than atoi() and friends.
  */
-/*#define HAS_STRTOL   / **/
+#define HAS_STRTOL     /**/
 
 /* HAS_STRXFRM:
  *     This symbol, if defined, indicates that the strxfrm() routine is
 /* MEM_ALIGNBYTES:
  *     This symbol contains 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.
+ *     4 and 8. The default is eight, for safety.  For cross-compiling
+ *     or multiarch support, Configure will set a minimum of 8.
  */
-#if defined(USE_CROSS_COMPILE) || defined(MULTIARCH)
-#  define MEM_ALIGNBYTES 8
-#else
 #define MEM_ALIGNBYTES 4
-#endif
 
 /* ARCHLIB:
  *     This variable, if defined, holds the name of the directory in
  *     This symbol contains the ~name expanded version of ARCHLIB, to be used
  *     in programs that are not prepared to deal with ~ expansion at run-time.
  */
-/*#define ARCHLIB "/usr/local/lib/perl5/5.15/unknown"          / **/
-/*#define ARCHLIB_EXP "/usr/local/lib/perl5/5.15/unknown"              / **/
+/*#define ARCHLIB "/usr/local/lib/perl5/5.19/unknown"          / **/
+/*#define ARCHLIB_EXP "/usr/local/lib/perl5/5.19/unknown"              / **/
 
 /* ARCHNAME:
  *     This symbol holds a string representing the architecture name.
  *     This symbol holds the hexadecimal constant defined in byteorder,
  *     in a UV, i.e. 0x1234 or 0x4321 or 0x12345678, etc...
  *     If the compiler supports cross-compiling or multiple-architecture
- *     binaries (eg. on NeXT systems), use compiler-defined macros to
+ *     binaries (e.g. on NeXT systems), use compiler-defined macros to
  *     determine the byte order.
  *     On NeXT 3.2 (and greater), you can build "Fat" Multiple Architecture
  *     Binaries (MAB) on either big endian or little endian machines.
  *     structure has a member called sa_len, indicating the length of
  *     the structure.
  */
+/* HAS_SOCKADDR_IN6:
+ *     This symbol, if defined, indicates the availability of
+ *     struct sockaddr_in6;
+ */
 /* HAS_SIN6_SCOPE_ID:
  *     This symbol, if defined, indicates that the struct sockaddr_in6
  *     structure has a member called sin6_scope_id.
  */
+/* HAS_IP_MREQ:
+ *     This symbol, if defined, indicates the availability of
+ *     struct ip_mreq;
+ */
+/* HAS_IP_MREQ_SOURCE:
+ *     This symbol, if defined, indicates the availability of
+ *     struct ip_mreq_source;
+ */
+/* HAS_IPV6_MREQ:
+ *     This symbol, if defined, indicates the availability of
+ *     struct ipv6_mreq;
+ */
+/* HAS_IPV6_MREQ_SOURCE:
+ *     This symbol, if defined, indicates the availability of
+ *     struct ipv6_mreq_source;
+ */
 /*#define      HAS_SOCKET              / **/
 /*#define      HAS_SOCKETPAIR  / **/
 /*#define      HAS_SOCKADDR_SA_LEN     / **/
 /*#define      HAS_MSG_PEEK    / **/
 /*#define      HAS_MSG_PROXY   / **/
 /*#define      HAS_SCM_RIGHTS  / **/
+/*#define      HAS_SOCKADDR_IN6        / **/
 /*#define      HAS_SIN6_SCOPE_ID       / **/
+/*#define      HAS_IP_MREQ     / **/
+/*#define      HAS_IP_MREQ_SOURCE      / **/
+/*#define      HAS_IPV6_MREQ   / **/
+/*#define      HAS_IPV6_MREQ_SOURCE    / **/
 
 /* HAS_SRAND48_R:
  *     This symbol, if defined, indicates that the srand48_r routine
 #define DOUBLESIZE 8           /**/
 
 /* EBCDIC:
- *     This symbol, if defined, indicates that this system uses
+ *     This symbol, if defined, indicates that this system uses
  *     EBCDIC encoding.
  */
-/*#define      EBCDIC          / **/
-
-/* USE_KERN_PROC_PATHNAME:
- *     This symbol, if defined, indicates that we can use sysctl with
- *     KERN_PROC_PATHNAME to get a full path for the executable, and hence
- *     convert $^X to an absolute path.
- */
-/*#define USE_KERN_PROC_PATHNAME               / **/
-
-/* USE_NSGETEXECUTABLEPATH:
- *     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.
+/* BOOTSTRAP_CHARSET:
+ *     This symbol, if defined, indicates that this system needs
+ *     converting various files to the native character set before
+ *     bringing up perl on a system that has a non-ASCII character
+ *     set and no working perl.
  */
-/*#define USE_NSGETEXECUTABLEPATH              / **/
+/*#define      EBCDIC          / **/
+/*#define      BOOTSTRAP_CHARSET       / **/
 
 /* Fpos_t:
  *     This symbol holds the type used to declare file positions in libc.
 #define        Gid_t_f         "lu"            /**/
 
 /* Gid_t_sign:
- *     This symbol holds the signedess of a Gid_t.
+ *     This symbol holds the signedness of a Gid_t.
  *     1 for unsigned, -1 for signed.
  */
 #define Gid_t_sign     1               /* GID sign */
  *     This symbol contains the ~name expanded version of PRIVLIB, to be used
  *     in programs that are not prepared to deal with ~ expansion at run-time.
  */
-#define PRIVLIB "/usr/local/lib/perl5/5.15"            /**/
-#define PRIVLIB_EXP "/usr/local/lib/perl5/5.15"                /**/
+#define PRIVLIB "/usr/local/lib/perl5/5.19"            /**/
+#define PRIVLIB_EXP "/usr/local/lib/perl5/5.19"                /**/
 
 /* CAN_PROTOTYPE:
  *     If defined, this macro indicates that the C compiler can handle
  *     This symbol contains the ~name expanded version of SITEARCH, to be used
  *     in programs that are not prepared to deal with ~ expansion at run-time.
  */
-/*#define SITEARCH "/usr/local/lib/perl5/5.15/unknown"         / **/
-/*#define SITEARCH_EXP "/usr/local/lib/perl5/5.15/unknown"             / **/
+/*#define SITEARCH "/usr/local/lib/perl5/5.19/unknown"         / **/
+/*#define SITEARCH_EXP "/usr/local/lib/perl5/5.19/unknown"             / **/
 
 /* SITELIB:
  *     This symbol contains the name of the private library for this package.
  *     removed.  The elements in inc_version_list (inc_version_list.U) can
  *     be tacked onto this variable to generate a list of directories to search.
  */
-#define SITELIB "/usr/local/lib/perl5/5.15"            /**/
-#define SITELIB_EXP "/usr/local/lib/perl5/5.15"                /**/
+#define SITELIB "/usr/local/lib/perl5/5.19"            /**/
+#define SITELIB_EXP "/usr/local/lib/perl5/5.19"                /**/
 #define SITELIB_STEM "/usr/local/lib/perl5"            /**/
 
 /* Size_t_size:
 #define        Uid_t_f         "lu"            /**/
 
 /* Uid_t_sign:
- *     This symbol holds the signedess of a Uid_t.
+ *     This symbol holds the signedness of a Uid_t.
  *     1 for unsigned, -1 for signed.
  */
 #define Uid_t_sign     1               /* UID sign */
  */
 /*#define     HAS_INT64_T               / **/
 
+/* HAS_ISBLANK:
+ *     This manifest constant lets the C program know that isblank
+ *     is available.
+ */
+/*#define HAS_ISBLANK          / **/
+
 /* HAS_ISFINITE:
  *     This symbol, if defined, indicates that the isfinite routine is
  *     available to check whether a double is finite (non-infinity non-NaN).
  *     This variable contains the size of struct stat's st_ino in bytes.
  */
 /* ST_INO_SIGN:
- *     This symbol holds the signedess of struct stat's st_ino.
+ *     This symbol holds the signedness of struct stat's st_ino.
  *     1 for unsigned, -1 for signed.
  */
 #define ST_INO_SIGN 1  /* st_ino sign */
 /*#define      USE_FAST_STDIO          / **/
 #endif
 
+/* USE_KERN_PROC_PATHNAME:
+ *     This symbol, if defined, indicates that we can use sysctl with
+ *     KERN_PROC_PATHNAME to get a full path for the executable, and hence
+ *     convert $^X to an absolute path.
+ */
+/*#define USE_KERN_PROC_PATHNAME       / **/
+
 /* USE_LARGE_FILES:
  *     This symbol, if defined, indicates that large file support
  *     should be used when available.
 /*#define      MULTIPLICITY            / **/
 #endif
 
+/* USE_NSGETEXECUTABLEPATH:
+ *     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.
+ */
+/*#define USE_NSGETEXECUTABLEPATH      / **/
+
 /* USE_PERLIO:
  *     This symbol, if defined, indicates that the PerlIO abstraction should
  *     be used throughout.  If not defined, stdio should be
 #endif
 
 /* Generated from:
- * 5b5dacbb00f53ae9b440c79cf6d5c8bbf80a7adfa1db3f3814aa77dc6f461fa7 config_h.SH
- * b5e74633486412bbc4d2a1c3847f3e85b10a86e96fb5d1efb7b8bc885956d746 uconfig.sh
+ * 2c9dc3f21d37b1665f6a59dfc6d79e6cb08bdf36a9c3e427d11d6b9ddffe2439 config_h.SH
+ * e0e303f4b6a586f3c94ed5c08078b3b837c1cc5683e61b0dd6c6b84cd8c44774 uconfig.sh
  * ex: set ro: */