summaryrefslogtreecommitdiffstats
path: root/unix
Commit message (Collapse)AuthorAgeFilesLines
* bump to msgcat 1.4.3 to account for commitsdgp2009-12-171-3/+3
|
* Fix gcc warning: ignoring return value of ‘write’,nijtmans2009-12-171-3/+3
| | | | declared with attribute warn_unused_result
* Fix gcc warning: ignoring return value of ‘write’,nijtmans2009-12-164-9/+29
| | | | | | declared with attribute warn_unused_result CONSTify functions TclpGetUserHome and TclSetPreInitScript (TIP #27)
* Fix gcc warning: signed and unsigned type in conditional expressionnijtmans2009-12-111-2/+2
|
* Add tcl.pc and tclsh.exe to .cvsignorenijtmans2009-12-111-0/+2
|
* revert 2902965 tclAppInit.c changedas2009-11-291-5/+1
|
* reverted 2902965 changes that broke static builds on OSXdas2009-11-293-6/+6
|
* Match the version-bump of TclOO.dkf2009-11-271-2/+2
|
* autoheader-2.59das2009-11-261-3/+0
|
* Add .PHONY rules and documentation to preemptively stop trouble that plagueddkf2009-11-261-71/+126
| | | | | Tk from hitting Tcl too, and to make the overall makefile easier to understand. Some reorganization too to move related rules closer together.
* Fix [Bug 2902965] stub related changesnijtmans2009-11-264-9/+13
| | | | cause tclkit built to break
* [Patch 2892871]: Remove unneeded AC_STRUCT_TIMEZONE and usestwo2009-11-255-285/+11
| | | | AC_CHECK_MEMBERS([struct stat.st_blksize]) instead of AC_STRUCT_ST_BLKSIZE.
* Added some OSX-specific thingsdkf2009-11-221-0/+2
|
* [Tcl Patch #2883533] tcl.m4 support for Haiku OSnijtmans2009-11-193-2/+90
|
* * unix/tclAppInit.c: Repair broken build of the tcltest executable.dgp2009-11-191-3/+3
| | | | * win/tclAppInit.c: [Bug 2883850, 2900542].
* Add files to .cvsignorenijtmans2009-11-182-0/+6
|
* Fix [Bug 2883850]: pkgIndex.tcl doesn'tnijtmans2009-11-185-24/+33
| | | | get created with static Tcl build
* * unix/tclUnixChan.c (TtyParseMode): Partial undo of Donal's tidy-andreas_kupries2009-11-171-5/+9
| | | | | | up from a few days ago (2009-11-9, not in ChangeLog). strchr is apparently a macro on AIX and reacts badly to pre-processor directives in its arguments.
* Fix [Bug 2891171]: URL checking too strict when using multiple question marksnijtmans2009-11-111-3/+3
|
* Some small bits of tidying up.dkf2009-11-092-138/+139
|
* * unix/Makefile.in: Remove $(PACKAGE).* and prototype from thedgp2009-10-261-3/+2
| | | | `make distclean` target. Completes 2009-10-20 commit.
* * unix/Makefile.in: Removed the long outdated and broken targetsdgp2009-10-202-80/+1
| | | | | | | package-* that were for building Solaris packages. Appears that the pieces needed for these targets to function have never been present in the current era of Tcl development and belong completely to Tcl pre-history.
* * macosx/tclMacOSXBundle.c: Workaround CF memory managment bug indas2009-10-051-5/+6
| | | | * unix/tclUnixInit.c: Mac OS X 10.4 & earlier. [Bug 2569449]
* fix tclooConfig.sh installdas2009-10-051-2/+3
|
* Added dummy tclooConfig.sh files for easier cross-version building. [2026844]dkf2009-09-262-3/+27
|
* * library/tcltest/tcltest.tcl: Bump to tcltest 2.3.2 after revisiondgp2009-09-011-3/+3
| | | | | | * library/tcltest/pkgIndex.tcl: to verbose error message. * unix/Makefile.in: * win/Makefile.in:
* const addition (pkge.c)nijtmans2009-08-162-4/+4
| | | | | Use <pthread.h> in stead of "pthread.h" Eliminate some more gcc warnings
* Stop calling endpwent() and endgrent(); unneeded. [Bug 1942222]dkf2009-08-022-10/+4
|
* Revert series of local changes not relevant to the last commit.andreas_kupries2009-07-233-15/+4
|
* * generic/tclIO.c (Tcl_GetChannelHandle): Do not crash forandreas_kupries2009-07-233-4/+16
| | | | | | | | * generic/tclPipe.c (FileForRedirect): getHandleProc == NULL, this is allowed. Provide a nice error message in the bypass area. Updated caller to check the bypass for a mesage. This fixes the bug [Bug 2826248] reported by Andy Sonnenburg <andy22286@users.sourceforge.net>
* Feature Request 2814786: remove TclpPanicnijtmans2009-07-221-11/+5
|
* * unix/Makefile.in: Define NDEBUG in optimized (non-symbols) build todas2009-07-181-2/+2
| | | | disable NRE assert()s and threaded allocator range checks.
* * macosx/Tcl-Common.xcconfig: update projects for Xcode 3.1 and 3.2,das2009-06-261-5/+7
| | | | | | | | | | * macosx/Tcl.xcode/*: standardize on gcc 4.2, remove obsolete * macosx/Tcl.xcodeproj/*: configurations and pre-Xcode project. * macosx/Tcl.pbproj/* (removed): * macosx/README: update project docs, cleanup. * unix/Makefile.in: update dist target for project changes.
* * unix/tclUnixPort.h: Move all socket-related code from tclUnixChan.crmax2009-06-153-1142/+1157
| | | | | * unix/tclUnixChan.c: to tclUnixSock.c. * unix/tclUnixSock.c:
* * library/platform/platform.tcl: Fixed handling of cpu ia64,andreas_kupries2009-05-291-3/+3
| | | | | | * library/platform/pkgIndex.tcl: taking ia64_32 into account * unix/Makefile.in: now. Bumped version to 1.0.5. Updated the * win/Makefile.in: installation commands.
* * unix/tcl.m4, unix/configure (SC_CONFIG_CFLAGS): harden the checkhobbs2009-04-282-4/+6
| | | | to add _r to CC on AIX with threads.
* Don't chmod/exec installManPage. [Patch 2769530]stwo2009-04-241-7/+4
|
* Removed newline appended to POST data.patthoyts2009-04-191-3/+3
| | | | Added tests to check that the data provided by a POST is as stated in the content-length [Bug 2715421]
* Remove unused variable (compiler warning)dgp2009-04-101-2/+2
|
* * unix/tclUnixChan.c: TclUnixWaitForFile(): use FD_* macrosdas2009-04-101-33/+30
| | | | | * macosx/tclMacOSXNotify.c: to manipulate select masks (Cassoff). [Bug 1960647]
* * unix/tclLoadDyld.c: use RTLD_GLOBAL instead of RTLD_LOCAL.das2009-04-101-3/+3
| | | | [Bug 1961211]
* * macosx/tclMacOSXNotify.c: revise CoreFoundation notifier to allowdas2009-04-103-31/+27
| | | | | | | | | | | | | | | | | | * unix/tclUnixChan.c: embedding into applications that * unix/tclUnixEvent.c: already have a CFRunLoop running and want to run the tcl event loop via Tcl_ServiceModeHook(TCL_SERVICE_ALL). * macosx/tclMacOSXNotify.c: add CFRunLoop based Tcl_Sleep() and * unix/tclUnixChan.c: TclUnixWaitForFile() implementations * unix/tclUnixEvent.c: and disable select() based ones in CoreFoundation builds. * unix/tclUnixNotify.c: simplify, sync with tclMacOSXNotify.c. * generic/tclInt.decls: add TclMacOSXNotifierAddRunLoopMode() * generic/tclIntPlatDecls.h: internal API, regen. * generic/tclStubInit.c:
* * unix/configure.in (Darwin): use Darwin SUSv3 extensions ifdas2009-04-103-6/+101
| | | | | | | | available; remove /Network locations from default tcl package search path (NFS mounted locations and thus slow). * unix/configure: autoconf-2.59 * unix/tclConfig.h.in: autoheader-2.59
* Improved HTTP/1.1 support and added specific HTTP/1.1 testing.patthoyts2009-04-101-3/+3
| | | | | | | | This patch makes use of the 8.6 zlib support to provide for deflate and gzip support and handles the -channel option with compression and chunked transfer encoding. For the -handler option we currently disable HTTP/1.1 features as we cannot properly pass the data through to the caller.
* * library/platform/platform.tcl: Extended the darwin sections toandreas_kupries2009-04-081-3/+3
| | | | | | | | | * library/platform/pkgIndex.tcl: add a kernel version number to * unix/Makefile.in: the identifier for anything from Leopard (10.5) * win/Makefile.in: on up. Extended patterns for same. Extended cpu * doc/platform.n: recognition for 64bit Tcl running on a 32bit kernel on a 64bit processor (By Daniel Steffen). Bumped version to 1.0.4. Updated Makefiles.
* * library/tcltest/tcltest.tcl: Converted [eval]s (some unsafe!) todgp2009-04-081-3/+3
| | | | | | * library/tcltest/pkgIndex.tcl: {*} in tcltest package. [Bug 2570363] * unix/Makefile.in: => tcltest 2.3.1 * win/Makefile.in:
* regendkf2009-03-141-1/+2
|
* Added support for reporting TEA-like info via pkg-config.dkf2009-03-143-5/+26
|
* Update to installed module version numberdkf2009-02-241-3/+3
|
* fix [tcl-Bug 2502365] Building of head on HPUX isnijtmans2009-02-102-10/+16
| | | | broken when using the native CC.