| 1 |
root |
1.1 |
use ExtUtils::MakeMaker; |
| 2 |
|
|
|
| 3 |
|
|
use Config; |
| 4 |
|
|
|
| 5 |
root |
1.3 |
require "autoconf.pm"; |
| 6 |
|
|
|
| 7 |
|
|
autoconf::run_script(); |
| 8 |
|
|
|
| 9 |
root |
1.1 |
my $mm = MM->new({ |
| 10 |
|
|
dist => { |
| 11 |
|
|
PREOP => 'pod2text AIO.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', |
| 12 |
|
|
COMPRESS => 'gzip -9v', |
| 13 |
|
|
SUFFIX => '.gz', |
| 14 |
|
|
}, |
| 15 |
|
|
NAME => "IO::AIO", |
| 16 |
|
|
VERSION_FROM => "AIO.pm", |
| 17 |
root |
1.2 |
LIBS => ['-lpthread -lrt', '-lpthread', '-lpthreads', ''], |
| 18 |
root |
1.4 |
clean => { FILES => "autoconf/config.h autoconf/config.log autoconf/config.status" }, |
| 19 |
root |
1.1 |
}); |
| 20 |
|
|
|
| 21 |
|
|
$mm->flush; |
| 22 |
|
|
|