diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac index 3e6763d21..f4863ce40 100644 --- a/configure.ac +++ b/configure.ac @@ -170,14 +170,6 @@ AC_CHECK_TOOL([STRINGS], [strings], [false]) PKG_PROG_PKG_CONFIG -dnl Check for documentation formatting tools -AC_CHECK_PROG([SGMLTOOLS], [sgmltools], [sgmltools], [no]) -AM_CONDITIONAL([HAVE_SGMLTOOLS], [test x"$SGMLTOOLS" != x"no"]) - -AC_CHECK_PROG([FIG2DEV], [fig2dev], [fig2dev], [no]) -AM_CONDITIONAL([HAVE_FIG2DEV], [test x"$FIG2DEV" != x"no"]) - - dnl libtool m4_undefine([AC_PROG_F77]) m4_defun([AC_PROG_F77],[]) @@ -1099,6 +1091,16 @@ AC_SUBST(XINE_BUILD_DATE) dnl --------------------------------------------- +dnl Check for documentation formatting tool +dnl --------------------------------------------- + +AC_CHECK_PROG(XMLTO, xmlto, xmlto, no) +AM_CONDITIONAL([HAVE_XMLTO], [test "$XMLTO" != "no"]) + +AC_CHECK_PROG(RSVG, rsvg, rsvg, no) +AM_CONDITIONAL([HAVE_RSVG], [test "$RSVG" != "no"]) + +dnl --------------------------------------------- dnl Output configuration files dnl --------------------------------------------- |