summaryrefslogtreecommitdiffstats
path: root/win/tclWinPort.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge 8.6jan.nijtmans2022-05-221-0/+1
|\
| * Disable C4090 warning; See: ↵jan.nijtmans2022-05-221-0/+1
| | | | | | | | [https://developercommunity.visualstudio.com/t/c-compiler-incorrect-propagation-of-const-qualifie/39071]
| * Merge 8.5jan.nijtmans2021-08-231-1/+0
| |\
| | * Code formattingjan.nijtmans2021-08-231-4/+2
| | |
* | | Merge 8.7. Don't bother BorlandC, LCC and WatcomC any more, since they ↵jan.nijtmans2021-01-071-21/+1
|\ \ \ | | | | | | | | | | | | (probably) cannot handle Windows 7 API anyway.
* | | | Simplifications when assuming VS 2015 or laterjan.nijtmans2020-12-171-13/+3
| | | |
* | | | TIP #592 implementation: Stop support for Windows XP, Server 2003, Vista, ↵jan.nijtmans2020-12-161-3/+3
|/ / / | | | | | | | | | Server 2008
* | | Merge 8.6jan.nijtmans2020-10-291-4/+0
|\ \ \ | |/ /
| * | Fix implib filenames (adapted from Mingw2's 006-proper-implib-name.mingw.patch)jan.nijtmans2020-10-291-4/+0
| |\ \ | | |/ | | | 3 new testcases
| | * Slight tweak to previous commit: Move definition of __USE_MINGW_ANSI_STDIO ↵jan.nijtmans2020-10-291-4/+0
| | | | | | | | | | | | to the Makefile
| | * (cherry-pick): Fix [c975939973]: Usage of gnu_printf in latest mingw-w64. jan.nijtmans2020-10-221-0/+4
| | | | | | | | | Change (internal, windows-only) TCL_I_MODIFIER to TCL_Z_MODIFIER, since that's how it's called in Tcl 8.7 and up
| | * (cherry-pick): Fix [014ade1d44]: Misleading error message when using "-path" ↵jan.nijtmans2020-10-091-3/+3
| | | | | | | | | | | | | | | multiple times with "glob". Also fix a few (harmless) -Wundef warnings
* | | Merge 8.6jan.nijtmans2020-10-211-0/+4
|\ \ \ | |/ /
| * | Fix [c975939973]: Usage of gnu_printf in latest mingw-w64jan.nijtmans2020-10-211-0/+4
| | |
* | | Make everything compile warning-free with -Wundef. Put enum ↵jan.nijtmans2020-10-081-3/+3
|\ \ \ | |/ / | | | | | | ASSEM_DICT_GET_DEF last in TalInstType, so it's binary compatible with Tcl 8.6
| * | Eliminate warnings when compiling with -Wundefjan.nijtmans2020-10-081-3/+3
| | |
* | | Merge 8.6jan.nijtmans2020-08-121-1/+3
|\ \ \ | |/ /
| * | Merge 8.5jan.nijtmans2020-08-121-1/+3
| |\ \ | | |/
| | * Update .travis.yml: remove deprecated "sudo" and rename "matrix" to "jobs"jan.nijtmans2020-08-121-1/+3
| | | | | | | | | Fix travis build for Windows/Debug
| | * Only use OPTS=msvcrt in combination with "static", otherwise it's a NOOP. ↵jan.nijtmans2019-12-161-0/+1
| | | | | | | | | | | | Disable pragma warning:C4146 (backported from 8.6), since it only gives misleading warnings.
| * | rules.vc: No need to redefine values which are already the default. ↵jan.nijtmans2020-06-121-2/+1
| | | | | | | | | | | | tclWinPort.h: Fix comment
* | | rules.vc: No need to redefine values which are already the default.jan.nijtmans2020-06-121-2/+1
| | | | | | | | | tclWinPort.h: Fix comment
* | | Merge 8.6jan.nijtmans2020-03-221-2/+2
|\ \ \ | |/ /
| * | Even more uppercase HEX representations in source-codejan.nijtmans2020-03-221-2/+2
| | |
| * | Fix Travis build for MSVC Debug modejan.nijtmans2019-12-131-0/+1
| | |
| * | Enhance rules.vc like already done in other configure scripts: Determine ↵jan.nijtmans2019-11-281-1/+1
| | | | | | | | | | | | HAVE_STDINT_H/HAVE_INTTYPES_H/HAVE_STDBOOL_H/MP_NO_STDINT the simple way, just by compiler version.
* | | Merge 8.7. Tweak makefile.vc for detection of stdint.h/inttypes.h/stdbool.hjan.nijtmans2019-11-271-1/+1
|\ \ \
* | | | Update makefile.vc and rules.vc for using libtommath.dll/zlib1.dll in stead ↵jan.nijtmans2019-11-181-1/+2
| | | | | | | | | | | | | | | | of statically linking libtommath, whenever possible.
* | | | Merge 8.7. Finish implementation.jan.nijtmans2019-11-121-0/+6
|\ \ \ \ | |/ / /
| * | | Merge 8.6jan.nijtmans2019-11-111-0/+3
| |\ \ \ | | |/ /
| | * | Use <inttypes.h> header-file on windows when available, just as on UNIXjan.nijtmans2019-11-111-0/+3
| | |\ \ | | | |/
| | | * On win32, include <inttypes.h> if available, just as on UNIX. jan.nijtmans2019-11-111-5/+11
| | | | | | | | | | | | Disable compiler warning C4244 on all Microsoft compiler versions, not just the latest ones.
* | | | Merge 8.7jan.nijtmans2019-11-111-0/+1
|\ \ \ \ | |/ / /
| * | | Now that libtommath has mp_init_l/mp_init_ll/mp_init_ull, use those instead ↵jan.nijtmans2019-11-091-0/+1
| | | | | | | | | | | | | | | | of the legacy TclBNInitBignumFromLong/TclBNInitBignumFromWideInt/TclBNInitBignumFromWideUInt
* | | | Add compat/stdint.h, upgrade to libtommath 1.2.0, adapt as much as possible ↵jan.nijtmans2019-11-011-0/+2
|/ / / | | | | | | | | | accordingly (still WIP)
* | | On Windows, use <stdint.h> header-file if available.jan.nijtmans2019-10-291-0/+3
| | |
* | | Merge 8.6. Remove 3 duplicate build-entries in .travis.ymljan.nijtmans2019-09-071-5/+1
|\ \ \ | |/ /
| * | Don't let Tcl compilation depend on USE_32BIT_TIME_T any more: Microsoft ↵jan.nijtmans2019-09-071-5/+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-5/+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.6jan.nijtmans2019-09-051-1/+1
|\ \ \ | |/ /
| * | Fix [4718b41c56]: windows x86 & x64: file mtime overflows in modification ↵jan.nijtmans2019-09-051-1/+1
| | | | | | | | | | | | date (2038?, windows 32-bit time_t?)
* | | merge 8.6, integrate branch bug-4718b41c56, rebuild win/configure, conflicts ↵sebres2019-07-121-1/+6
|\ \ \ | |/ / | | | | | | resolved (nothreads not available for 8.7)
| * | integrate branch bug-4718b41c56, revert/rebuild win/configure (2.69 in ↵sebres2019-07-121-1/+6
| |\ \ | | |/ | | | | | | tcl8.6), conflicts resolved, etc
| | * little tweaks, makeing it possible to use either _USE_64BIT_TIME_T or ↵jan.nijtmans2019-07-101-10/+7
| | | | | | | | | | | | | | | __MINGW_USE_VC2005_COMPAT interchangably. Put some more remarks, making it more clear what the effect of this is.
| | * win/x86: compat fix, 64-bit time_t for 32-build is optional now (via ↵sebres2019-07-101-4/+6
| | | | | | | | | | | | configure/make option time64bit or define _USE_64BIT_TIME_T)
| | * fixes [4718b41c56] for windows x86 (mingw / MSVC versions with CRT ↵sebres2019-07-081-3/+8
| | | | | | | | | | | | supporting 64-bit time_t)
| | * squelch some warnings on higher Visual Studio versions: we are not going to ↵jan.nijtmans2018-10-291-0/+2
| | | | | | | | | | | | bother on this any more.
* | | Merge 8.6jan.nijtmans2019-06-251-3/+5
|\ \ \ | |/ /
| * | Squelch C4244 warning on any MSVC compiler.jan.nijtmans2019-06-251-3/+5
| | |
* | | Change TCHAR -> WCHAR in many places, since that's what it is since Windows NTjan.nijtmans2019-03-111-9/+0
| | |