summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-12-13 16:45:47 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-12-13 16:45:47 (GMT)
commitc899e46a97660609d9f6d36314e570809dad14e6 (patch)
treeb12f3a81a6a36d67d6106ea83b80cfa70c88bd98
parentb15870ed70b213770dbd8410fdfe71d2d93671eb (diff)
parent4c0c6d80cd609403ceaf4f9c23984a42ab214d1d (diff)
downloadtcl-c899e46a97660609d9f6d36314e570809dad14e6.zip
tcl-c899e46a97660609d9f6d36314e570809dad14e6.tar.gz
tcl-c899e46a97660609d9f6d36314e570809dad14e6.tar.bz2
Merge 8.6
-rw-r--r--unix/tclConfig.h.in26
-rw-r--r--win/rules.vc4
-rw-r--r--win/tclWinFile.c2
-rw-r--r--win/tclWinInit.c4
4 files changed, 11 insertions, 25 deletions
diff --git a/unix/tclConfig.h.in b/unix/tclConfig.h.in
index 2aa3bb8..ce9c8d0 100644
--- a/unix/tclConfig.h.in
+++ b/unix/tclConfig.h.in
@@ -4,9 +4,6 @@
#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
@@ -222,10 +219,10 @@
/* Is 'struct stat64' in <sys/stat.h>? */
#undef HAVE_STRUCT_STAT64
-/* Define to 1 if `st_blksize' is a member of `struct stat'. */
+/* Define to 1 if `st_blksize' is member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_BLKSIZE
-/* Define to 1 if `st_blocks' is a member of `struct stat'. */
+/* Define to 1 if `st_blocks' is member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_BLOCKS
/* Define to 1 if you have the <sys/filio.h> header file. */
@@ -366,9 +363,6 @@
/* 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
@@ -447,17 +441,9 @@
/* Should we use vfork() instead of fork()? */
#undef USE_VFORK
-/* 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
+/* 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
/* Are Darwin SUSv3 extensions available? */
#undef _DARWIN_C_SOURCE
@@ -512,7 +498,7 @@
/* Define to `int' if <sys/types.h> does not define. */
#undef pid_t
-/* Define to `unsigned int' if <sys/types.h> does not define. */
+/* Define to `unsigned' if <sys/types.h> does not define. */
#undef size_t
/* Define as int if socklen_t is not available */
diff --git a/win/rules.vc b/win/rules.vc
index a076edc..d966066 100644
--- a/win/rules.vc
+++ b/win/rules.vc
@@ -1808,8 +1808,8 @@ $<
TCLNMAKECONFIG = "$(_TCLDIR)\lib\nmake\tcl.nmake"
!endif
!else # !$(TCLINSTALL) - building against Tcl source
-!if exist("$(OUT_DIR)\tcl.nmake")
-TCLNMAKECONFIG = "$(_TCLDIR)\win\$(BUILDDIRTOP)\tcl.nmake""
+!if exist("$(_TCLDIR)\win\$(BUILDDIRTOP)\tcl.nmake")
+TCLNMAKECONFIG = "$(_TCLDIR)\win\$(BUILDDIRTOP)\tcl.nmake"
!endif
!endif # TCLINSTALL
diff --git a/win/tclWinFile.c b/win/tclWinFile.c
index b733ab5..6aacde6 100644
--- a/win/tclWinFile.c
+++ b/win/tclWinFile.c
@@ -270,7 +270,7 @@ WinLink(
*/
Tcl_SetErrno(ENOTDIR);
} else if (tclWinProcs.createSymbolicLink(linkSourcePath, linkTargetPath,
- 0x2 /* SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE */)) {
+ 0x2 /* SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE */)) {
/*
* Success!
*/
diff --git a/win/tclWinInit.c b/win/tclWinInit.c
index d2f9b2f..409c87f 100644
--- a/win/tclWinInit.c
+++ b/win/tclWinInit.c
@@ -165,8 +165,8 @@ TclpInitPlatform(void)
(BOOL (WINAPI *)(HANDLE))(void *)GetProcAddress(handle,
"CancelSynchronousIo");
tclWinProcs.createSymbolicLink =
- (BOOLEAN (WINAPI *)(LPCWSTR, LPCWSTR, DWORD))(void *)GetProcAddress(handle,
- "CreateSymbolicLinkW");
+ (BOOLEAN (WINAPI *)(LPCWSTR, LPCWSTR, DWORD))(void *)GetProcAddress(handle,
+ "CreateSymbolicLinkW");
}
/*