diff options
author | wiz <wiz@pkgsrc.org> | 2005-11-24 18:54:51 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-11-24 18:54:51 +0000 |
commit | c2b21dc95deb89b492deaffc408940c33c8d7c25 (patch) | |
tree | 7f6971e879fd55251e2a81759bec29cfcfc91279 /devel/libmm/Makefile | |
parent | 62d51f024cc69931a4d8dcdd55bb71951c8dd8d4 (diff) | |
download | pkgsrc-c2b21dc95deb89b492deaffc408940c33c8d7c25.tar.gz |
Update to 1.4.0:
Changes between 1.3.1 and 1.4.0 (12-Sep-2003 to 02-Sep-2005)
*) Optimize insertion of free memory chunks by merging with
the spare area if possible to decrease memory fragmentation.
*) Fix mm_realloc() function: If the memory chunk passed to mm_realloc()
can't be extended and a new chunk must be allocated, the old memory
is copied into the new chunk with a call to memcpy(3). However, the
used size is the length of the new data and will cause memcpy(3) to
access memory beyond the old data chunk's boundaries.
[Kirk Petersen]
*) Upgraded build environment to GNU Libtool 1.5.20 and GNU shtool 2.0.2
[Ralf S. Engelschall]
*) Updated all copyright messages for year 2005.
[Ralf S. Engelschall]
Diffstat (limited to 'devel/libmm/Makefile')
-rw-r--r-- | devel/libmm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/libmm/Makefile b/devel/libmm/Makefile index 73be8c7c15a..b11fa068b95 100644 --- a/devel/libmm/Makefile +++ b/devel/libmm/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.13 2005/04/11 21:45:27 tv Exp $ +# $NetBSD: Makefile,v 1.14 2005/11/24 18:54:51 wiz Exp $ -DISTNAME= mm-1.3.1 +DISTNAME= mm-1.4.0 PKGNAME= lib${DISTNAME} CATEGORIES= devel MASTER_SITES= ftp://ftp.ossp.org/pkg/lib/mm/ |