I followed the steps you suggested and the complete Makefile.PL looks as below. I'm not clear on what I should do from here. Any suggestions appreciated.

Thanks, Edward

-------------------------------------------------------

require 5.006; use ExtUtils::MakeMaker; WriteMakefile( NAME => "Mozilla::CA", VERSION_FROM => "lib/Mozilla/CA.pm", ABSTRACT_FROM => "lib/Mozilla/CA.pm", AUTHOR => 'Gisle Aas <gisle@activestate.com>', LICENSE => 'mozilla_1_1 gpl-2 lgpl_2_1', MIN_PERL_VERSION => 5.006, META_MERGE => { resources => { repository => 'http://github.com/gisle/mozilla-ca', }, }, BUILD_REQUIRES => { Test => 0, }, ); BEGIN { # compatibility with older versions of MakeMaker my $developer = -d "eg"; my %mm_req = ( LICENCE => 6.31, META_MERGE => 6.45, META_ADD => 6.45, MIN_PERL_VERSION => 6.48, BUILD_REQUIRES => 6.56, ); undef(*WriteMakefile); *WriteMakefile = sub { my %arg = @_; for (keys %mm_req) { unless (eval { ExtUtils::MakeMaker->VERSION($mm_req{$_}) } +) { warn "$_ $@" if $developer; delete $arg{$_}; } } ExtUtils::MakeMaker::WriteMakefile(%arg); }; }

In reply to Re^2: Install LWP::Protocol::https (Mozilla::CA) by edheim
in thread Install LWP::Protocol::https by edheim

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.