diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2020-11-20 15:09:17 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2020-11-20 15:09:17 (GMT) |
commit | 59e8254d87e875d999e5b6ed667f418abdb94169 (patch) | |
tree | 9a1bb8762f5a6c943e98410c35c555485797a4aa /unix | |
parent | 0afc15120b641d296506f932dddb14601558b95f (diff) | |
download | tk-59e8254d87e875d999e5b6ed667f418abdb94169.zip tk-59e8254d87e875d999e5b6ed667f418abdb94169.tar.gz tk-59e8254d87e875d999e5b6ed667f418abdb94169.tar.bz2 |
Advanced build; this one works and is full function
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tkConfig.h.in | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/unix/tkConfig.h.in b/unix/tkConfig.h.in index 918f9c2..eb1d61e 100644 --- a/unix/tkConfig.h.in +++ b/unix/tkConfig.h.in @@ -4,6 +4,9 @@ #ifndef _TKCONFIG #define _TKCONFIG +/* Define if building universal (internal helper macro) */ +#undef AC_APPLE_UNIVERSAL_BUILD + /* Is pthread_attr_get_np() declared in <pthread.h>? */ #undef ATTRGETNP_NOT_DECLARED @@ -19,6 +22,9 @@ /* Do we have access to Darwin CoreFoundation.framework? */ #undef HAVE_COREFOUNDATION +/* Is 'DIR64' in <sys/types.h>? */ +#undef HAVE_DIR64 + /* Do we have the intptr_t type? */ #undef HAVE_INTPTR_T @@ -145,6 +151,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 @@ -193,9 +202,17 @@ /* Do we want to use the threaded memory allocator? */ #undef USE_THREAD_ALLOC -/* 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 Darwin SUSv3 extensions available? */ #undef _DARWIN_C_SOURCE @@ -244,7 +261,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 /* Do we want to use the strtod() in compat? */ |