Subject: | Can't locate SVN/Core.pm |
Hello, trying to install svn::web on my development box, on winxpHome,
svn 1.2.3, apache2, active state perl 5.8.7
downloaded the package from:
http://search.cpan.org/CPAN/authors/id/N/NI/NIKC/SVN-Web-0.43.tar.gz
unzipped and copied into a directory, and tried to run the install file:
( first copied the contents of lib/ into my \perl\lib\ )
C:\www\svnweb\bin>perl svnweb-install
Can't locate SVN/Core.pm in @INC (@INC contains: C:/Perl/lib
C:/Perl/site/lib .)
at C:/Perl/lib/SVN/Web.pm line 5.
BEGIN failed--compilation aborted at C:/Perl/lib/SVN/Web.pm line 5.
Compilation failed in require at svnweb-install line 17.
BEGIN failed--compilation aborted at svnweb-install line 19.
I decided to go and see this line 5 and see what's there:
use SVN::Core;
use SVN::Repos;
use YAML ();
use Template;
use File::Spec::Unix;
use SVN::Web::X;
eval 'use FindBin';
{
no warnings 'uninitialized';
use Locale::Maketext::Simple (
Path => (
(-e "$FindBin::Bin/po/en.po")
? "$FindBin::Bin/po"
: substr(__FILE__, 0, -3) . '/I18N'
),
Style => 'gettext',
Decode => 0,
);
}
I am affraid not only core.pm is missing, but also Repos.pm
By the way this eval findbin... is this to somehow determine the locale
settings of the current machine or something?
Regards: Evgueny