diff options
author | tomas@poseidon.(none) <> | 2004-08-23 16:29:04 +0000 |
---|---|---|
committer | tomas@poseidon.(none) <> | 2004-08-23 16:29:04 +0000 |
commit | c3f2f7426cc88a1fced52a848f371b43b6653254 (patch) | |
tree | 127fc36efc8bcbc74d47a4b71649045dedbd609d /configure.in | |
parent | efac41149c8e5180894bd52f22267e0060b448cc (diff) | |
download | mariadb-git-c3f2f7426cc88a1fced52a848f371b43b6653254.tar.gz |
further simplifications of ndb config and aligned usage of mysql datadir in ndb
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 664ffd2a4a1..f58ba482c59 100644 --- a/configure.in +++ b/configure.in @@ -389,8 +389,6 @@ then # Disable exceptions as they seams to create problems with gcc and threads. # mysqld doesn't use run-time-type-checking, so we disable it. CXXFLAGS="$CXXFLAGS -fno-implicit-templates -fno-exceptions -fno-rtti" - # ndb cannot be compiled with -fno-implicit-templaces - ndb_cxxflags_fix="$ndb_cxxflags_fix -fimplicit-templates" # If you are using 'gcc' 3.0 (not g++) to compile C++ programs on Linux, # we will gets some problems when linking static programs. @@ -2985,6 +2983,13 @@ then AC_SUBST([NDB_DEFS]) AC_SUBST([ndb_cxxflags_fix]) + +if test X"$ndb_port_base" = Xdefault +then + ndb_port_base="2200" +fi +AC_SUBST([ndb_port_base]) + ndb_transporter_opt_objs="" if test X"$have_ndb_shm" = Xyes then |