On Tue, Sep 23, 2008 at 6:28 AM, <[EMAIL PROTECTED]> wrote: > I'm having an issue installing DBI on Solaris. I've read on many > people having this issue and the solutions seem to revolve around > installing a new compiler, etc. However, I've already installed other > perl modules successfully on this box, so it seems to be related to > this module only. Following are the results of the log of my total > install and the perl -V. Thanks for any help or clarification that you > can provide: >
The relevant information from the trace you provided (thank you for providing the lot - it does make it easier) is: # make cc -c -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_TS_ERRNO -xO3 - xspace -xildoff -DVERSION=\"1.607\" -DXS_VERSION=\"1.607\" -KPIC "- I/usr/perl5/5.8.4/lib/i86pc-solaris-64int/CORE" -DDBI_NO_THREADS Perl.c sh: cc: not found *** Error code 1 You don't have the correct C compiler on your PATH (maybe, but not necessarily, /usr/ccs/bin). Add it. Or, if you can't get the Sun compiler, then you will need to rebuild Perl with your compiler of choice. If you've successfully installed other modules, then either those modules were all pure Perl or you had your PATH set differently. -- Jonathan Leffler <[EMAIL PROTECTED]> #include <disclaimer.h> Guardian of DBD::Informix - v2008.0513 - http://dbi.perl.org "Blessed are we who can laugh at ourselves, for we shall never cease to be amused."
