summaryrefslogtreecommitdiffstats
path: root/win/tcl.m4
Commit message (Collapse)AuthorAgeFilesLines
* Fix 64-bit MSVC build without SDK: If the MSVC version is recent enough, ↵jan.nijtmans2015-12-031-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-031-5/+2
| | | | | | | | compiling without SDK works fine (provided that the build is configured using "--enable-64bit")
* | Link with userenv.lib, because it is now needed by Tcl.jan.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 to VisualStudio version 14 only, ↵jan.nijtmans2015-09-301-2/+2
|\ \ | |/ | | | | future versions will probably have it as well.
| * Don't limit Universal runtime support to VisualStudio version 14 only, ↵jan.nijtmans2015-09-301-2/+2
| | | | | | | | future versions will probably have it as well.
* | Completing ↵jan.nijtmans2015-08-281-2/+18
|\ \ | |/ | | | | [http://core.tcl.tk/tcl/info/00189c4afcb9e2586301d711f71383e48817a72d|00189c4afc]: Allow semi-static UCRT build on Windows with VC 14.0. Now for the configure/makefile build.
| * Completing ↵jan.nijtmans2015-08-281-2/+18
| | | | | | | | [http://core.tcl.tk/tcl/info/00189c4afcb9e2586301d711f71383e48817a72d|00189c4afc]: Allow semi-static UCRT build on Windows with VC 14.0. Now for the configure/makefile build.
* | Eliminate all usage of __WIN32__ macro: Some compilers (e.g. Clang/LLVM) ↵jan.nijtmans2014-02-101-2/+2
| | | | | | | | | | 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]
* | Revert [3eaa6c984a] (Enh [http://core.tcl.tk/tcl/info/2959069|2959069]), as ↵jan.nijtmans2013-11-191-1/+1
| | | | | | | | | | | | it turns out that -fvisibility=hidden only affects definitions and not declarations. Therefore explicitely declaring each MODULE_SCOPE function as __attribute__((__visibility__("hidden")) is much better. Suggested by Stuart Cassoff (Thanks!).
* | When compiling with MSVC++, no longer link the stub library with msvcrt??.dll.jan.nijtmans2013-10-041-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-041-3/+5
| | | | | | This way, workarounds in extensions like [http://core.tcl.tk/itcl/info/a961f0729c] are no longer necessary.
| * Cherrypick [132bf978f2] 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]
* | Add some extra paths on Windows for finding tclConfig.sh, for mSys and ↵jan.nijtmans2013-02-141-12/+19
|\ \ | |/ | | | | | | Cygwin shell. Improve some comments and quoting, no change in functionality.
| * Add some extra paths on Windows for finding tclConfig.sh, for mSys and ↵jan.nijtmans2013-02-141-12/+19
| |\ | | | | | | | | | | | | Cygwin shell. Improve some comments and quoting, no change in functionality.
| | * 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
| | |
| | * sync tcl.m4 with Tcl versionjan.nijtmans2012-06-231-3/+0
| | | | | | | | | autoconf-2.13
* | | More flexible search for win32 tclConfig.sh, backported from TEA. jan.nijtmans2013-01-151-42/+186
|\ \ \ | |/ / | | | | | | | | | Don't use deprecated "case" any more. Don't do unnecessary Tcl_PkgRequire(..., "Tcl", ...), the preceding Tcl_InitStubs() call already does that, both for dynamic loaded as wel as the static case. Disallow Tk 8.6.x to be loaded in any Tcl 8.6 alpha/beta release.
| * | More flexible search for win32 tclConfig.sh, backported from TEA.jan.nijtmans2013-01-141-42/+186
| | |
* | | better formatting of "configure --help"jan.nijtmans2012-07-181-6/+6
|\ \ \ | |/ /
| * | better formatting of "configure --help"jan.nijtmans2012-07-181-4/+4
| | |
* | | sync tcl.m4 with Tcl versionjan.nijtmans2012-05-021-4/+0
|\ \ \ | |/ /
| * | sync tcl.m4 with Tcl versionjan.nijtmans2012-05-021-4/+0
| | |
* | | minor clean-up of tkInt.declsjan.nijtmans2012-04-121-4/+7
|\ \ \ | |/ / | | | | | | disallow colors like xellow configure changes for cygwin
| * | disallow colors like xellowjan.nijtmans2012-04-121-4/+7
| |\ \ | | |/ | | | | | | cleanup tkInt.decls configure changes for cygwin
| | * sync tcl.m4 with Tcl, format tkInt.decls like Tk8.5/8.6jan.nijtmans2012-04-111-4/+7
| | |
* | | some more cygwin compatibility improvementsjan.nijtmans2012-04-061-8/+12
|\ \ \ | |/ / | | | format tk.decls
| * | some more cygwin compatibility improvementsjan.nijtmans2012-04-061-8/+12
| |\ \ | | |/ | | | format tk.decls like tcl8.5/8.6
| | * some more cygwin compatibility improvementsjan.nijtmans2012-04-061-8/+12
| | |
* | | [Bug 3511806] Compiler checks too earlyjan.nijtmans2012-04-021-55/+168
|\ \ \ | |/ / | | | (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.
| | | * implementation ready for further field-testsbug_3511806jan.nijtmans2012-03-291-20/+146
| | | |
| | * | enable cygwin build in /win directory (using mingw-w64 compiler)jan.nijtmans2012-03-261-13/+17
| | |/
| | * [Bug 3388350] mingw64 compiler warningsjan.nijtmans2011-08-161-1/+1
| | |
* | | Sync with win/tcl.m4 from Tcljan.nijtmans2011-06-161-0/+15
|\ \ \ | |/ /
| * | Sync with win/tcl.m4 from Tcljan.nijtmans2011-06-161-0/+15
| |\ \ | | |/
| | * Sync with win/tcl.m4 from Tcljan.nijtmans2011-06-161-0/+15
| | |
* | | set default MODULE_SCOPE=extern, in case no other value is determinedjan.nijtmans2011-03-281-0/+1
| | |
* | | The -debug:full option is not supported when using the modern versions of ↵jan2011-03-261-1/+1
|\ \ \ | |/ / | | | | | | link.exe included with MSVC, use -debug instead
| * | The -debug:full option is not supported when using the modern versions of ↵jan2011-03-261-1/+1
| |\ \ | | |/ | | | | | | link.exe included with MSVC, use -debug instead
| | * The -debug:full option is not supported when using the modern versions of ↵jan2011-03-261-1/+1
| | | | | | | | | | | | link.exe included with MSVC, use -debug instead