summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 2007-02-13 Kevin Kenny <kennykb@acm.org>Kevin B Kenny2007-02-143-6/+27
| | | | | | | | * tools/fix_tommath_h.tcl: Further tweaking for the x86-64. The change is to make 'mp_digit' be an 'unsigned int' on that platform; since we're using only 32 bits of it, there's no reason to make it a 64-bit 'unsigned long.' * generic/tclTomMath.h: Regenerated.
* Fix [Bug 1614687]dkf2007-02-132-23/+27
|
* rebuilt from Olson's tzdata2007bKevin B Kenny2007-02-138-439/+481
|
* * tools/fix_tommath_h.tcl: Added code to patch out a check forKevin B Kenny2007-02-131-0/+1
| | | | | | | | | | __x86_64__ that caused Tommath to use __attributes(TI)__ for the mp_word type. Tetra-int's simply fail on too many gcc-glibc-OS combinations to be ready for shipment today, even if they work for some of us. This change allows reversion of das's change of 2006-08-18 that accomplised the same thing on Darwin. [Bugs * generic/tclTomMath.h: Regenerated.
* * tools/fix_tommath_h.tcl: Added code to patch out a check forKevin B Kenny2007-02-133-16/+20
| | | | | | | | | __x86_64__ that caused Tommath to use __attributes(TI)__ for the mp_word type. Tetra-int's simply fail on too many gcc-glibc-OS combinations to be ready for shipment today, even if they work for some of us. This change allows reversion of das's change of 2006-08-18 that accomplised the same thing on Darwin. * generic/tclTomMath.h: Regenerated.
* Windows build fixesJoe Mistachkin2007-02-093-3/+17
|
* * unix/tclUnixInit.c (TclpCheckStackSpace): do stack size checkshobbs2007-02-082-3/+9
| | | | | with unsigned size_t to correctly validate stackSize in the 2^31+ range.
* * generic/tclNamesp.c: Corrected broken logic in Tcl_DeleteNamespace()dgp2007-02-083-8/+26
| | | | | | * tests/namespace.test: introduced in Patch 1577278 that caused [namespace delete ::] to be effective only at level #0. New test namespace-7.7 should prevent similar error in the future. [Bug 1655305]
* Minor syntax/efficiency stuffdkf2007-02-061-22/+35
|
* Silence a trivial warningdkf2007-02-061-2/+3
|
* Function header/whitespace police/general format fixesdkf2007-02-063-847/+893
|
* * generic/tclNamesp.c: Corrected broken implementation of thedgp2007-02-063-3/+18
| | | | | * tests/namespace.test: TclMatchIsTrivial optimization on [namespace children $namespace $pattern].
* * unix/tcl.m4: use gcc4's __attribute__((__visibility__("hidden"))) ifdas2007-02-045-80/+202
| | | | | | | available to define MODULE_SCOPE effective on all platforms. * unix/configure.in: add caching to -pipe and zoneinfo checks. * unix/configure: autoconf-2.59 * unix/tclConfig.h.in: autoheader-2.59
* Windows build fixJoe Mistachkin2007-02-042-3/+10
|
* * generic/tclResult.c: Added optimization case to TclTransferResultdgp2007-01-292-5/+21
| | | | | to cover common case where there's big savings over the fully general path. Thanks to Peter MacDonald. [Bug 1626518].
* * generic/tclLink.c: Broken linked float logic corrected. Thanksdgp2007-01-292-2/+5
| | | | to Andy Goth [Bug 1602538].
* * doc/fcopy.n: Typo fix. [Bug 1630627]dgp2007-01-292-2/+6
|
* * macosx/Tcl.xcodeproj/project.pbxproj: extract build settings thatdas2007-01-2810-336/+429
| | | | | | | | | | | | | | | | | | | * macosx/Tcl.xcodeproj/default.pbxuser: were common to multiple * macosx/Tcl-Common.xcconfig (new file): configurations into external * macosx/Tcl-Debug.xcconfig (new file): xcconfig files; add extra * macosx/Tcl-Release.xcconfig (new file): configurations for building with SDKs and 64bit; convert legacy jam-based 'Tcl' target to native target with single script phase; correct syntax of build setting references to use $() throughout. * macosx/README: document new Tcl.xcodeproj configurations; other minor updates/corrections. * generic/tcl.h: update location of version numbers in macosx files. * macosx/Tcl.xcode/project.pbxproj: restore 'tcltest' target to working * macosx/Tcl.xcode/default.pbxuser: order by replicating applicable changes to Tcl.xcodeproj since 2006-07-20.
* * unix/tcl.m4: integrate CPPFLAGS into CFLAGS as late as possible anddas2007-01-253-8/+29
| | | | | | | move (rather than duplicate) -isysroot flags from CFLAGS to CPPFLAGS to avoid errors about multiple -isysroot flags from some older gcc builds. * unix/configure: autoconf-2.59
* Fix [Bug 1631017]dkf2007-01-222-22/+33
|
* More efficient issuing of INST_START_CMD instructions. See ChangeLog for ↵dkf2007-01-193-22/+42
| | | | discussion
* Build fix for man2tcl.c with MSVC8Joe Mistachkin2007-01-192-2/+5
|
* Windows build fixesJoe Mistachkin2007-01-193-5/+12
|
* * macosx/tclMacOSXFCmd.c (TclMacOSXSetFileAttribute): on some versionsdas2007-01-1911-29/+120
| | | | | | | | | | | | | | | | | | | | | | | | | | | of Mac OS X, truncate() fails on resource forks, in that case use open() with O_TRUNC instead. * macosx/tclMacOSXNotify.c: accommodate changes to prototypes of OSSpinLock(Un)Lock API. * macosx/Tcl.xcodeproj/project.pbxproj: ensure HOME and USER env vars * macosx/Tcl.xcodeproj/default.pbxuser: are defined when running testsuite from Xcode. * tests/env.test: add extra system env vars that need to be preserved on some Mac OS X versions for testsuite to work. * unix/Makefile.in: move libtommath defines into configure.in to avoid * unix/configure.in: replicating them across multiple buildsystems. * macosx/Tcl.xcodeproj/project.pbxproj: * unix/tcl.m4: ensure CPPFLAGS env var is used when set. [Bug 1586861] (Darwin): add -isysroot and -mmacosx-version-min flags to CPPFLAGS when present in CFLAGS to avoid discrepancies between what headers configure sees during preprocessing tests and compiling tests. * unix/configure: autoconf-2.59 * unix/tclConfig.h.in: autoheader-2.59
* Code style improvementsdkf2007-01-182-133/+148
|
* Fix minor fault (made by aku, caught by aku)dkf2007-01-181-2/+2
|
* Small fixes to quell tests that fail on some kinds of Win systemsdkf2007-01-182-84/+112
|
* Whitespace policing, and adding comments so that it is clearer what TclMarkList dkf2007-01-181-30/+61
| | | | was doing...
* Minor fix to make bytecodes print out properlydkf2007-01-181-2/+2
|
* Fix [Bug 1638414] and make bytecode of expansion betterdkf2007-01-182-71/+107
|
* Detect [Bug 1638414]dkf2007-01-182-23/+10
|
* Missed a spot; thanks to Andreas Kupries for spotting this one.dkf2007-01-171-5/+10
|
* Added macros to make usage of ChannelBuffers clearer.dkf2007-01-172-81/+133
|
* * win/tcl.m4(CFLAGS_WARNING): Remove "-Wconversion".jenglish2007-01-113-36/+29
| | | | | This was removed from unix/tcl.m4 2004-07-16 but not from here. * win/configure: Regenerated.
* Fixes to work better on Win98. Read version numbers from package index filepatthoyts2007-01-114-41/+138
| | | | to avoid keeping numbers in the makefile.
* Arrange for RE engine workspace to be held in TSD. This is safe, lessdkf2007-01-105-12/+61
| | | | C-stack-hungry than before, and faster than just using heap allocation.
* Fix [lindex] argument ordering. [bug 1631364]dkf2007-01-093-59/+28
|
* Regenerated tclDate.cKevin B Kenny2007-01-032-18/+23
|
* Minor updates (convert comment-outs to #ifdef outs, clean up comments/indents)dkf2007-01-021-106/+120
|
* Whitespace/line-width policedkf2006-12-281-13/+9
|
* * generic/tclIO.c (Tcl_GetsObj):mdejong2006-12-272-14/+26
| | | | | Avoid checking for for the LF in a possible CRLF sequence when EOF has already been found.
* * generic/tclEncoding.c (EscapeFromUtfProc):mdejong2006-12-273-4/+87
| | | | | | | | | | | Clear the TCL_ENCODING_END flag when end bytes are written. This fix keep this method from writing escape bytes for an encoding like iso2022-jp multiple times when the escape byte overlap with the end of the IO buffer. * tests/io.test: Add test for escape byte overlap issue.
* supply missing RCS linedgp2006-12-191-1/+1
|
* Fix [Bug 1618838]dkf2006-12-192-2/+10
|
* Rewrote for more claritydkf2006-12-191-56/+90
|
* Replace with comment style recommended as "best practice"dkf2006-12-191-13/+13
|
* Wrote the commenting wrongly; used proper troff construct as recommended in dkf2006-12-191-9/+9
| | | | CSTR#54 (The Troff User's Manual).
* Fix minor fault found by Joe Mistachkindkf2006-12-191-2/+2
|
* * unix/tclUnixThrd.c (TclpInetNtoa): fix for 64 bit.das2006-12-191-1/+1
|
* * unix/tclUnixThrd.c (TclpInetNtoa): fix for 64 bit.das2006-12-191-3/+3
|