summaryrefslogtreecommitdiffstats
path: root/win/makefile.vc
Commit message (Collapse)AuthorAgeFilesLines
...
* * win/makefile.vc: replaced $(WINDIR) with $(include32) for thedavygrvy2001-08-161-2/+2
| | | | | .rc.res inference rule. winver.h wasn't getting included. [Bug: 445630]
* 2000-01-31 Don Porter <dgp@users.sourceforge.net>dgp2001-01-311-3/+3
| | | | | * win/makefile.vc (install-libraries): Corrected misdirected install directory for the msgcat 1.2 package.
* * tools/tcl.wse.in: updated for unversioning of library dirshobbs2000-11-031-11/+11
| | | | | | | * unix/Makefile.in (install-libraries, dist): * win/makefile.vc (install-libraries): * win/Makefile.in (install-libraries): updated to install unversioned library directories into versioned directories.
* updated default tools pathshobbs2000-11-031-14/+9
|
* makefile fixes for Win64 supporthobbs2000-11-021-22/+43
|
* 2000-10-30 David Gravereaux <davygrvy@ajubasolutions.com>davidg2000-10-311-2/+6
| | | | | | | | | * win/configure.in: * win/Makefile.in: * win/makefile.vc: * win/tcl.rc: * win/tclsh.rc: Added logic to derive filenames better in the resource scripts based on compile options.
* addition of tclIOGT.c source filehobbs2000-09-281-1/+2
|
* * win/makefile.vc:ericm2000-08-151-12/+13
| | | | | | | | | | * win/Makefile.in: * unix/Makefile.in: Added tclPlatDecls.h to the list of installed headers, for more complete stubs support. [Bug: 5241]. * generic/tcl.h: Added #include "tclPlatDecls.h" to get platform-specific stubs declarations (Tcl_WinTCharToUtf, etc) [Bug: 5241].
* * win/makefile.vc: Applied patch from Don Porter to provide betterericm2000-07-191-1/+5
| | | | nmake support for NT/Alpha [RFE: 5938].
* * README:hobbs2000-05-031-3/+3
| | | | | | | | | | | | | | | | | | * generic/tcl.h: * library/init.tcl: * library/reg1.0/pkgIndex.tcl: * library/tcltest1.0/tcltest.tcl: * mac/README: * tools/tcl.hpj.in: * tools/tcl.wse.in: * unix/README: * unix/configure.in: * unix/tcl.spec: * win/README: * win/README.binary: * win/configure.in: * win/makefile.vc: * win/tcl.m4: updated patchlevel to 8.4a1
* 2000-05-02 Andreas Kupries <a.kupries@westend.com>kupries2000-05-021-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Overall changes: (1) Implementation of joinable threads for all platforms. (2) Additional API's for channels. Required to allow the thread extension to move channels between threads. * generic/tcl.decls (lines 1360f): Added Tcl_JoinThread, Tcl_IsChannelShared, Tcl_IsChannelRegistered, Tcl_CutChannel, Tcl_SpliceChannel, Tcl_IsChannelExisting and Tcl_ClearChannelHandlers (slots 394 to 400). * generic/tclIO.c: Implemented Tcl_IsChannelRegistered, Tcl_IsChannelShared, Tcl_CutChannel, Tcl_SpliceChannel, Tcl_IsChannelExisting and Tcl_ClearChannelHandlers. Tcl_CutChannel uses code from CloseChannel. Replaced this code by a call to Tcl_CutChannel. Replaced several code fragments adding channels to the channel list with calls to Tcl_SpliceChannel. Removed now unused variables from CloseChannel and Tcl_UnstackChannel. Tcl_ClearChannelHandlers uses code from Tcl_Close. Replaced this code by a call to Tcl_ClearChannelHandlers. Removed now unused variables from Tcl_Close. Added the subcommands 'cut', 'forgetch', 'splice' and 'isshared' to the test code (TclTestChannelCmd). * unix/tclUnixThread.c: Implemented Tcl_JoinThread using the pthread-functionality. * win/tclWinThrd.c: Fixed several small typos in comments. Implemented Tcl_JoinThread using a platform independent emulation layer (see generic/tclThreadJoin.c below). Added 'joinLock' to serialize Tcl_CreateThread and TclpExitThread to prevent a race for joinable threads. * mac/tclMacThrd.c: Implemented Tcl_JoinThread using a platform independent emulation layer (see generic/tclThreadJoin.c below). Due to the cooperative nature of threading on this platform the race mentioned above is not present. * generic/tclThreadJoin.c: New file. Contains a platform independent emulation layer helping in the implementation of joinable threads for the win and mac platforms. * generic/tclInt.h: Added declarations for TclJoinThread, TclRememberJoinableThread and TclSignalExitThread. These procedures define the API of the emulation layer for joinable threads (see generic/tclThreadJoin.c above). * win/Makefile.in: * win/makefile.vc: Added generic/tclTheadJoin.o to the rules. * mac/: I don't know to which file generic/tclTheadJoin.o has to be added to so that it compiles. Sorry. * unix/tclUnixChan.c: #ifdef'd the thread-local list of file channels as it prevents us from transfering channels. To restore this we may need an extended interface to drivers in the future. Target: 9.0. Found while testing the new transfer of channels. The information in this list for a channel was left behind and then crashed the system during finalization. * generic/tclThreadTest.c: Added -joinable flag to 'testthread create'. Added subcommand 'testthread join'. * doc/CrtChannel.3: Added documentation for Tcl_IsChannelRegistered, Tcl_IsChannelShared, Tcl_CutChannel, Tcl_SpliceChannel, Tcl_IsChannelExisting and Tcl_ClearChannelHandlers. * doc/Thread.3: Added documentation for Tcl_JoinThread. * tests/thread.test: Added tests for joining of threads.
* * unix/Makefile.in:hobbs2000-04-251-5/+5
| | | | | | * win/Makefile.in: * win/makefile.vc: updated for http change and some cleanup * library/http2.[13]: moved dir http2.1 to http2.3 to match version
* flipped debug bithobbs2000-02-101-2/+2
|
* * win/makefile.vc: added some support for building helpfile on Windowshobbs2000-01-261-1/+24
|
* simplified makefile flagshobbs2000-01-241-13/+4
|
* * win/tclWin32Dll.c:hobbs1999-12-091-127/+51
| | | | | | | | | | | | | | | * win/tclWinChan.c: * win/tclWinFCmd.c: * win/tclWinInit.c: * win/tclWinPipe.c: * win/tclWinSock.c: removed all code that supported Win32s. It was no longer officially supported, and likely didn't work anyway. * win/makefile.vc: removed 16 bit stuff, cleaned up. * win/tcl16.rc: * win/tclWin16.c: * win/winDumpExts.c: these files have been removed from the source tree (no longer necessary to build) * win/aclocal.m4: made it just include tcl.m4
* * win/tclWinTest.c: added testvolumetype command, as atime ishobbs1999-10-291-5/+5
| | | | | completely ignored for Windows FAT file systems * win/tclWinPort.h: added sys/utime.h to includes
* * {win,mac,unix,tools,}/README:hobbs1999-10-051-3/+3
| | | | | | | | | | | | * win/README.binary: * win/makefile.vc: * {win,unix}/configure.in: * generic/tcl.h: * library/init.tcl: updated to 8.3a1 from 8.2.0. * win/tclWinReg.c: fixed registry command to properly 'get' HKEY_PERFORMANCE_DATA root key data. Needs more work. * win/tclWinSerial.c: changed SerialSetOptionProc to return TCL_OK by default. (patch from Rolf Schroedter)
* Fixed type, USE_TCL_ALLOC should be USE_TCLALLOCredman1999-08-131-2/+2
|
* Fix hange with socket code (win32) with threads enabled, fixedredman1999-07-221-2/+2
| | | | | the semaphores for threads disabled. Fixed calling of tcltest in Makefile.in (win32) and fixed safe-6.3 for threads enabled.
* * Changed version to 8.2b2.redman1999-07-221-2/+2
| | | | | | | | | | | | | | | | | | * win/tclWinPort.h: Block out include of sys/*.h in order to build extensions with MetroWerks compiler for Win32. [Bug: 2385] * generic/tclCmdMZ.c: * generic/tclIO.c: Fix ANSI-style prototypes based on patch from Ulrich Ring. [Bug: 2391] * unix/Makefile.in: Need to make install-sh executable before calling (with chmod +x). [Bug: 2413] * tests/var.test: * generic/tclVar.c: Fixed bug that caused a seg. fault when using "array set a(b) {}", which is a bad array name anyway. Now the "array set" command will return an error in this case. Added test case and fixed existing test. [Bug: 2427]
* * win/makefile.vc: Changed version number of DDE package in VC++redman1999-07-221-4/+4
| | | | makefile to use 1.1 instead of 1.0.
* changed http package version from 2.0 to 2.1hershey1999-07-201-5/+5
|
* Makefile.in: fixed cat32.exe buildredman1999-07-131-5/+2
| | | | makefile.vc: fixed calling tcltest.exe
* Change version number in NMAKE makefileredman1999-07-111-3/+3
|
* Merged String and Unicode object types. Added new functions tohershey1999-06-151-2/+1
| | | | | | | | | the puplic API: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj, Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange, Tcl_AppendUnicodeToObj. Note: some stringObj tests are still failing--the teststringobj command still needs to be updated.
* * tests/string.test:hershey1999-06-081-1/+2
| | | | | | | | | | | | | | | | | | | | | | | * generic/tclVar.c (Tcl_SetVar2Ex): * generic/tclStringObj.c (Tcl_AppendObjToObj): * generic/tclCmdMZ.c (Tcl_StringObjCmd): optimized the string index, string length, string range, and append command in cases where the object's internal rep is a bytearray. Objects with other internal reps are converted to have the new unicode internal rep. * unix/Makefile.in: * win/Makefile.in: * win/Makefile.vc: * tests/unicode.test: * generic/tclInt.h: * generic/tclObj.c: * generic/tclUnicodeObj.c: added a new object type to store the unicode representation of a string. * generic/tclTestObj.c: added the objtype option to the testobj command. This option returns the name of the type of internal rep an object has.
* removed bad patchstanton1999-05-071-2/+2
|
* * win/winDumpExts.c:stanton1999-05-071-4/+3
| | | | | * win/makefile.vc: Changed to emit library name in defs file. [Bug: 1998]
* * win/makefile.vc: Added encoding directory to install-librariesstanton1999-05-051-1/+4
| | | | target.
* * Changed version to 8.1.1.stanton1999-04-301-1/+2
|
* Resynced with mainline.rjohnson1999-04-211-1/+1
|
* merged the parse changes between TclPro1.2 and Tcl8.1. Fixed bug in Windows ↵surles1999-04-211-2/+1
| | | | makefile caused when the win/pkgIndex.tcl file was replaced
* fixed bug 1571: pkgIndex files fail for dde and registry packages:surles1999-04-191-9/+17
|
* fixed bugs 1785 and 1799: decl header files not installedsurles1999-04-171-1/+2
|
* merged tcl 8.1 branch back into the main trunkstanton1999-04-161-96/+142
|
* Merged stubs changes into mainline for 8.0stanton1999-03-101-11/+54
|
* * 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.
* 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/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.
* 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
|
* Bumped the optimization to -O2 (optimize speed); test suite seems to haveescoffon1998-10-171-2/+4
| | | | 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-051-1/+2
| | | | | | | 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.
* Replaced SCCS strings, fixed binary filescore_8_0_3stanton1998-09-141-1/+1
|
* 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
|
* One more tweak for the import/export.escoffon1998-07-301-2/+3
|
* 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.