summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorunknown <tomas@poseidon.ndb.mysql.com>2004-12-06 08:49:34 +0000
committerunknown <tomas@poseidon.ndb.mysql.com>2004-12-06 08:49:34 +0000
commitca2e6e8192e082dc16dad8a88d98476f1281383d (patch)
tree2bbf64fc03e7410c0d01a609ce9a4723990895b6 /acinclude.m4
parent863c73898fced0216b6dcadda99366fbf8f3cdfc (diff)
downloadmariadb-git-ca2e6e8192e082dc16dad8a88d98476f1281383d.tar.gz
wixed ndb-debug option for configure
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m410
1 files changed, 5 insertions, 5 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index b43fad3ec70..730ee15ed20 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -1628,7 +1628,7 @@ AC_DEFUN([MYSQL_CHECK_NDB_OPTIONS], [
[
--without-ndb-debug Disable special ndb debug features],
[ndb_debug="$withval"],
- [ndb_debug="no"])
+ [ndb_debug="default"])
AC_MSG_CHECKING([for NDB Cluster options])
AC_MSG_RESULT([])
@@ -1671,18 +1671,18 @@ AC_DEFUN([MYSQL_CHECK_NDB_OPTIONS], [
case "$ndb_debug" in
yes )
AC_MSG_RESULT([-- including ndb extra debug options])
- with_ndb_debug="yes"
+ have_ndb_debug="yes"
;;
full )
AC_MSG_RESULT([-- including ndb extra extra debug options])
- with_ndb_debug="full"
+ have_ndb_debug="full"
;;
no )
AC_MSG_RESULT([-- not including ndb extra debug options])
- with_ndb_debug="no"
+ have_ndb_debug="no"
;;
* )
- with_ndb_debug="default"
+ have_ndb_debug="default"
;;
esac