Skip to content

Fix build with libxml 2.12

Michael Cho requested to merge cho-m/gnumeric:fix-libxml2.12 into master

Fixes build failure seen in Homebrew. Probably caused by libxml2 2.12 changes where some indirectly included headers were removed. xmlParseFile is located in libxml/parser.h and just adding that fixes build.

file-autoft.c:111:8: error: call to undeclared function 'xmlParseFile'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
        doc = xmlParseFile (file_name);
              ^

Merge request reports