forked from zedrdave/msgpack-rpc-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.in
156 lines (119 loc) · 3.75 KB
/
configure.in
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
AC_INIT(src/msgpack/rpc/session.h)
AC_CONFIG_AUX_DIR(ac)
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE(msgpack-rpc, 0.3.1)
AC_CONFIG_HEADER(config.h)
AC_SUBST(CFLAGS)
CFLAGS="-O4 -Wall $CFLAGS"
AC_SUBST(CXXFLAGS)
CXXFLAGS="-O4 -Wall $CXXFLAGS"
AC_PROG_CC
AC_PROG_CXX
AC_PROG_LIBTOOL
AM_PROG_AS
AM_PROG_CC_C_O
AC_CACHE_CHECK([for __sync_* atomic operations], msgpackrpc_cv_atomic_ops, [
AC_TRY_LINK([
int atomic_sub(int i) { return __sync_sub_and_fetch(&i, 1); }
int atomic_add(int i) { return __sync_add_and_fetch(&i, 1); }
int atomic_cas(int i) { return __sync_bool_compare_and_swap(&i, 0, 1); }
], [], msgpackrpc_cv_atomic_ops="yes")
])
if test "$msgpackrpc_cv_atomic_ops" != "yes"; then
AC_MSG_ERROR([__sync_* atomic operations are not supported.
Note that gcc < 4.1 is not supported.
If you are using gcc >= 4.1 and the default target CPU architecture is "i386", try to
add CFLAGS="-march=i686" and CXXFLAGS="-march=i686" options to ./configure as follows:
$ ./configure CFLAGS="-march=i686" CXXFLAGS="-march=i686"
])
fi
AC_ARG_WITH([msgpack],
AS_HELP_STRING([--with-msgpack=DIR],
[specify the root directory for msgpack library]),
[msgpack_path="$withval"], [])
if test "$msgpack_path" != ""; then
CXXFLAGS="$CXXFLAGS -I$msgpack_path/include"
CFLAGS="$CFLAGS -I$msgpack_path/include"
LDFLAGS="$LDFLAGS -L$msgpack_path/lib"
fi
AC_ARG_WITH([mpio],
AS_HELP_STRING([--with-mpio=DIR],
[specify the root directory for mpio library]),
[mpio_path="$withval"], [])
if test "$mpio_path" != ""; then
CXXFLAGS="$CXXFLAGS -I$mpio_path/include"
CFLAGS="$CFLAGS -I$mpio_path/include"
LDFLAGS="$LDFLAGS -L$mpio_path/lib"
fi
AC_CHECK_LIB(stdc++, main)
AC_CHECK_LIB(pthread,pthread_create,,
AC_MSG_ERROR([Can't find pthread library]))
AC_CHECK_LIB(z,deflate,,
AC_MSG_ERROR([Can't find zlib library]))
AC_CHECK_LIB(msgpack,main,,
AC_MSG_ERROR([Can't find msgpack library.
--with-msgpack=DIR option may be needed.]))
AC_CHECK_LIB(mpio,main,,
AC_MSG_ERROR([Can't find mpio library.
--with-mpio=DIR option may be needed.]))
case "$target_os" in
solaris*)
AC_CHECK_LIB(socket,accept,,
AC_MSG_ERROR([Can't find libsocket.]))
AC_CHECK_LIB(nsl,inet_ntop,,
AC_MSG_ERROR([Can't find libnsl.]))
AC_CHECK_LIB(sendfile,sendfile,,
AC_MSG_ERROR([Can't find libsendfile.]))
CXXFLAGS="$CXXFLAGS -D_REENTRANT"
CFLAGS="$CFLAGS -D_REENTRANT"
;;
esac
AC_MSG_CHECKING([if debug option is enabled])
AC_ARG_ENABLE(debug,
AS_HELP_STRING([--disable-debug],
[disable assert macros and omit -g option.]) )
if test "$enable_debug" != "no"; then
CXXFLAGS="$CXXFLAGS -g"
CFLAGS="$CFLAGS -g"
else
CXXFLAGS="$CXXFLAGS -DNDEBUG"
CFLAGS="$CFLAGS -DNDEBUG"
fi
AC_MSG_RESULT($enable_debug)
want_cclog=no
AC_MSG_CHECKING([if cclog is enabled])
AC_ARG_ENABLE(cclog,
AS_HELP_STRING([--enable-cclog],
[build cclog library.]) )
if test "$enable_cclog" = "yes"; then
want_cclog=yes
fi
AC_MSG_RESULT($enable_cclog)
AC_MSG_CHECKING([if trace message is enabled])
AC_ARG_ENABLE(trace,
AS_HELP_STRING([--enable-trace], [enable trace messages.]) )
if test "$enable_trace" = "yes"; then
want_cclog=yes
CXXFLAGS="$CXXFLAGS -DCCLOG_LEVEL=0"
CFLAGS="$CFLAGS -DCCLOG_LEVEL=0"
else
if test "$want_cclog" = "yes"; then
CXXFLAGS="$CXXFLAGS -DCCLOG_LEVEL=2"
CFLAGS="$CFLAGS -DCCLOG_LEVEL=2"
else
CXXFLAGS="$CXXFLAGS -DCCLOG_LEVEL=10"
CFLAGS="$CFLAGS -DCCLOG_LEVEL=10"
fi
fi
AC_MSG_RESULT($enable_trace)
AM_CONDITIONAL(WANT_CCLOG, test "$want_cclog" = "yes")
major=`echo $VERSION | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\1/'`
minor=`echo $VERSION | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\2/'`
AC_SUBST(VERSION_MAJOR, $major)
AC_SUBST(VERSION_MINOR, $minor)
AC_OUTPUT([Makefile
src/Makefile
src/cclog/Makefile
src/msgpack/rpc/Makefile
src/msgpack/rpc/version.h
test/Makefile])