diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-09 18:20:13 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-09 18:20:13 +0200 |
commit | b6055c5fe61d918259d1c253aa32fa97dd3e5163 (patch) | |
tree | d676f0734ebdb88ee128686f5dbb44688c2a32d0 /configure.ac | |
parent | 2f360e81e09412ecff2e5991ee0c90a0f6ed59e3 (diff) | |
download | xine-lib-b6055c5fe61d918259d1c253aa32fa97dd3e5163.tar.gz xine-lib-b6055c5fe61d918259d1c253aa32fa97dd3e5163.tar.bz2 |
Resurrect the check for xmlto/rsvg (rather than sgmltools/fig2dev) so that the build can be done even without those installed.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 59c3b7e78..c42e75c78 100644 --- a/configure.ac +++ b/configure.ac @@ -1094,6 +1094,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 --------------------------------------------- |