Apache2-FakeRequest

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use 5.008008;
package MY;
sub test_via_harness {
  my($self, $perl, $tests) = @_;
  local $_ = $self->SUPER::test_via_harness($perl, $tests);
  s/PERL_DL_NONLAZY=1//g;
  return $_;
}
 
sub test_via_script {
  my($self, $perl, $tests) = @_;
  local $_ = $self->SUPER::test_via_script($perl, $tests);
  s/PERL_DL_NONLAZY=1//g;
  return $_;
}
 
package main;
 
WriteMakefile(
    NAME         => 'Apache2::FakeRequest',
    VERSION_FROM => 'lib/Apache2/FakeRequest.pm',    # finds $VERSION
    PREREQ_PM    => { 'Apache2::Request' => 2.07 },    # e.g., Module::Name => 1.1



( run in 0.266 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )