summaryrefslogtreecommitdiffstats
path: root/win
Commit message (Collapse)AuthorAgeFilesLines
* stub16.c Don't hide that we use the ASCII API here.nijtmans2010-03-202-10/+10
| | | | tclWinPipe.c 2 unnecessary type casts.
* don't cast away "const" without reason.nijtmans2010-03-161-2/+2
|
* Upgrade zlib to version 1.2.4nijtmans2010-03-161-2/+1
|
* Fix [Bug 2967340]: Static build failurenijtmans2010-03-122-9/+4
|
* Revert a few files from the previous commit, preventingnijtmans2010-03-111-2/+2
| | | | conflicts with Kevin's TIP #357 work
* Remove unnecessary '&' decoration for functionnijtmans2010-03-112-5/+3
| | | | | pointers. Fix double declaration of TclNativeDupInternalRep
* test that tclOO stubs are present in stub librarynijtmans2010-03-077-84/+79
| | | | | | | | Applied missing part of [Patch 2961556] Change all tclWinProcs signatures to use TCHAR* in stead of WCHAR*. This is meant as preparation to make [Enh 2965056] possible at all.
* Split tommath stub lib source filenijtmans2010-03-044-2/+27
| | | | | in separate file. Don't use -fvisibility=hidden for cygwin
* Split tclCompCmds.c into two pieces to improve developer sanity.dkf2010-02-263-2/+5
|
* Squelch some warningsdkf2010-02-251-21/+26
|
* Eliminate all internal Tcl_WinUtfToTCharnijtmans2010-02-155-25/+25
| | | | | and Tcl_WinTCharToUtf calls, needed for mslu support.
* reverted earlier rename from tcl*Stubs tonijtmans2010-02-158-114/+138
| | | | | | | | tcl*ConstStubs, it's not necessary at all. tclEnsemble.c: Fix signed-unsigned mismatch make tclWinProcs "const" Add first part of mslu support, See [Feature Request #2819611]
* Hive off the ensemble code into its own file.dkf2010-02-133-2/+5
| | | | Split the [switch] compiler for sanity's sake.
* Add .lib, .exp and .res to .cvsignorenijtmans2010-02-131-0/+3
|
* use -pipe for gcc on win32 (mingw/cygwin)nijtmans2010-02-132-20/+4
|
* Follow-up to [2010-01-29] commit:nijtmans2010-02-051-2/+2
| | | | | | | | | | prevent space within stub table function parameters if the parameter type is a pointer. Minor formatting, and VOID -> void. Change signature of TclNRInterpProcCore, and TclOONewProc(Instance|)MethodEx, indicating that errorProc is a function pointer tclVar.c: fixed two gcc warnings
* Revert [2009-12-21] change in tcl.h, in steadnijtmans2010-01-226-97/+90
| | | | | | | | resolve the CYGWIN inclusion problems by re-arranging the inclusions at other places. Make cygwin configuration error into a warning: CYGWIN compilation works although there still are test failures.
* Fix TCL_LL_MODIFIER for Cygwinnijtmans2010-01-137-38/+38
| | | | | and various other minor CYGWIN compilation problems
* * win/tclWinDde.c: VC++ 6.0 doesn't havenijtmans2010-01-109-65/+67
| | | | | | | | | | | | | | | | | | | | * win/tclWinReg.c PDWORD_PTR * win/tclWinThrd.c: Fix various minor gcc warnings. * win/tclWinTime.c * win/tclWinConsole.c Put channel type definitions * win/tclWinChan.c in static const memory * win/tclWinPipe.c * win/tclWinSerial.c * win/tclWinSock.c * generic/tclIOGT.c * generic/tclIORChan.c * generic/tclIORTrans.c * unix/tclUnixChan.c * unix/tclUnixPipe.c * unix/tclUnixSock.c * unix/configure (regenerated with autoconf 2.59) * tests/info.test: Make test independant from tcltest implementation.
* Various CYGWIN-related fixes. In the win32 configure script, CYGWIN is still ↵nijtmans2009-12-215-22/+24
| | | | not enabled yet, but at least it is a step in the right direction.
* bump to msgcat 1.4.3 to account for commitsdgp2009-12-171-3/+3
|
* Fix gcc warning: ignoring return value of ‘write’,nijtmans2009-12-161-3/+3
| | | | | | declared with attribute warn_unused_result CONSTify functions TclpGetUserHome and TclSetPreInitScript (TIP #27)
* Fix gcc warning, using gcc-4.3.4 on cygwinnijtmans2009-12-111-7/+4
| | | | | warning: array subscript has type 'char' win/makefile.vc Revert to version 1.203 [Bug #2912773]
* tools/genStubs.tcl Add support for win32 CALLBACK functionsnijtmans2009-12-021-13/+17
| | | | | | | and remove obsolete "emitStubs" and "genStubs" functions. win/Makefile.in Use tcltest86.dll for all tests, and add .PHONY rules to preemptively stop trouble that plagued Tk from hitting Tcl too.
* tcl.h Don't use EXPORT for Tcl_InitStubsnijtmans2009-11-301-27/+31
| | | | win/Makefile.in Better dependancies in case of static build.
* * win/tclAppInit.c (Tcl_AppInit): Reverted Jan's change that addedKevin B Kenny2009-11-271-5/+1
| | | | | | | a call to Tcl_InitStubs. 'tclsh' and 'tcltest' are providers, not consumers of the Stubs table, and should not link with the Stubs library, but only with the main Tcl library. (In any case, the presence of Tcl_InitStubs broke the build.) [Bug 2902965]
* Match the version-bump of TclOO.dkf2009-11-271-2/+2
|
* Fix [Bug 2902965] stub related changesnijtmans2009-11-263-17/+24
| | | | cause tclkit built to break
* * win/Makefile.in: Added a 'test-tcl' rule that is identicalKevin B Kenny2009-11-251-2/+4
| | | | | to 'test' except that it does not go spelunking in 'pkgs/'. (This rule has existed in unix/Makefile.in for some time.)
* [Bug 2893771] Teach [file stat] to handle locked files.patthoyts2009-11-241-12/+34
| | | | | This stops [file exists] from returning false for files that exist but are locked by resorting to FindFirstFile when GetFileAttributes fails.
* makefile.vc: Add stub library to necessary link linesnijtmans2009-11-231-3/+3
|
* #undef STATIC_BUILD in tclWin(Dde|Reg).c, in order to makenijtmans2009-11-236-155/+75
| | | | | | | | | | | sure that Xxxxx_Init is always exported even when Tcl is built static (otherwise we cannot create a DLL). tclThreadTest.c: Make all functions static, except TclThread_Init. fCmd.test Enable fCmd-30.1 when registry is available. tcl.m4 Fix ${SHLIB_LD_LIBS} definition, fix conflicts configure.in between static libraries and import library on windows. configure (regenerated) Makefile.in Simplifications related to tcl.m4 changes.
* Create tcltest86.dll as dynamic Tcltest packagenijtmans2009-11-191-15/+23
|
* * unix/tclAppInit.c: Repair broken build of the tcltest executable.dgp2009-11-191-13/+3
| | | | * win/tclAppInit.c: [Bug 2883850, 2900542].
* Add files to .cvsignorenijtmans2009-11-181-0/+5
|
* Fix [Bug 2883850]: pkgIndex.tcl doesn'tnijtmans2009-11-186-38/+41
| | | | get created with static Tcl build
* Eliminate various gcc warnings (in -Wextra mode)nijtmans2009-11-181-3/+3
|
* Eliminate various gcc warnings (in -Wextra mode)nijtmans2009-11-184-17/+18
|
* * win/tclWinDde.c: Avoid gcc compiler warning bymdejong2009-11-161-5/+5
| | | | explicitly casting DdeCreateStringHandle argument.
* Fix [Bug 2891171]: URL checking too strict when using multiple question marksnijtmans2009-11-111-3/+3
|
* Removed outdated Msys + Mingw info.stwo2009-11-091-12/+3
|
* fixes for htmlhelp targetJoe Mistachkin2009-11-021-4/+4
|
* Fix the icon to have 48x48 size (mistakenly made a 46px icon)patthoyts2009-10-151-0/+0
|
* Added dummy tclooConfig.sh files for easier cross-version building. [2026844]dkf2009-09-264-4/+28
|
* * library/tcltest/tcltest.tcl: Bump to tcltest 2.3.2 after revisiondgp2009-09-011-3/+3
| | | | | | * library/tcltest/pkgIndex.tcl: to verbose error message. * unix/Makefile.in: * win/Makefile.in:
* const addition (pkge.c)nijtmans2009-08-162-25/+23
| | | | | Use <pthread.h> in stead of "pthread.h" Eliminate some more gcc warnings
* eliminate TclWinResetInterfaceEncodings, becausenijtmans2009-08-024-66/+38
| | | | | | it does exactly the same as TclWinEncodingsCleanup, make sure that tclWinProcs and tclWinTCharEncoding are always set and reset concurrently.
* [Bug 2827066] msys build --enable-symbols brokennijtmans2009-07-263-6/+14
| | | | | And modified the same for unicows.dll, as a preparation for [Enh 2819611]
* Revert series of local changes not relevant to the last commit.andreas_kupries2009-07-231-3/+3
|
* * generic/tclIO.c (Tcl_GetChannelHandle): Do not crash forandreas_kupries2009-07-231-3/+3
| | | | | | | | * generic/tclPipe.c (FileForRedirect): getHandleProc == NULL, this is allowed. Provide a nice error message in the bypass area. Updated caller to check the bypass for a mesage. This fixes the bug [Bug 2826248] reported by Andy Sonnenburg <andy22286@users.sourceforge.net>