summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* typo fixdavygrvy2001-11-081-2/+2
|
* * win/tcl.dsp:davygrvy2001-11-083-2/+1578
| | | | | | * win/tcl.dsw: Simple MsDev stub project files that calls makefile.vc. Will help run Tcl in the debugger easier without confusing MsDev for where the .pdb files are.
* no messagedavygrvy2001-11-081-0/+5
|
* * win/rules.vc:davygrvy2001-11-082-35/+99
| | | | | | | | * win/makefile.vc: Fixed install target to adjust for the different build types. Added a 'linkexten' option to link the win extensions inside the shell when built static. Placed win/tclAppInit.c patch in SF patch DB for approval. 'profile' option not hooked in yet. Everything else know is done.
* no messagedavygrvy2001-11-081-0/+9
|
* * unix/Makefile.in:mdejong2001-11-083-9/+14
| | | | | | | | | * win/Makefile.in: Print a message indicating that the user should run "make genstubs" when the generated tclStubInit.c file is out of date. We can't regenerate automatically since there may be no tclsh on the system and that would cause bootstrap problems. [Tcl bug 465874]
* Define TCL_INCLUDE_SPEC in tclConfig.sh. It should bemdejong2001-11-087-309/+351
| | | | | | | | | | | | | | included by extensions that need to find Tcl include headers in the install location. The user can override the include install dir with --includedir so we need to record this information for extensions. [Tcl bug 421835] * unix/configure: Regen. * unix/configure.in: Define TCL_INCLUDE_SPEC. * unix/tclConfig.sh.in: Define TCL_INCLUDE_SPEC. * win/configure: Regen. * win/configure.in: Define TCL_INCLUDE_SPEC. * win/tclConfig.sh.in: Define TCL_INCLUDE_SPEC.
* small error with the naming of the dee and reg extensions.davygrvy2001-11-081-3/+3
|
* * win/rules.vc:davygrvy2001-11-082-64/+64
| | | | | | | | * win/makefile.vc: Dropped the NOMSVCRT macro and put it on the option list instead. It makes more sense to me this way as NOMSVCRT=0 would only be the valid setting. Fixed the dde and reg extension for building static. Improved, but not perfected, the winhelp target.
* no messagedavygrvy2001-11-081-0/+9
|
* * win/README: Change minimum VC++ version to 5.X sincemdejong2001-11-074-29/+65
| | | | | | | | | | | | 4.X is known not to work. Indicate that Mingw is required and building with Cygwin gcc is not supported. Include instructions that indicate how to install Mingw and what URLs folks should use to download the supported version of Mingw. * win/configure: Regen. * win/configure.in: Error out if user tries to compile the Windows version of Tcl with Cygwin gcc. Users should compile with Mingw gcc instead.
* See ChangeLogandreas_kupries2001-11-072-7/+28
|
* no messagedavygrvy2001-11-071-0/+18
|
* * win/rules.vc (new):davygrvy2001-11-072-292/+523
| | | | | | | | | | | | | | | | | * win/makefile.vc: Complete over/under rewrite to support numerous build options all from the commandline itself without needing to edit the makefile. Now requires vcvars32.bat to be run prior to running nmake for bootstraping the environment. Fully doc'd usage for it is in makefile.vc. Commentary welcome. Sticky points left are: 1) winhelp target shows errors in the converting script. 2) .rc scripts aren't getting the right #defines to build the correct "OriginalFilename" strings. (have patch, won't commit yet) 3) Naming convention with suffixes describing the buildtype are 'tsdx' which will need public acceptance. ie. tclsh84tsx.exe is a (t) threaded shell (s) statically linked to the core and (x) uses msvcrt instead of libcmt.
* vfs robustness fixvincentdarley2001-11-042-11/+19
|
* file copy soft link docsvincentdarley2001-11-023-17/+34
|
* win fs fixesvincentdarley2001-10-296-34/+87
|
* Fix for bug 475941; access() was being called with path-free file names ondkf2001-10-292-5/+11
| | | | some paths through the glob code!
* Fix for bug 471374; Tcl only resets serial ports on exit now if it hasdkf2001-10-252-15/+38
| | | | updated their settings first.
* * doc/ObjectType.3: Minor documentation fix, reported by Davidandreas_kupries2001-10-222-2/+7
| | | | N. Welton <davidw@users.sourceforge.net> directly to me.
* small win fixvincentdarley2001-10-222-1/+20
|
* * tests/clock.test (clock-8.1):hobbs2001-10-184-4/+55
| | | | | | | * generic/tclDate.c (RelativeMonth): * generic/tclGetDate.y (RelativeMonth): corrected off-by-one-day error in clock scan with relative months and years during swing hours. [Bug #413397, Patch #414024] (lavana)
* Tcl_FSChdir fixvincentdarley2001-10-182-6/+45
|
* * unix/tclUnixPipe.c (PipeInputProc, PipeOutputProc): do immediatehobbs2001-10-182-11/+33
| | | | | retry when error is returned with errno == EINTR. [Bug #415131] (leger)
* * corrected referencedgp2001-10-171-1/+1
|
* * unix/tclLoadAout.c (TclGuessPackageName): removed unused varshobbs2001-10-162-4/+13
| | | | and fixed warnings. [Bug #446622] (lim)
* Undo of mistaken commit. Sorry!dgp2001-10-167-50/+49
|
* * Added test to demonstrate memory corruption problems. [Bug 219393].dgp2001-10-167-49/+50
|
* Doh ... strncmp, not strcmp needed in last commit.Miguel Sofer2001-10-152-3/+3
|
* generic/tclProc.c: changing a memcmp to strcmp to avoid a memory errorMiguel Sofer2001-10-152-33/+38
| | | | | detected by purify (thanks Jeff); modify style to agrre with the style guide.
* fixed dangling ;hobbs2001-10-152-3/+5
|
* configure changeshobbs2001-10-151-0/+7
|
* * unix/configure:hobbs2001-10-155-151/+224
| | | | | | | | * unix/configure.in: * win/configure: * win/configure.in: * win/tcl.m4: reworked to be a little cleaner in comparison to each other, and to AC_SUBST even empty vars for win/tclConfig.sh
* * generic/tclInt.decls (TclExpandCodeArray,TclGetInstructionTable):andreas_kupries2001-10-156-15/+60
| | | | | | | | | | Added to internal stubs table. Tclcompiler (Tclpro project) needs them if used as loadable package under Windows. Changed signatures. We don't want to describe compiler internal structures in "tclInt.h". * generic/tclCompile.h: S.a. Removed function declarations. * generic/tclCompile.c: S.a. Adapted to changed signatures.
* see ChangeLoghobbs2001-10-151-0/+15
|
* minor code cleanuphobbs2001-10-151-30/+29
|
* * doc/open.n: moved all fconfigure option docs to fconfigure.nhobbs2001-10-152-52/+205
| | | | * doc/fconfigure.n: added serial config options
* * win/tclWinChan.c:hobbs2001-10-153-246/+1091
| | | | | | * win/tclWinPort.h: * win/tclWinSerial.c: added TIP #35 Windows enhancements for serial configuration. [Patch #438509] (schroedter)
* * generic/tcl.h: moved #define of WIN32 to tcl.h where __WIN32__hobbs2001-10-151-1/+4
| | | | is defined and added #ifndef check.
* small fs fixesvincentdarley2001-10-153-6/+12
|
* * Corrected typos in doc/RegExp.3macosx_8_4_branchpointdgp2001-10-141-2/+2
|
* see ChangeLoghobbs2001-10-121-5/+22
|
* Small modif to tests/compile.test: better constraint handling forMiguel Sofer2001-10-121-24/+21
| | | | tests committed earlier today.
* * library/encoding/ebcdic.enc:hobbs2001-10-122-0/+308
| | | | | * tools/encoding/ebcdic.txt: EBCDIC charset mapping. [Patch #219323] (nijtmans)
* * tests/ioCmd.test: added catch around file removal, as Windowshobbs2001-10-121-15/+3
| | | | file locking throws errors.
* (socket-7.2): corrected to work on Win2Khobbs2001-10-121-6/+5
|
* added removeFile for outdatahobbs2001-10-121-1/+4
|
* * library/encoding/tis-620.enc:hobbs2001-10-122-0/+283
| | | | | * tools/encoding/tis-620.txt: TIS-620 charset mapping. [Patch #467423] (poonlap)
* * tests/compile.test: new tests for [Bug 467523]Miguel Sofer2001-10-122-2/+57
|
* generic/tclLiteral.c: (TclReleaseLiteral) insured thatMiguel Sofer2001-10-112-32/+30
| | | | | self-referential bytecodes are properly cleaned up on interpreter deletion [Bug 467523]