summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* 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
|