Re: XML-Xerces
[email protected] (Jason E. Stewart)
| Newsgroups | gmane.text.xml.xerces-p.devel |
|---|---|
| Message-ID | <[email protected]> |
"White, Joseph A." <[email protected]> writes: > Thanks once again. It looks like I have more updating to do than I thought. > Our SWIG version is 1.1; the module requires SWIG 1.3.2. This is a pain > because I can't have root on the machine, and IT won't help with > this. Nonononononononononon! Don't use SWIG - that's only needed on my end!!! You should never have to touch SWIG **ever**!! all you need to do is modify that one line of code in Xerces.cpp like I indicated, and you should be set. > I did get make to run. However, make test is failing due to path problems; > perl can't compile because it can't find the newly created .so file--even > though it does exist. THis is probably due to incorrectly set env > variables, but I'll track this down. Nope, not likely. Most likely it's a dynamic loading error like the ones that have reported over the past month. Run the following from inside the XML-Xerces build directory and post the output to the list: perl -Mblib -w t/DOMAttr.t I'm hoping that will cause Perl to tell us the offending symbols, otherwise you'll have to run this: PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/DOMAttr.t (in case your mailer wraps that line it should be all on one line). Cheers, jas.