summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2004-08-24 13:27:02 +0000
committerSimon Josefsson <simon@josefsson.org>2004-08-24 13:27:02 +0000
commitdae934c1f3bab0081c5b7191e3f8192d20d63bfe (patch)
tree200df4c4fb515ff66877bad4e1c56c449abeea9d /m4
parent5941d8641484dd7652f520e7043b5c09aa4ae634 (diff)
downloadgnutls-dae934c1f3bab0081c5b7191e3f8192d20d63bfe.tar.gz
Update.
Diffstat (limited to 'm4')
-rw-r--r--m4/gtk-doc.m432
1 files changed, 16 insertions, 16 deletions
diff --git a/m4/gtk-doc.m4 b/m4/gtk-doc.m4
index 3ec41666b2..af73800bf2 100644
--- a/m4/gtk-doc.m4
+++ b/m4/gtk-doc.m4
@@ -22,27 +22,27 @@ AC_DEFUN([GTK_DOC_CHECK],
enable_gtk_doc=no)
have_gtk_doc=no
- if test -z "$PKG_CONFIG"; then
- AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
- fi
- if test "$PKG_CONFIG" != "no" && $PKG_CONFIG --exists gtk-doc; then
- have_gtk_doc=yes
- fi
+ if test x$enable_gtk_doc = xyes; then
+ if test -z "$PKG_CONFIG"; then
+ AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
+ fi
+ if test "$PKG_CONFIG" != "no" && $PKG_CONFIG --exists gtk-doc; then
+ have_gtk_doc=yes
+ fi
dnl do we want to do a version check?
ifelse([$1],[],,
- [gtk_doc_min_version=$1
- if test "$have_gtk_doc" = yes; then
- AC_MSG_CHECKING([gtk-doc version >= $gtk_doc_min_version])
- if $PKG_CONFIG --atleast-version $gtk_doc_min_version gtk-doc; then
- AC_MSG_RESULT(yes)
- else
- AC_MSG_RESULT(no)
- have_gtk_doc=no
+ [gtk_doc_min_version=$1
+ if test "$have_gtk_doc" = yes; then
+ AC_MSG_CHECKING([gtk-doc version >= $gtk_doc_min_version])
+ if $PKG_CONFIG --atleast-version $gtk_doc_min_version gtk-doc; then
+ AC_MSG_RESULT(yes)
+ else
+ AC_MSG_RESULT(no)
+ have_gtk_doc=no
+ fi
fi
- fi
])
- if test x$enable_gtk_doc = xyes; then
if test "$have_gtk_doc" != yes; then
enable_gtk_doc=no
fi