summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Added useful comments.davygrvy2001-11-201-7/+14
|
* * tests/compile.test: added a test for bug [Bug 483309]Miguel Sofer2001-11-192-1/+18
|
* win fs fixesvincentdarley2001-11-197-160/+424
|
* correcting erroneous date in Changelog.Miguel Sofer2001-11-191-1/+1
|
* Code reorganisation: moving all eval functions from tclParse.c to tclBasic.cMiguel Sofer2001-11-193-907/+916
|
* Changes due to TIP#68; memory handling in variable traces is now correct!dkf2001-11-196-83/+337
|
* patch for [Bug 483309]Miguel Sofer2001-11-192-1/+6
|
* added hpux nl_langinfo alias fallbackshobbs2001-11-172-2/+22
|
* adjusted HAVE_LANGINFO to allow for fallback table, added gb2312-1980 alias ↵hobbs2001-11-161-6/+21
| | | | for gb2312
* * tests/interp.test:hobbs2001-11-163-11/+37
| | | | | * generic/tclInterp.c (SlaveObjCmd): Corrected argument checking for '$interp alias|aliases|issafe'. [Patch #479560] (thoyts, hobbs)
* Removed a rogue C++ comment that inadvertently got left in tclListObj.cKevin B Kenny2001-11-162-2/+6
|
* * unix/tclUnixInit.c: added HAVE_LANGINFO code block.hobbs2001-11-165-312/+512
| | | | | | | | | | | * unix/configure: regened * unix/configure.in: added SC_ENABLE_LANGINFO call * unix/tcl.m4: made SHLIB_LD_LIBS='${LIBS}' for FreeBSD* (meyer) Added modified version of Wagner patch to make use of nl_langinfo where possible to determine Unix platform encoding, instead of the inflexible built-in system. This is used by default when possible, and can be disabled with --enable-langinfo=no. [Patch #418645] (hobbs, wagner)
* Moved Tcl_GetCommandFromObj and all defining code for tclCmdNameType objects ↵Miguel Sofer2001-11-164-424/+438
| | | | to tclObj.c
* Code reordering; execution levels made consistent [Bug 480896].Miguel Sofer2001-11-167-237/+127
|
* no messagedavygrvy2001-11-151-0/+8
|
* * win/makefile.vc:davygrvy2001-11-153-36/+43
| | | | | | | * win/rules.vc: Small bug fixes. * win/README: added some docs pointing to the docs in makefile.vc for it's use.
* minor doc comment fixeshobbs2001-11-1411-24/+27
|
* Reference implementation of TIP's #22, #33 and #45. Adds thehobbs2001-11-1416-134/+1809
| | | | | | ability of the [lindex] command to have multiple index arguments, and adds the [lset] command. Both commands are byte-code compiled. [Patch #471874] (work by Kenny, commited by Hobbs)
* added lset tests and updated lindex tests for TIPs#22,33,45 by Kennyhobbs2001-11-146-70/+1392
|
* added lset.n lset docs with xref and updated lindex of TIPs#22,33,45 by Kennyhobbs2001-11-1410-27/+219
|
* * win/buildall.vc.bat(new):davygrvy2001-11-132-5/+30
| | | | | | * win/makefile.vc: Small fix with deriving the "OriginalFilename" string in the .rc scripts. Added a quick batchfile for building the entire thing.
* no messagedavygrvy2001-11-131-0/+7
|
* correct nroff format problemshobbs2001-11-125-10/+16
|
* * unix/Makefile.in:mdejong2001-11-113-2/+23
| | | | | * win/Makefile.in: Add "make gdb" target. This target can run tclsh inside either gdb or insight.
* no messagedavygrvy2001-11-101-0/+9
|
* * win/makefile.vc: Added a check to make sure one runs the makefiledavygrvy2001-11-103-52/+31
| | | | | | | | from the /win directory only. * win/mkd.bat: * win/rmd.bat: Changes from Llyod Lim for better stability. [Patch #456759]
* no messagedavygrvy2001-11-101-0/+15
|
* * win/makefile.vc:davygrvy2001-11-102-61/+166
| | | | | | | | | | | | | | * win/tcl.dsp: winhelp target fixes for non-NT systems. It seems NMAKE under these remembers changed directories during commands. A new tcltest feature from Peter Spjuth <peter.spjuth@space.se> to specify a pattern file from the commandline and redirecting output to a file when not under NT with it's scrollback console. Then it replays it, piped through more. Added 2 new static "configurations" to tcl.dsp. I could keep adding more, but I think we should leave it up to the user for customizing it. Sticky-points left: 'profile' option.
* fixed winhelp generation problems #480268hobbs2001-11-107-54/+66
|
* added -lc to AIX libs, fixed path to ldAixhobbs2001-11-103-46/+83
|
* * tests/var.test:dgp2001-11-093-3/+19
| | | | | * generic/tclVar.c: Corrected bug in [global] when dealing with variable names matching :*. [Bug 480176]
* Fixup stack size under OSF1. [Tcl patch 474790]mdejong2001-11-093-23/+33
| | | | | | * unix/configure: Regen. * unix/tcl.m4: Add HAVE_PTHREAD_ATTR_SETSTACKSIZE define to EXTRA_CFLAGS to adjust initial stack size.
* Enable thread support under FreeBSD. [Tcl bug 473708]mdejong2001-11-094-280/+343
| | | | | | | | * unix/configure: Regen. * unix/tcl.m4 (SC_ENABLE_THREADS): Check for pthread functions in libc_r and enable thread support if found. * unix/dltest/Makefile.in: Set SHLIB_LD_LIBS and use it in the Makefile to properly link a shared library.
* * unix/Makefile.in:mdejong2001-11-093-4/+13
| | | | | | | | * unix/dltest/Makefile.in: Avoid adding libc to the LIBS variable since it is not needed when linking with CC. If required when linking with LD it should be done on a case by case basis in tcl.m4.
* 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
|