summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 2002-04-05 Daniel Steffen <das@users.sourceforge.net> tip_59_implementationdas2002-04-053-4/+116
| | | | | * mac/tclMacPkgConfig.c: Added Mac implementation of pkgconfig. * tests/config.test: fixed failing tests.
* Changed paths from prefix_exec_prefix to the individualandreas_kupries2002-02-195-53/+102
| | | | | locations for binaries, libraries, scripts, documentation, include files, for both install and runtime.
* A small issue with already existing namespaces caused a panic instead of an ↵davygrvy2002-02-061-6/+13
| | | | ignore.
* One large bug fixed with neglecting to disable otimizations for a symbols build.davygrvy2002-02-062-6/+9
|
* * tests/config.test: Added a testsuite for pkgconfig.andreas_kupries2002-02-053-4/+87
|
* minor changes to support TIP#59davygrvy2002-02-052-35/+54
|
* * unix/mkLinks: Regenerated.andreas_kupries2002-02-053-0/+131
| | | | | * doc/RegConfig.3: Added documentation for the new public API function.
* * This commit addresses the following topics from the comments atandreas_kupries2002-02-053-47/+97
| | | | | | | | | | | | | | | | SF item 507083: @ Reformatted to 72 columns per line (mostly). Some character strings (Panic messages) are still longer. @ Better panic messages. @ Allocation of wrapper uses sizeof(Tcl_Obj*) instead of sizeof (char*). @ Terminate array with either "" or NULL. @ Changed to use ckalloc/ckfree instead of Tcl_Alloc/Tcl_Free.
* First implementation of TIP #59 for Unix and Windows platforms. andreas_kupries2002-01-2519-370/+1079
| | | | | Made into a branch to allow me and platform specific maintainers to work on this in a coordinated way.
* Corrections to earlier TIP 27 changes.dgp2002-01-245-15/+23
| | | | Thanks to Andreas Kupries for the feedback.
* * unix/mkLinks: Regenerated.andreas_kupries2002-01-234-17/+29
| | | | | | | | * doc/CrtChannel.3: * doc/ChnlStack.3: Moved documentation for 'Tcl_GetTopChannel' from 'CrtChannel' to 'ChnlStack'. Added documentation of 'Tcl_GetStackedChannel'. Bug #506147 reported by Mark Patton <msp@users.sourceforge.net>.
* * Updated socket interfaces according to TIP 27. Updated callers.dgp2002-01-2311-61/+80
|
* no messagedavygrvy2002-01-211-0/+6
|
* TclpLoadFile() didn't match proto of typedef Tcl_FSLoadFileProc. [Patch ↵davygrvy2002-01-211-2/+3
| | | | #502488]
* * Converted declarations of TestReport file systemdgp2002-01-212-23/+50
| | | | to more portable form. [Bug 501417].
* * generic/tclIO.c (WriteChars): Fix for SF #506297, reported byandreas_kupries2002-01-213-2/+48
| | | | | | | | | | | | | | Martin Forssen <ruric@users.sourceforge.net>. The encoding chosen in the script exposing the bug writes out three intro characters when TCL_ENCODING_START is set, but does not consume any input as TCL_ENCODING_END is cleared. As some output was generated the enclosing loop calls UtfToExternal again, again with START set. Three more characters in the out and still no use of input ... To break this infinite loop we remove TCL_ENCODING_START from the set of flags after the first call (no condition is required, the later calls remove an unset flag, which is a no-op). This causes the subsequent calls to UtfToExternal to consume and convert the actual input.
* * Updated APIs in generic/tclCmdMZ.c according to the guidelinesdgp2002-01-214-20/+29
| | | | of TIP 27.
* * Overlooked callers of Tcl_FSGetNativePathdgp2002-01-184-13/+17
|
* * Overlooked callers of Tcl_GetIndexFromObjdgp2002-01-183-10/+16
|
* * generic/tclThreadTest.c:das2002-01-181-10/+10
| | | | | | | | | * mac/tclMacChan.c: * mac/tclMacFCmd.c: * mac/tclMacFile.c: * mac/tclMacLoad.c: * mac/tclMacResource.c: TIP 27 CONSTification broke the mac build in a number of places.
* * generic/tclThreadTest.c:das2002-01-187-18/+28
| | | | | | | | | * mac/tclMacChan.c: * mac/tclMacFCmd.c: * mac/tclMacFile.c: * mac/tclMacLoad.c: * mac/tclMacResource.c: TIP 27 CONSTification broke the mac build in a number of places.
* * generic/tclIOCmd.c (Tcl_GetsObjCmd): Fixed bug #504642 asandreas_kupries2002-01-172-11/+20
| | | | | | | | | | | | | | | reported by Brian Griffin <bgriffin@users.sourceforge.net>, using his patch. Before the patch the generic I/O layer held an unannounced reference to the interp result to store the read line into. This unfortunately has disastrous results if the channel driver executes a tcl script to perform its operation, this freeing the interp result. In that case we are dereferencing essentially a dangling reference. It is not truly dangling because the object is in the free list, but this only causes us to smash the free list and have the error occur later somewhere else. The patch simply creates a new object for the line and later sets it into the interp result when we are done with reading.
* doc correctiondgp2002-01-171-2/+2
|
* added patch numbers to ChangeLogdgp2002-01-171-4/+7
|
* * More TIP 27 updates in tclIOUtil.c and tclIndexObj.c that weredgp2002-01-1732-131/+189
| | | | | | | overlooked before. Updated callers. ***POTENTIAL INCOMPATIBILITY*** Includes a source incompatibility in the tablePtr arguments of the Tcl_GetIndexFromObj* routines.
* * Updated APIs in generic/tclUtf.c and generic/tclRegexp.c accordingdgp2002-01-1715-98/+130
| | | | to the guidelines of TIP 27. Updated callers.
* * unix/tcl.m4 (SC_LOAD_TCLCONFIG):mdejong2002-01-173-4/+16
| | | | | | | * win/tcl.m4 (SC_LOAD_TCLCONFIG): Subst TCL_DBGX into TCL_STUB_LIB_FILE and TCL_STUB_LIB_FLAG variables so that an extension does not need to subst TCL_DBGX into its makefile. [Tk Bug 504356]
* * Updated APIs in generic/tclParse.c according to the guidelinesdgp2002-01-176-12/+21
| | | | of TIP 27. Updated callers.
* * Updated APIs in generic/tclHistory.c according to the guidelinesdgp2002-01-167-62/+84
| | | | | | | | | | of TIP 27. * Updated APIs in generic/tclInterp.c according to the guidelines of TIP 27. ***POTENTIAL INCOMPATIBILITY*** Includes a source incompatibility in the targetCmdPtr arguments of the Tcl_GetAlias* routines.
* * Corrected documentation for Tcl_ErrnoMsg; it takes an integerdgp2002-01-152-7/+15
| | | | argument. Thanks to Georgios Petasis. [Bug 468183]
* * Updated APIs in generic/tclIOUtil.c and generic/tclPosixStr.cdgp2002-01-1521-100/+140
| | | | according to the guidelines of TIP 27. Updated callers. [Patch 499196]
* doc/StringObj.3: added Tcl_GetUnicodeFromObj docs.hobbs2002-01-151-2/+13
|
* * Updated APIs in the file generic/tclIO.c according to the guidelinesdgp2002-01-1520-223/+265
| | | | | | | | | | | of TIP 27. Several minor documentation corrections as well. * Updated channel driver interface according to the guidelines of TIP 27. See also [Bug 500348]. * Moved Tcl_EolTranslation enum declaration from generic/tcl.h to generic/tclInt.h (renamed to TclEolTranslation). It is not used anywhere in Tcl's public interface.
* typo correctiondgp2002-01-141-2/+2
|
* * Updated APIs in the file generic/tclIndexObj.cdgp2002-01-146-26/+39
| | | | according to the guidelines of TIP 27.
* * unix/configure: Regen.mdejong2002-01-115-370/+386
| | | | | | | * unix/configure.in: * win/configure: Regen. * win/configure.in: Use ${libdir} instead of ${exec_prefix}/lib to properly support the --libdir option to configure. [Bug 489370]
* * win/tclWinSerial.c (SerialSetOptionProc): Applied patch for SFandreas_kupries2002-01-112-16/+17
| | | | | | | bug #500348 supplied by Rolf Schroedter <schroedter@users.sourceforge.net>. The function modified the contents of the the 'value' string and now does not do this anymore. This is a followup to the change made on 2001-12-17.
* no messagedavygrvy2002-01-111-0/+7
|
* Removed -GD compiler option. It was intended for future use, but MS is againdavygrvy2002-01-111-8/+4
| | | | | changing the future at their whim. The D4002 warning was harmless though, but someone using MsDev .NET logged it as a concern. [Bug: #501565]
* added missing bug numbermdejong2002-01-111-1/+1
|
* * unix/Makefile.in: Burn Tcl build directorymdejong2002-01-112-5/+21
| | | | | | into tcltest executable to avoid crashes caused by ld loading a previously installed version of the tcl shared library.
* Applied patch from bug 501101.Kevin B Kenny2002-01-102-2/+10
|
* correct error in recent entrydgp2002-01-091-2/+0
|
* Updated APIs in the files */tcl*Load*.c according to the guidelinesKevin B Kenny2002-01-0918-39/+61
| | | | of TIP 27.
* More changes for test portability. Using euro symbol.dgp2002-01-091-7/+7
|
* * generic/tclTest.c (MainLoop):dgp2002-01-093-17/+29
| | | | | * tests/main.test (Tcl_Main-1.{3,4,5,6}): Corrected some non-portable tests from the new Tcl_Main changes. Thanks to Kevin Kenny.
* TclCreatePipeline is in tclIntDecls.h; no need for it in tclInt.h.dgp2002-01-081-8/+1
|
* * typos and formattingdgp2002-01-081-4/+3
|
* * generic/tclEvent.c (TclInExit):dgp2002-01-074-14/+21
| | | | | | | * generic/tclIOUtil.c (SetFsPathFromAbsoluteNormalized, SetFsPathFromAny,Tcl_FSNewNativePath,DupFsPathInternalRep): * generic/tclListObj.c (TclLsetList,TclLsetFlat): Added some type casts to satisfy picky compilers.
* * generic/tclMain.c: Bug fix: neglected the NULL case indgp2002-01-072-3/+12
| | | | TclGetStartupScriptFileName(). Broke Tk/wish.