From: Jeff M. <jef...@vi...> - 2003-04-14 19:57:00
|
On Mon, 2003-04-14 at 15:44, Bruno Tavares wrote: > Try this: > > download the 1.11 version from here > http://search.cpan.org/author/GAAS/Image-Info-1.11/ > > unpack it to , lets say, ~you/image_info/lib/Image/Info.pm". > > replace in every IDS module the string "use Image::Info" for "require > /home/you/image_info/lib/ > > Should make your IDS use the right version of Image::Info without making > your ISP downgrade it. > > Hope it works. Installing CPAN modules in a location outside of the main perl tree is usually done like so: 1) wget cpan-module 2) untar it 3) cd to cpan module directory created by tar 4) perl Makefile.PL PREFIX=/path/to/writable_dir/lib LIB=/path/to/writable_dir/lib (all on one line) 5) make && make test && make install 6) modify code it include /path/to/writable_dir/lib example: use lib qw(/path/to_writable_dir/lib) My posting yesterday with the subject "makefile to install delegates" touches on this. So far no comments. -- Jeff Macdonald <jef...@vi...> Into birding? Check out http://www.migratus.com |