diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-05-14 19:16:53 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-05-14 19:16:53 (GMT) |
| commit | 4e12ee1bc4fe5d4c49f614f7e18c6df1c8ea0e40 (patch) | |
| tree | 3514373d9467b7629ce70a7ee7cc00f8857c6bfb | |
| parent | 49a9e593112024abc7aa2ae142e50b1d37b39b43 (diff) | |
| parent | 7672af7212bf3921fe55e99fe298e720d2d5b8d9 (diff) | |
| download | tcl-4e12ee1bc4fe5d4c49f614f7e18c6df1c8ea0e40.zip tcl-4e12ee1bc4fe5d4c49f614f7e18c6df1c8ea0e40.tar.gz tcl-4e12ee1bc4fe5d4c49f614f7e18c6df1c8ea0e40.tar.bz2 | |
merge 8.6
| -rw-r--r-- | generic/tclIntPlatDecls.h | 5 | ||||
| -rw-r--r-- | unix/tclUnixFCmd.c | 2 | ||||
| -rw-r--r-- | win/tclWinPort.h | 3 |
3 files changed, 4 insertions, 6 deletions
diff --git a/generic/tclIntPlatDecls.h b/generic/tclIntPlatDecls.h index e1fb263..51d2f65 100644 --- a/generic/tclIntPlatDecls.h +++ b/generic/tclIntPlatDecls.h @@ -13,11 +13,6 @@ #ifndef _TCLINTPLATDECLS #define _TCLINTPLATDECLS -#ifdef _WIN32 -# define Tcl_DirEntry void -# define TclDIR void -#endif - #undef TCL_STORAGE_CLASS #ifdef BUILD_tcl # define TCL_STORAGE_CLASS DLLEXPORT diff --git a/unix/tclUnixFCmd.c b/unix/tclUnixFCmd.c index b6b3db2..88b9d1c 100644 --- a/unix/tclUnixFCmd.c +++ b/unix/tclUnixFCmd.c @@ -965,7 +965,7 @@ TraverseUnixTree( #ifndef HAVE_FTS int numProcessed = 0; Tcl_DirEntry *dirEntPtr; - Tcl_Dir *dirPtr; + TclDIR *dirPtr; #else const char *paths[2] = {NULL, NULL}; FTS *fts = NULL; diff --git a/win/tclWinPort.h b/win/tclWinPort.h index 41201c7..21344ec 100644 --- a/win/tclWinPort.h +++ b/win/tclWinPort.h @@ -568,4 +568,7 @@ typedef DWORD_PTR * PDWORD_PTR; # define LABEL_SECURITY_INFORMATION (0x00000010L) #endif +#define Tcl_DirEntry void +#define TclDIR void + #endif /* _TCLWINPORT */ |
