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 (6 years, 1 month 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

# User Rev Content
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