On Tue, Jan 22, 2008 at 05:29:08PM +0100, [EMAIL PROTECTED] wrote: > Thanks a lot Daniel > I have configured the package according th following string > > ./configure --with-minimum --with-xpath > > the compilation works fine but when I run the application it > claims > "undefined symbol: xmlReadFile" > > Which module do I need to include in the configuration step > so that the > xmlReadFile can be loaded?
Well XPath requires tree support, so you should add --with-tree. And since xmlReadFile returns a tree it's also needed. Configure.in should auto add --with-tree on --with-xpath but there is so many combinations it sounds impossible to fully track. Daniel -- Red Hat Virtualization group http://redhat.com/virtualization/ Daniel Veillard | virtualization library http://libvirt.org/ [EMAIL PROTECTED] | libxml GNOME XML XSLT toolkit http://xmlsoft.org/ http://veillard.com/ | Rpmfind RPM search engine http://rpmfind.net/ _______________________________________________ xml mailing list, project page http://xmlsoft.org/ [email protected] http://mail.gnome.org/mailman/listinfo/xml
