GNOME Bugzilla – Bug 732735
Compilation fails with --without-xpath --without-xptr --without-xinclude --without-c14n
Last modified: 2014-07-15 03:16:04 UTC
If libxml2 git HEAD (c35af8b18dd) or v2.9.1 is configured like so... $ ./configure --without-xpath --without-xptr --without-xinclude --without-c14n ...compilation fails with undefined references inside schematron.c. If libxml2 is recompiled like so... $ ./configure --without-xpath --without-xptr --without-xinclude --without-c14n --without-schematron ...there are undefined references to XPath in libxml.c. Looks like these options aren't very well supported. Maybe they should be removed.
Can you please post the literal output of the failure?
Created attachment 279905 [details] ./configure --without-xpath --without-xptr --without-xinclude --without-c14n
Created attachment 279906 [details] make with --without-xpath --without-xptr --without-xinclude --without-c14n
Okay, I have made a fix for this, commited as 319e159b11e3bb7ddd8307169362bfb9b8b33561 It still break when building the python bindings since they rely on XPath but at least it allows to build the core thanks, Daniel