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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
ca2e6e81
Commit
ca2e6e81
authored
Dec 06, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wixed ndb-debug option for configure
parent
863c7389
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 @
ca2e6e81
...
...
@@ -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 @
ca2e6e81
...
...
@@ -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