forked from griddb/griddb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
58 lines (47 loc) · 1.75 KB
/
configure.ac
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
58
AC_PREREQ(2.61)
AC_INIT([GridDB], [4.6.1])
AC_CONFIG_AUX_DIR([.])
AM_INIT_AUTOMAKE
CF_ORG="$CFLAGS"
CX_ORG="$CXXFLAGS"
AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_CXX
AM_PROG_INSTALL_STRIP
AC_PROG_RANLIB
AC_ARG_ENABLE(cxx11, [ --enable-cxx11 enable C++11], [], [ enable_cxx11=yes ])
AS_IF([test "x$enable_cxx11" = xyes],
[ CX_CXX11=-std=gnu++0x ],
[ CX_CXX11= ])
CF_COMMON=" -Wall -finput-charset=UTF-8\
-Wpointer-arith\
-Wno-unused-variable -Wno-unused-but-set-variable -Wno-unused-function -Wno-unused-parameter"
CX_COMMON="$CF_COMMON $CX_CXX11"
CF_OPTIMIZE=" -O3 -fno-tree-vectorize -DNDEBUG"
AC_ARG_ENABLE(debug, [ --enable-debug turn on debugging],
[ test "${enableval}" = "yes" && CF_OPTIMIZE=" -gstabs+ -O0" ])
CX_OPTIMIZE="$CF_OPTIMIZE"
AS_IF([test "x$enable_debug" = xyes],
[ AM_CONDITIONAL(BUILD_SH_DEBUG, true) ],
[ AM_CONDITIONAL(BUILD_SH_DEBUG, false) ])
AC_ARG_ENABLE(activemq, [ --enable-activemq link activemq], [], [ enable_activemq=no ])
AS_IF([test "x$enable_activemq" = xyes],
[ AM_CONDITIONAL(LINK_ACTIVEMQ, true)
AC_DEFINE(TRIGGER_CONNECT_ACTIVEMQ,1) ],
[ AM_CONDITIONAL(LINK_ACTIVEMQ, false) ])
CF_STRICT=""
CX_STRICT=""
AC_ARG_ENABLE(strict, [ --enable-strict turn on strict compiling],
[ test "${enableval}" = "yes" &&
CF_STRICT=" -Wswitch-enum -Wfloat-equal -Wshadow -Winline\
-Wstrict-aliasing=2 -Wundef" &&
CX_STRICT="$CF_STRICT -Weffc++ -Wsynth -Wold-style-cast" ])
CFLAGS="$CF_ORG $C_COMMON$CF_OPTIMIZE$CF_STRICT"
CXXFLAGS="$CX_ORG $CX_COMMON$CX_OPTIMIZE$CX_STRICT"
AC_CHECK_DECL(
FALLOC_FL_PUNCH_HOLE,
[],
[AC_MSG_ERROR([fallocate and FALLOC_FL_PUNCH_HOLE must be supported])],
[[#include <linux/falloc.h>]])
AC_CONFIG_FILES([Makefile 3rd_party/MessagePack/Makefile server/tr-cpp/Makefile utility/Makefile server/Makefile])
AC_OUTPUT