No. Compress::Zlib contains a binary component that needs to be compiled with exactly the same C compiler that your Perl was compiled with. Without knowing the operating system, Perl version and C compiler of your host, it is not possible to create a ready-to-install version for you.

If you have shell access on your host, the following command typed in the terminal will output all necessary information:

perl -V

If you don't have shell access, you will need to upload a CGI script that does the equivalent. I haven't done much CGI programming lately, so I don't have the easy method for this handy - the following untested code should do in a CGI what perl -V does on the commandline:

#!/usr/bin/perl -wT use strict; use Config(myconfig); print "Content-Type: text/plain\r\n\r\n"; print myconfig();

In reply to Re: installable Compress::Zlib by Corion
in thread installable Compress::Zlib by Anonymous Monk

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.