| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
DllMain() and 2) needs a MinGW custom assembly implimentation as
it doesn't understand SEH syntax.
FossilOrigin-Name: 569264164f3b2fa616ef2300d5e54c19f7d78ec6
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
exceptions that might happen. As Tcl will call Tcl_Finalize from its DllMain
due to the unload from ExitProcess() unloading Tcl, and if Tcl_Panic had
gotten called in an __except block, this avoid the possibility of not being
able to exit. Falls to TerminateProcess() in the __except case.
Removed the #ifdef _MSC_VER around DebugBreak as that function
exists in kernel32.dll and is not compiler dependent. I'd prefer to use
if (IsDebuggerPresent()) DebugBreak(); but IsDebuggerPresent() isn't
available in all kernel32.dll modules for all versions of windows.
FossilOrigin-Name: fba3b0257b5000a50421879687753cfdec5c6142
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Dde_Init() when STATIC_BUILD and TCL_USE_STATIC_PACKAGES macros
are set.
* win/makefile.vc: linkexten option now sets the
TCL_USE_STATIC_PACKAGES macro which also adds the registry and
dde static lib files to the link of the shell. [Patch 479697]
* win/rules.vc: Matches the one from Tcl.
* win/buildall.vc.bat: More useful commentary.
FossilOrigin-Name: 430b4100e7aecc7a466e1a42a07a91ac7ce91717
|
|
|
| |
FossilOrigin-Name: 1b4c22ee355db729eaf25b0dde58c6c4507aaef2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Added basic Cygwin support.
* win/tcl.m4 (SC_PATH_TCLCONFIG): Support one-tree build.
(SC_PATH_TKCONFIG): Likewise.
(SC_PROG_TCLSH): Likewise.
(SC_CONFIG_CFLAGS): Assume real Cygwin port and remove -mno-cygwin
flags. Add -mwin32 to extra_cflags and extra_ldflags.
Remove ``-e _WinMain@16'' from LDFLAGS_WINDOW.
* win/configure: Regenerate.
* win/tkWinPort.h (tchar.h): Do not include on Cygwin.
(_T): Define for Cygwin.
* win/winMain.c (main): Conditionally define.
FossilOrigin-Name: 85aa3e209016ec5dccf66dd0595b87989845a100
|
|
|
|
|
|
|
| |
* win/winMain.c: tcltest executable on Windows. It was not
used, and the dependency complicated the Makefile. [Bug 592638].
FossilOrigin-Name: e82e08ec10881d98c016391391eb668f454d5efc
|
|
|
|
|
|
| |
CONST-ification in Tcl.
FossilOrigin-Name: ec8eadb616d6bb87ff8bf1d5f0dde5f92aa8292a
|
|
|
|
|
|
|
|
|
|
|
| |
* library/tkfbox.tcl (::tk::dialog::file::Config): removed the
extraneous glob on -initialdir after file isdir already returned 1
and moved cd trick into this case as the else already uses [pwd].
[Bug: 5181]
* win/winMain.c: moved extern call out of WinMain func
FossilOrigin-Name: 363c75beb90525f9a7136a709b82fc3a43a9bf41
|
|
|
|
|
|
|
|
|
| |
* unix/tkAppInit.c:
* win/winMain.c: Added added hooks into the main() code for
supporting TclPro and other "big" shells more easily without
requiring a copy of the main() code.
FossilOrigin-Name: b63cb594110edc0757028e2f29b0b026628982fa
|
|
|
|
|
|
| |
returning an error message from the top level
FossilOrigin-Name: 573f3d0c33b3530b217d41afa5aa1b55af4df38c
|
|
|
|
|
|
|
|
| |
function public. Add an interp argument and init the Tcl stubs.
Rename TkConsoleInit() to Tk_CreateConsoleWindow()
Remove TkConsoleCreate() (no underbar)
FossilOrigin-Name: 702512c22952ed7a1cf3c17fa96c34452140d7c4
|
|
|
| |
FossilOrigin-Name: 1120dc4257448ed1955333e682de48e2940cc741
|
|
|
| |
FossilOrigin-Name: 4c74dd207943932e6d9a6d06a3ec11b8e4459199
|
|
|
|
|
|
|
|
|
|
|
| |
* generic/tkTest.c:
* generic/tkAppInit.c:
* win/winMain.c: Changed some EXTERN declarations to extern
since they are not defining exported interfaces. This avoids
generating useless declspec() attributes and makes the windows
makefile simpler.
FossilOrigin-Name: 3afc334c67e9e295066148c5eeca74ab9bca9c3b
|
|
|
| |
FossilOrigin-Name: fb58b663f313796e8ed3115f92d657f0cae1d575
|
|
|
| |
FossilOrigin-Name: 7a5ff3b8b178079532ce7169646e2f5735768485
|
|
FossilOrigin-Name: 2bf55ca9aa942b581137b9f474da5ad9c1480de4
|