blob: 1b3ba1586755aa1c2069c85ea195ecfea5f263fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#!/bin/bash
#
# Copyright(C) 2012-2015 Kouhei Sutou <kou@clear-code.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# set -x
set -e
if [ "${MROONGA_BUNDLED}" = "yes" ]; then
cmake_args=(-DCMAKE_BUILD_TYPE=Debug -DWITH_UNIT_TESTS=FALSE)
cmake_args=("${cmake_args[@]}" -DWITH_EMBEDDED_SERVER=TRUE)
cmake_args=("${cmake_args[@]}" -DWITHOUT_ARCHIVE=TRUE)
cmake_args=("${cmake_args[@]}" -DWITHOUT_BLACKHOLE=TRUE)
cmake_args=("${cmake_args[@]}" -DWITHOUT_CASSANDRA=TRUE)
cmake_args=("${cmake_args[@]}" -DWITHOUT_CONNECT=TRUE)
cmake_args=("${cmake_args[@]}" -DWITHOUT_CSV=TRUE)
cmake_args=("${cmake_args[@]}" -DWITHOUT_EXAMPLE=TRUE)
cmake_args=("${cmake_args[@]}" -DWITHOUT_FEDERATED=TRUE)
cmake_args=("${cmake_args[@]}" -DWITHOUT_FEDERATEDX=TRUE)
cmake_args=("${cmake_args[@]}" -DWITHOUT_HEAP=TRUE)
cmake_args=("${cmake_args[@]}" -DWITHOUT_MYISAMMRG=TRUE)
cmake_args=("${cmake_args[@]}" -DWITHOUT_OQGRAPH=TRUE)
cmake_args=("${cmake_args[@]}" -DWITHOUT_SEQUENCE=TRUE)
cmake_args=("${cmake_args[@]}" -DWITHOUT_SPHINX=TRUE)
cmake_args=("${cmake_args[@]}" -DWITHOUT_SPIDER=TRUE)
cmake_args=("${cmake_args[@]}" -DWITHOUT_TEST_SQL_DISCOVERY=TRUE)
cmake_args=("${cmake_args[@]}" -DWITHOUT_TOKUDB=TRUE)
if [ "${MROONGA_TEST_EMBEDDED}" = "yes" ]; then
cmake_args=("${cmake_args[@]}" -DWITH_EMBEDDED_SERVER=TRUE)
fi
cmake . "${cmake_args[@]}"
else
./autogen.sh
if [ -d /opt/mysql/ ]; then
PATH=$(echo /opt/mysql/server-*/bin/):$PATH
fi
configure_args=("--with-mysql-source=$PWD/vendor/mysql")
if [ "${MYSQL_VERSION}" = "mysql-5.6.25" ]; then
configure_args=("${configure_args[@]}" --enable-fast-mutexes)
fi
./configure "${configure_args[@]}"
cat "$(mysql_config --include | sed -e 's/-I//g')/my_config.h"
fi
|