httpd build on msys2 fails with the following error:
xml/apr_xml.c:35:19: fatal error: expat.h: No such file or directory
On real linux distros, installing the expat-devel package seems to solve the problem see here, more precisely, expat-devel is an apr-util prerequisite and at least its headers ar missing on msys2.
So how to build httpd with msys since no expat-devel package or headers is available ? When configuring httpd --with-included-apr, where do apr-utils look for expat headers or how to configure that ?
more precisely the CHANGES-APR-UTIL-1.6 documentation says
Changes with APR-util 1.6.0
*) The expat dependency of apr-util is no longer built with apr-util. Install expat (including development headers and libraries) first before building apr-util.
where should expat headers and libs be installed in httpds build directory tree ?