From: Thomas Vander Stichele Date: Sun, 27 Nov 2005 14:19:38 +0000 (+0000) Subject: Fixes #312589 X-Git-Tag: RELEASE-0_10_0~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c04ad83a0c184fcd311de39371570b9e773a60d0;p=platform%2Fupstream%2Fgst-common.git Fixes #312589 Original commit message from CVS: Fixes #312589 --- diff --git a/m4/gst-doc.m4 b/m4/gst-doc.m4 index 028df39..a1e3442 100644 --- a/m4/gst-doc.m4 +++ b/m4/gst-doc.m4 @@ -49,6 +49,7 @@ EOF dnl check for extra tools AC_CHECK_PROG(HAVE_DVIPS, dvips, yes, no) + AC_CHECK_PROG(HAVE_XMLLINT, xmllint, yes, no) dnl check for image conversion tools AC_CHECK_PROG(HAVE_FIG2DEV, fig2dev, yes, no) @@ -87,6 +88,7 @@ EOF dnl check if we can generate HTML if test "x$HAVE_DOCBOOK2HTML" = "xyes" && \ test "x$enable_docbook" = "xyes" && \ + test "x$HAVE_XMLLINT" = "xyes" && \ test "x$HAVE_FIG2DEV_PNG" = "xyes"; then DOC_HTML=yes AC_MSG_NOTICE(Will output HTML documentation) @@ -98,6 +100,7 @@ EOF dnl check if we can generate PS if test "x$HAVE_DOCBOOK2PS" = "xyes" && \ test "x$enable_docbook" = "xyes" && \ + test "x$HAVE_XMLLINT" = "xyes" && \ test "x$HAVE_JADETEX" = "xyes" && \ test "x$HAVE_FIG2DEV_EPS" = "xyes" && \ test "x$HAVE_DVIPS" = "xyes" && \ @@ -113,6 +116,7 @@ EOF dnl check if we can generate PDF - using only ps2pdf if test "x$DOC_PS" = "xyes" && \ test "x$enable_docbook" = "xyes" && \ + test "x$HAVE_XMLLINT" = "xyes" && \ test "x$HAVE_PS2PDF" = "xyes"; then DOC_PDF=yes AC_MSG_NOTICE(Will output PDF documentation)