Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
b44ab765
Commit
b44ab765
authored
Dec 06, 2004
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wixed ndb-debug option for configure
parent
ee3953c5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
acinclude.m4
acinclude.m4
+5
-5
configure.in
configure.in
+4
-4
No files found.
acinclude.m4
View file @
b44ab765
...
...
@@ -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
...
...
configure.in
View file @
b44ab765
...
...
@@ -3039,16 +3039,16 @@ then
MAKE_BINARY_DISTRIBUTION_OPTIONS
=
"
$MAKE_BINARY_DISTRIBUTION_OPTIONS
--with-ndbcluster"
CXXFLAGS
=
"
$CXXFLAGS
\$
(NDB_CXXFLAGS)"
if
test
"
$
with
_ndb_debug
"
=
"default"
if
test
"
$
have
_ndb_debug
"
=
"default"
then
with_ndb_debug
=
$with_debug
have_ndb_debug
=
$with_debug
fi
if
test
"
$
with
_ndb_debug
"
=
"yes"
if
test
"
$
have
_ndb_debug
"
=
"yes"
then
# Medium debug.
NDB_DEFS
=
"-DNDB_DEBUG -DVM_TRACE -DERROR_INSERT -DARRAY_GUARD"
elif
test
"
$
with
_ndb_debug
"
=
"full"
elif
test
"
$
have
_ndb_debug
"
=
"full"
then
NDB_DEFS
=
"-DNDB_DEBUG_FULL -DVM_TRACE -DERROR_INSERT -DARRAY_GUARD"
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment