|
Posted by theorem on March 14, 2007, 5:30 pm
Please log in for more thread options
sherm wrote:
>> It appears that I do have expat on my system from the debian apt-get
>> install expat:
>> /usr/lib/libexpat.so.0
>> /usr/lib/libexpat.so.1
>> /usr/lib/libexpat.so.1.0.0
>> So is this a PATH problem, and if so how do I get CPAN to look for the
>> correct PATH?
>That's just the runtime library - it doesn't include the headers needed
>to compile against expat.
>apt-get install libexpat1-dev
This is good to get the required header files in place, but I'm
confused how I can do this for a system that does not have expat on
it, and I am not a root user. I'm trying to build this under CPAN and
have altered my "makepl_arg' to install to a local folder .. but how
do I point make to use the correct libraries ? Do I need further
makepl_args ? here's what I currently have :
'makepl_arg' => q[PREFIX=/app/gmd/data/apache_perllibs \
INSTALLPRIVLIB=/app/gmd/data/apache_perllibs/lib/perl5 \
INSTALLSCRIPT=/app/gmd/data/apache_perllibs/bin \
INSTALLSITELIB=/app/gmd/data/apache_perllibs/lib/perl5/site_perl \
INSTALLBIN=/app/gmd/data/apache_perllibs/bin \
INSTALLMAN1DIR=/app/gmd/data/apache_perllibs/lib/perl5/man \
INSTALLMAN3DIR=/app/gmd/data/apache_perllibs/lib/perl5/man3],
|