ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Async-Interrupt/Makefile.PL
Revision: 1.3
Committed: Tue Apr 17 19:21:28 2018 UTC (8 years, 4 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_23, rel-1_24
Changes since 1.2: +2 -1 lines
Log Message:
1.23

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 use Canary::Stability Async::Interrupt => 1, 5.008; # apparently PL_sighandlerp was introduced with 5.008 - correct me if wrong
4
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
12 PREREQ_PM => {
13 common::sense => 0,
14 "ExtUtils::MakeMaker" => 6.52, "Canary::Stability" => 0,
15 },
16 NAME => "Async::Interrupt",
17 VERSION_FROM => "Interrupt.pm",
18 );
19