diff options
author | Andreas Boll <[email protected]> | 2013-01-18 15:31:57 +0100 |
---|---|---|
committer | Andreas Boll <[email protected]> | 2013-01-19 23:50:39 +0100 |
commit | 410b58c7bfcebbc866d2dc4ab32c6f23b55d383b (patch) | |
tree | 347106a99e8ba930b2ac4a50616e969e98eac9d1 /configure.ac | |
parent | f9f5c92f734c517c1bd486f5a3b1931ea6f871a5 (diff) |
build: require python module libxml2
configure should warn if libxml2 is not found.
libxml2 is needed by glapi/gen.
Fixes error during build in src/mapi/glapi/gen:
ImportError: No module named libxml2
NOTE: This is a candidate for the 9.0 branch.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=31598
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index ba4c203e5f9..29f21508626 100644 --- a/configure.ac +++ b/configure.ac @@ -49,6 +49,7 @@ AM_PROG_CC_C_O AM_PROG_AS AC_CHECK_PROGS([MAKE], [gmake make]) AC_CHECK_PROGS([PYTHON2], [python2 python]) +AX_PYTHON_MODULE([libxml2], [needed]) AC_PROG_SED AC_PROG_MKDIR_P |