mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-12-26 01:50:09 +01:00
doc: Add config check for doxygen 1.6.0+.
Add a config time check for a new enough (1.6.0+) version of doxygen. v2. require 1.6.0+ instead of 1.8.0+ Signed-off-by: Jon A. Cruz <jonc@osg.samsung.com> Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
This commit is contained in:
parent
9ca542db4e
commit
480b437cd8
1 changed files with 8 additions and 0 deletions
|
|
@ -109,6 +109,14 @@ if test "x$enable_documentation" = "xyes"; then
|
|||
AC_MSG_ERROR([Documentation build requested but doxygen not found. Install doxygen or disable the documentation using --disable-documentation])
|
||||
fi
|
||||
|
||||
AC_MSG_CHECKING([for compatible doxygen version])
|
||||
doxygen_version=`$DOXYGEN --version`
|
||||
AS_VERSION_COMPARE([$doxygen_version], [1.6.0],
|
||||
[AC_MSG_RESULT([no])
|
||||
AC_MSG_ERROR([Doxygen $doxygen_version too old. Doxygen 1.6+ required for documentation build. Install required doxygen version or disable the documentation using --disable-documentation])],
|
||||
[AC_MSG_RESULT([yes])],
|
||||
[AC_MSG_RESULT([yes])])
|
||||
|
||||
AC_PATH_PROG(XMLTO, xmlto)
|
||||
|
||||
if test "x$XMLTO" = "x"; then
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue