summaryrefslogtreecommitdiffstats
path: root/unix/Makefile.in
Commit message (Collapse)AuthorAgeFilesLines
* Parameterized the static library linkers (ar cr and lib -nologo) to assistwart1999-07-301-1/+2
| | | | in merging the Makefile.in files later.
* * Changed version to 8.2b2.redman1999-07-221-1/+3
| | | | | | | | | | | | | | | | | | * win/tclWinPort.h: Block out include of sys/*.h in order to build extensions with MetroWerks compiler for Win32. [Bug: 2385] * generic/tclCmdMZ.c: * generic/tclIO.c: Fix ANSI-style prototypes based on patch from Ulrich Ring. [Bug: 2391] * unix/Makefile.in: Need to make install-sh executable before calling (with chmod +x). [Bug: 2413] * tests/var.test: * generic/tclVar.c: Fixed bug that caused a seg. fault when using "array set a(b) {}", which is a bad array name anyway. Now the "array set" command will return an error in this case. Added test case and fixed existing test. [Bug: 2427]
* * unix/Makefile.in: Added the Windows configure script to theredman1999-07-221-1/+2
| | | | | distribution file list, already shipping configure.in and the .m4 files, but needed the configure script itself.
* changed http package version from 2.0 to 2.1hershey1999-07-201-4/+4
|
* Add .m4 files and Windows configure.in and Makefile.inredman1999-07-131-1/+8
|
* install-man target renamed to "install-doc" to be consistent with TEA spec.wart1999-07-091-3/+3
|
* updated dde version from 1.0 to 1.1hershey1999-06-301-4/+3
|
* Added package tcltest to the list of packages to install.jenn1999-06-261-4/+4
|
* * unix/Makefile.in: Changed install-doc to install-man.stanton1999-06-241-2/+2
| | | | | | | | | | | | | * tools/uniParse.tcl: * tools/uniClass.tcl: * tools/README: * tests/string.test: * generic/regc_locale.c: * generic/tclUniData.c: * generic/tclUtf.c: * doc/string.n: Updated Unicode character tables to reflect latest Unicode 2.1 data. Also rationalized "regexp" and "string is" definitions of character classes.
* One more try at fixing the TCL_LIBRARY problemwart1999-06-221-3/+4
|
* TCL_LIBRARY is now set in the Makefilewart1999-06-221-1/+3
|
* merged unix and windows stylessurles1999-06-161-32/+26
|
* Tcl configure / Makefile sequence now complies with the most basicwart1999-06-151-11/+4
| | | | spec for TEA.
* 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
|
* * 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
|
* Added makefile targets and configure switches to be TEA compliantsurles1999-06-021-6/+11
|
* * unix/Makefile.in:stanton1999-05-141-11/+24
| | | | | | | | | | | | * 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]
* Resynced with mainline.rjohnson1999-04-211-1/+1
|
* 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-161-61/+146
|
* Changed package tests to build against the stubs library.core_8_1_merge_lateststanton1999-03-111-2/+2
|
* * 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.
* Merged stubs changes into mainline for 8.0stanton1999-03-101-18/+130
|
* added tcltest as a dependency of runteststanton1999-02-021-3/+3
|
* Added -p flag to "mkdir" commands in "install-libraries" target to allow error-suresh1998-12-081-6/+6
| | | | free installation of Tcl script libraries.
* Fixed minor bug with recently added copy stmts ("TOP_DOR" --> "DISTDIR").suresh1998-12-041-3/+3
|
* Added tests/pkg to distributionwelch1998-12-021-3/+8
|
* Changed config & Makefile to support n32 on IRIX.rjohnson1998-10-201-3/+3
|
* Added a new Tcl object called "procbody"; this object's internalescoffon1998-10-051-3/+8
| | | | | | | representation contains both a Proc struct and its associated ByteCode. Updated tclProc.c::TclCreateProc to take procbody instances as the body argument, for future support of compiler extensions. Added the "procbodytest" package for testing all this stuff.
* Removed "sccs" commands from "Makefile.in" to facilititate switch over to CVS.suresh1998-09-231-6/+3
|
* Replaced SCCS strings, fixed binary filescore_8_0_3stanton1998-09-141-2/+2
|
* DBGX changeswelch1998-07-281-2/+2
|
* *** empty log message ***welch1998-07-241-1/+1
|
* Added support for specifying warning flags for the compiler, with checksescoffon1998-07-221-1/+5
| | | | for gcc and appropriate defaults.
* Merged changes between child workspace "/home/escoffon/ws/tcl8.0" andescoffon1998-07-211-0/+3
| | | | parent workspace "/export/home/ws/tcl8.0".
* Merged changes between child workspace "/home/welch/ws/tcl8.0.3i" andwelch1998-07-131-36/+44
| | | | parent workspace "/home/welch/ws/tcl8.0.3".
* *** empty log message ***welch1998-07-111-5/+6
|
* - added support for configuration of debug/nodebug in configure script.escoffon1998-07-011-3/+13
| | | | | - also added a atring to append to generated libraries when built with symbols.
* added SHLIB_PATH to test targetsstanton1998-06-181-0/+2
|
* Initial revisionrjohnson1998-03-261-0/+1014