Question
I am preparing to load the Caledar Plug-in and as part of its requirements, I have installed Perl module HTML::CalendarMonthSimple. When I run configure, this module does not show in the list of installed Perl Modules. Here is my
@INC library path:
/hostname/wwwroot/twiki/lib/CPAN/lib//arch
/hostname/wwwroot/twiki/lib/CPAN/lib//5.8.3/i686-linux-thread-multi-64int-ld
/hostname/wwwroot/twiki/lib/CPAN/lib//5.8.3
/hostname/wwwroot/twiki/lib/CPAN/lib/
/hostname/wwwroot/twiki/lib
/usr/local/lib/perl5v8s3/5.8.3/i686-linux-thread-multi-64int-ld
/usr/local/lib/perl5v8s3/5.8.3
/usr/local/lib/perl5v8s3/site_perl/5.8.3/i686-linux-thread-multi-64int-ld
/usr/local/lib/perl5v8s3/site_perl/5.8.3
/usr/local/lib/perl5v8s3/site_perl
I have installed the module in:
/usr/local/lib/perl5v8s3/site_perl/5.8.3/HTML
At this point, I haven't continued with the plug-in install and am not sure if it would even represent a problem. I am concerned that I do not see it listed when I run configure. Does anyone know of any issues with what is displayed in configure?
Environment
--
JosephMecca - 25 Apr 2007
Answer
If you answer a question - or have a question you asked answered by someone - please remember to edit the page and set the status to answered. The status is in a drop-down list below the edit box.
HTML::CalendarMonthSimple should be found using your INC path.
perl does includes by converting the part before the ::'s into directories, so it will append HTML/CalendarMonthSimple.pm to each directory listed in @INC til it finds it.
so, you should be fine
--
SvenDowideit - 26 Apr 2007