diff options
author | unknown <tomas@mc05.(none)> | 2004-06-15 08:14:20 +0200 |
---|---|---|
committer | unknown <tomas@mc05.(none)> | 2004-06-15 08:14:20 +0200 |
commit | 5b68f1025030334d9436a9e6b319e988ba229a5e (patch) | |
tree | c99f0af498d96ea06c28b025171c02c9f05c8d71 /acinclude.m4 | |
parent | 8bf20903f964a4c7c621673a29b760aabb5aa5f4 (diff) | |
download | mariadb-git-5b68f1025030334d9436a9e6b319e988ba229a5e.tar.gz |
ndb fixes for make dist
mysql-test/ndb/ndbcluster.sh:
Change mode to -rw-rw-r--
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 16 |
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.]) ]) |