diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2004-08-12 07:26:59 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2004-08-12 07:26:59 +0000 |
commit | b6ff458329367c2c7c3540d584b47dc0144caa4c (patch) | |
tree | 5dfcc4cc4244ef9ffd8b1ba480b9ae196d54254b /configure.ac | |
parent | 7b6a71781f181c073eb26b0c9d10d66852260fc0 (diff) | |
download | xine-lib-b6ff458329367c2c7c3540d584b47dc0144caa4c.tar.gz xine-lib-b6ff458329367c2c7c3540d584b47dc0144caa4c.tar.bz2 |
Fix problems building xine when sgmltools and/or fig2dev are not present.
CVS patchset: 6880
CVS date: 2004/08/12 07:26:59
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index cab74c3c7..eed70449c 100644 --- a/configure.ac +++ b/configure.ac @@ -1985,10 +1985,10 @@ dnl Check for documentation formatting tool dnl --------------------------------------------- AC_CHECK_PROG(SGMLTOOLS, sgmltools, sgmltools, no) -AM_CONDITIONAL([HAVE_SGMLTOOLS], [test "$sgmltools" != "no"]) +AM_CONDITIONAL([HAVE_SGMLTOOLS], [test "$SGMLTOOLS" != "no"]) AC_CHECK_PROG(FIG2DEV, fig2dev, fig2dev, no) -AM_CONDITIONAL([HAVE_FIG2DEV], [test "$fig2dev" != "no"]) +AM_CONDITIONAL([HAVE_FIG2DEV], [test "$FIG2DEV" != "no"]) dnl --------------------------------------------- dnl Newest automake workaround |