diff options
author | unknown <magnus@neptunus.(none)> | 2004-04-14 17:17:51 +0200 |
---|---|---|
committer | unknown <magnus@neptunus.(none)> | 2004-04-14 17:17:51 +0200 |
commit | 501392277e0150685ed6dd49c29efe5f41c6a287 (patch) | |
tree | 71565999bd020599fa9df4c02b3e9825a85b10c0 /configure.in | |
parent | f6686a6e76a6aaa59744769ca1df1b41ff92b34e (diff) | |
download | mariadb-git-501392277e0150685ed6dd49c29efe5f41c6a287.tar.gz |
Check if NDB should be built to to support MySQL Cluster
acconfig.h:
Clear variable that defines if NDB Cluster should be supported
acinclude.m4:
Check for NDB Cluster included in the build
configure.in:
Check if NDB Cluster should be supported
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/configure.in b/configure.in index de546d9c078..c218df7be1c 100644 --- a/configure.in +++ b/configure.in @@ -2618,6 +2618,7 @@ AC_DEFINE_UNQUOTED(MYSQL_DEFAULT_COLLATION_NAME,"$default_collation") MYSQL_CHECK_ISAM MYSQL_CHECK_BDB MYSQL_CHECK_INNODB +MYSQL_CHECK_NDBCLUSTER # If we have threads generate some library functions and test programs sql_server_dirs= @@ -2747,6 +2748,19 @@ EOF sql_server_dirs="$sql_server_dirs innobase" AC_CONFIG_SUBDIRS(innobase) fi + + if test X"$have_ndbcluster" = Xyes + then + sql_server_dirs="$sql_server_dirs ndb" + echo "CONFIGURING FOR NDB CLUSTER" + case $with_debug in + no) flag="-R" ;; + *) flag="-D" ;; + esac + (cd ndb && ./configure $flag) \ + || AC_MSG_ERROR([could not configure NDB Cluster]) + echo "END OF NDB CLUSTER CONFIGURATION" + fi # # END of configuration for optional table handlers # @@ -2808,6 +2822,10 @@ case $SYSTEM_TYPE in MAKE_BINARY_DISTRIBUTION_OPTIONS= ;; esac +if test X"$have_ndbcluster" = Xyes +then + MAKE_BINARY_DISTRIBUTION_OPTIONS="$MAKE_BINARY_DISTRIBUTION_OPTIONS --with-ndbcluster" +fi AC_SUBST(MAKE_BINARY_DISTRIBUTION_OPTIONS) # Output results |