216154a457
The Benchmark::Timer class allows you to time portions of code conveniently, as well as benchmark code by allowing timings of repeated trials. It is perfect for when you need more precise information about the running time of portions of your code than the Benchmark module will give you, but don't want to go all out and profile your code. ok jasper@
19 lines
601 B
Plaintext
19 lines
601 B
Plaintext
$OpenBSD: patch-Makefile_PL,v 1.1.1.1 2007/03/18 20:17:10 simon Exp $
|
|
--- Makefile.PL.orig Sat Mar 17 12:46:08 2007
|
|
+++ Makefile.PL Sat Mar 17 12:46:23 2007
|
|
@@ -17,14 +17,6 @@ requires (
|
|
'Time::HiRes' => 0,
|
|
);
|
|
|
|
-# Optional features and their modules
|
|
-features (
|
|
- 'Statistical sampling support' => [
|
|
- -default => 1,
|
|
- recommends( 'Statistics::PointEstimation' => 0 ),
|
|
- ],
|
|
- );
|
|
-
|
|
skip ('delta.pl');
|
|
|
|
include ('ExtUtils/AutoInstall.pm');
|