summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authortomas@mc05.(none) <>2004-06-15 08:14:20 +0200
committertomas@mc05.(none) <>2004-06-15 08:14:20 +0200
commit8278d71688df6f1027473c2a21e4d5e6168c5568 (patch)
treec99f0af498d96ea06c28b025171c02c9f05c8d71 /acinclude.m4
parent6c899a3b0e77a9bf8f52e3c89bea828f7a78918d (diff)
downloadmariadb-git-8278d71688df6f1027473c2a21e4d5e6168c5568.tar.gz
ndb fixes for make dist
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m416
1 files changed, 16 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 7c0e8890b95..8ef32c8163a 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -1383,6 +1383,11 @@ AC_DEFUN([MYSQL_CHECK_NDB_OPTIONS], [
--with-ndb-test Include the NDB Cluster ndbapi test programs],
[ndb_test="$withval"],
[ndb_test=no])
+ AC_ARG_WITH([ndb-docs],
+ [
+ --with-ndb-docs Include the NDB Cluster ndbapi and mgmapi documentation],
+ [ndb_docs="$withval"],
+ [ndb_docs=no])
AC_MSG_CHECKING([for NDB Cluster options])
AC_MSG_RESULT([])
@@ -1422,6 +1427,17 @@ AC_DEFUN([MYSQL_CHECK_NDB_OPTIONS], [
;;
esac
+ have_ndb_docs=no
+ case "$ndb_docs" in
+ yes )
+ AC_MSG_RESULT([-- including ndbapi and mgmapi documentation])
+ have_ndb_docs="yes"
+ ;;
+ * )
+ AC_MSG_RESULT([-- not including ndbapi and mgmapi documentation])
+ ;;
+ esac
+
AC_MSG_RESULT([done.])
])