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
47536410
Commit
47536410
authored
Dec 06, 2004
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge tulin@bk-internal.mysql.com:/home/bk/mysql-4.1
into poseidon.ndb.mysql.com:/home/tomas/mysql-4.1
parents
6ad58765
b44ab765
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
3 deletions
+37
-3
acinclude.m4
acinclude.m4
+23
-0
configure.in
configure.in
+14
-3
No files found.
acinclude.m4
View file @
47536410
...
@@ -1624,6 +1624,11 @@ AC_DEFUN([MYSQL_CHECK_NDB_OPTIONS], [
...
@@ -1624,6 +1624,11 @@ AC_DEFUN([MYSQL_CHECK_NDB_OPTIONS], [
--with-ndb-port-base Base port for NDB Cluster transporters],
--with-ndb-port-base Base port for NDB Cluster transporters],
[ndb_port_base="$withval"],
[ndb_port_base="$withval"],
[ndb_port_base="default"])
[ndb_port_base="default"])
AC_ARG_WITH([ndb-debug],
[
--without-ndb-debug Disable special ndb debug features],
[ndb_debug="$withval"],
[ndb_debug="default"])
AC_MSG_CHECKING([for NDB Cluster options])
AC_MSG_CHECKING([for NDB Cluster options])
AC_MSG_RESULT([])
AC_MSG_RESULT([])
...
@@ -1663,6 +1668,24 @@ AC_DEFUN([MYSQL_CHECK_NDB_OPTIONS], [
...
@@ -1663,6 +1668,24 @@ AC_DEFUN([MYSQL_CHECK_NDB_OPTIONS], [
;;
;;
esac
esac
case "$ndb_debug" in
yes )
AC_MSG_RESULT([-- including ndb extra debug options])
have_ndb_debug="yes"
;;
full )
AC_MSG_RESULT([-- including ndb extra extra debug options])
have_ndb_debug="full"
;;
no )
AC_MSG_RESULT([-- not including ndb extra debug options])
have_ndb_debug="no"
;;
* )
have_ndb_debug="default"
;;
esac
AC_MSG_RESULT([done.])
AC_MSG_RESULT([done.])
])
])
...
...
configure.in
View file @
47536410
...
@@ -3039,16 +3039,27 @@ then
...
@@ -3039,16 +3039,27 @@ then
MAKE_BINARY_DISTRIBUTION_OPTIONS
=
"
$MAKE_BINARY_DISTRIBUTION_OPTIONS
--with-ndbcluster"
MAKE_BINARY_DISTRIBUTION_OPTIONS
=
"
$MAKE_BINARY_DISTRIBUTION_OPTIONS
--with-ndbcluster"
CXXFLAGS
=
"
$CXXFLAGS
\$
(NDB_CXXFLAGS)"
CXXFLAGS
=
"
$CXXFLAGS
\$
(NDB_CXXFLAGS)"
if
test
"
$with_debug
"
=
"yes"
if
test
"
$have_ndb_debug
"
=
"default"
then
have_ndb_debug
=
$with_debug
fi
if
test
"
$have_ndb_debug
"
=
"yes"
then
then
# Medium debug.
# Medium debug.
NDB_DEFS
=
"-DNDB_DEBUG -DVM_TRACE -DERROR_INSERT -DARRAY_GUARD"
NDB_DEFS
=
"-DNDB_DEBUG -DVM_TRACE -DERROR_INSERT -DARRAY_GUARD"
elif
test
"
$
with
_debug
"
=
"full"
elif
test
"
$
have_ndb
_debug
"
=
"full"
then
then
NDB_DEFS
=
"-DNDB_DEBUG_FULL -DVM_TRACE -DERROR_INSERT -DARRAY_GUARD"
NDB_DEFS
=
"-DNDB_DEBUG_FULL -DVM_TRACE -DERROR_INSERT -DARRAY_GUARD"
else
# no extra ndb debug but still do asserts if debug version
if
test
"
$with_debug
"
=
"yes"
-o
"
$with_debug
"
=
"full"
then
NDB_DEFS
=
""
else
else
NDB_DEFS
=
"-DNDEBUG"
NDB_DEFS
=
"-DNDEBUG"
fi
fi
fi
AC_SUBST
([
NDB_DEFS]
)
AC_SUBST
([
NDB_DEFS]
)
AC_SUBST
([
ndb_cxxflags_fix]
)
AC_SUBST
([
ndb_cxxflags_fix]
)
...
...
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