| 1 |
root |
1.1 |
use ExtUtils::MakeMaker; |
| 2 |
|
|
|
| 3 |
root |
1.3 |
use Canary::Stability Async::Interrupt => 1, 5.008; # apparently PL_sighandlerp was introduced with 5.008 - correct me if wrong |
| 4 |
root |
1.1 |
|
| 5 |
|
|
WriteMakefile( |
| 6 |
|
|
dist => { |
| 7 |
|
|
PREOP => 'pod2text Interrupt.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', |
| 8 |
|
|
COMPRESS => 'gzip -9v', |
| 9 |
|
|
SUFFIX => '.gz', |
| 10 |
|
|
}, |
| 11 |
root |
1.2 |
|
| 12 |
|
|
PREREQ_PM => { |
| 13 |
|
|
common::sense => 0, |
| 14 |
root |
1.3 |
"ExtUtils::MakeMaker" => 6.52, "Canary::Stability" => 0, |
| 15 |
root |
1.2 |
}, |
| 16 |
root |
1.1 |
NAME => "Async::Interrupt", |
| 17 |
|
|
VERSION_FROM => "Interrupt.pm", |
| 18 |
|
|
); |
| 19 |
|
|
|