mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
4959571d91
- added compiling of the NDB Cluster to compile-pentium-max BUILD/compile-pentium-max: - added NDB Cluster include/mysql_embed.h: - disable NDB cluster for the embedded server by #undef'ing HAVE_NDBCLUSTER_DB libmysqld/Makefile.am: - remove ndbcluster_includes and ndbcluster_libs as NDB is not part of libmysqld anyway
14 lines
339 B
Bash
Executable file
14 lines
339 B
Bash
Executable file
#! /bin/sh
|
|
|
|
path=`dirname $0`
|
|
. "$path/SETUP.sh"
|
|
|
|
extra_flags="$pentium_cflags $fast_cflags -g"
|
|
extra_configs="$pentium_configs"
|
|
#strip=yes
|
|
|
|
extra_configs="$extra_configs --with-innodb --with-berkeley-db \
|
|
--with-embedded-server --enable-thread-safe-client \
|
|
--with-openssl --with-vio --with-raid --with-ndbcluster"
|
|
|
|
. "$path/FINISH.sh"
|