in reply to reading a gzip'ed file
Note that you must have an absolute path for this to work. Now when you run your program, just add /full/path to its search path:perl Makefile.PL LIB=/full/path PREFIX=/full/path make make install
use lib '/full/path'; use Compress::Zlib;
|
|---|