Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^2: Installing XML::Parser (with expat)

by Corion (Patriarch)
on Dec 11, 2013 at 12:12 UTC ( [id://1066610]=note: print w/replies, xml ) Need Help??


in reply to Re: Installing XML::Parser (with expat)
in thread Installing XML::Parser (with expat)

Weirdly enough, the --enable-static trick did not work out for me, but for completeness (and off-site backup :) ), here is what I need to do to build expat and XML::Parser on Solaris x86 with the SUN C compiler:

First build expat:

PATH=/usr/ccs/bin:$PATH # to add the correct "ar" # autotools does not seem to know when the configuration was changed, +this is just a safety measure gmake clean CC=/opt/SUNWspro/bin/cc CFLAGS="-KPIC -O -D_LARGEFILE_SOURCE -D_FILE_O +FFSET_BITS=64 -DPERL_USE_SAFE_PUTENV -xarch=generic64" ./configure - +-prefix=/home/corion/lib --enable-shared gmake all # this one might not compile the C++ checks, if you don't have the SUN + C++ compiler installed gmake check gmake install

After installation, remember to update LD_LIBRARY_PATH in an appropriate location:

# Update LD_LIBRARY_PATH export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/corion/lib

Then, the installation of XML::Parser works, although the SUN C compiler did not like having the library directories listed after the -lexpat command. So I had to fudge that by patching the Makefile.PL:

unless ( check_lib( # fill in what you prompted the user for here #lib => [qw(expat)], header => ['expat.h'], debug => 1, incpath => $expat_incpath, # Ugly hack here ($expat_libpath? (libpath => "$expat_libpath -lexpat"):()), )) {

Then, configuring and testing Just Works:

perl Makefile.PL EXPATLIBPATH=/home/corion/lib/lib EXPATINCPATH=/home/ +corion/lib/include -lexpat gmake gmake test gmake install

Replies are listed 'Best First'.
Re^3: Installing XML::Parser (with expat)
by Anonymous Monk on Jul 31, 2025 at 15:30 UTC
    It's year 2025 and still this post is a life saver
    This is still working as perfect fix for building XML::Parser from source (x64 Edition) on Windows Server 2019 as well as Windows 10 and above using MSVC 2022 Community Edition

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1066610]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (2)
As of 2026-02-14 08:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.