summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * README: Bump version number to 8.4.11dgp2005-06-1810-16/+29
| | | | | | | | | | | | * generic/tcl.h: * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/README.binary: * win/configure.in: * unix/configure: autoconf * win/configure:
* Fix bug in [format %hx] handling on selected platforms. [Bug 1154163]dkf2005-06-173-17/+32
|
* Backport unix threading fixdkf2005-06-072-3/+8
|
* Correct crash in stack.test on gcc/win32Kevin B Kenny2005-06-062-298/+247
|
* typodas2005-06-061-1/+1
|
* * unix/tclLoadDyld.c: fixed header confilict when building this filecore_8_4_10das2005-06-042-1/+5
| | | | with USE_TCL_STUBS.
* * macosx/Makefile: fixed 'embedded' target.das2005-06-032-5/+8
|
* note 8.4.10 tag datehobbs2005-06-021-0/+2
|
* * unix/Makefile.in (html): add BUILD_HTML_FLAGS optional varhobbs2005-06-023-19/+32
| | | | | * tools/tcltk-man2html.tcl: add a --useversion to prevent confusion when multiple Tcl source dirs exist.
* minor corrections for 8.4.10 releasehobbs2005-06-022-8/+14
|
* updated changes for 8.4.10 releasedgp2005-06-021-1/+69
|
* Cosmetic change (fixed identation in Tcl_FinalizeNotifier)vasiljevic2005-05-311-4/+4
|
* See file.vasiljevic2005-05-311-0/+6
|
* Notifier thread is created as joinable. Attempt to solve thevasiljevic2005-05-311-3/+8
| | | | Tcl Bug #1082283.
* update to patchlevel 8.4.10hobbs2005-05-301-2/+2
|
* * win/tclWinThrd.c (TclpFinalizeThreadData): move tlsKey defnhobbs2005-05-302-20/+31
| | | | to top of file and clarify name (was 'key'). [Bug 1204064]
* * README: Bumped patchlevel to 8.4.10hobbs2005-05-279-15/+23
| | | | | | | * generic/tcl.h: * tools/tcl.wse.in: * unix/tcl.spec, unix/configure, unix/configure.in: * win/configure, win/configure.in:
* * macosx/Makefile: moved & corrected EMBEDDED_BUILD check.das2005-05-264-13/+22
| | | | | | * unix/configure.in: corrected framework finalization to softlink stub library to Versions/8.x subdir instead of Versions/Current. * unix/configure: autoconf-2.59
* * generic/tclCmdMZ.c (Tcl_TimeObjCmd): add necessary casthobbs2005-05-252-4/+7
|
* * unix/configure, unix/configure.in: ensure false Tcl.framework ishobbs2005-05-253-17/+22
| | | | only created with --enable-framework
* * tests/env.test: added DYLD_FRAMEWORK_PATH to the list of env varsdas2005-05-242-3/+6
| | | | that need to be handled specially.
* * macosx/Makefile:das2005-05-249-631/+801
| | | | | | | | | | | | | * macosx/README: * macosx/Tcl-Info.plist.in (new file): * unix/Makefile.in: * unix/configure.in: * unix/tcl.m4: * unix/tclUnixInit.c: moved all Darwin framework build support from macosx/Makefile into the standard unix configure/make buildsystem, the macosx/Makefile is no longer required to build Tcl.framework (but its functionality is still available for backwards compatibility). * unix/configure: autoconf-2.13
* * generic/tclIOUtil.c (TclLoadFile):das2005-05-243-43/+342
| | | | | | | | | | * generic/tclInt.h: * unix/tcl.m4: * unix/tclLoadDyld.c: added support for [load]ing .bundle binaries in addition to .dylib's: .bundle's can be [unload]ed (unlike .dylib's), and can be [load]ed from memory, e.g. directly from VFS without needing to be written out to a temporary location first. [Bug 1202209] * unix/configure: autoconf-2.13
* * generic/tclCmdMZ.c (Tcl_TimeObjCmd): change [time] called with adas2005-05-241-6/+11
| | | | | count > 1 to return a string with a float value instead of a rounded off integer. [Bug 1202178]
* Removed unreferenced stack variablevasiljevic2005-05-202-3/+7
|
* * generic/tclParseExpr.c: Corrected parser to recognize alldgp2005-05-202-61/+44
| | | | | | boolean literals accepted by Tcl_GetBoolean, including prefixes like "y" and "f", and to allow "eq" and "ne" as function names in the proper context. [Bug 1201589].
* * macosx/tclMacOSXNotify.c (Tcl_InitNotifier): fixed crashingdas2005-05-201-2/+2
| | | | | | CFRelease of runLoopSource in Tcl_InitNotifier (reported by Zoran): CFRunLoopAddSource doesn't CFRetain, so can only CFRelease the runLoopSource in Tcl_FinalizeNotifier.
* * macosx/tclMacOSXNotify.c (Tcl_InitNotifier): fixed crashingdas2005-05-192-2/+9
| | | | | | CFRelease of runLoopSource in Tcl_InitNotifier (reported by Zoran): CFRunLoopAddSource doesn't CFRetain, so can only CFRelease the runLoopSource in Tcl_FinalizeNotifier.
* * macosx/tclMacOSXBundle.c:das2005-05-1411-415/+1717
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * unix/tclUnixInit.c: * unix/tcl.m4 (Darwin): made use of CoreFoundation API configurable and added test of CoreFoundation availablility to allow building on ppc64, replaced HAVE_CFBUNDLE by HAVE_COREFOUNDATION; test for availability of Tiger or later OSSpinLockLock API. * unix/tclUnixNotfy.c: * unix/Makefile.in: * macosx/tclMacOSXNotify.c (new file): when CoreFoundation is available, use new CFRunLoop based notifier: allows easy integration with other event loops on Mac OS X, in particular the TkAqua Carbon event loop is now integrated via a standard tcl event source (instead of TkAqua upon loading having to finalize the exsting notifier and replace it with its custom version). [Patch 1202052] * tests/unixNotfy.test: don't run unthreaded tests on Darwin since notifier may be using threads even in unthreaded core. * unix/tclUnixPort.h: * unix/tcl.m4 (Darwin): test for thread-unsafe realpath durning configure, as Darwin 7 and later realpath is threadsafe. * macosx/tclMacOSXBundle.c: * unix/tclLoadDyld.c: * unix/tclUnixInit.c: fixed gcc 4.0 warnings. * unix/configure: autoconf-2.13
* Corrected example that confused [namespace which] and [namespace origin]dgp2005-05-121-2/+2
|
* * tests/string.test: string-10.[21-30]hobbs2005-05-113-16/+55
| | | | | * generic/tclCmdMZ.c (Tcl_StringObjCmd): add extra checks to prevent possible UMR in unichar cmp function for string map.
* * unix/tcl.m4, unix/configure: correct Solaris 10 (5.10) check andhobbs2005-05-073-257/+278
| | | | add support for x86_64 Solaris cc builds.
* documentation improvements.dgp2005-05-033-13/+7
|
* Backported doc fixdkf2005-04-292-2/+9
|
* * library/init.tcl: Corrected flaw in interactive commanddgp2005-04-283-3/+22
| | | | * tests/main.test: auto-completion. [Bug 1191409].
* * tests/unixInit.test (7.1): Alternative fix for thedgp2005-04-272-6/+11
| | | | 2005-04-22 commit.
* * compat/string.h: fixed memchr() protoype for __APPLE__ so that wedas2005-04-268-360/+503
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | build on Mac OS X 10.1 again. * generic/tclNotify.c (TclFinalizeNotifier): fixed notifier not being finalized in unthreaded core (was testing for notifier initialization in current thread by checking thread id != 0 but thread id is always 0 in untreaded core). * unix/tclUnixNotfy.c (Tcl_WaitForEvent): sync with HEAD: only declare and use timeout var in unthreaded core. * unix/Makefile.in: added @PLAT_SRCS@ to SRCS and split out NOTIFY_SRCS from UNIX_SRCS for parity with UNIX_OBJS & NOTIFY_OBJS. * unix/configure.in: only run check for broken strstr implementation if AC_REPLACE_FUNCS(strstr) hasn't already determined that strstr is unavailable, otherwise compat/strstr.o will be used twice (resulting in duplicate symbol link errors on Mac OS X 10.1) * unix/tcl.m4 (Darwin): added configure checks for recently added linker flags -single_module and -search_paths_first to allow building with older tools (and on Mac OS X 10.1), use -single_module in SHLIB_LD and not just T{CL,K}_SHLIB_LD_EXTRAS, added unexporting from Tk of symbols from libtclstub to avoid duplicate symbol warnings, added PLAT_SRCS definition for Mac OS X. (SC_MISSING_POSIX_HEADERS): added caching of dirent.h check. (SC_TCL_64BIT_FLAGS): fixed 'checking for off64_t' message output. * unix/configure: autoconf-2.13
* * generic/tclCmdMZ.c: Corrected intrep-dependence ofdgp2005-04-223-10/+18
| | | | * tests/string.test: [string is boolean] [Bug 1187123]
* * tests/unixInit.test (7.1): fixed failure when running testsdas2005-04-212-2/+7
| | | | with -tmpdir arg not set to working dir.
* * generic/tclGet.c (Tcl_GetInt): Corrected error that did notdgp2005-04-203-38/+29
| | | | | * generic/tclObj.c (Tcl_GetIntFromObj): permit 0x80000000 to be recognized as an integer on TCL_WIDE_INT_IS_LONG systems [Bug 1090869].
* * tests/winPipe.test (winpipe-6.2): remove -blocking 1 as this onehobbs2005-04-202-2/+6
| | | | can truly block.
* no messagedavygrvy2005-04-191-0/+19
|
* * win/tclWinPipe.c: The pipe channel driver now respectsdavygrvy2005-04-193-20/+38
| | | | | | | | | | | | | | | | | | the -blocking option when closing. The windows pipe driver now has the same behavior as the UNIX side. This change is to avoid a hung shell when exiting due to open pipes that refuse to close in a graceful manner. * doc/open.n: Added a note about -blocking 0 and lack of exit status as it had never been documented. [Bug 947693] ***POTENTIAL INCOMPATIBILITY*** Scripts that use async pipes on windows, must (like the UNIX side) set -blocking to 1 before calling [close] to receive the exit status. * tests/winPipe.test (winpipe-6.1/2): added 'fconfigure $f -blocking 1' so the exit status can be acquired.
* * generic/tclIO.c (Tcl_SetChannelBufferSize): Lowest size limitdavygrvy2005-04-144-13/+25
| | | | | | | | | | * tests/io.test: changed from ten bytes to one byte. Need * tests/iogt.test: for this change was proven by Ross Cartlidge <rossc@cisco.com> where [read stdin 1] was grabbing 10 bytes followed by starting a child process that was intended to continue reading from stdin. Even with -buffersize set to one, nine chars were getting lost by the buffersize over reading for the native read() caused by [read].
* added definition of NULL to strstr.c for Bug 1175161Kevin B Kenny2005-04-122-1/+12
|
* * macosx/README: updated requirements for OS & developer tooldas2005-04-092-11/+14
| | | | versions + other small fixes/cleanup.
* * unix/tcl.m4 (Darwin): added -single_module linker flag todas2005-04-093-4/+10
| | | | | TCL_SHLIB_LD_EXTRAS and TK_SHLIB_LD_EXTRAS. * unix/configure: autoconf-2.13
* See file.vasiljevic2005-04-071-0/+26
|
* Renamed TclWinFreeAllocCache to TclpFreeAllocCache and fixedvasiljevic2005-04-071-20/+21
| | | | | | to recognize when being called with NULL argument. This is a signal for it to clean up the tsd key associated with the threading allocator. Part of fixing the Tcl Bug #1178445.
* Fixed TclpFreeAllocCache() to recognize when being calledvasiljevic2005-04-071-7/+10
| | | | | | with NULL argument. This is a signal for it to clean up the tsd key associated with the threading allocator. Part of fixing the Tcl Bug #1178445.