Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Merge 8.7 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
4b4d286e3e20889f2f273fc4effa3284 |
User & Date: | jan.nijtmans 2019-03-05 20:16:32.962 |
Context
2019-03-06
| ||
11:32 |
V1.3. PLATFORM_IDENTIFY, MULTIPLATFORM_INSTALL macro, optionally copy PDBs.
The PLATFORM_IDENTIFY m... check-in: 4c75c9ddc5 user: apnadkarni tags: trunk | |
2019-03-05
| ||
20:16 | Merge 8.7 check-in: 4b4d286e3e user: jan.nijtmans tags: trunk | |
19:58 | Remove double macro's. Resolve quotes in travis configuration: it doesn't work check-in: 40d18fda3e user: jan.nijtmans tags: core-8-branch | |
19:46 | integrate/close sebres-trunk-timerate branch (no functional changes, simple merge-point) check-in: 1cbf574661 user: sebres tags: trunk | |
Changes
Changes to .travis.yml.
︙ | ︙ | |||
76 77 78 79 80 81 82 | apt: sources: - ubuntu-toolchain-r-test packages: - g++-7 env: - BUILD_DIR=unix | | | 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | apt: sources: - ubuntu-toolchain-r-test packages: - g++-7 env: - BUILD_DIR=unix - CFGOPT=CFLAGS=-DTCL_UTF_MAX=6 - os: osx osx_image: xcode8 env: - BUILD_DIR=unix - os: osx osx_image: xcode8 env: |
︙ | ︙ |
Changes to generic/tclPort.h.
︙ | ︙ | |||
21 22 23 24 25 26 27 | # include "tclWinPort.h" #else # include "tclUnixPort.h" #endif #include "tcl.h" #define UWIDE_MAX ((Tcl_WideUInt)-1) | < < < | 21 22 23 24 25 26 27 28 29 30 31 | # include "tclWinPort.h" #else # include "tclUnixPort.h" #endif #include "tcl.h" #define UWIDE_MAX ((Tcl_WideUInt)-1) #define WIDE_MAX ((Tcl_WideInt)(UWIDE_MAX >> 1)) #define WIDE_MIN ((Tcl_WideInt)((Tcl_WideUInt)WIDE_MAX+1)) #endif /* _TCLPORT */ |