summaryrefslogtreecommitdiffstats
path: root/unix
Commit message (Collapse)AuthorAgeFilesLines
...
* * generic/tclIOUtil.c (Tcl_LoadFile): Corrections to previous commitdkf2010-04-021-22/+23
| | | | | * unix/tclLoadDyld.c (TclpDlopen): to make it build on OSX. Also add missing ChangeLog entry for previous commit by KBK.
* * generic/tcl.decls: [TIP #357]: First round of changesKevin B Kenny2010-04-026-56/+185
| | | | | | | | | | | | | | | | | | | | * generic/tclDecls.h: to export Tcl_LoadFile, Tcl_FindSymbol, * generic/tclIOUtil.c: and Tcl_FSUnloadFile to the public API. * generic/tclInt.h: * generic/tclLoad.c: * generic/tclLoadNone.c: * generic/tclStubInit.c: * tests/fileSystem.test: * tests/load.test: * tests/unload.test: * unix/tclLoadDl.c: * unix/tclLoadDyld.c: * unix/tclLoadNext.c: * unix/tclLoadOSF.c: * unix/tclLoadShl.c: * unix/tclUnixPipe.c: * win/Makefile.in: * win/tclWinLoad.c:
* Only test for -visibility=hidden with gccnijtmans2010-03-292-8/+22
| | | | (Second remark in [Bug 2976508])
* Revert the conversion of TCL_VERSION to "8.1" and "8.5" in the Tcl_InitStubs()dgp2010-03-286-15/+15
| | | | calls of the pkg*.c testing extensions.
* Provide "lowest supported Tcl version" tonijtmans2010-03-276-15/+15
| | | | | the Tcl_InitStubs functions in unix/dltest, in stead of "current Tcl version"
* * unix/tclUnixFCmd.c (TclUnixCopyFile): [Bug 2976504]: Correcteddkf2010-03-251-2/+2
| | | | number of arguments to fstatfs() call.
* Upgrade zlib to version 1.2.4nijtmans2010-03-161-4/+2
|
* Squelch unnecessary parens, shorten overlong comment lines.dkf2010-03-141-15/+15
|
* Revert a few files from the previous commit, preventingnijtmans2010-03-115-11/+11
| | | | conflicts with Kevin's TIP #357 work
* Remove unnecessary '&' decoration for functionnijtmans2010-03-116-11/+12
| | | | | pointers. Fix double declaration of TclNativeDupInternalRep
* Code Audit results:dkf2010-03-052-35/+47
| | | | | | | | * use do { ... } while (0) in macros * avoid shadowing one local variable with another * use clearer 'foo.bar++;' instead of '++foo.bar;' where result not required (i.e., semantically equivalent) * follow Engineering Manual rules on spacing and declarations
* ignore shared libraries from checking innijtmans2010-03-041-0/+1
|
* Split tommath stub lib source filenijtmans2010-03-043-4/+8
| | | | | in separate file. Don't use -fvisibility=hidden for cygwin
* [Enh 2959069] Support for -fvisibility=hiddennijtmans2010-03-022-9/+74
|
* Make the code prettierdkf2010-03-011-5/+10
|
* Refrain from a possibly lengthy reverse-DNS lookup on 0.0.0.0 whenferrieux2010-03-011-4/+10
| | | | | calling [fconfigure -sockname] on an universally-bound (default) server socket.
* Corrections to make things work in the non-cross-compiling casedkf2010-02-271-2/+2
|
* Split tclCompCmds.c into two pieces to improve developer sanity.dkf2010-02-261-4/+8
|
* * unix/Makefile.in (NATIVE_TCLSH): Added this variable to allow fordkf2010-02-261-29/+33
| | | | | better control of what tclsh to use for various scripts when doing cross compiling. An imperfect solution, but works.
* Remap non-alphanumeric sequences in manpage filenames to single underscores.dkf2010-02-261-3/+4
|
* [ tcl-Feature Requests-2958832 ] Furthernijtmans2010-02-253-15/+15
| | | | | | speed-up of ouster-hash function. Eliminate various unnecessary (ClientData) type casts.
* Remove unnecessary EXTERN's, which alreadynijtmans2010-02-2211-6288/+6440
| | | | | | | | are in the global stub table. Use @EXEEXT@ in stead of @EXT_SUFFIX@ Use -DBUILD_tcl in Makefile for CYGWIN Use EXTERN to control CYGWIN exported symbols Remove some unnecessary type casts.
* Added missing quotingdkf2010-02-221-1/+1
|
* Correct compiler/linker flags for threaded builds on OpenBSD.stwo2010-02-192-3/+16
|
* [Bug 2954638]: Correct behaviour of manual page installer. Also added armouringdkf2010-02-191-27/+76
| | | | | to check that assumptions about the initial state are actually valid (e.g., look for existing input file).
* regendkf2010-02-161-6314/+6269
|
* Do not assume that all unix systems have the POSIX blkcnt_t type, since OpenBSDdkf2010-02-161-2/+4
| | | | apparently does not.
* Hive off the ensemble code into its own file.dkf2010-02-131-2/+7
| | | | Split the [switch] compiler for sanity's sake.
* Remove double includes (which causes anijtmans2010-01-251-0/+1
| | | | | warning in CYGWIN compiles) Add confdefs.h to unix/.cvsignore
* Fix TCL_LL_MODIFIER for Cygwinnijtmans2010-01-131-3/+3
| | | | | and various other minor CYGWIN compilation problems
* * win/tclWinDde.c: VC++ 6.0 doesn't havenijtmans2010-01-104-6216/+6324
| | | | | | | | | | | | | | | | | | | | * win/tclWinReg.c PDWORD_PTR * win/tclWinThrd.c: Fix various minor gcc warnings. * win/tclWinTime.c * win/tclWinConsole.c Put channel type definitions * win/tclWinChan.c in static const memory * win/tclWinPipe.c * win/tclWinSerial.c * win/tclWinSock.c * generic/tclIOGT.c * generic/tclIORChan.c * generic/tclIORTrans.c * unix/tclUnixChan.c * unix/tclUnixPipe.c * unix/tclUnixSock.c * unix/configure (regenerated with autoconf 2.59) * tests/info.test: Make test independant from tcltest implementation.
* regendkf2010-01-031-1/+1
|
* Fix quoting problemdkf2010-01-031-1/+1
|
* regendkf2010-01-031-1/+31
|
* Missed a bitdkf2010-01-031-2/+3
|
* [Bug 1636685]: Use the configuration for modern FreeBSD suggested by thedkf2010-01-031-1/+24
| | | | FreeBSD porter.
* [FRQ 1083288]: Added targets to allow easier tracing of shell/test invokationsdkf2009-12-281-18/+27
|
* regen with autconf 2.61dkf2009-12-281-6273/+6274
|
* [Bug 942170]: Detect the st_blocks field of 'struct stat' correctly.dkf2009-12-281-4/+4
|
* Tweak exclusionsdkf2009-12-241-1/+3
|
* Cygwin: Install libtcl8.6.dll in bin directorynijtmans2009-12-233-45/+65
|
* Various CYGWIN-related fixes. In the win32 configure script, CYGWIN is still ↵nijtmans2009-12-214-40/+70
| | | | not enabled yet, but at least it is a step in the right direction.
* 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
|