diff options
author | Simon Josefsson <simon@josefsson.org> | 2004-08-24 13:27:02 +0000 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2004-08-24 13:27:02 +0000 |
commit | dae934c1f3bab0081c5b7191e3f8192d20d63bfe (patch) | |
tree | 200df4c4fb515ff66877bad4e1c56c449abeea9d | |
parent | 5941d8641484dd7652f520e7043b5c09aa4ae634 (diff) | |
download | gnutls-dae934c1f3bab0081c5b7191e3f8192d20d63bfe.tar.gz |
Update.
-rw-r--r-- | m4/gtk-doc.m4 | 32 |
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 |