Alt-Crypt-OpenSSL-PKCS12-Broadbean

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

}

# HACK HACK HACK - dakkar 2024-09-26
#
# we need to cheat a lot to get MakeMaker to build a Makefile that
# will build the correct XS library... here, I tell *only this part*
# of the MakeMaker process, that we are really Crypt::OpenSSL::PKCS12,
# and not the Alt::*
#
# it seems to work!
my $old_init_main = \&ExtUtils::MM_Unix::init_main;
{
    no warnings 'redefine';
    *ExtUtils::MM_Unix::init_main = sub {
        my ($self) = @_;
        local $self->{NAME} = 'Crypt::OpenSSL::PKCS12';
        return $old_init_main->($self);
    };
}

my %WriteMakefileArgs = (
  "ABSTRACT" => "Perl extension to OpenSSL's PKCS12 API.",
  "AUTHOR" => "Dan Sully",
  "BUILD_REQUIRES" => {

cpanfile.snapshot  view on Meta::CPAN

      Module::Build 0.4234
      Module::Build::Base 0.4234
      Module::Build::Compat 0.4234
      Module::Build::Config 0.4234
      Module::Build::Cookbook 0.4234
      Module::Build::Dumper 0.4234
      Module::Build::Notes 0.4234
      Module::Build::PPMMaker 0.4234
      Module::Build::Platform::Default 0.4234
      Module::Build::Platform::MacOS 0.4234
      Module::Build::Platform::Unix 0.4234
      Module::Build::Platform::VMS 0.4234
      Module::Build::Platform::VOS 0.4234
      Module::Build::Platform::Windows 0.4234
      Module::Build::Platform::aix 0.4234
      Module::Build::Platform::cygwin 0.4234
      Module::Build::Platform::darwin 0.4234
      Module::Build::Platform::os2 0.4234
      Module::Build::PodParser 0.4234
    requirements:
      CPAN::Meta 2.142060

maint/Makefile_header.PL  view on Meta::CPAN

}

# HACK HACK HACK - dakkar 2024-09-26
#
# we need to cheat a lot to get MakeMaker to build a Makefile that
# will build the correct XS library... here, I tell *only this part*
# of the MakeMaker process, that we are really Crypt::OpenSSL::PKCS12,
# and not the Alt::*
#
# it seems to work!
my $old_init_main = \&ExtUtils::MM_Unix::init_main;
{
    no warnings 'redefine';
    *ExtUtils::MM_Unix::init_main = sub {
        my ($self) = @_;
        local $self->{NAME} = 'Crypt::OpenSSL::PKCS12';
        return $old_init_main->($self);
    };
}



( run in 0.876 second using v1.01-cache-2.11-cpan-39bf76dae61 )