Authen-DecHpwd
view release on metacpan or search on metacpan
# Older versions of Module::Build have a bug where if the
# cbuilder object is used at Build.PL time (which it will
# be for this distribution due to the logic in
# ->find_xs_files) then that object can be dumped to the
# build_params file, and then at Build time it will
# attempt to use the dumped blessed object without loading
# the ExtUtils::CBuilder class that is needed to make it
# work.
*write_config = sub {
delete $_[0]->{properties}->{_cbuilder};
return $_[0]->SUPER::write_config;
};
}
sub find_xs_files {
my($self) = @_;
return {} unless $self->have_c_compiler;
return $self->SUPER::find_xs_files;
}
})->new(
module_name => "Authen::DecHpwd",
license => "GPL_2",
dist_author => [
"Shawn Clifford",
"Davide Casale",
"Mario Ambrogetti",
"Terence Lee",
"Jean-loup Gailly",
( run in 0.219 second using v1.01-cache-2.11-cpan-a9ef4e587e4 )