Tcl Source Code

Check-in [dcbf22ad99]
Login

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

Overview
Comment:proposed fix for Bug 3598300
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | bug-3598300
Files: files | file ages | folders
SHA1: dcbf22ad9974d6071aa6cbee4551e4816ffa5c88
User & Date: jan.nijtmans 2012-12-26 10:07:54
Context
2013-01-14
19:56
merge trunk remove some EXTERN and CONST usages in tclUnixPort.h Closed-Leaf check-in: d05def2132 user: jan.nijtmans tags: bug-3598300
2012-12-26
10:07
proposed fix for Bug 3598300 check-in: dcbf22ad99 user: jan.nijtmans tags: bug-3598300
09:55
eliminate dependancy of compat/*.h on tcl.h check-in: 5e21e8284c user: jan.nijtmans tags: core-8-5-branch
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to generic/tclPort.h.

15
16
17
18
19
20
21
22
23
24
25
26

27
28
29
30
31
32
33
#define _TCLPORT

#ifdef HAVE_TCL_CONFIG_H
#include "tclConfig.h"
#endif
#if defined(_WIN32)
#   include "tclWinPort.h"
#endif
#include "tcl.h"
#if !defined(_WIN32)
#   include "tclUnixPort.h"
#endif


#if !defined(LLONG_MIN)
#   ifdef TCL_WIDE_INT_IS_LONG
#      define LLONG_MIN LONG_MIN
#   else
#      ifdef LLONG_BIT
#         define LLONG_MIN ((Tcl_WideInt)(Tcl_LongAsWide(1)<<(LLONG_BIT-1)))







|
<
<


>







15
16
17
18
19
20
21
22


23
24
25
26
27
28
29
30
31
32
#define _TCLPORT

#ifdef HAVE_TCL_CONFIG_H
#include "tclConfig.h"
#endif
#if defined(_WIN32)
#   include "tclWinPort.h"
#else


#   include "tclUnixPort.h"
#endif
#include "tcl.h"

#if !defined(LLONG_MIN)
#   ifdef TCL_WIDE_INT_IS_LONG
#      define LLONG_MIN LONG_MIN
#   else
#      ifdef LLONG_BIT
#         define LLONG_MIN ((Tcl_WideInt)(Tcl_LongAsWide(1)<<(LLONG_BIT-1)))