On Mon, Sep 17, 2001 at 07:58:53AM -0400, Etienne Boulet wrote:
> Found File::Spec Version 0.6
> -> EmbperlObject requires File::Spec 0.8 or higher, found 0.6, please
> upgrade!
> I've located the Spec.pm file and I was suprised to see that the version in
> the file
> is 8.0
>
> So I'm wandering if you had any problems with File::spec and do you have an
> idea of what i could do to solve this problem. Do you where the Embperl
> makefile.pl looks to retreive the file::spec version ?
perl -e 'print join(",", @INC)'
your newer File::Spec has to appear in that path *before* the
"standard" (older) File::Spec
if you want to check yourself, Makefile.PL will do a check similar to:
perl -MFile::Spec -e 'print $File::Spec::VERSION'
try setting the PERL5LIB env variable to your File::Spec location, and
then run Makefile.PL again. if you need to do this, you will most
likely have to put "use lib '/your/path';" in your Apache or CGI setup
somewhere.
--
- Gus
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]