summaryrefslogtreecommitdiffstats
path: root/win
Commit message (Collapse)AuthorAgeFilesLines
...
* | Bump to 8.6.1.dgp2013-08-302-2/+2
| | | | | | FossilOrigin-Name: 446c66c447ec8371e6a7651c79cc92c3cd4676a2
* | Static Cygwin wish.exe cannot link with win32's static libtk85.a (because it ↵jan.nijtmans2013-06-141-2/+2
|\ \ | |/ | | | | | | | | | | | | expects a different runtime), so configure shouldn't even try to do this. (On a dynamic wish.exe this works, this is exactly how wish can run even without X11). Don't use deprecated stricmp/strnicmp any more, but underscored variant for non-GNU compilers. FossilOrigin-Name: a31e03f91d2f0ba4a70f6ab8c7512932e03d22ed
| * Don't use deprecated stricmp/strnicmp any more, but underscored variant for ↵jan.nijtmans2013-06-141-2/+2
| | | | | | | | | | non-GNU compilers. FossilOrigin-Name: 2fc3508392cf4083a31767360e8a591d413e3337
* | Some more fixes for Cygwin32/64 in win32 GUI mode. jan.nijtmans2013-06-131-0/+14
|\ \ | |/ | | | | | | | | Now that this is fully working, eliminate all usage of WISH_BUILD_LIB_SPEC: TK_BUILD_LIB_SPEC can be used everywhere in stead. Remove some old carbon-leftovers from configure/make. FossilOrigin-Name: 456e5dfc9c2b5adb82b4ac8a8ee5f71a17033197
| * Some more fixes for Cygwin32/64 in win32 GUI mode. jan.nijtmans2013-06-131-0/+14
| | | | | | | | | | | | Now that this is fully working, eliminate all usage of WISH_BUILD_LIB_SPEC: TK_BUILD_LIB_SPEC can be used everywhere in stead. Add tk.pc FossilOrigin-Name: facb4fce459cda40793531354cef9e45c7b0333a
* | some code cleanup, remove structure which is no longer used.jan.nijtmans2013-06-071-37/+10
|\ \ | |/ | | FossilOrigin-Name: aa0b268a96d3fe46875e034d4d1ecf9e0443c088
| * some code cleanup, remove structure which is no longer used.jan.nijtmans2013-06-071-26/+9
| | | | | | FossilOrigin-Name: 797c31678d5740f866bf45861c81b298d2c6cbea
| * Fix [1913750]: tk_chooseDirectory -initialdir internationalization problem. ↵jan.nijtmans2013-06-071-737/+182
| | | | | | | | | | (backported from Tk 8.6) FossilOrigin-Name: ecc7942a330b5df4f41ac98d07c02780db5516ac
* | [Bug 3568760]: Tk documentation fails to buildjan.nijtmans2013-04-101-1/+1
|\ \ | |/ | | FossilOrigin-Name: edf6d2b747cf2402aee25a967b332b442253f0b8
| * [Bug 3568760]: Tk documentation fails to buildjan.nijtmans2013-04-101-1/+1
| | | | | | FossilOrigin-Name: 46b263026c3ec5bf0f954f3d31bd55b51d4917f7
| * Remove unused variable.jan.nijtmans2013-04-033-3/+0
| | | | | | | | | | Remove tkStubLib.o from tk85.dll. On Windows, data cannot be exported from dll's anyway, so it's just dead code. On UNIX, it makes a difference: there it would be a potential incompatiblity to remove it. FossilOrigin-Name: 66f47c63d885af6ad4dd82adff3109e6036c46c9
| * merge release to 8.5; revert features not included in releasedgp2013-04-035-42/+5
| | | | | | FossilOrigin-Name: 2d26c9cb30bc1fd9ba1cfe81ff3b4cc7ff771cca
| * Easier solution, with proper protection and configure warnings.jan.nijtmans2013-03-282-0/+10
| | | | | | FossilOrigin-Name: 6af7f84015d02f01830fd5626a2078a5cb7d5ffe
* | [Bug 3608074]: Add <<Invoke>> bindings to Button's, Listbox and Menu.jan.nijtmans2013-03-272-0/+30
|\ \ | |/ | | | | | | Document <<Invoke>>, <<ThemeChanged>>, <<EnteredChild>> (ttk_pandedwindow only) and <<Increment/Decrement>> (ttk_spinbox only) FossilOrigin-Name: b5f6c04d7db360665af9d4ef55ab46bfe905996d
| * Same change as [9bc120ced2] for UNIX, but for Windows as well.jan.nijtmans2013-03-275-3/+30
| | | | | | FossilOrigin-Name: 059263b2cae8bf365558fcd882c2b2be2f3827dc
* | Make sure the stubbed variants of Tcl_ObjSetVar2/Tcl_NewStringObj are never ↵jan.nijtmans2013-02-221-1/+5
| | | | | | | | | | used in winMain.c/tkAppInit.c FossilOrigin-Name: 34f2a92b65bcf86a75d48a3b6687b32372cf218c
* | Use (preferred) Tcl_ObjSetVar2 in stead of Tcl_SetVar in tkAppInit.c/winMain.c.jan.nijtmans2013-02-181-21/+25
| | | | | | FossilOrigin-Name: 797d8ffed848f0444501e2ea0921bcd1e60fe7e2
* | ttk::theme::* packages don't Provide anything Extra.jenglish2013-02-152-2/+2
| | | | | | | | | | Change Tcl_PkgProvideEx() back to Tcl_PkgProvide(). FossilOrigin-Name: ccdd15ce7a4d5744be74f63c82fbbf92037247ae
* | Eliminate usage of Tcl_PkgProvide/Tcl_PkgRequire functions, use the 'Ex' ↵jan.nijtmans2013-02-152-2/+2
| | | | | | | | | | versions in stead. FossilOrigin-Name: 1200c1c28356fef32826f1f5e3935b71ce8d8b24
* | Add some extra paths on Windows for finding tclConfig.sh, for mSys and ↵jan.nijtmans2013-02-142-19/+31
|\ \ | |/ | | | | | | | | | | Cygwin shell. Improve some comments and quoting, no change in functionality. FossilOrigin-Name: c10c3fdb16263f4e0f242fd98e8f973613162886
| * Add some extra paths on Windows for finding tclConfig.sh, for mSys and ↵jan.nijtmans2013-02-142-19/+31
| |\ | | | | | | | | | | | | | | | | | | Cygwin shell. Improve some comments and quoting, no change in functionality. FossilOrigin-Name: 3baf50cfdb612650e22fd0d7a6aed55433dd8c12
| | * Add some extra paths on Windows for finding tclConfig.sh, for mSys and ↵jan.nijtmans2013-02-142-46/+58
| | | | | | | | | | | | | | | Cygwin shell. FossilOrigin-Name: 40c52cd5f2fdc9ae91b4953e36d167c551016994
| | * Backport various improvements from Tcl 8.5jan.nijtmans2013-02-122-136/+351
| | | | | | | | | FossilOrigin-Name: 67d52fd47f8c21e76eb576cf5e989afde7c6dfaa
* | | some more int -> size_t changesjan.nijtmans2013-02-011-1/+1
| | | | | | | | | FossilOrigin-Name: af0c7cac75e785ca92c44fd60ff1a589e5d26857
* | | Use internalRep.twoPtrValue.ptr1 in stead of internalRep.otherValuePtr ↵jan.nijtmans2013-02-012-33/+44
|\ \ \ | |/ / | | | | | | | | | | | | | | | everywhere. Change some internal "length" variables from type int to type size_t, so it could handle bigger string sizes (for "novem") FossilOrigin-Name: dc4fe35849223678532b1af7aaa1107b75f5a724
* | | Convert all Tcl_SetResult calls to Tcl_SetObjResult calls. jan.nijtmans2013-01-283-7/+7
| | | | | | | | | | | | | | | Convert Tcl_GetStringFromObj to Tcl_GetString when possible. FossilOrigin-Name: 4c01ee19d4dd413193367ae99f07f40c00aa184e
* | | Merge core-8-5-branchjan.nijtmans2013-01-245-33/+28
|\ \ \ | |/ / | | | | | | | | | Various Tcl_GetIndexFromObj -> Tcl_GetIndexFromObjStruct changes. FossilOrigin-Name: 472e3798d1c835e41e6f42f189ae802a61971a4d
| * | remove duplicate codejan.nijtmans2013-01-241-5/+0
| | | | | | | | | FossilOrigin-Name: 52a6c71921e2aa5834857eda7f764885a178c5b6
| * | Don't compile Tk with -DTCL_NO_DEPRECATED by default any more, it might hurt ↵jan.nijtmans2013-01-161-1/+1
| |\ \ | | |/ | | | | | | | | | when we compile Tk 8.x against Tcl 8.y with y > x, because new deprecated constructs might be added in higher Tcl versions (except for Tk 8.6, for now, because there is no higher 8.x yet) FossilOrigin-Name: f3cc4a9259bdeaa62636e2112c9938b3ef0f63eb
| | * Don't compile Tk with -DTCL_NO_DEPRECATED by defaultjan.nijtmans2013-01-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | any more, it might hurt when we compile Tk 8.x against Tcl 8.y with y > x, because new deprecated constructs might be added in higher Tcl versions (except for Tk 8.6, for now, because there is no higher 8.x yet) FossilOrigin-Name: 62e30f2b6ba59a3dec920cb7993af7ea53d23f5d
* | | More flexible search for win32 tclConfig.sh, backported from TEA. jan.nijtmans2013-01-152-67/+285
|\ \ \ | |/ / | | | | | | | | | | | | | | | 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. FossilOrigin-Name: dc77a27c545697cdcbb3a896f37d9ec68f0d8760
| * | More flexible search for win32 tclConfig.sh, backported from TEA.jan.nijtmans2013-01-142-67/+285
| | | | | | | | | FossilOrigin-Name: 42e2a6b269602e3fed238389e8ec6baae3ce93d1
* | | Replace various functions calls, for functions which are small wrappers ↵jan.nijtmans2013-01-142-2/+2
| | | | | | | | | | | | | | | around other functions, to call the wrapped function directly. FossilOrigin-Name: cb8420c1d1cfcf429e49b78a9b97a824a99fdc52
* | | Eliminate all usage of deprecated Tcl_EvalObj, Tcl_GlobalEval and ↵jan.nijtmans2013-01-113-5/+5
|\ \ \ | |/ / | | | | | | | | | | | | | | | Tcl_GlobalEvalObj functions. Add [file normalize] to pkgIndex.tcl, in order to prevent '..' in file paths. FossilOrigin-Name: afce507e083e77c3d737e9de33f662dc1f1de863
| * | Eliminate all usage of deprecated Tcl_EvalObj, Tcl_GlobalEval and ↵jan.nijtmans2013-01-113-7/+5
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | | | | Tcl_GlobalEvalObj functions. Add [file normalize] to pkgIndex.tcl, in order to prevent '..' in file paths. Remove unused TCLPATCHL, it should be ".0" for all final releases. Enable tk.h to be used with higher tcl.h versions which might lack _ANSI_ARGS_ FossilOrigin-Name: 6445eceebbc9a4f5746a0597d689f0dfe6500a3a
| | * Eliminate all usage of deprecated Tcl_EvalObj, Tcl_GlobalEval and ↵jan.nijtmans2013-01-113-9/+8
| | | | | | | | | | | | | | | | | | | | | | | | Tcl_GlobalEvalObj functions. Add [file normalize] to pkgIndex.tcl, in order to prevent '..' in file paths. Remove unused TCLPATCHL, it should be ".0" for all final releases. FossilOrigin-Name: 202603bf2bfee83e288d8f893a4a113e14c3201e
| * | [Bug 3585396]: winDialog.test requires user interaction.jan.nijtmans2012-11-131-32/+47
| |\ \ | | |/ | | | | | | | | | <p>Renumber test-cases as in Tk 8.6, and convert various to tcltest-2 style. FossilOrigin-Name: d22ec3ea9a91542ffb8780d22f3fccaab6a2723a
| | * [Bug 3585396]: winDialog.test requires user interaction.jan.nijtmans2012-11-131-59/+80
| | | | | | | | | | | | | | | <p>Renumber test-cases as in Tk 8.6, and convert various to tcltest-2 style. FossilOrigin-Name: e123dddd171adef425ff3e58727df2099dc4599f
| * | merge 8.5dgp2012-11-091-2/+2
| |\ \ | | | | | | | | FossilOrigin-Name: a8d2643d1be0ce344eb60f2040e46285be682702
| | * | Avoid setting TK_LIBRARY to a relative pathname.dgp2012-11-091-2/+2
| | | | | | | | | | | | FossilOrigin-Name: b685add01986668b065a269cf957a8f1758abc3f
| * | | Release branch for Tk 8.5.13.dgp2012-11-052-2/+2
| |/ / | | | | | | FossilOrigin-Name: 12ca1b7f4996fb3220fdecdfe1a047dea63af906
* | | merge trunkdgp2012-12-101-1/+1
|\ \ \ | | | | | | | | FossilOrigin-Name: fd82e2cd9c05289c838ea34ec8ba96f74f1fc8b5
| * | | Fix build for VC 11.dgp2012-12-101-1/+1
| | | | | | | | | | | | FossilOrigin-Name: 1eb1e2b64eb74331a019cc6f4a0d4010f88e2733
* | | | merge trunkdgp2012-11-221-17/+33
|\ \ \ \ | |/ / / | | | | FossilOrigin-Name: e7830c40c09d9e266cd5cadc1e6c0f6d162ed589
| * | | Backout [c43ceec9f6]. Since the change in Tcl_GetIndexFromObj()jan.nijtmans2012-11-221-17/+33
| | | | | | | | | | | | | | | | | | | | | | | | was undone due to [http://code.activestate.com/lists/tcl-core/12524/], it looks we have to live with uglier code. FossilOrigin-Name: e57220500d0d0513da3912dca5f060c3e03f61d8
* | | | merge trunkdgp2012-11-141-5/+15
|\ \ \ \ | |/ / / | | | | FossilOrigin-Name: 9144cea28836b1f914be1ca7ba9b8ea33d9383a8
| * | | Bug 3500545: tk_getOpenFile -multiple 1 wrong on windowsjan.nijtmans2012-11-141-5/+15
| | | | | | | | | | | | FossilOrigin-Name: 4c7b16f90b1096e7c5068a4901fcaaf9696f4a2b
* | | | merge trunkdgp2012-11-131-1/+7
|\ \ \ \ | |/ / / | | | | FossilOrigin-Name: 28e1da249e6b72e52c97a4a18b081bbb477f63c9
| * | | Fixed, but only tested yet on Windows 7. On other platforms, at least the ↵jan.nijtmans2012-11-111-1/+7
| | | | | | | | | | | | | | | | | | | | 'user input problem' is gone, but the test might still fail. FossilOrigin-Name: b56570c662b5a48c02700b441d0edbde0b8ce0a3
* | | | Create Tk 8.6.0 release branchdgp2012-11-082-2/+2
|/ / / | | | | | | FossilOrigin-Name: 23a232201cc016cb6bed84fb496e7a1eaf3e0aa9