On Jul 26, 2004, at 1:31 PM, Alan Olsen wrote:
You need to install the expat library. http://expat.sourceforge.net/
No you don't. XML::LibXML doesn't use the Expat parser, it uses the libxml parser.
But don't take my word for it, just ask otool what the .bundle is linked against:
Sherm-Pendleys-Computer:~ sherm$ otool -L /Library/Perl/5.8.1/darwin-thread-multi-2level/auto/XML/LibXML/ LibXML.bundle
/Library/Perl/5.8.1/darwin-thread-multi-2level/auto/XML/LibXML/ LibXML.bundle:
/usr/lib/libxml2.2.dylib (compatibility version 9.0.0, current version 9.7.0)
/usr/lib/libz.1.dylib (compatibility version 1.0.0, current version 1.0.0)
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 71.1.1)
/usr/lib/libiconv.2.dylib (compatibility version 5.0.0, current version 5.0.0)
sherm--