summaryrefslogtreecommitdiffstats
path: root/generic/tcl.h
Commit message (Collapse)AuthorAgeFilesLines
* Backport [bae0d30c7f5047a4]. Don't suggest that TCL_UTF_MAX=1 might work any ↵jan.nijtmans2023-08-231-2/+1
| | | | more. See: [457523]
* Prevent Tcl 8.6 header-file to be usable for Tcl 9 compiles. (see [6f22c7a1fc])jan.nijtmans2023-08-011-1/+6
|
* Since TCL_MAJOR_VERSION is always "8", don't check for it. Add ↵jan.nijtmans2023-06-301-3/+3
| | | | C++-compatible typecasts.
* Fix [0cb3554903]: macOS 13 SDK deprecates sprintf(). But better not use it ↵jan.nijtmans2023-03-301-1/+1
| | | | on other platforms either.
* dev_t -> unsigned for Cygwin in tcl.h, so we don't need sys/types.h any ↵jan.nijtmans2022-12-051-3/+2
| | | | more. There's no gap in Tcl_StatBuf for 64-bit Cygwin
* Bump to 8.6.13 for releasedgp2022-06-061-2/+2
|
* Bump to 8.6.12 for releasejan.nijtmans2021-10-271-2/+2
|
* Fix build failure with --enable-symbols build on Windows: Some code makes ↵jan.nijtmans2021-10-121-3/+0
| | | | assumptions on Tcl_Time structure ...
* Better solution, in stead of ↵jan.nijtmans2021-10-111-0/+3
| | | | [https://core.tcl-lang.org/tk/info/6ffcea9b093deb5a|6ffcea9b]: Handle 64-bit (Cygwin64) Tcl_GetTime(), when loading tk86.dll
* Change a lot of url's (as far as possible) from http:// to https://jan.nijtmans2021-06-211-1/+1
|
* Fix [a73c79081e]: Doc fix in tcl.h, by not suggesting wchar_t any more for ↵jan.nijtmans2021-05-261-4/+2
|\ | | | | | | Tcl_UniChar.
| * Fix [a73c79081e]: Doc fix in tcl.h, by not suggesting wchar_t any more for ↵jan.nijtmans2021-05-261-4/+2
| | | | | | | | Tcl_UniChar.
* | Fix [8c025f8f0d]: Run-time error on tcl 8.6.11 32 bits (from cross-compile ↵jan.nijtmans2021-01-211-0/+9
|\ \ | |/ | | | | Centos6.9 64-bits)
| * Fix [8c025f8f0d]: Run-time error on tcl 8.6.11 32 bits (from cross-compile ↵jan.nijtmans2021-01-211-0/+9
| |\ | | | | | | | | | Centos6.9 64-bits)
| | * Possible fix (workaround) for [8c025f8f0d]: Run-time error on tcl 8.6.11 32 ↵jan.nijtmans2021-01-201-0/+9
| |/ |/| | | | | | | bits (from cross-compile Centos6.9 64-bits). Since autoconf-2.59 has limited support for cross-compilation, a better fix has to wait for Tcl 8.7 (which uses autoconf-2.70)
| * (cherry-pick): Fix [c975939973]: Usage of gnu_printf in latest mingw-w64. jan.nijtmans2020-10-221-1/+1
| | | | | | Change (internal, windows-only) TCL_I_MODIFIER to TCL_Z_MODIFIER, since that's how it's called in Tcl 8.7 and up
| * Tie together the TCL_UTF_MAX=4 and TCL_UTF_MAX=6 builds to mean the samedgp2020-04-201-1/+1
| | | | | | thing on the 8.5 branch -- use internal UCS-4 storage.
| * Make TCL_UTF_MAX=4 build test clean again.dgp2020-04-181-1/+1
| |
| * Fix [c574e50a3b30e76f]: CRASH: utf-2.[89] in 8.5 built with TCL_UTF_MAX=4jan.nijtmans2020-04-181-1/+1
| |
* | Fix mingw-w64 compiler warnings when using __USE_MINGW_ANSI_STDIO=1. Not ↵jan.nijtmans2021-01-071-162/+132
| | | | | | | | recommended, but it should work. See: [https://sourceforge.net/p/mingw-w64/wiki2/gnu%20printf/|gnu printf]
* | merge 8.6dgp2020-10-211-1/+1
|\ \
| * | Fix [c975939973]: Usage of gnu_printf in latest mingw-w64jan.nijtmans2020-10-211-1/+1
| | |
* | | merge 8.6dgp2020-09-211-1/+1
|\ \ \ | |/ /
| * | Improve TclInvalidateStringRep() macro such that (objPtr) is only evaluated ↵jan.nijtmans2020-09-201-1/+1
| | | | | | | | | | | | once. Addation brackets in TclHasStringRep() macro
* | | Bump to 8.6.11 for release.dgp2020-07-061-2/+2
|/ /
* | merge 8.6dgp2019-09-111-1/+1
|\ \
| * \ Don't let Tcl compilation depend on USE_32BIT_TIME_T any more: Microsoft ↵jan.nijtmans2019-09-071-1/+1
| |\ \ | | |/ | | | | | | | | | could discontinue this macro any moment, then we are prepared .... As a bonus: time_t is now allowed to be 64-bit internally, without effect on the C API (like stub-enabled extensions)
| | * Don't let Tcl compilation depend on USE_32BIT_TIME_T any more: Microsoft ↵jan.nijtmans2019-09-071-1/+1
| | |\ | | | | | | | | | | | | | | | | could discontinue this macro any moment, then we are prepared .... As a bonus: time_t is now allowed to be 64-bit internally, without effect on the C API (like stub-enabled extensions)
| | | * Don't let Tcl depend on USE_32BIT_TIME_T any more: If your compiler supports ↵jan.nijtmans2019-09-061-1/+1
| | |/ | | | | | | | | | | | | it, time_t will be 64-bit internally. But at API-level, time_t will still be restricted to 32-bit on Win32 (Not on Win64). This keeps Tcl_StatBuf the same (unless USE_64BIT_TIME_T is defined), so 64-bit times still cannot be used everywhere.
* | | merge 8.6dgp2019-07-151-1/+1
|\ \ \ | |/ /
| * | integrate branch bug-4718b41c56, revert/rebuild win/configure (2.69 in ↵sebres2019-07-121-1/+1
| |\ \ | | |/ | | | | | | tcl8.6), conflicts resolved, etc
| | * win/x86: compat fix, 64-bit time_t for 32-build is optional now (via ↵sebres2019-07-101-1/+1
| | | | | | | | | | | | configure/make option time64bit or define _USE_64BIT_TIME_T)
| | * fixes [4718b41c56] for windows x86 (mingw / MSVC versions with CRT ↵sebres2019-07-081-1/+1
| | | | | | | | | | | | supporting 64-bit time_t)
* | | Bump version numbers for 8.6.10 release.dgp2019-06-171-2/+2
|/ /
* | Bump version numbers for 8.6.9 release.dgp2018-10-051-6/+2
| |
* | typo's (found by Gustaf Neumann). Thanks!jan.nijtmans2018-01-171-2/+2
| |
* | Start RC branch for Tcl 8.6.8dgp2017-12-061-2/+2
| |
* | merge 8.6dgp2017-03-311-2/+2
|\ \
| * | Improve comment on TCL_WIDE_INT_IS_LONG, making it less misleading. jan.nijtmans2017-03-271-2/+2
| | | | | | | | | In tclThreadTest.c, allow mainThreadId to be >32 bits.
* | | Start RC branch for Tcl 8.6.7dgp2017-03-101-2/+2
|/ /
* | Remove "makefile.bc". Not updated for many-many years, most likely it ↵jan.nijtmans2017-03-071-1/+0
| | | | | | | | doesn't work any more and it doesn't seem to care anyone. Let's see if someone complains ;-)
* | compatability -> compatibilityjan.nijtmans2016-12-011-2/+2
|\ \ | |/
| * compatability -> compatibilityjan.nijtmans2016-12-011-2/+2
| |
* | Better fix for the usability of TCL_NO_DEPRECATED on MacOSXjan.nijtmans2016-11-141-1/+1
|\ \ | |/
| * Better fix for the usability of TCL_NO_DEPRECATED on MacOSX.jan.nijtmans2016-11-141-0/+2
| |
| * Bump to release number 8.5.19dgp2015-10-231-2/+2
| |
* | On OSX, there is a conflict with the "define panic" and definitions in "mach.h".jan.nijtmans2016-11-101-0/+2
| |
* | Start RC branch for Tcl 8.6.6dgp2016-07-121-2/+2
| |
* | Bump to 8.6.5dgp2016-01-281-2/+2
| |
* | Micro-optimization handling Tcl_Panic(), suggested by D. Richard Hipp.jan.nijtmans2015-09-231-0/+12
|\ \ | | | | | | As a side-effect, this is as well a fix for [1446864]: segfaults if Tcl_Panic() returns.