File: Makefile.PL

package info (click to toggle)
libscalar-defer-perl 0.23-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 296 kB
  • sloc: perl: 3,700; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 675 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use strict;
use lib '.';
use inc::Module::Install;

name        'Scalar-Defer';
all_from    'lib/Scalar/Defer.pm';

requires    'Class::InsideOut';
requires    'Exporter::Lite';

include_deps 'ok';
include_deps 'Test::More';

auto_install;
auto_provides;

sign;
WriteAll;

warn "\n\n\n".<<EOT."\n" if $] == 5.008009;
************************************************************
WARNING: Performance under perl 5.8.9 can be extremely poor,
due to bad interactions between overload and bless.  You may
wish to consider upgrading to a more recent version of perl
if the performance of Scalar::Defer is important.
************************************************************
EOT