summaryrefslogtreecommitdiffstats
path: root/win
Commit message (Collapse)AuthorAgeFilesLines
* * win/makefile.vc: Added better support for paths with spaces instanton1999-02-031-49/+50
| | | | | | the name. Added .lib and support .dlls to the install-binaries target. Added generate of a pkgIndex.tcl script to the install-libraries target.
* * win/tclAppInit.c:stanton1999-02-031-5/+5
| | | | | | | | | | | | * unix/tclAppInit.c: * mac/tclMacAppInit.c: * generic/tclTest.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. * generic/tcl.h: Moved Tcl_AppInit declaration to end and cleared out TCL_STORAGE_CLASS so it is not declared with a declspec().
* * unix/tclUnixChan.c:stanton1999-02-031-3/+21
| | | | | | | * win/tclWinSock.c: * doc/socket.n: Applied Gordon Chaffee's patch to handle failures during asynchronous socket connection operations. This adds a new "-error" fconfgure option to socket channels. [Bug: 893]
* Changed to pass registry dll path into test script so the test doesn'tstanton1999-02-021-2/+3
| | | | depend on being able to find a working pkgIndex.tcl file
* * win/winDumpExts.c: Patched to be picker about strippingstanton1999-02-021-7/+9
| | | | @'s. [Bug: 920]
* * win/tclWinReg.c:stanton1999-02-021-2/+3
| | | | | * doc/registry.n: Added support for HKEY_PERFORMANCE_DATA and HKEY_DYN_DATA keys. [Bug: 1109]
* * win/tclWinInit.c (TclPlatformInit): Added code to ensurestanton1999-02-021-2/+4
| | | | tcl_pkgPath is set to "" when no registry entry is found. [Bug: 978]
* * win/makefile.vc:stanton1999-01-061-4/+12
| | | | | | * generic/tcl.h: * generic/tclAlloc.c: Added USE_NATIVEMALLOC ifdefs to make it easier to compile for use with Purify.
* Updated the version to 8.0.5.rjohnson1999-01-043-9/+12
|
* * tclWinSock.c (CreateSocket, TcpAccept): Windows NT createsstanton1998-12-041-1/+15
| | | | | sockets so they are inheritable by default. Turn off this bit so sockets aren't kept open by exec'ed processes. [Bug: 892]
* cleaned up test suite so most of the tests pass on Windowsstanton1998-11-021-2/+4
|
* Made "install-libraries" target more silent when copying library files.suresh1998-11-021-21/+21
|
* On Windows, Added the "debug" element of the tcl_platform array whichsuresh1998-10-201-1/+13
| | | | | | | indicates that the particular Tcl shell has been compiled with debug information Using "info exists tcl_platform(debug)" a Tcl script can direct the interpreter to load debug versions of DLLs with the load command.
* Bumped the optimization to -O2 (optimize speed); test suite seems to haveescoffon1998-10-173-10/+12
| | | | worked (as much as test suites under windows work)
* Fixed a bug that caused the Tcl DLL to be linked against msvcrt.lib forescoffon1998-10-071-5/+5
| | | | both debug and nodebug builds.
* Added a new Tcl object called "procbody"; this object's internalescoffon1998-10-052-2/+10
| | | | | | | representation contains both a Proc struct and its associated ByteCode. Updated tclProc.c::TclCreateProc to take procbody instances as the body argument, for future support of compiler extensions. Added the "procbodytest" package for testing all this stuff.
* merged tcl8.0.4 changes to fix Windows memory allocationstanton1998-09-301-6/+7
|
* Added support for Win95.escoffon1998-09-302-40/+46
|
* Replaced SCCS strings, fixed binary filescore_8_0_3stanton1998-09-1430-30/+30
|
* Initial revisionstanton1998-08-311-0/+518
|
* fixed bad registry codestanton1998-08-051-11/+18
|
* *** empty log message ***welch1998-08-041-12/+36
|
* *** empty log message ***welch1998-08-041-1/+2
|
* EXPORT is now TCL_STORAGE_CLASSescoffon1998-08-042-8/+8
|
* EXPORT is now TCL_STORAGE_CLASSescoffon1998-08-041-5/+6
|
* modified the support for specifying a build directory to be consistent withescoffon1998-08-031-2/+4
| | | | the Tk makefile.vc
* added EXTFLAGS hookstanton1998-07-311-0/+4
|
* added support for getting tcl_pkgPath from the registrystanton1998-07-311-38/+75
|
* One more tweak for the import/export.escoffon1998-07-301-2/+3
|
* Added notes about DLLIMPORT and DLLEXPORTwelch1998-07-291-6/+65
|
* - added setting of EXPORT to DLLEXPORT if we are building Tcl.escoffon1998-07-291-0/+7
|
* - added setting of EXPORT to DLLEXPORT if we are building Tclescoffon1998-07-291-0/+9
|
* set EXPORT to DLLEXPORT unconditionally, since the declaration ofescoffon1998-07-291-0/+8
| | | | Registry_Init is inside the source file.
* modified to support the new EXTERN macro, which has support for DLLescoffon1998-07-291-3/+15
| | | | | | import/export mechanisms. - Defines DLL_BUILD and BUILD_tcl. - Still uses the .def file for the DLLs, we'll phase it out later.
* use "ifdef DLL_BUILD" instead of "ifndef STATIC_BUILD"escoffon1998-07-291-14/+8
|
* *** empty log message ***welch1998-07-281-3/+2
|
* added the TCLPIPEDLLNAME and TCLREGDLLNAME macros, so that the names can beescoffon1998-07-281-2/+4
| | | | overridden at the command line
* changed to use default value instead of "Root"stanton1998-07-241-13/+21
| | | | changed to set tclDefaultLibrary instead of tcl_library
* Merged changes between child workspace "/home/welch/ws/tcl8.0.3" andwelch1998-07-241-0/+5
| | | | parent workspace "/export/home/ws/tcl8.0".
* Merged changes between child workspace "/home/escoffon/ws/tcl8.0" andescoffon1998-07-211-12/+20
| | | | parent workspace "/export/home/ws/tcl8.0".
* *** empty log message ***welch1998-07-202-0/+2
|
* added STATIC_BUILD test around DllMain, etc.stanton1998-07-091-0/+7
|
* Moved the variable 'tclPreInitScript' to generic/tclInitScript.h.suresh1998-07-091-10/+3
|
* added install targetsescoffon1998-07-091-0/+41
|
* - added SCCS idescoffon1998-07-011-0/+1
|
* - added SCCS id stringescoffon1998-07-011-1/+2
| | | | - fixed a logic bug
* Initial revisionescoffon1998-07-012-0/+38
|
* - dropped the .\ from temp dir nameescoffon1998-07-011-4/+4
| | | | - .pch file is now generated in temp dir, not in .
* Changed variable name "tclAlternateInitScript" to "tclPreInitScript".suresh1998-07-011-7/+8
| | | | Added error-checking for pre-initialization script.
* Added definition of variable "tclAlternateInitScript" which is a globabl var-suresh1998-07-011-2/+13
| | | | | | iable and if set to a non-NULL value, will be evaluated just before the built-in script given in the file (variable) "generic/tclInitScript.h" ("initScript").