summaryrefslogtreecommitdiffstats
path: root/unix
Commit message (Collapse)AuthorAgeFilesLines
...
* * generic/tkMain.c :redman1999-12-021-2/+25
| | | | | | | * unix/tkAppInit.c: * win/winMain.c: Added added hooks into the main() code for supporting TclPro and other "big" shells more easily without requiring a copy of the main() code.
* * tests/listbox.test: Fixed tests to comply with new objectifiedericm1999-11-171-1/+2
| | | | | | | | error messages. No -listvar specific tests yet. * win/tkWinDefault.h: * unix/tkUnixDefault.h: * mac/tkMacDefault.h: Added default value for -listvar option.
* Added $(TCLTESTARGS) to the test target so that users can set additionalwart1999-11-121-2/+2
| | | | | | test harness arguments on the make command line: % make test TCLTESTARGS="-verbose pbs"
* * unix/Makefile.in: added ChangeLog to dist archivehobbs1999-10-201-3/+3
|
* 1999-09-24 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-10-014-17/+17
| | | | | | | | | | | | | * */README: * win/makefile.vc: * */configure.in: * generic/tk.h: * library/tk.tcl: up'd to 8.3a1 * unix/Makefile.in: changed 'mkdir' to 'mkdir -p' * library/dialog.tcl: changed {Times 18} to {Times 12} for dialog font.
* 1999-09-16 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-09-213-12/+15
| | | | | | | | | | | | | | | | | | | | | | | * generic/tkFont.c: fixed processing of font options and error returned [Bug: 2075] * win/tkWinWm.c: fixed bug in 'wm deiconify' that raised the wrong toplevel, and changed it to not set focus on overridden toplevels 1999-09-15 Jeff Hobbs <hobbs@scriptics.com> * unix/aclocal.m4: added fix for FreeBSD-[1-2] recognition [Bug: 2070] and fix to AIX-* to get ldAix right [Bug: 2624], fixed AIX version check (readjust from 8-21 fix) and several other config fixes for AIX * mac/tkMacMenubutton.c: * unix/tkUnixMenubu.c: fixed permanently stippled menubutton image * win/tkWinButton.c: fixed possible pointer smash [Bug: 2733] 1999-09-14 Jeff Hobbs <hobbs@scriptics.com> * win/tkWinMenu.c: fix for stack overrun in GetTextFace [Bug: 909]
* * win/tkWinDraw.c:hobbs1999-09-022-12/+11
| | | | | | | * unix/tkUnixDraw.c: fixed header style for TkpDrawHighlightBorder * generic/tkCanvas.c: fixed GC error (bg <> fg) in tkCanvas.c (from code added to support TkpDrawHighlightBorder) [Bug: 2676] * unix/aclocal.m4: added -bnoentry to the AIX-* flags
* "make doc" now copies the Tcl file "man.macros" locally. This should allowwart1999-08-211-2/+6
| | | | | | users to use the man pages from inside the Tk source tree (without having to install). It also fixes some problems that TclX was having when building its help pages.
* Change version numbers to 8.2.0redman1999-08-101-2/+2
|
* New Function: TkpDrawHighlightBorder. Use this in place of ↵jingham1999-08-101-1/+34
| | | | Tk_DrawFocusHighlight. The latter did not work on the Mac, since you need to know both foreground & background color when you draw the active focus ring.
* Added line to make mkLinks executable before it's used.wart1999-08-041-1/+2
|
* Fix configure scripts for beta version number (b2 instead of b1).redman1999-08-041-2/+2
|
* Fix one more install-sh bugredman1999-07-271-2/+2
|
* Fix install-sh problem, wrong directory.redman1999-07-231-2/+2
|
* * Changed version to 8.2b2redman1999-07-221-2/+4
| | | | | | | | | | | * win/tkWinPort.h: Block out include of sys/stat.h in order to build extensions with MetroWerks compiler for Win32. [Bug: 2385] * unix/Makefile.in: Need to make install-sh executable before calling (with chmod +x). [Bug: 2413] * library/menu.tcl: Applied patch from Jeff Hobbs to fix typo. [Bug: 2425]
* * unix/Makefile.in: Add Windows configure script to distribution.redman1999-07-221-1/+2
|
* * unix/Makefile.in:redman1999-07-162-15/+5
| | | | | | | * win/Makefile.in: Copy the prolog.ps from the generic directory for install-libraries. * unix/aclocal.m4: Check for Alpha/Linux to set the IEEE flag to the compiler to be -mieee. Patch from Don Porter.
* Add .m4 files and Windows configure.in and Makefile.inscriptics_tclpro_1_3_b3core_8_2_b1redman1999-07-131-1/+6
|
* configure now adds the "g" suffix to the stub library if buildwart1999-07-081-16/+7
| | | | with --enable-symbols
* Fix Tk stub file names and flagsredman1999-07-081-2/+4
|
* Add prolog.psredman1999-06-301-2/+3
|
* Changed to Tk 8.2b1welch1999-06-252-11/+10
|
* Updated comments in Makefile.inwart1999-06-221-2/+2
|
* Changed references to LD_FLAGS to LDFLAGS to be consistent with Tcl.wart1999-06-181-4/+4
|
* Updated aclocal.m4 to reflect recent changes in tcl.m4wart1999-06-171-800/+809
| | | | | Changed type of strncmp() parameter from int to size_t in tkConsole.c to remove compiler warnings about bad types.
* modified files to work with new windows Makefilessurles1999-06-161-2/+1
|
* Updated to reflect recent changes in tcl.m4wart1999-06-162-14/+24
|
* Changes to make the Tk configure and Makefile.in files TEA compliant.wart1999-06-153-362/+838
|
* macros that autoconf will be looking for (tcl.m4)wart1999-06-101-0/+1127
|
* * unix/tkUnixSelect.c:stanton1999-06-031-3/+13
| | | | | | * tests/unixSelect.test: * generic/tkSelect.c: Fixed selection code to handle Unicode data in COMPOUND_TEXT and STRING selections. [Bug: 1791]
* * unix/tkUnixSelect.c: Improved I18N selection support.stanton1999-06-011-94/+271
| | | | | | COMPOUND_TEXT is converted to/from iso2022, and STRING is converted to/from iso8859-1. There are still a few loose ends to tie up before this is completely done.
* * unix/tkUnixFont.c: Eliminated redundant case folding code.stanton1999-06-011-7/+2
|
* Merged changes from 1-3-b2 branch into mainline.stanton1999-05-261-2/+3
|
* First pass at Unicode support in X selection code.stanton1999-05-251-9/+122
|
* * Changed version number to 8.1.1.stanton1999-04-301-2/+2
|
* * Merged changes from 8.1.0 branchstanton1999-04-301-2/+2
|
* removed extra instance of tkConsole.oredman1999-04-301-2/+2
|
* Add tkConsole.oredman1999-04-281-4/+7
|
* merged 8.1.0 changes into mainlinestanton1999-04-241-2/+8
|
* Merged 8-1-0 into mainline.rjohnson1999-04-212-3/+3
|
* modified the Tk makefiel to copy *.decls for a source releasesurles1999-04-201-1/+2
|
* fixed Tk comment errorssurles1999-04-161-2/+2
|
* * Merged 8.1 branch into the main trunkstanton1999-04-1625-1282/+3420
|
* remove --enable-tcl-stub from configure scripts due to linking problems.redman1999-03-221-25/+6
|
* integrated stubs into 8.0 main branchstanton1999-03-109-41/+250
|
* applied Paul Duffin's AIX patchstanton1999-03-062-10/+25
|
* updated readmes for 8.0.5 releasecore_8_1_merge_2_10_99core_8_0_5_basestanton1999-02-091-14/+6
|
* * unix/tkUnixSend.c (Tk_SetAppName): Fixed uninitialized memorystanton1999-02-041-4/+7
| | | | access bug. [Bug: 919]
* * unix/configure.in: TK_LD_SEARCH_FLAGS was set incorrectly ifstanton1999-02-041-2/+13
| | | | | | SHLIB_LD_LIBS='${LIBS}', and shared linking is performed through the C compiler. Systems affected are Linux, MP-RAS and NEXTSTEP, but also with gcc on many more systems. [Bug: 908]
* * mac/tkMacAppInit.c:stanton1999-02-041-2/+2
| | | | | | | | | * generic/tkTest.c: * generic/tkAppInit.c: * win/winMain.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.