diff options
author | Colin Walters <walters@verbum.org> | 2013-02-11 11:49:31 -0500 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2013-02-11 11:49:31 -0500 |
commit | f2a530f575e4ad8dcff9406d136c6130202b3c4b (patch) | |
tree | 871e7e81c1edc33f0526f033cbaa066a2d238889 /configure.ac | |
parent | 05f400942d2f3ac9a721bbfad5d58b6aa1d93cc9 (diff) | |
download | gobject-introspection-f2a530f575e4ad8dcff9406d136c6130202b3c4b.tar.gz |
build: Enable g-ir-doctool if mako is found
Let's lift it out of the disabled-by-default ghetto.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index fc39916b..68fb3f25 100644 --- a/configure.ac +++ b/configure.ac @@ -262,10 +262,16 @@ fi dnl Not enabled by default until 3.6 cycle when we can propose mako as dnl an external dependency -AC_ARG_ENABLE(doctool,[ --enable-doctool enable g-ir-doctool ], enable_doctool=$enableval,enable_doctool=no) -if test x$enable_doctool != xno; then - AM_CHECK_PYMOD(mako,,,[AC_MSG_ERROR(Could not find python module: mako)]) -fi +AC_ARG_ENABLE(doctool,[ --disable-doctool disable g-ir-doctool ],,enable_doctool=auto) +AS_IF([ test x$enable_doctool != xno], [ + AM_CHECK_PYMOD(mako,,have_python_mako=yes,have_python_mako=no) +]) +AS_IF([ test x$enable_doctool = xauto && test x$have_python_mako = xyes ], + [ enable_doctool=yes ], + [ test x$enable_doctool = xauto && test x$have_python_mako = xno ], + [ enable_doctool=no ], + [ test x$enable_doctool = xyes && test x$have_python_mako = xno ], + [ AC_MSG_ERROR([Python mako module not found]) ]) AM_CONDITIONAL(BUILD_DOCTOOL, test x$enable_doctool != xno) # Glib documentation |