Home > Archive > PERL Beginners > November 2007 > Trouble Installing Carp-Clan 5.9.x
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Trouble Installing Carp-Clan 5.9.x
|
|
| Gerald Wheeler 2007-11-26, 10:02 pm |
| Trying to install Carp-Clan (prerequisite to Date Module)
Downloaded file from CPAN
unzipped file
cd to directory Carp-Clan-5.9
perl Makefile.PL
make
/usr/ccs/bin/make test (This failes with the following error(s):
Anybody know what I'm doing wrong..
# /usr/ccs/bin/make test
PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e"
"test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/01pod............skipped
all skipped: Skipping author tests
t/03yaml...........skipped
all skipped: Skipping author tests
t/04boilerplate....skipped
all skipped: Skipping author tests
t/10basic..........Can't locate Test/Exception.pm in @INC (@INC
contains: /export/home/abc/perls/Carp-Clan-5.9/blib/lib
/export/home/abc/perls/Carp-Clan-5.9/blib/arch
/usr/perl5/5.8.4/lib/sun4-solaris-64int
/usr/perl5/5.8.4/lib/sun4-solaris-64int /usr/perl5/5.8.4/lib
/usr/perl5/site_perl/5.8.4/sun4-solaris-64int
/usr/perl5/site_perl/5.8.4/sun4-solaris-64int /usr/perl5/site_perl/5.8.4
/usr/perl5/site_perl/5.8.4/sun4-solaris-64int /usr/perl5/site_perl/5.8.4
/usr/perl5/site_perl /usr/perl5/vendor_perl/5.8.4/sun4-solaris-64int
/usr/perl5/vendor_perl/5.8.4/sun4-solaris-64int
/usr/perl5/vendor_perl/5.8.4
/usr/perl5/vendor_perl/5.8.4/sun4-solaris-64int
/usr/perl5/vendor_perl/5.8.4 /usr/perl5/vendor_perl .
/usr/perl5/5.8.4/lib/sun4-solaris-64int /usr/perl5/5.8.4/lib
/usr/perl5/site_perl/5.8.4/sun4-solaris-64int /usr/perl5/site_perl/5.8.4
/usr/perl5/site_perl /usr/perl5/vendor_perl/5.8.4/sun4-solaris-64int
/usr/perl5/vendor_perl/5.8.4 /usr/perl5/vendor_perl .) at t/10basic.t
line 5.
BEGIN failed--compilation aborted at t/10basic.t line 5.
# Looks like your test died before it could output anything.
t/10basic..........dubious
Test returned status 2 (wstat 512, 0x200)
DIED. FAILED tests 1-2
Failed 2/2 tests, 0.00% okay
t/11basic..........ok
1/55 skipped: Object::Deadly not installed
Failed Test Stat Wstat Total Fail Failed List of Failed
-------------------------------------------------------------------------------
t/10basic.t 2 512 2 4 200.00% 1-2
3 tests and 1 subtest skipped.
Failed 1/5 test scripts, 80.00% okay. 2/57 subtests failed, 96.49%
okay.
*** Error code 29
make: Fatal error: Command failed for target `test_dynamic'
#
| |
| Tom Phoenix 2007-11-26, 10:02 pm |
| On 11/26/07, Gerald Wheeler <GWHEELER@uc.usbr.gov> wrote:
> t/10basic..........Can't locate Test/Exception.pm in @INC (@INC
It looks as if the test failed when it couldn't find a module named
Test::Exception. Is that module installed on your system? It may be
needed for the tests, even if it's not listed as a prerequisite for
the module itself. :-P
Cheers!
--Tom Phoenix
Stonehenge Perl Training
| |
| Gerald Wheeler 2007-11-26, 10:02 pm |
| It appears that there is no end to the prerequisites for any given
module..
Are they all really necessary for a build?? test???
Thanks
J.
On 11/26/07, Gerald Wheeler <GWHEELER@uc.usbr.gov> wrote:
[color=darkred]
> t/10basic..........Can't locate Test/Exception.pm in @INC (@INC
It looks as if the test failed when it couldn't find a module named
Test::Exception. Is that module installed on your system? It may be
needed for the tests, even if it's not listed as a prerequisite for
the module itself. :-P
Cheers!
--Tom Phoenix
Stonehenge Perl Training
--
To unsubscribe, e-mail: beginners-unsubscribe@perl.org
For additional commands, e-mail: beginners-help@perl.org
http://learn.perl.org/
| |
| Gerald Wheeler 2007-11-26, 10:02 pm |
| Correction, I did get to the end of one branch.. no further prerequisites.
However, I got this error at the top of the next branch - Bit::Vector
*---
ls
Artistic.txt CHANGES.txt GNU_GPL.txt lib MANIFEST t =
Vector.pm
BitVector.c CREDITS.txt GNU_LGPL.txt Makefile patchlevel.h =
ToolBox.h Vector.pod
BitVector.h examples INSTALL.txt Makefile.PL README.txt =
typemap Vector.xs
# perl Makefile.PL
Writing Makefile for Bit::Vector
Writing patchlevel.h for perl (5.008004)
# /usr/ccs/bin/make
cp lib/Bit/Vector/Overload.pm blib/lib/Bit/Vector/Overload.pm
cp Vector.pm blib/lib/Bit/Vector.pm
cp Vector.pod blib/lib/Bit/Vector.pod
cp lib/Bit/Vector/String.pod blib/lib/Bit/Vector/String.pod
cp lib/Bit/Vector/Overload.pod blib/lib/Bit/Vector/Overload.pod
cp lib/Bit/Vector/String.pm blib/lib/Bit/Vector/String.pm
cc -c -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=3D64 -xarch=3Dv8 =
-D_TS_ERRNO -xO3 -xspace -xildoff -DVERSION=3D\"6.4\" -DXS_VERSION=3D\"=
6.4\" -KPIC "-I/usr/perl5/5.8.4/lib/sun4-solaris-64int/CORE" BitVector.c
sh: cc: not found
*** Error code 1
make: Fatal error: Command failed for target `BitVector.o'
*---
If I was a betting man I would say it's looking for a C/C++ Compiler which =
I do not have
Thanks
J.
It appears that there is no end to the prerequisites for any given
module..
Are they all really necessary for a build?? test???
Thanks
J.
[color=darkred]
On 11/26/07, Gerald Wheeler <GWHEELER@uc.usbr.gov> wrote:
[color=darkred]
> t/10basic..........Can't locate Test/Exception.pm in @INC (@INC
It looks as if the test failed when it couldn't find a module named
Test::Exception. Is that module installed on your system? It may be
needed for the tests, even if it's not listed as a prerequisite for
the module itself. :-P
Cheers!
--Tom Phoenix
Stonehenge Perl Training
--=20
To unsubscribe, e-mail: beginners-unsubscribe@perl.org=20
For additional commands, e-mail: beginners-help@perl.org=20
http://learn.perl.org/=20
--=20
To unsubscribe, e-mail: beginners-unsubscribe@perl.org=20
For additional commands, e-mail: beginners-help@perl.org=20
http://learn.perl.org/=20
| |
| Jenda Krynicky 2007-11-27, 8:00 am |
| And if you reply to someone you should trim down the message ...
there is no reason to include the unsubscribe notice three times.
- Because then it's all backwards.
- Why is that?
- Please, don't top post!
From: "Gerald Wheeler" <GWHEELER@uc.usbr.gov>
> Correction, I did get to the end of one branch.. no further prerequisites.
> However, I got this error at the top of the next branch - Bit::Vector
> *---
> ls
> Artistic.txt CHANGES.txt GNU_GPL.txt lib MANIFEST t Vector.pm
> BitVector.c CREDITS.txt GNU_LGPL.txt Makefile patchlevel.h ToolBox.h Vector.pod
> BitVector.h examples INSTALL.txt Makefile.PL README.txt typemap Vector.xs
> # perl Makefile.PL
> Writing Makefile for Bit::Vector
> Writing patchlevel.h for perl (5.008004)
> # /usr/ccs/bin/make
> cp lib/Bit/Vector/Overload.pm blib/lib/Bit/Vector/Overload.pm
> cp Vector.pm blib/lib/Bit/Vector.pm
> cp Vector.pod blib/lib/Bit/Vector.pod
> cp lib/Bit/Vector/String.pod blib/lib/Bit/Vector/String.pod
> cp lib/Bit/Vector/Overload.pod blib/lib/Bit/Vector/Overload.pod
> cp lib/Bit/Vector/String.pm blib/lib/Bit/Vector/String.pm
> cc -c -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -xarch=v8 -D_TS_ERRNO -xO3 -xspace -xildoff -DVERSION=\"6.4\" -DXS_VERSION=\"6.4\" -KPIC "-I/usr/perl5/5.8.4/lib/sun4-solaris-64int/CORE" BitVector.c
> sh: cc: not found
> *** Error code 1
> make: Fatal error: Command failed for target `BitVector.o'
> *---
> If I was a betting man I would say it's looking for a C/C++ Compiler which I do not have
>
> Thanks
> J.
>
> It appears that there is no end to the prerequisites for any given
> module..
> Are they all really necessary for a build?? test???
> Thanks
> J.
>
> On 11/26/07, Gerald Wheeler <GWHEELER@uc.usbr.gov> wrote:
>
>
> It looks as if the test failed when it couldn't find a module named
> Test::Exception. Is that module installed on your system? It may be
> needed for the tests, even if it's not listed as a prerequisite for
> the module itself. :-P
>
> Cheers!
>
> --Tom Phoenix
> Stonehenge Perl Training
>
> --
> To unsubscribe, e-mail: beginners-unsubscribe@perl.org
> For additional commands, e-mail: beginners-help@perl.org
> http://learn.perl.org/
>
>
>
> --
> To unsubscribe, e-mail: beginners-unsubscribe@perl.org
> For additional commands, e-mail: beginners-help@perl.org
> http://learn.perl.org/
>
>
>
>
> --
> To unsubscribe, e-mail: beginners-unsubscribe@perl.org
> For additional commands, e-mail: beginners-help@perl.org
> http://learn.perl.org/
>
>
>
===== Jenda@Krynicky.cz === http://Jenda.Krynicky.cz =====
When it comes to wine, women and song, wizards are allowed
to get drunk and croon as much as they like.
-- Terry Pratchett in Sourcery
| |
| Gerald Wheeler 2007-11-27, 10:01 pm |
| Sorry about the top posting..
Is there a way to resolve the make problem for Bit::Vector
J.
And if you reply to someone you should trim down the message ...
there is no reason to include the unsubscribe notice three times.
- Because then it's all backwards.
- Why is that?
- Please, don't top post!
From: "Gerald Wheeler" <GWHEELER@uc.usbr.gov>[color=darkred]
> Correction, I did get to the end of one branch.. no further
prerequisites.
> However, I got this error at the top of the next branch -
Bit::Vector
> *---
> ls
> Artistic.txt CHANGES.txt GNU_GPL.txt lib MANIFEST
t Vector.pm
> BitVector.c CREDITS.txt GNU_LGPL.txt Makefile patchlevel.h
ToolBox.h Vector.pod
> BitVector.h examples INSTALL.txt Makefile.PL README.txt
typemap Vector.xs
> # perl Makefile.PL
> Writing Makefile for Bit::Vector
> Writing patchlevel.h for perl (5.008004)
> # /usr/ccs/bin/make
> cp lib/Bit/Vector/Overload.pm blib/lib/Bit/Vector/Overload.pm
> cp Vector.pm blib/lib/Bit/Vector.pm
> cp Vector.pod blib/lib/Bit/Vector.pod
> cp lib/Bit/Vector/String.pod blib/lib/Bit/Vector/String.pod
> cp lib/Bit/Vector/Overload.pod blib/lib/Bit/Vector/Overload.pod
> cp lib/Bit/Vector/String.pm blib/lib/Bit/Vector/String.pm
> cc -c -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -xarch=v8
-D_TS_ERRNO -xO3 -xspace -xildoff -DVERSION=\"6.4\"
-DXS_VERSION=\"6.4\" -KPIC
"-I/usr/perl5/5.8.4/lib/sun4-solaris-64int/CORE" BitVector.c
> sh: cc: not found
> *** Error code 1
> make: Fatal error: Command failed for target `BitVector.o'
> *---
> If I was a betting man I would say it's looking for a C/C++ Compiler
which I do not have
>
> Thanks
> J.
>
Sorry about the top posting..
Is there a way to resolve the make problem for Bit::Vector
This of course is my attempt to install the Date::Calc module
Bit::Vector is just one of many prerequisite modules
Thanks
J.
|
|
|
|
|