Tcl Source Code

Check-in [e54a8c811e]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Compatibility with older Visual Studio versions
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | core-8-5-branch
Files: files | file ages | folders
SHA1: e54a8c811ee3825f320728aec7d6b5d22075b5c5
User & Date: jan.nijtmans 2012-03-06 20:53:12
Context
2012-03-07
18:54
Merged from 8.4 branch -- http package. Fix Bug 3498327. Generate upper-case hexadecimal output for ... check-in: 157183e09d user: andreask tags: core-8-5-branch
2012-03-06
21:03
merge core-8-5-branch check-in: 1ba2001d30 user: jan.nijtmans tags: dgp-scan-element
20:54
Compatibility with older Visual Studio versions check-in: b9d820cfd6 user: jan.nijtmans tags: trunk
20:53
Compatibility with older Visual Studio versions check-in: e54a8c811e user: jan.nijtmans tags: core-8-5-branch
20:51
now with changelog entry check-in: 5f13e4eeda user: jan.nijtmans tags: core-8-4-branch
2012-03-05
20:39
eliminate the use of intptr_t check-in: 1622089a42 user: jan.nijtmans tags: core-8-5-branch
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to ChangeLog.





1
2
3
4
5
6
7




2012-03-04  Jan Nijtmans  <[email protected]>

	* generic/tclLoad.c: Patch from the cygwin folks
	* unix/tcl.m4:
	* unix/configure: (re-generated)

2012-02-29  Jan Nijtmans  <[email protected]>
>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
2012-03-06  Jan Nijtmans  <[email protected]>

	* win/tclWinPort.h: Compatibility with older Visual Studio versions.

2012-03-04  Jan Nijtmans  <[email protected]>

	* generic/tclLoad.c: Patch from the cygwin folks
	* unix/tcl.m4:
	* unix/configure: (re-generated)

2012-02-29  Jan Nijtmans  <[email protected]>

Changes to win/tclWinPort.h.

14
15
16
17
18
19
20






21
22
23
24
25
26
27
#ifndef _TCLWINPORT
#define _TCLWINPORT

#ifndef _WIN64
/* See [Bug 2935503]: file mtime sets wrong time */
#   define _USE_32BIT_TIME_T
#endif







#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#undef WIN32_LEAN_AND_MEAN

/*
 * Ask for the winsock function typedefs, also.







>
>
>
>
>
>







14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef _TCLWINPORT
#define _TCLWINPORT

#ifndef _WIN64
/* See [Bug 2935503]: file mtime sets wrong time */
#   define _USE_32BIT_TIME_T
#endif

/* Compatibility to older visual studio / windows platform SDK */
#if !defined(MAXULONG_PTR)
typedef DWORD DWORD_PTR;
typedef DWORD_PTR * PDWORD_PTR;
#endif

#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#undef WIN32_LEAN_AND_MEAN

/*
 * Ask for the winsock function typedefs, also.