File: gst-plugin-docs.m4

package info (click to toggle)
gst0.10-python 0.10.19-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 4,032 kB
  • ctags: 1,854
  • sloc: sh: 11,143; python: 11,084; ansic: 1,772; perl: 1,585; makefile: 559
file content (21 lines) | stat: -rw-r--r-- 664 bytes parent folder | download | duplicates (36)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
  AC_BEFORE([AS_PATH_PYTHON],[$1])dnl find python first

  build_plugin_docs=no
  AC_MSG_CHECKING([whether to build plugin documentation])
  if test x$enable_gtk_doc = xyes; then
    build_plugin_docs=yes
    AC_MSG_RESULT([yes])
  else
    AC_MSG_RESULT([no (gtk-doc disabled or not available)])
  fi

  AM_CONDITIONAL(ENABLE_PLUGIN_DOCS, test x$build_plugin_docs = xyes)
])