diff options
author | tomas@poseidon.ndb.mysql.com <> | 2004-11-10 16:05:28 +0000 |
---|---|---|
committer | tomas@poseidon.ndb.mysql.com <> | 2004-11-10 16:05:28 +0000 |
commit | 17b2d671ee15410a8e9faba27d883f4b9aeb5df3 (patch) | |
tree | 364c6c40f694a800ae1d5172a69490ab4871f9c9 /configure.in | |
parent | f0e4686d3db8b4a5b013cd2b11d4803ab1481260 (diff) | |
download | mariadb-git-17b2d671ee15410a8e9faba27d883f4b9aeb5df3.tar.gz |
added configure switch for ndb port number
added new variable for ndb port 1186
changed meaning of ndb_port_base to be default tcp port setting
changed to use split between port and port_base for ndbcluster
so that ndb_port and ndb_port_base are propagated to startscript for ndbcluster
added larger space to pid print
moved readAndExecute out of CommandInterpreter to avoid linking lib with readline
added c-api to Ndb_mgmclient
pass also ndb_port to make
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.in b/configure.in index cd2daf10690..764261c6933 100644 --- a/configure.in +++ b/configure.in @@ -3052,9 +3052,15 @@ AC_SUBST([NDB_DEFS]) AC_SUBST([ndb_cxxflags_fix]) +if test X"$ndb_port" = Xdefault +then + ndb_port="1186" +fi +AC_SUBST([ndb_port]) + if test X"$ndb_port_base" = Xdefault then - ndb_port_base="2200" + ndb_port_base="2202" fi AC_SUBST([ndb_port_base]) |