summaryrefslogtreecommitdiffstats
path: root/win
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | | | | | | | Eliminate internal use of TCL_STORAGE_CLASS, as it will be gone in 9.0 anywayjan.nijtmans2016-06-291-20/+7
| | | | | | | | | | |
| | * | | | | | | | | Tcl_SetVar -> Tcl_SetVar2 and comparable replacements, eliminating functions ↵jan.nijtmans2016-06-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | which are deprecated.
| | * | | | | | | | | Fix [7393be0be6e7f91cbb2016fa777896e3895929e3|7393be0be6]: Tcl Thread ↵jan.nijtmans2016-06-141-7/+4
| | |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | library doesn't work in Debug build on Windows_x64
| | * | | | | | | | | | tcltest 2.3.9 -> 2.4.0jan.nijtmans2016-06-021-2/+2
| | | | | | | | | | | |
| | * | | | | | | | | | Merge trunkgahr_tip_447gahr2016-05-233-18/+22
| | |\ \ \ \ \ \ \ \ \ \
| | | * \ \ \ \ \ \ \ \ \ Merge core-8-6-branchjan.nijtmans2016-05-131-2/+2
| | | |\ \ \ \ \ \ \ \ \ \
| | | * \ \ \ \ \ \ \ \ \ \ Merge core-8-6-branch. Eliminate some unnecessary spacing.jan.nijtmans2016-05-133-16/+20
| | | |\ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | | Bump tcltest version to 2.3.9gahr2016-04-201-2/+2
| | |/ / / / / / / / / / / /
| | * | | | | | | | | | | | Fix [2538f373ffc78d6dba9c3d973c147a84fdd9bbd8|2538f373ffc78d6d]: crash in ↵jan.nijtmans2016-04-081-1/+1
| | |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tcl_OpenTcpServer() on Windows
| | * \ \ \ \ \ \ \ \ \ \ \ \ RFE [0ef5e653ff4caf5f896ec1182e0aac38ab9a0c46|0ef5e653]: Add nsf to ↵jan.nijtmans2016-04-012-2/+3
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | coffbase.txt. Eliminate exess spacing
| | * \ \ \ \ \ \ \ \ \ \ \ \ \ Two micro-optimizations in Win and UNIX notifier. See: ↵jan.nijtmans2016-04-012-26/+33
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [http://code.activestate.com/lists/tcl-core/15645/]
| | | * \ \ \ \ \ \ \ \ \ \ \ \ \ merge trunkjan.nijtmans2016-03-302-17/+8
| | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | |/ / / / / / / / / / / / / / | | |/| | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Eliminate AT_FORK_INIT_VALUE/RESET_ATFORK_MUTEX macro's, since other values ↵jan.nijtmans2016-03-292-17/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | than the default are not supported anyway. This results in the elimination of (empty functions anyway) AtForkPrepare/AtForkParent. Also improve consistancy in some variable names. No change of functionality.
| | | * | | | | | | | | | | | | | - Undo unix notifier changes: too risky at this moment. jan.nijtmans2016-03-253-20/+17
| | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | |/ / / / / / / / / / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Merge trunk - (cherry-pick from dhr-micro-optimization): Micro-optimization: remove double checked lock from TclGetAllocCache in favour of initialization in TclInitSubsystems
| | * | | | | | | | | | | | | | | Fix signed-unsigned-compare warning (reported by François Vogel on Windows, ↵jan.nijtmans2016-03-222-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | but gcc can trigger it as well)
| | | * | | | | | | | | | | | | | (experiment) Use TclpMasterLock() in stead of a separate notifierInitMutex. ↵jan.nijtmans2016-03-211-8/+18
| | |/ / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | One less mutex to be worried about.
| | * | | | | | | | | | | | | | Fix [d3071887dbc7aeac]: Fix SEGV in Tcl_FinalizeNotifier(). Thanks to ↵jan.nijtmans2016-03-211-17/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | hirofumi for both the bug-report and the fix. Use TclpMasterLock() in stead of MASTER_LOCK everywhere (in stead of in some files only, not in others). Use "static int initialized" variable consistantly. Fix some comments. No change of functionality.
| | * | | | | | | | | | | | | | configure.in -> configure.acjan.nijtmans2016-03-083-2/+2
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Bump trunk to 8.7a0 to accept new feature development.dgp2016-03-035-3128/+3295
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | compatability -> compatibilityjan.nijtmans2016-12-011-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / / | | | | | | | | | | | | | | | / | |_|_|_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | |
| * | | | | | | | | | | | | | compatability -> compatibilityjan.nijtmans2016-12-011-2/+2
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Update http version number to 2.8.10, due to [838e99a76d]jan.nijtmans2016-11-021-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / | | | | | | | | | | | | | | / | |_|_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | |
| * | | | | | | | | | | | | Update http version number to 2.7.14, due to [838e99a76d]jan.nijtmans2016-11-021-2/+2
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Fix [3cc1d91345]: duplicate calls to TclpFreeAllocCache() on thread existsjan.nijtmans2016-10-111-2/+4
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / | | | | | | | | | | | | | / | |_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | |
* | | | | | | | | | | | | merge core-8-6-branch. Undo changes to coffbase.txt (they cause overlap with Tk)winFixesjan.nijtmans2016-09-216-10/+10
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|_|_|_|/ | |/| | | | | | | | | | |
| * | | | | | | | | | | | Make it more likely that compiles with VS2012/VS2013 actually work on ↵jan.nijtmans2016-09-212-2/+2
| |\ \ \ \ \ \ \ \ \ \ \ \ | | |/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | Windows XP. See: [https://tedwvc.wordpress.com/2014/01/01/how-to-target-xp-with-vc2012-or-vc2013-and-continue-to-use-the-windows-8-x-sdk/]
| | * | | | | | | | | | | Make it more likely that compiled with VS2012/VS2013 actually work on ↵jan.nijtmans2016-09-212-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Windows XP. See: [https://tedwvc.wordpress.com/2014/01/01/how-to-target-xp-with-vc2012-or-vc2013-and-continue-to-use-the-windows-8-x-sdk/]
| | * | | | | | | | | | | (cherry-pick): Bugfix [5d7ea04580]. Treat .cmd and .ps1 files are executable ↵jan.nijtmans2016-07-081-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | on Windows.
| * | | | | | | | | | | | Allow additional optional "interp" argument for testinterpresolver command. ↵jan.nijtmans2016-09-053-6/+6
| | |_|_|_|_|_|_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Not used yet in any test-case. Protect panic in tclLiteral.c for possible null-pointer access. (cherry-picked from Gustaf Neuman's interpresolver patch). Eliminate some unecessary spacing.
* | | | | | | | | | | | Permit static linking to the MSVCRT as a stand-alone option. Enable WinXP ↵Joe Mistachkin2016-09-192-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SDK compatibility.
* | | | | | | | | | | | Set the default topic, enable full-text search, and put all help output ↵Joe Mistachkin2016-08-101-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | files under OUT_DIR.
* | | | | | | | | | | | Fix the 'htmlhelp' target so that it compiles cleanly and includes all the ↵Joe Mistachkin2016-08-091-7/+7
|/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | appropriate HTML files.
* | | | | | | | | | | Start RC branch for Tcl 8.6.6dgp2016-07-122-2/+2
| |_|_|_|_|_|_|_|_|/ |/| | | | | | | | |
* | | | | | | | | | Fix compiler warnings (const-ness and unused label) that did not show up ashok2016-07-101-2/+1
| |_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | in the non-optimized build before last checkin.
* | | | | | | | | Bugfix [9ece99d58b]. Make exec understand .CMD files on Windows.ashok2016-07-092-4/+4
| | | | | | | | |
* | | | | | | | | Bugfix [3613671]. file owned implementation for Windows.ashok2016-07-092-1/+66
| | | | | | | | |
* | | | | | | | | Bugfix [ae61a67192]. file {stat, type, size} etc. support for built-in ↵ashok2016-07-092-10/+47
| |_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | special Windows files/devices like CON.
* | | | | | | | Bugfix [5d7ea04580]. Treat .cmd and .ps1 files are executable on Windows.ashok2016-07-071-1/+3
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | Fix [7393be0be6e7f91cbb2016fa777896e3895929e3|7393be0be6]: Tcl Thread ↵jan.nijtmans2016-06-141-7/+4
|\ \ \ \ \ \ \ | |/ / / / / / | | | | | | | | | | | | | | library doesn't work in Debug build on Windows_x64
| * | | | | | Fix [7393be0be6e7f91cbb2016fa777896e3895929e3|7393be0be6]: Tcl Thread ↵jan.nijtmans2016-06-141-7/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | library doesn't work in Debug build on Windows_x64
* | | | | | | (cherry-pick) Merge TIP #447: Execution Time Verbosity Levels in ↵jan.nijtmans2016-06-021-2/+2
| |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | tcltest::configure. Tcltest 2.3.8 -> 2.4.0.
* | | | | | result/sendResult could be 64-bit, so account for thatjan.nijtmans2016-05-131-2/+2
| |_|_|_|/ |/| | | |
* | | | | Make tclreg13.dll work in any Unicode environment (either with 32-bit or ↵jan.nijtmans2016-05-133-16/+20
| |_|_|/ |/| | | | | | | | | | | 64-bit characters). Adopted from Androwish. Thanks to Christian Werner. version -> 1.3.2
* | | | Fix [2538f373ffc78d6dba9c3d973c147a84fdd9bbd8|2538f373ffc78d6d]: crash in ↵jan.nijtmans2016-04-081-1/+1
| |_|/ |/| | | | | | | | Tcl_OpenTcpServer() on Windows
* | | RFE [0ef5e653ff4caf5f896ec1182e0aac38ab9a0c46|0ef5e653]: Add nsf to coffbase.txtjan.nijtmans2016-04-011-0/+1
|\ \ \ | |/ / | | / | |/ |/|
| * RFE [0ef5e653ff4caf5f896ec1182e0aac38ab9a0c46|0ef5e653]: Add nsf to coffbase.txtjan.nijtmans2016-04-011-0/+1
| |
| * merge 8.5dgp2015-12-102-13/+6
| |\
| * \ merge 8.5dgp2015-11-303-11/+10
| |\ \
| * | | autoconf-2.59dgp2015-10-231-5/+5
| | | |
| * | | Bump to release number 8.5.19dgp2015-10-231-1/+1
| | | |