summaryrefslogtreecommitdiffstats
path: root/unix
Commit message (Collapse)AuthorAgeFilesLines
* Reflects recent changes in tcl.m4 (compiler warnings)wart1999-06-191-2/+2
|
* Fixed compiler optimization flags for Linux to remove a plethora of warnings.wart1999-06-172-0/+14
|
* Reflects changes to tcl.m4wart1999-06-161-800/+802
|
* Added changes to make the macros bahave in the same manner as the Windowswart1999-06-161-126/+126
| | | | tcl.m4 macros
* merged unix and windows stylessurles1999-06-163-36/+30
|
* Reorganized the order of the macros (cosmetic change)wart1999-06-161-676/+678
|
* More TEA changes. Should play well with TclX now.wart1999-06-163-29/+43
|
* Tcl configure / Makefile sequence now complies with the most basicwart1999-06-152-365/+79
| | | | spec for TEA.
* Includes changes to tcl.m4wart1999-06-151-148/+710
|
* Modified some macros based on how some of the extensions work.wart1999-06-151-148/+710
|
* Merged String and Unicode object types. Added new functions tohershey1999-06-151-7/+5
| | | | | | | | | the puplic API: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj, Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange, Tcl_AppendUnicodeToObj. Note: some stringObj tests are still failing--the teststringobj command still needs to be updated.
* Continued work on configure and make scriptssurles1999-06-111-21/+20
|
* Macros that autoconf will be looking for (tcl.m4)wart1999-06-101-0/+1127
|
* Modified to use the tcl.m4 macroswart1999-06-101-588/+10
|
* First pass at Tcl autoconf macroswart1999-06-101-0/+1114
|
* * generic/regexec.c:stanton1999-06-101-4/+3
| | | | * unix/tclUnixNotfy.c: lint
* * tests/string.test:hershey1999-06-081-2/+7
| | | | | | | | | | | | | | | | | | | | | | | * generic/tclVar.c (Tcl_SetVar2Ex): * generic/tclStringObj.c (Tcl_AppendObjToObj): * generic/tclCmdMZ.c (Tcl_StringObjCmd): optimized the string index, string length, string range, and append command in cases where the object's internal rep is a bytearray. Objects with other internal reps are converted to have the new unicode internal rep. * unix/Makefile.in: * win/Makefile.in: * win/Makefile.vc: * tests/unicode.test: * generic/tclInt.h: * generic/tclObj.c: * generic/tclUnicodeObj.c: added a new object type to store the unicode representation of a string. * generic/tclTestObj.c: added the objtype option to the testobj command. This option returns the name of the type of internal rep an object has.
* fixed install target for man pagessurles1999-06-021-1/+2
|
* fixed typostanton1999-06-021-2/+2
|
* Added makefile targets and configure switches to be TEA compliantsurles1999-06-021-6/+11
|
* * unix/configure.in: Fixed various small configure.in patchesstanton1999-06-021-4/+5
| | | | submitted by Jan Nijtmans. [Bug: 2121]
* Merged changes from 1-3-b2 branch into mainline.stanton1999-05-261-2/+3
|
* Merged changes from scriptics-tclpro-1-3-b2 branchstanton1999-05-221-0/+4
|
* Added note about running autoconf if you are using the CVS source treewelch1999-05-171-6/+16
| | | | instead of a source distribution.
* * unix/Makefile.in:stanton1999-05-143-20/+100
| | | | | | | | | | | | * unix/tclAppInit.c: Minor cleanup related to Xt notifier. * unix/tclUnixInit.c (TclpSetInitialEncodings): Tcl now looks for an encoding subfield in the LANG/LC_ALL variables in cases where the locale is not found in the locale table. Ensure that setlocale() is called at least once so X11 will initialize properly. Also, forces the LC_NUMERIC locale to be "C" so numeric processing in scripts is not affected by the current locale setting. [Bug: 1989]
* * unix/configure.in: Added fix for OS/390. [Bug: 1976]stanton1999-05-071-1/+5
|
* * Changed version to 8.1.1.stanton1999-04-301-2/+2
|
* * Merged changes from 8.1.0 branchstanton1999-04-301-2/+2
|
* merged 8.1.0 changes into mainlinestanton1999-04-242-3/+20
|
* * win/tclWinInit.c:stanton1999-04-211-4/+46
| | | | | * unix/tclUnixInit.c: Changed initial search path to match that found used by tcl_findLibrary.
* Resynced with mainline.rjohnson1999-04-212-3/+3
|
* modified the Tcl makefile to copy the new pkgIndex files for reg and dde.surles1999-04-201-3/+2
|
* added tests/httpd file to distribution--tests get skipped if this file ishershey1999-04-191-3/+3
| | | | missing (bug id 1769).
* merged tcl 8.1 branch back into the main trunkstanton1999-04-1632-1671/+3939
|
* Fixed typo in LD_SEARCH_FLAGS definition for Linux.welch1999-03-251-2/+2
|
* Changed package tests to build against the stubs library.core_8_1_merge_lateststanton1999-03-1110-20/+47
|
* add CrtVersion.3 documentation for Tcl_GetVersion()redman1999-03-111-0/+4
|
* * generic/tclAlloc.c: Changed TCL_NATIVE_MALLOC to USE_TCLALLOC sostanton1999-03-111-15/+18
| | | | | | | | | | | | | | it matches 8.1. * generic/tclBasic.c: * generic/tcl.h: * generic/tcl.decls: Changed Tcl_ReleaseType from an enum to macros so it can be used in .rc files. Added Tcl_GetString. * unix/Makefile.in: Added compat binaries to the stub library. Changed compat binaries to always compile with shared flags since they need to be shared for the stub library.
* * win/tclWinPipe.c:stanton1999-03-111-2/+3
| | | | | | | | | | | | | | | * generic/tclInt.decls: Added TclWinAddProcess to make it possible for expect to use Tcl_WaitForPid(). This patch is from Gordon Chaffee. * mac/tclMacPort.h: * win/tclWinInit.c: * unix/tclUnixPort.h: * generic/tclAsync.c: Added TclpAsyncMark to fix bug in async handling on Windows where async events don't wake up the event loop. This patch comes from Gordon Chaffee. * generic/tcl.decls: Fixed declarations of reserved slots.
* Merged stubs changes into mainline for 8.0stanton1999-03-1010-86/+428
|
* updated readmes for 8.0.5 releasestanton1999-02-091-10/+3
|
* removed AC_CONFIG_SUBDIRS(dltest) since this doesn't work in our buildstanton1999-02-031-2/+1
| | | | environment
* stripped carriage returns at end of linesstanton1999-02-031-656/+656
|
* * unix/configure.in: Changed to automatically configure in dltest.stanton1999-02-031-1/+2
|
* * win/tclAppInit.c:stanton1999-02-031-6/+6
| | | | | | | | | | | | * unix/tclAppInit.c: * mac/tclMacAppInit.c: * generic/tclTest.c: Changed some EXTERN declarations to extern since they are not defining exported interfaces. This avoids generating useless declspec() attributes and makes the windows makefile simpler. * generic/tcl.h: Moved Tcl_AppInit declaration to end and cleared out TCL_STORAGE_CLASS so it is not declared with a declspec().
* * unix/tclUnixChan.c:stanton1999-02-031-1/+18
| | | | | | | * win/tclWinSock.c: * doc/socket.n: Applied Gordon Chaffee's patch to handle failures during asynchronous socket connection operations. This adds a new "-error" fconfgure option to socket channels. [Bug: 893]
* added tcltest as a dependency of runteststanton1999-02-021-3/+3
|
* * unix/configure.in: Added branch for BSD/OS-4* to shared librarystanton1999-02-021-5/+5
| | | | | | | | | case statement. [Bug: 975] Fixed to correctly handle IRIX 6.5 n32 library support. [Bug: 1117] * unix/configure.in: Changed Linux and IRIX to set SHLIB_LIBS to LIBS so shared libraries are linked with the system libraries. [Bug: 1018]
* Added -pipe option if gcc is being used.rjohnson1999-01-291-1/+18
|
* Changed so sh_lib extension is return on HP even if it isn't compiledrjohnson1999-01-121-2/+2
| | | | as a shared object.