~ubuntu-branches/ubuntu/quantal/pitivi/quantal

« back to all changes in this revision

Viewing changes to common/m4/gtk-doc.m4

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2008-12-12 10:22:29 UTC
  • mfrom: (1.1.6 upstream)
  • mto: (3.2.2 jaunty) (1.2.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20081212102229-7c3etvaoy9ys0x28
Tags: upstream-0.11.3
Import upstream version 0.11.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl -*- mode: autoconf -*-
 
2
 
 
3
# serial 1
 
4
 
 
5
dnl Usage:
 
6
dnl   GTK_DOC_CHECK([minimum-gtk-doc-version])
 
7
AC_DEFUN([GTK_DOC_CHECK],
 
8
[
 
9
  AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
 
10
  AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
 
11
  dnl for overriding the documentation installation directory
 
12
  AC_ARG_WITH([html-dir],
 
13
    AS_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),,
 
14
    [with_html_dir='${datadir}/gtk-doc/html'])
 
15
  HTML_DIR="$with_html_dir"
 
16
  AC_SUBST([HTML_DIR])
 
17
 
 
18
  dnl enable/disable documentation building
 
19
  AC_ARG_ENABLE([gtk-doc],
 
20
    AS_HELP_STRING([--enable-gtk-doc],
 
21
                   [use gtk-doc to build documentation [[default=no]]]),,
 
22
    [enable_gtk_doc=no])
 
23
 
 
24
  if test x$enable_gtk_doc = xyes; then
 
25
    ifelse([$1],[],
 
26
      [PKG_CHECK_EXISTS([gtk-doc],,
 
27
                        AC_MSG_ERROR([gtk-doc not installed and --enable-gtk-doc requested]))],
 
28
      [PKG_CHECK_EXISTS([gtk-doc >= $1],,
 
29
                        AC_MSG_ERROR([You need to have gtk-doc >= $1 installed to build gtk-doc]))])
 
30
  fi
 
31
 
 
32
  AC_MSG_CHECKING([whether to build gtk-doc documentation])
 
33
  AC_MSG_RESULT($enable_gtk_doc)
 
34
 
 
35
  AC_PATH_PROGS(GTKDOC_CHECK,gtkdoc-check,)
 
36
 
 
37
  AM_CONDITIONAL([ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes])
 
38
  AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [test -n "$LIBTOOL"])
 
39
])