|
|
sybperl-l Archive
Up Prev Next
From: mpeppler at itf dot ch (Michael Peppler)
Subject: Re: Additional Problems with loading sybperl 2.03
Date: Feb 16 1996 6:47AM
> From: "Peter Jusinski"
> This is the output after running perl Makefile.PL
>
> root@pluto:/usr/local/sybperl/sybperl-2.03 > perl Makefile.PL
> Writing Makefile for Sybase::DBlib
> Writing Makefile for Sybase::Sybperl
> Warning (non-fatal): Direct use of class methods deprecated; use
> my $self = shift;
> $self->MM::makeaperl();
> instead
> Writing Makefile for Sybase
>
I'd guess that you are using Perl 5.002b3. There was a problem in one
of the (perl internal) operations when doing numerical compares.
The real solution is to get Perl 5.002gamma, or revert to 5.002b2.
If that is not practical, you can edit each of the Makefile.PL, and
change
if($MM_VERSION > 5)
to
if($MM_VERSION >= 5)
This should work.
Michael
|