summaryrefslogtreecommitdiffstats
path: root/unix
Commit message (Collapse)AuthorAgeFilesLines
* autoheader-2.59das2007-11-141-0/+3
|
* autoconf-2.59das2007-11-141-2/+2
|
* clarify message of second getaddrinfo checkdas2007-11-141-1/+1
|
* * unix/tclUnixInit.c: the TCL_NO_STACK_CHECK was being incorrectlyMiguel Sofer2007-11-131-5/+3
| | | | | undefined here; this should be set (or not) in the compile options, it is used elsewhere and needs to be consistent.
* Added autoconf goo to detect availability of getaddrinfopatthoyts2007-11-133-1/+199
|
* Oops!dkf2007-11-131-2/+3
|
* Forgot to transform to native encoding for getaddrinfo()dkf2007-11-131-2/+5
|
* fix Tcl_DStringFree bugletdas2007-11-131-2/+1
|
* The six-argument form of getaddressbyname_r() uses the fifth argument todkf2007-11-131-6/+6
| | | | | indicate whether the lookup succeeded or not on at least one platform. [Bug 1618235]
* Rewrote to use the thread-safe version of gethostbyname() by forward-portingdkf2007-11-131-12/+83
| | | | | the code used in 8.4, and added rudimentary support for getaddrinfo() (not enabled by default, as no autoconf-ery written). Part of fix for [Bug 1618235]
* * unix/tclUnixInit.c: simplify non-crosscompiled case.das2007-11-111-11/+13
|
* autoheader-2.59das2007-11-111-0/+6
|
* autoconf-2.59das2007-11-111-6109/+6076
|
* * unix/configure: autoconf 2.61Miguel Sofer2007-11-101-6067/+6172
|
* * generic/tclBasic.c:Miguel Sofer2007-11-102-4/+42
| | | | | | * unix/configure.in: * unix/tclUnixInit.c: detect stack grwoth direction at compile time, only fall to runtime detection when crosscompiling.
* * unix/tclUnixTime.c (TclpWideClicksToNanoseconds): fix issues withdas2007-11-101-5/+5
| | | | * generic/tclInt.h: int64_t overflow.
* fix typosdas2007-11-101-6/+6
|
* * generic/tclBasic.c:Miguel Sofer2007-11-101-32/+45
| | | | | | | | | * generic/tclInt.h: * unix/tclUnixInit.c: * win/tclWin32Dll.c: restore simpler behaviour for stack checking, not adaptive to stack size changes after a thread is launched. Consensus is that "nobody does that", and so it is not worth the cost.
* * generic/tclBasic.c:Miguel Sofer2007-11-102-81/+26
| | | | | | | | | | | * generic/tclInt.h: * unix/tclUnixInit.c: * unix/tclUnixPort.h: * win/tclWin32Dll.c: modify the stack checking algorithm to recheck in case of failure. The working assumptions are now that (a) a thread's stack is never moved, and (b) a thread's stack can grow but not shrink. Port to windows - could be more efficient, but is already cheaper than it was.
* fix formatting and inverted test in TclpCheckStackSpace()das2007-11-101-19/+20
|
* fixed stupid bug in last commit that made it not work in threaded buildsMiguel Sofer2007-11-091-3/+3
|
* * generic/tclAsync.c:Miguel Sofer2007-11-092-41/+81
| | | | | | | | | | | * generic/tclBasic.c: * generic/tclExecute.c: * generic/tclInt.h: * generic/tclUnixInit.c: * generic/tclUnixPort.h: new fields in interp (ekeko!) to cache TSD data that is accessed at each command invocation, access macros to replace Tcl_AsyncReady and TclpCheckStackSpace by much faster variants [Patch 1829248]
* * unix/tclUnixChan.c (TtyGetOptionProc): Accepted [SF Tcl Patchandreas_kupries2007-11-051-8/+22
| | | | | | | 1823576] provided by Stuart Cassof <stwo@users.sourceforge.net>. The patch adds the necessary utf/external conversions to the handling of the arguments of option -xchar which will allow the use of \0 and similar characters.
* * generic/tcl.h: Bump version number to 8.5b2.1 to distinguishdgp2007-10-303-5/+5
| | | | | | | | | | * library/init.tcl: CVS development snapshots from the 8.5b2 * unix/configure.in: release. * unix/tcl.spec: * win/configure.in: * unix/configure: autoconf (2.59) * win/configure:
* * README: Bump version number to 8.5b2.dgp2007-10-263-5/+5
| | | | | | | | | | | | * generic/tcl.h: * library/init.tcl: * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/configure.in: * unix/configure: autoconf (2.59) * win/configure:
* autoheader-2.59das2007-10-241-3/+0
|
* * compat/tmpnam.c (removed): The routine tmpnam() is no longerdgp2007-10-183-8/+4
| | | | | | | | | * unix/Makefile.in: called by Tcl source code. Remove autogoo * unix/configure.in: the supplied a replacement version on * win/tcl.dsp: systems where the routine was not available. [RFE 1811848]. * unix/configure: autoconf-2.59
* * generic/tclIOCmd.c: Revise [open] so that it interprets leadingdgp2007-10-151-5/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | zero strings passed as the "permissions" argument as octal numbers, even if Tcl itself no longer parses integers in that way. * unix/tclUnixFCmd.c: Revise the "-permissions" [file attribute] so that it interprets leading zero strings as octal numbers, even if Tcl itself no longer parses integers in that way. * generic/tclCompExpr.c: Corrections to code that produces * generic/tclUtil.c: extended "bad octal" error messages. * tests/cmdAH.test: Test revisions so that tests pass whether or * tests/cmdIL.test: not Tcl parses leading zero strings as octal. * tests/compExpr-old.test: * tests/compExpr.test: * tests/compile.test: * tests/expr-old.test: * tests/expr.test: * tests/incr.test: * tests/io.test: * tests/lindex.test: * tests/link.test: * tests/mathop.test: * tests/parseExpr.test: * tests/set.test: * tests/string.test: * tests/stringComp.test:
* autoheader-2.59das2007-10-121-6/+0
|
* * generic/tclCmdMZ.c: Correct [string is (wide)integer] failuredgp2007-10-114-20/+5
| | | | | | | | | | | | | | | | | | * tests/string.test: to report correct failindex values for non-decimal integer strings. [Bug 1805887]. * compat/strtoll.c (removed): The routines strtoll() and strtoull() * compat/strtoull.c (removed): are no longer called by the Tcl source * generic/tcl.h: code. (Their functionality has been replaced * unix/Makefile.in: by TclParseNumber().) Remove outdated comments * unix/configure.in: and mountains of configury autogoo that * unix/tclUnixPort.h: allegedly support the mythical systems where * win/Makefile.in: these routines might not have been available. * win/makefile.bc: * win/makefile.vc: * win/tclWinPort.h: * unix/configure: autoconf-2.59
* * generic/tcl.h: Bump version number to 8.5b1.1 to distinguishdgp2007-10-023-5/+5
| | | | | | | | | | * library/init.tcl: CVS development snapshots from the 8.5b1 * unix/configure.in: release. * unix/tcl.spec: * win/configure.in: * unix/configure: autoconf (2.59) * win/configure:
* document --enable-dtrace configure optiondas2007-09-201-1/+5
|
* * README: Bump version number to 8.5b1dgp2007-09-193-5/+5
| | | | | | | | | * generic/tcl.h: Merge from core-stabilizer-branch. * library/init.tcl: Stabilizing toward 8.5b1 release now done * tools/tcl.wse.in: on the HEAD. core-stabilizer-branch is * unix/configure.in: now suspended. * unix/tcl.spec: * win/configure.in:
* autoconf-2.59das2007-09-181-153/+297
|
* fix quoting of new FreeBSD SHLIB_LDdas2007-09-181-1/+1
|
* Use '${CC} -shared' instead of 'ld -Bshareable' to build shared librariesjenglish2007-09-172-320/+164
| | | | on current NetBSDs [#1749251].
* * unix/Makefile.in: Update `make dist` so that tclDTrace.d isdgp2007-09-171-2/+2
| | | | included in the source code distribution.
* coverity id 102das2007-09-171-13/+4
|
* coverity id 100das2007-09-171-4/+4
|
* * unix/tcl.m4: replace all direct references to compiler by ${CC} todas2007-09-152-71/+77
| | | | | | | | | enable CC overriding at configure & make time; run check for visibility "hidden" with all compilers; quoting fixes from TEA tcl.m4. (SunOS-5.1x): replace direct use of '/usr/ccs/bin/ld' in SHLIB_LD by 'cc' compiler driver. * unix/configure: autoconf-2.59
* * generic/tclDTrace.d (new file): add DTrace provider for Tcl; allowsdas2007-09-134-8/+291
| | | | | | | | | | | | | | | | | | * generic/tclCompile.h: tracing of proc and command entry & * generic/tclBasic.c: return, bytecode execution, object * generic/tclExecute.c: allocation and more; with essentially * generic/tclInt.h: zero cost when tracing is inactive; * generic/tclObj.c: enable with --enable-dtrace configure * generic/tclProc.c: arg (disabled by default, will only * unix/Makefile.in: enable if DTrace is present). * unix/configure.in: [Patch 1793984] * macosx/GNUmakefile: enable DTrace support. * macosx/Tcl-Common.xcconfig: * macosx/Tcl.xcodeproj/project.pbxproj: * unix/configure: autoconf-2.59 * unix/tclConfig.h.in: autoheader-2.59
* * unix/Makefile.in: Perform missing updates of the tcltest Tcldgp2007-09-121-3/+3
| | | | | * win/Makefile.in: Module installed filename that should have been part of the bump to tcltest 2.3b1. Thanks Larry Virden.
* header cleanupdgp2007-09-071-2/+1
|
* replace (ab)use of GENERIC_FLAGS as a unix/Makefile override by dedicated ↵das2007-09-061-5/+5
| | | | EXTRA_CFLAGS var
* * generic/tclBasic.c: Removed support for the unmaintaineddgp2007-09-051-18/+10
| | | | | * generic/tclExecute.c: -DTCL_GENERIC_ONLY configuration. [Bug 1264623] * unix/Makefile.in:
* correct autoconf/autoheader dependenciesdas2007-09-051-9/+8
|
* fix building on Pantherdas2007-09-051-1/+2
|
* * unix/Makefile.in: It's unreliable to count on the releasedgp2007-09-041-2/+2
| | | | | manager to remember to `make genstubs` before `make dist`. Let the Makefile remember the dependency for us.
* * unix/Makefile.in: Corrections to `make dist` dependencies to bedgp2007-09-041-2/+2
| | | | sure that macosx/configure gets generated whenever it does not exist.
* * unix/Makefile.in: Corrections to `make dist` dependencies to bedgp2007-09-041-3/+5
| | | | sure that macosx/configure gets generated whenever it does not exist.