summaryrefslogtreecommitdiffstats
path: root/win/tcl.m4
Commit message (Collapse)AuthorAgeFilesLines
* Merge core-8-6-branch. jan.nijtmans2017-01-111-1/+1
|\ | | | | | | Do gcc-compiles with the option -Wwrite-strings, so we can detect mis-usage of "const". Make Tcl_AddErrorInfo() and Tcl_AddObjErrorInfo() a macro.
* | Fix signed-unsigned-compare warning (reported by François Vogel on Windows, ↵jan.nijtmans2016-03-221-1/+1
| | | | | | | | but gcc can trigger it as well)
* | Bump trunk to 8.7a0 to accept new feature development.dgp2016-03-031-4/+4
|/
* Fix 64-bit MSVC build without SDK: If the MSVC version is recent enough, ↵jan.nijtmans2015-12-021-5/+2
|\ | | | | | | compiling without SDK works fine (provided that the build is configured using "--enable-64bit").
| * Fix 64-bit MSVC build without SDK: If the MSVC version is recent enough, ↵jan.nijtmans2015-12-021-5/+2
| | | | | | | | compiling without SDK works fine (provided that the build is configured using "--enable-64bit").
* | Fix [b42a851475]: file normalize ~user returns wrong directory on Windowsjan.nijtmans2015-10-061-2/+2
|\ \ | |/
* | Double '[' and ']', otherwise re-generating "configure" doesn't give the ↵jan.nijtmans2015-10-061-2/+2
|\ \ | |/ | | | | expected result.
| * Double '[' and ']', otherwise re-generating "configure" doesn't give the ↵jan.nijtmans2015-10-061-2/+2
| | | | | | | | expected result.
* | Use "cygpath -m" in stead of "cygpath -w", so paths (even windows ones) ↵jan.nijtmans2015-10-051-1/+1
|\ \ | |/ | | | | always have forward slashes. Suggested by pooryorick for [http://core.tcl.tk/tclconfig/tktview/06f1692bbe29449ac3f2161ebf9dd153d0349845|TEA], but a good idea anyway
| * Use "cygpath -m" in stead of "cygpath -w", so paths (even windows ones) ↵jan.nijtmans2015-10-051-1/+1
| | | | | | | | always have forward slashes. Suggested by pooryorick for [http://core.tcl.tk/tclconfig/tktview/06f1692bbe29449ac3f2161ebf9dd153d0349845|TEA], but a good idea anyway
* | Don't limit Universal runtime support VisualStudio version 14 only, future ↵jan.nijtmans2015-09-301-2/+2
|\ \ | |/ | | | | versions will probably have it as well.
| * Don't limit Universal runtime support VisualStudio version 14 only, future ↵jan.nijtmans2015-09-301-2/+2
| | | | | | | | versions will probably have it as well.
* | Completing [00189c4afc]: Allow semi-static UCRT build on Windows with VC ↵jan.nijtmans2015-08-281-2/+18
|\ \ | |/ | | | | 14.0. Now for the configure/makefile build.
| * Completing [00189c4afc]: Allow semi-static UCRT build on Windows with VC ↵jan.nijtmans2015-08-281-2/+18
| | | | | | | | 14.0. Now for the configure/makefile build.
* | Eliminate all usage of WIN32 and __WIN32__ macros: Some compilers (e.g. ↵jan.nijtmans2014-02-101-2/+2
| | | | | | | | | | Clang/LLVM) don't define it, and _WIN32 is much more portable anyway. See: [http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system#WindowsCygwinnonPOSIXandMinGW]
* | Some formattingjan.nijtmans2013-11-191-1/+1
| |
* | When compiling with MSVC++, no longer link the stub library with msvcrt??.dll.jan.nijtmans2013-10-031-3/+5
|\ \ | |/ | | This way, workarounds in extensions like [http://core.tcl.tk/itcl/info/a961f0729c] are no longer necessary.
| * When compiling with MSVC++, no longer link the stub library with msvcrt??.dll.jan.nijtmans2013-10-031-3/+5
| | | | | | This way, workarounds in extensions like [http://core.tcl.tk/itcl/info/a961f0729c] are no longer necessary.
| * Cherrypick [87d1313df3] from trunk: jan.nijtmans2013-09-271-17/+1
| | | | | | | | | | Workaround for [http://sourceforge.net/p/mingw/bugs/2065/|MinGW bug #2065]. Both MinGW and MinGW-w64 (32-bit) are affected. Even though Win64 is not affected, adding -static-libgcc doesn't harm there, and we don't want to distrubute additional dll's with MinGW-compiled Tcl anyway.
* | Workaround for [http://sourceforge.net/p/mingw/bugs/2065/|MinGW bug #2065]. jan.nijtmans2013-09-271-2/+1
| | | | | | | | Both MinGW and MinGW-w64 (32-bit) are affected. Even though Win64 is not affected, adding -static-libgcc doesn't harm there, and we don't want to distrubute additional dll's with MinGW-compiled Tcl anyway.
* | workaround for mingw bug ↵jan.nijtmans2013-09-231-3/+3
|\ \ | |/ | | | | [http://comments.gmane.org/gmane.comp.gnu.mingw.user/41724]
| * workaround for mingw bug ↵jan.nijtmans2013-09-231-3/+18
| | | | | | | | [http://comments.gmane.org/gmane.comp.gnu.mingw.user/41724]
* | Revert defining _HAVE_32BIT_TIME_T especially for mingw-4.0-rc1: Although it ↵jan.nijtmans2013-05-171-2/+0
|\ \ | |/ | | | | works, it has the side-effect that tcl8?.dll depends on msvcrt.dll symbols which are only available in later versions of msvcrt.dll. This is undesired, it really should be fixed in the mingw headers.
| * Revert defining _HAVE_32BIT_TIME_T especially for mingw-4.0-rc1: Although it ↵jan.nijtmans2013-05-171-2/+0
| |\ | | | | | | | | | works, it has the side-effect that tcl8?.dll depends on msvcrt.dll symbols which are only available in later versions of msvcrt.dll. This is undesired, it really should be fixed in the mingw headers.
| | * Revert defining _HAVE_32BIT_TIME_T especially for mingw-4.0-rc1: Although it ↵jan.nijtmans2013-05-171-2/+0
| | | | | | | | | | | | works, it has the side-effect that tcl8?.dll depends on msvcrt.dll symbols which are only available in later versions of msvcrt.dll. This is undesired, it really should be fixed in the mingw headers.
* | | Add support for the latest mingw-4.0-rc1. See: ↵jan.nijtmans2013-05-161-0/+2
|\ \ \ | |/ / | | | | | | [http://sourceforge.net/p/mingw/mingw-org-wsl/ci/4.0-rc1/tree/NEWS]
| * | Add support for the latest mingw-4.0-rc1. See: ↵jan.nijtmans2013-05-161-0/+2
| |\ \ | | |/ | | | | | | [http://sourceforge.net/p/mingw/mingw-org-wsl/ci/4.0-rc1/tree/NEWS]
| | * Add support for the latest mingw-4.0-rc1. See: ↵jan.nijtmans2013-05-161-0/+2
| | | | | | | | | | | | [http://sourceforge.net/p/mingw/mingw-org-wsl/ci/4.0-rc1/tree/NEWS]
* | | Improve some comments and quoting, no change in functionality. jan.nijtmans2013-02-141-12/+11
|\ \ \ | |/ / | | | Only check for refCount == 0x61616161 for TCL_MEM_DEBUG build.
| * | Improve some comments and quoting, no change in functionalityjan.nijtmans2013-02-141-12/+11
| |\ \ | | |/
| | * Add some extra paths on Windows for finding tclConfig.sh, for mSys and ↵jan.nijtmans2013-02-141-0/+8
| | | | | | | | | | | | Cygwin shell.
| | * Backport various improvements from Tcl 8.5jan.nijtmans2013-02-121-59/+199
| | |
* | | REMOVED FROM TRUNK: buggy, breaks the build on linux. [Bug 3598300]: unix: ↵jan.nijtmans2013-01-151-42/+194
|\ \ \ | |/ / | | | | | | tcl.h does not include sys/stat.h
| * | [Bug 3598300]: unix: tcl.h does not include sys/stat.hjan.nijtmans2013-01-151-0/+8
| |\ \
| * | | More flexible search for win32 tclConfig.sh, backported from TEA (not ↵jan.nijtmans2013-01-141-42/+186
| |/ / | | | | | | | | | actually used in Tcl, only for Tk)
* | | better formatting of "configure --help"jan.nijtmans2012-07-181-6/+6
|\ \ \ | |/ /
| * | better formatting of "configure --help"jan.nijtmans2012-07-181-4/+4
| | |
* | | [Bug 3448512]: clock scan "1958-01-01" fails only in debug compilationjan.nijtmans2012-04-111-12/+15
|\ \ \ | |/ /
| * | [Bug 3448512]: clock scan "1958-01-01" fails only in debug compilationjan.nijtmans2012-04-111-12/+15
| |\ \ | | |/
| | * [Bug 3448512]: clock scan "1958-01-01" fails only in debug compilationjan.nijtmans2012-04-111-11/+15
| | |
* | | [Bug 3511806] Compiler checks too earlyjan.nijtmans2012-03-301-54/+167
|\ \ \ | |/ / | | | (autoconf still to be run!)
| * | [Bug 3511806] Compiler checks too earlyjan.nijtmans2012-03-301-18/+147
| |\ \ | | |/ | | | (autoconf still to be run!)
| | * Only check for cygwin with $GCCjan.nijtmans2012-03-291-3/+6
| | |
| | * [Bug 3511806] Compiler checks too earlyjan.nijtmans2012-03-291-22/+144
| | |\ | | | | | | | | | | | | | | | | | | | | This change allows to build the cygwin and mingw32 ports of Tcl/Tk to build out-of-the-box using a native or cross- compiler
| | | * now ready for further field testsbug_3511806jan.nijtmans2012-03-291-41/+40
| | | |
| | | * some better checksjan.nijtmans2012-03-281-28/+45
| | | |
| | | * extra checks whether we are really dealing with cygwin or notjan.nijtmans2012-03-281-58/+54
| | | |
| | | * bug-3511806 implementationjan.nijtmans2012-03-271-2/+112
| | |/
| | * enable cygwin build in /win directory (using mingw-w64 compiler)jan.nijtmans2012-03-261-12/+16
| | |
| | * [Bug 3388350] mingw64 compiler warningsjan.nijtmans2011-08-151-3/+3
| | |