Because /usr/bin/xml2-config --cflags no longer includes -I/usr/include/libxml2/libxml (which is good, I don't want to solve conflicts between header files named tree.h), the AM_PATH_XML2 macro in /usr/share/aclocal/libxml.m4 always fails, because it tries to #include <xmlversion.h> instead of <libxml/xmlversion.h>. The attached patch fixes it. Version-Release number of selected component: libxml2-devel-2.4.19-4
Created attachment 56964 [details] Patch fixing this
Okay this should be fixed in recent releases, the libxml.m4 now always do properly namespaced includes by doing #include <libxml/xxx.h> thanks for the report, Daniel