diff options
author | Richard Purdie <richard@openedhand.com> | 2005-08-31 10:45:47 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2005-08-31 10:45:47 +0000 |
commit | 4b46c1f6e891b1ddd5968536440b888661fade3e (patch) | |
tree | e0ba2c1f56f61b868bf746da5c4feabb25b800b2 /openembedded/packages/gtk-doc/gtk-doc.m4 | |
download | poky-4b46c1f6e891b1ddd5968536440b888661fade3e.tar.gz |
Initial population
git-svn-id: https://svn.o-hand.com/repos/poky@1 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/gtk-doc/gtk-doc.m4')
-rw-r--r-- | openembedded/packages/gtk-doc/gtk-doc.m4 | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/openembedded/packages/gtk-doc/gtk-doc.m4 b/openembedded/packages/gtk-doc/gtk-doc.m4 new file mode 100644 index 0000000000..af73800bf2 --- /dev/null +++ b/openembedded/packages/gtk-doc/gtk-doc.m4 | |||
@@ -0,0 +1,53 @@ | |||
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 | AC_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 | AC_HELP_STRING([--enable-gtk-doc], | ||
21 | [use gtk-doc to build documentation [default=no]]),, | ||
22 | enable_gtk_doc=no) | ||
23 | |||
24 | have_gtk_doc=no | ||
25 | if test x$enable_gtk_doc = xyes; then | ||
26 | if test -z "$PKG_CONFIG"; then | ||
27 | AC_PATH_PROG(PKG_CONFIG, pkg-config, no) | ||
28 | fi | ||
29 | if test "$PKG_CONFIG" != "no" && $PKG_CONFIG --exists gtk-doc; then | ||
30 | have_gtk_doc=yes | ||
31 | fi | ||
32 | |||
33 | dnl do we want to do a version check? | ||
34 | ifelse([$1],[],, | ||
35 | [gtk_doc_min_version=$1 | ||
36 | if test "$have_gtk_doc" = yes; then | ||
37 | AC_MSG_CHECKING([gtk-doc version >= $gtk_doc_min_version]) | ||
38 | if $PKG_CONFIG --atleast-version $gtk_doc_min_version gtk-doc; then | ||
39 | AC_MSG_RESULT(yes) | ||
40 | else | ||
41 | AC_MSG_RESULT(no) | ||
42 | have_gtk_doc=no | ||
43 | fi | ||
44 | fi | ||
45 | ]) | ||
46 | if test "$have_gtk_doc" != yes; then | ||
47 | enable_gtk_doc=no | ||
48 | fi | ||
49 | fi | ||
50 | |||
51 | AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes) | ||
52 | AM_CONDITIONAL(GTK_DOC_USE_LIBTOOL, test -n "$LIBTOOL") | ||
53 | ]) | ||