diff options
author | adam <adam> | 2004-11-26 10:30:01 +0000 |
---|---|---|
committer | adam <adam> | 2004-11-26 10:30:01 +0000 |
commit | 866eec025e2422572211602fa390184a1f054daa (patch) | |
tree | bfbff5eb2083977d343c8c395cbf08c46951ee00 /lang/tcl/Makefile | |
parent | d8bdb85957d3e4d4874d44c2ddfd8a399a1025fa (diff) | |
download | pkgsrc-866eec025e2422572211602fa390184a1f054daa.tar.gz |
Changes 8.4.8:
* Fixed possible deadlock in Tcl_Finalize
* Fixed thread IDs on 64-bit systems
* Fixed [scan %ld] handling LP64 systems
* Fixed [string map $samevar $samevar] crash
* Fixed broken [namespace forget] logic
* Fixed [namespace import] cycle prevention
* Improved control over int <-> wideInt conversion
* Fixed buffer overflow when there is a syntax error in [subst]
* Fixed [file executable] result for case insensitivity on Windows
* Fixed [expr {NaN == NaN}] result
* Make [tcl_findLibrary] search $::auto_path as well
* Fixed crash in [fconfigure -ttycontrol] in threaded build
* [TIP 222] implementation of [wm attributes -alpha] on Windows
* [TIP 159] implementation of [wm iconphoto]
* Make Tk [load]-able on OS X/Aqua
* Handle color/screen resolution changes on Windows
* Fixed [wm resizable] for Solaris/CDE
* Handle Windows native dialog double clicks that fall through
* Fixed [place forget] memory leak
* Recompute menu geometry on named font size change
* Fixed X/IME IC focus after creation
* Improved multiple display Tk dialog window placement
* Fixed compound buttons for OS X/Aqua
* Documentation improvements and test suite expansion
Diffstat (limited to 'lang/tcl/Makefile')
-rw-r--r-- | lang/tcl/Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/lang/tcl/Makefile b/lang/tcl/Makefile index acbde3e7fed..653ec7b0350 100644 --- a/lang/tcl/Makefile +++ b/lang/tcl/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.41 2004/11/16 22:44:51 jlam Exp $ +# $NetBSD: Makefile,v 1.42 2004/11/26 10:30:01 adam Exp $ -DISTNAME= tcl8.4.7-src -PKGNAME= tcl-8.4.7 -PKGREVISION= 3 +DISTNAME= tcl8.4.8-src +PKGNAME= tcl-8.4.8 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tcl/} @@ -15,14 +14,14 @@ CONFLICTS+= tclman80-[0-9]* PKG_INSTALLATION_TYPES= overwrite pkgviews WRKSRC= ${WRKDIR}/${DISTNAME:C/-src//}/unix -GNU_CONFIGURE= yes -MAKE_ENV+= TOUCH="${TOUCH}" -TEST_TARGET= test USE_BUILDLINK3= yes USE_LIBTOOL= yes +GNU_CONFIGURE= yes +MAKE_ENV+= TOUCH="${TOUCH}" INSTALL_TARGET= install +TEST_TARGET= test # Initially install the man pages into ${WRKDIR}/man, as we need a staged # install to avoid overwriting existing manpages in ${PREFIX}/man. |