| Sisyphus 2005-11-10, 6:56 pm |
|
"colsanders" <seanzadig@hotmail.com> wrote in message
..
..
> # /usr/ccs/bin/make
> cp lib/DateTime.pm blib/lib/DateTime.pm
> cp lib/DateTimePP.pm blib/lib/DateTimePP.pm
> cp lib/DateTime/Duration.pm blib/lib/DateTime/Duration.pm
> cp lib/DateTimePPExtra.pm blib/lib/DateTimePPExtra.pm
> cp lib/DateTime/Infinite.pm blib/lib/DateTime/Infinite.pm
> cp lib/DateTime/LeapSecond.pm blib/lib/DateTime/LeapSecond.pm
> Manifying blib/man3/DateTime.3perl
> Manifying blib/man3/DateTime::Duration.3perl
> Manifying blib/man3/DateTime::Infinite.3perl
> Manifying blib/man3/DateTime::LeapSecond.3perl
>
> ... So i would presume that it would find the loadable objects it needs
> in blib, but they don't appear to be there.
>
You're right - DateTime.so should have been compiled from DateTime.xs and
placed in blib where it would have been found. But, as you can see from the
output of 'make', no compilation whatsoever took place. That could be
because:
a) there is something wrong with your perl installation;
b) there is a bug in the DateTime Makefile.PL.
What did 'perl Makefile.PL' report ?
Can you successfully build (eg) Math::FFT from CPAN ? (That would
demonstrate that your perl installation is basically ok wrt building
extensions.)
Cheers,
Rob
|