diff options
author | tomas@poseidon.ndb.mysql.com <> | 2004-12-06 08:49:34 +0000 |
---|---|---|
committer | tomas@poseidon.ndb.mysql.com <> | 2004-12-06 08:49:34 +0000 |
commit | b44ab7655446b4b278fbddd1e9ed25c0334cfd33 (patch) | |
tree | 2bbf64fc03e7410c0d01a609ce9a4723990895b6 /acinclude.m4 | |
parent | ee3953c5c1c7eee9a9b19957b09d8225fc0aa626 (diff) | |
download | mariadb-git-b44ab7655446b4b278fbddd1e9ed25c0334cfd33.tar.gz |
wixed ndb-debug option for configure
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 10 |
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 |