diff options
author | wiz <wiz@pkgsrc.org> | 2011-06-28 09:28:24 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2011-06-28 09:28:24 +0000 |
commit | 7718c3cc7022d7b56fd4ccf1ad1029f52d1759c2 (patch) | |
tree | c3af1ea48ef8bd3340d6cd943ab32bf2c5ade8d3 /devel/cppunit/Makefile | |
parent | 6b6c5079ed476d349c4b3d74c078e3f3f269e42d (diff) | |
download | pkgsrc-7718c3cc7022d7b56fd4ccf1ad1029f52d1759c2.tar.gz |
devel/cppunit misses a destructor declaration for one of its classes.
The compiler generates an implicit destructor but in certain circonstances this leads to crashes.
More information is available in this bug report on Red Hat's tracker:
https://bugzilla.redhat.com/show_bug.cgi?id=641350
From Francois Tigeot in PR 45104.
Bump PKGREVISION.
Diffstat (limited to 'devel/cppunit/Makefile')
-rw-r--r-- | devel/cppunit/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/devel/cppunit/Makefile b/devel/cppunit/Makefile index 0525ec572b5..82091968d60 100644 --- a/devel/cppunit/Makefile +++ b/devel/cppunit/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.19 2011/02/28 14:52:44 wiz Exp $ +# $NetBSD: Makefile,v 1.20 2011/06/28 09:28:24 wiz Exp $ # DISTNAME= cppunit-1.12.1 +PKGREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cppunit/} |