diff options
author | unknown <tomas@poseidon.(none)> | 2004-08-23 16:29:04 +0000 |
---|---|---|
committer | unknown <tomas@poseidon.(none)> | 2004-08-23 16:29:04 +0000 |
commit | 1091fe23f63cbc7e2431edcab99ba98726b4c4a9 (patch) | |
tree | 127fc36efc8bcbc74d47a4b71649045dedbd609d /acinclude.m4 | |
parent | b6d9222da3c2b0f6ec33efa6e16359b1630bad4a (diff) | |
download | mariadb-git-1091fe23f63cbc7e2431edcab99ba98726b4c4a9.tar.gz |
further simplifications of ndb config and aligned usage of mysql datadir in ndb
acinclude.m4:
added configure switch for ndb base port
configure.in:
ndb gcc compile now works with -fno-implicit-templates
mysql-test/ndb/ndb_config_2_node.ini:
further simplifications of config, removed need for [COMPUTER] section
ndb/include/ndb_global.h:
moved this to configure option
ndb/src/common/mgmcommon/ConfigInfo.cpp:
changed config to take to take strings instead of ints
ndb/src/common/mgmcommon/ConfigInfo.hpp:
changed config to take to take strings instead of ints
ndb/src/common/mgmcommon/InitConfigFileParser.cpp:
string to number convert to accept "0x" prefix on numbers
ndb/src/common/mgmcommon/InitConfigFileParser.hpp:
movet convert function to public and static
ndb/src/common/mgmcommon/LocalConfig.cpp:
define NDB_BASE_PORT now string instead of number
ndb/src/common/mgmcommon/Makefile.am:
added mysqld defines in mgmcommon to be able to configure default data dir to be the same as for mysqld
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 11f5d07200a..d19942ce4e4 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1515,6 +1515,11 @@ AC_DEFUN([MYSQL_CHECK_NDB_OPTIONS], [ --with-ndb-docs Include the NDB Cluster ndbapi and mgmapi documentation], [ndb_docs="$withval"], [ndb_docs=no]) + AC_ARG_WITH([ndb-port-base], + [ + --with-ndb-port-base Base port for NDB Cluster], + [ndb_port_base="$withval"], + [ndb_port_base="default"]) AC_MSG_CHECKING([for NDB Cluster options]) AC_MSG_RESULT([]) |