6398e5bfb1
1.15 Apr 28, 2007 - Changed how objects are created in order to greatly speed up the constructor. Instead of processing all the stack trace data when the object is first created, this is delayed until it is needed. This was done in order to help speed up Exception::Class. There are cases where code may be throwing many exceptions but never examining the stack traces. Here is a representative benchmark of object construction for the old code versus the new code: Rate old new old 1764/s -- -76% new 7353/s 317% -- 1.14 Mar 16, 2007 - Added a few micro-optimizations from Ruslan Zakirov, who is hoping this will ultimately help speed up RT.
19 lines
565 B
Makefile
19 lines
565 B
Makefile
# $NetBSD: Makefile,v 1.17 2007/06/08 08:38:27 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= Devel-StackTrace-1.15
|
|
PKGNAME= p5-${DISTNAME}
|
|
SVR4_PKGNAME= p5dst
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Devel/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/author/DROLSKY/Devel-StackTrace/
|
|
COMMENT= Perl5 module for stack trace and stack trace frame objects
|
|
|
|
PERL5_PACKLIST= auto/Devel/StackTrace/.packlist
|
|
|
|
DEPENDS+= p5-Test-Simple>=0.46:../../devel/p5-Test-Simple
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|