blob: 29ebbd6d32330cf9469fa932c9459713551a376b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
dnl AG_GST_PYXML_CHECK([MINIMUM-PYTHON-VERSION])
AC_DEFUN([AG_GST_PYXML_CHECK],
[
AC_BEFORE([AS_PATH_PYTHON],[$0])dnl find python first
have_pyxml=no
if test "x$PYTHON" != x; then
AC_MSG_CHECKING([pyxml])
if $PYTHON -c "from xml.dom.ext.reader import Sax2" 2>/dev/null \
&& $PYTHON -c "from xml.dom.NodeFilter import NodeFilter" 2>/dev/null; then
AC_MSG_RESULT(yes)
have_pyxml=yes
else
AC_MSG_RESULT(no)
fi
fi
])
dnl AG_GST_PLUGIN_DOCS([MINIMUM-GTK-DOC-VERSION],[MINIMUM-PYTHON-VERSION])
dnl
dnl checks for prerequisites for the common/mangle-tmpl.py script
dnl used when building the plugin documentation
AC_DEFUN([AG_GST_PLUGIN_DOCS],
[
AC_BEFORE([GTK_DOC_CHECK],[$0])dnl check for gtk-doc first
if test x$enable_gtk_doc = xyes -a x$have_gtk_doc = xyes; then
AG_GST_PYXML_CHECK([$1])
fi
build_plugin_docs=no
AC_MSG_CHECKING([whether to build plugin documentation])
if test x$enable_gtk_doc = xyes -a x$have_gtk_doc = xyes; then
if test "x$have_pyxml" != xyes; then
AC_MSG_RESULT([no (pyxml not installed)])
else
build_plugin_docs=yes
AC_MSG_RESULT([yes])
fi
else
AC_MSG_RESULT([no (gtk-doc disabled or not available)])
fi
AM_CONDITIONAL(ENABLE_PLUGIN_DOCS, test x$build_plugin_docs = xyes)
])
|