ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Async-Interrupt/Makefile.PL
Revision: 1.4
Committed: Sun Apr 21 09:42:27 2019 UTC (5 years ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_25, rel-1_26, HEAD
Changes since 1.3: +1 -1 lines
Log Message:
1.25

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 },
15 CONFIGURE_REQUIRES => { ExtUtils::MakeMaker => 6.52, Canary::Stability => 0 },
16 NAME => "Async::Interrupt",
17 VERSION_FROM => "Interrupt.pm",
18 );
19