summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2003-10-13 18:15:26 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2003-10-13 18:15:26 +0000
commit252855844ec30aaf5bdf77bd7a26cbf9cf96f00d (patch)
treeb6f030a00fb23fa50348de25915c2bd626a8acc0
parent8aac348898dbc4d08f48220e664b29297e08b77e (diff)
ready for releaseRELEASE-0_6_4
Original commit message from CVS: ready for release
-rw-r--r--m4/gst-doc.m412
1 files changed, 11 insertions, 1 deletions
diff --git a/m4/gst-doc.m4 b/m4/gst-doc.m4
index 610d4f6..26d5fa9 100644
--- a/m4/gst-doc.m4
+++ b/m4/gst-doc.m4
@@ -38,8 +38,16 @@ AC_SUBST(GTK_DOC_SCANOBJ)
dnl check for docbook tools
AC_CHECK_PROG(HAVE_XMLTO, xmlto, true, false)
+dnl we don't really need xmltex per se, but xmlto uses it
+AC_CHECK_PROG(HAVE_XMLTEX, xmltex, true, false)
AC_CHECK_PROG(HAVE_PS2PDF, ps2pdf, true, false)
+dnl we might be better off making a separate variable and using that
+dnl but I'm a little lazy today and this ought to do fine
+if test "x$HAVE_XMLTEX" = "xfalse"; then
+ HAVE_XMLTO=false
+fi
+
dnl check for image conversion tools
AC_CHECK_PROG(HAVE_FIG2DEV, fig2dev, true, false)
if test "x$HAVE_FIG2DEV" = "xfalse" ; then
@@ -72,7 +80,8 @@ fi
AC_CHECK_PROG(HAVE_PNGTOPNM, pngtopnm, true, false)
AC_CHECK_PROG(HAVE_PNMTOPS, pnmtops, true, false)
-AC_CHECK_PROG(HAVE_EPSTOPDF, epstopdf, true, false)
+AC_CHECK_PROG(HAVE_DVIPS, dvips, true, false)
+dnl AC_CHECK_PROG(HAVE_EPSTOPDF, epstopdf, true, false)
dnl check if we can generate HTML
if test "x$HAVE_XMLTO" = "xtrue" && \
@@ -88,6 +97,7 @@ dnl check if we can generate PS
if test "x$HAVE_XMLTO" = "xtrue" && \
test "x$HAVE_FIG2DEV_EPS" = "xtrue" && \
test "x$HAVE_PNGTOPNM" = "xtrue" && \
+ test "x$HAVE_DVIPS" = "xtrue" && \
test "x$HAVE_PNMTOPS" = "xtrue"; then
DOC_PS=true
AC_MSG_NOTICE(Will output PS documentation)