diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-06-29 10:26:04 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-06-29 10:26:04 (GMT) |
commit | f5a587a8d6e8dba92e49c48569eb5d1ff1a3a641 (patch) | |
tree | 8c35b970f1262650bf6458170c7b035b641b6c4b /unix/tclConfig.h.in | |
parent | 928ceff7c45961fe5ac638d56e77395a565d4f0f (diff) | |
parent | 1aeadf38fa5a0c61196589e1b2f4192200b41d49 (diff) | |
download | tcl-f5a587a8d6e8dba92e49c48569eb5d1ff1a3a641.zip tcl-f5a587a8d6e8dba92e49c48569eb5d1ff1a3a641.tar.gz tcl-f5a587a8d6e8dba92e49c48569eb5d1ff1a3a641.tar.bz2 |
Merge 8.6: Re-generate unix/tclConfig.h.in
Diffstat (limited to 'unix/tclConfig.h.in')
-rw-r--r-- | unix/tclConfig.h.in | 32 |
1 files changed, 26 insertions, 6 deletions
diff --git a/unix/tclConfig.h.in b/unix/tclConfig.h.in index fb29a32..1328d51 100644 --- a/unix/tclConfig.h.in +++ b/unix/tclConfig.h.in @@ -4,6 +4,9 @@ #ifndef _TCLCONFIG #define _TCLCONFIG +/* Define if building universal (internal helper macro) */ +#undef AC_APPLE_UNIVERSAL_BUILD + /* Is gettimeofday() actually declared in <sys/time.h>? */ #undef GETTOD_NOT_DECLARED @@ -232,10 +235,10 @@ /* Is 'struct stat64' in <sys/stat.h>? */ #undef HAVE_STRUCT_STAT64 -/* Define to 1 if `st_blksize' is member of `struct stat'. */ +/* Define to 1 if `st_blksize' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_BLKSIZE -/* Define to 1 if `st_blocks' is member of `struct stat'. */ +/* Define to 1 if `st_blocks' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_BLOCKS /* Define to 1 if you have the <sys/epoll.h> header file. */ @@ -307,6 +310,9 @@ /* No Compiler support for module scope symbols */ #undef MODULE_SCOPE +/* Default libtommath precision. */ +#undef MP_PREC + /* Is no debugging enabled? */ #undef NDEBUG @@ -382,6 +388,9 @@ /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME +/* Define to the home page for this package. */ +#undef PACKAGE_URL + /* Define to the version of this package. */ #undef PACKAGE_VERSION @@ -433,6 +442,9 @@ /* What type should be used to define wide integers? */ #undef TCL_WIDE_INT_TYPE +/* Tcl with external libtommath */ +#undef TCL_WITH_EXTERNAL_TOMMATH + /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */ #undef TIME_WITH_SYS_TIME @@ -451,9 +463,17 @@ /* Should we use vfork() instead of fork()? */ #undef USE_VFORK -/* Define to 1 if your processor stores words with the most significant byte - first (like Motorola and SPARC, unlike Intel and VAX). */ -#undef WORDS_BIGENDIAN +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +#if defined AC_APPLE_UNIVERSAL_BUILD +# if defined __BIG_ENDIAN__ +# define WORDS_BIGENDIAN 1 +# endif +#else +# ifndef WORDS_BIGENDIAN +# undef WORDS_BIGENDIAN +# endif +#endif /* Are we building with zipfs enabled? */ #undef ZIPFS_BUILD @@ -511,7 +531,7 @@ /* Define to `int' if <sys/types.h> does not define. */ #undef pid_t -/* Define to `unsigned' if <sys/types.h> does not define. */ +/* Define to `unsigned int' if <sys/types.h> does not define. */ #undef size_t /* Define as int if socklen_t is not available */ |