diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-06-29 09:02:20 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-06-29 09:02:20 (GMT) |
commit | f4d077febd58ce5844e2c02dc514b031312d6ded (patch) | |
tree | 34e45eb684a88e8b153e82d911cd36429031952b /unix | |
parent | 22348afaaf212e5cfda871d1ecca4923d7fdde67 (diff) | |
download | tk-f4d077febd58ce5844e2c02dc514b031312d6ded.zip tk-f4d077febd58ce5844e2c02dc514b031312d6ded.tar.gz tk-f4d077febd58ce5844e2c02dc514b031312d6ded.tar.bz2 |
Fix "make dist". Re-generate tkConfig.h.in
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 4 | ||||
-rw-r--r-- | unix/tkConfig.h.in | 42 |
2 files changed, 24 insertions, 22 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 5bd9c34..38496f4 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -1584,10 +1584,10 @@ $(TOP_DIR)/manifest.uuid: printf "git." >$(TOP_DIR)/manifest.uuid git rev-parse HEAD >>$(TOP_DIR)/manifest.uuid -dist: $(UNIX_DIR)/configure $(UNIX_DIR)/tkConfig.h.in $(UNIX_DIR)/tk.pc.in $(MAC_OSX_DIR)/configure $(TOP_DIR)/doc/man.macros $(TOP_DIR)/manifest.uuid genstubs +dist: $(UNIX_DIR)/configure $(UNIX_DIR)/tkConfig.h.in $(UNIX_DIR)/tk.pc.in $(MAC_OSX_DIR)/configure $(TOP_DIR)/doc/man.macros $(TOP_DIR)/manifest.uuid rm -rf $(DISTDIR) $(INSTALL_DATA_DIR) $(DISTDIR)/unix - $(DIST_INSTALL_DATA) $$(TOP_DIR)/manifest.uuid $(DISTDIR) + $(DIST_INSTALL_DATA) $(TOP_DIR)/manifest.uuid $(DISTDIR) $(DIST_INSTALL_DATA) $(UNIX_DIR)/*.c $(UNIX_DIR)/*.h $(DISTDIR)/unix $(DIST_INSTALL_DATA) $(TOP_DIR)/license.terms $(UNIX_DIR)/Makefile.in $(DISTDIR)/unix $(DIST_INSTALL_DATA) $(UNIX_DIR)/configure.ac $(UNIX_DIR)/tk.spec \ diff --git a/unix/tkConfig.h.in b/unix/tkConfig.h.in index 6753fb5..d4150a0 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 + /* Define to 1 if you have the <AvailabilityMacros.h> header file. */ #undef HAVE_AVAILABILITYMACROS_H @@ -37,15 +40,12 @@ /* Define to 1 if you have the `open64' function. */ #undef HAVE_OPEN64 -/* Define to 1 if you have the `pthread_atfork' function. */ -#undef HAVE_PTHREAD_ATFORK - -/* Define to 1 if you have the `pthread_attr_setstacksize' function. */ -#undef HAVE_PTHREAD_ATTR_SETSTACKSIZE - /* Does struct password have a pw_gecos field? */ #undef HAVE_PW_GECOS +/* Do we have <stdbool.h>? */ +#undef HAVE_STDBOOL_H + /* Define to 1 if you have the <stdint.h> header file. */ #undef HAVE_STDINT_H @@ -112,9 +112,6 @@ /* Do we have fd_set? */ #undef NO_FD_SET -/* Do we have <stdlib.h>? */ -#undef NO_STDLIB_H - /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT @@ -127,6 +124,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 @@ -157,7 +157,7 @@ /* What is the default extension for shared libraries? */ #undef TCL_SHLIB_EXT -/* Are wide integers to be implemented with C 'long's? */ +/* Do 'long' and 'long long' have the same size (64-bit)? */ #undef TCL_WIDE_INT_IS_LONG /* What type should be used to define wide integers? */ @@ -172,12 +172,17 @@ /* Are TkAqua debug messages enabled? */ #undef TK_MAC_DEBUG -/* 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 @@ -200,9 +205,6 @@ /* Do we want the reentrant OS API? */ #undef _REENTRANT -/* Do we want the thread-safe OS API? */ -#undef _THREAD_SAFE - /* Do we want to use the XOPEN network library? */ #undef _XOPEN_SOURCE @@ -232,7 +234,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 to `int' if <sys/types.h> doesn't define. */ |