summaryrefslogtreecommitdiffstats
path: root/unix
Commit message (Collapse)AuthorAgeFilesLines
* Minor fix to dist scriptsstanton1999-04-071-2/+2
| | | | man page lint
* Fixed warnings from Solaris compiler that turned out to be errorsredman1999-04-061-3/+3
| | | | on the native Irix compiler (unnecessary casting).
* removed reference to "tests/visual"--the file is now called "visual_bb.test".hershey1999-04-061-5/+3
|
* * unix/configure.in:stanton1999-04-061-1/+13
| | | | | | | | * unix/tclUnixPort.h: Applied patch for OS/390 to handle lack of sys/param.h. [Bug: 1725] * unix/configure.in: Fixed BSD/OS 4.* configuration to support shared libraries properly. [Bug: 1730]
* Fixed Bug #1703: menubutton uses same fg and bg when disabled.lfb1999-04-061-5/+5
|
* Remove the DDE code.redman1999-04-011-4/+4
| | | | Modified stubs based on Jan's patch.
* * doc/MeasureChar.3:stanton1999-03-303-13/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * doc/TextLayout.3: * generic/tk.decls: * generic/tkCanvText.c: * generic/tkEntry.c: * generic/tkFont.c: * generic/tkListbox.c: * generic/tkMessage.c: * mac/tkMacFont.c: * unix/tkUnixButton.c: * unix/tkUnixFont.c: * unix/tkUnixMenu.c: * win/tkWinFont.c: * win/tkWinMenu.c: Standardized text layout and font interfaces so they are consistent with respect to byte versus character oriented indices. The layout functions all manipulate character oriented values while the lower level measurement functions all operate on byte oriented values. This distinction was not clear and so the functions were being used improperly in a number of places. [Bug: 1053, 747, 749, 1646] * generic/tk.decls: Eliminated uses of C++ STL types string and list from declarations. * generic/tkFont.c: Changes to named fonts were not being propagated in some cases. [Bug: 1144]
* Remove stub functions. Always use stubs when building with --enable-sharedredman1999-03-302-45/+17
| | | | (which is the default). Wish links to -ltcl and -ltk (the real libraries).
* --enable-shared is now the default that builds Tcl as a shared library. Usesuresh1999-03-261-3/+3
| | | | --disable-shared and --enable-shared=no to build Tcl as a static library.
* Removed --enable-tcl-stub because it causes too many problems with linking.redman1999-03-221-23/+7
|
* Updated version to 8.1b3.stanton1999-03-171-2/+2
|
* * unix/configure.in: Added missing stub related definitions.stanton1999-03-142-4/+27
| | | | | | | * unix/Makefile.in: Install tkDecls.h in addition to tk.h. * generic/tkStubLib.c: Added flags to ensure we are using Tcl stub macros.
* Fixed ref to all.tcl and defs.tcl in make dist targetwelch1999-03-131-3/+3
|
* "make test" now invokes the test suite from the current working dir sohershey1999-03-111-4/+2
| | | | that you can call "make test" on multiple platforms simultaneously.
* Fix problems with tktest and configuration problems with vs. withoutredman1999-03-112-10/+13
| | | | stubs.
* integrated stubs from development branchstanton1999-03-109-38/+245
|
* Added TkpThreadInit function for performing thread-specificlfb1999-03-091-1/+28
| | | | initialization of Menu module. Only does real work on Windows.
* Added tclUnixTest.o to the list of TCLTEST_OBJS for Tk.lfb1999-02-161-2/+3
|
* Change defaults used by Menubuttons to reflect TK_OPTION interface.lfb1999-02-162-11/+10
|
* Removed Tk_Uids from Menubutton widget.lfb1999-02-131-4/+6
|
* Objectified scale widget to eliminate Tk_Uids.lfb1999-02-132-21/+28
| | | | | Fixed problem in windows process-initialization code stopping Tk Dll from loading under Windows.
* * README:stanton1999-02-122-4/+4
| | | | | | | | | | * generic/tk.h: * unix/configure.in: * win/README: * win/makefile.bc: * win/makefile.vc: Updated version to 8.1b2. * unix/tkUnixSend.c: Fixed one more Tcl_*ObjVar instance.
* * Various cleanup related to the Tcl_Eval and Tcl_ObjSetVarstanton1999-02-114-23/+47
| | | | | | changes in Tcl. * Integrated patches from 8.0.5b2
* Removed perky gloabal Tk_Uids causing concurrency problems.lfb1999-01-072-7/+8
|
* Tk 8.1 Muti-threading changes.lfb1998-12-138-138/+225
| | | | | | Moved static and global data elements into thread-local storage, or introduced locks where not possible, as first stage of adding thread safety to Tk.
* merge 8.0 changesstanton1998-12-101-2/+2
|
* release lintstanton1998-12-101-2/+1
|
* Changed patch level to 8.1b1welch1998-12-041-3/+11
|
* lintstanton1998-11-251-3/+3
|
* * unix/tkUnixFont.c (GetFontAttributes): Initialize an unspecifiedstanton1998-11-251-6/+8
| | | | | | | | family to an empty string. (FontMapLoadPage): if the font included characters below 32, the index computation was incorrect because the range was shifted up to 32. (CreateClosestFont): check for empty locale as well as NULL.
* * unix/tkUnixMenu.c: hidemargin option was not honored properly in menus ↵stanton1998-11-251-3/+3
| | | | [Bug: 859]
* * integrated tk8.0.4 changes.stanton1998-11-253-4/+35
| | | | | * generic/tkBind.c: fixed deletion order bug where a crash would result if a binding deleted "."
* fixed bugs introduced in last menu changesstanton1998-11-251-51/+48
|
* * tkMacMenu.c, tkUnixMenu.c, tkWinMenu.c, tkMenuDraw.c, tkMenu.h,stanton1998-11-241-48/+13
| | | | | | | | | | * tkMenu.c: Backed out the previous fix for bug 620 and eliminated a bunch of code that created unnecessary objects. Changed back to using internal types instead of objects for many configuration options. There are many more fixes like this that could be made, but some require a little restructuring of the code. In any case the leaks are fixed and there is a lot less allocation happening. [Bug: 620]
* merged 8.0.4 into 8.1stanton1998-10-061-0/+207
|
* Merged 8.0.3 changes into 8.1stanton1998-09-3031-89/+140
|
* initial tk8.1a2 versionstanton1998-09-2923-1229/+3098
|
* Initial revisionrjohnson1998-04-0132-0/+20422