forked from twitter/twemcache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
253 lines (234 loc) · 7.02 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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
# Define the package version numbers and the bug reporting address
m4_define([MC_MAJOR], 2)
m4_define([MC_MINOR], 5)
m4_define([MC_PATCH], 0)
m4_define([MC_BUGS], [cache-team@twitter.com])
# Initialize autoconf
AC_PREREQ([2.64])
AC_INIT([twemcache], [MC_MAJOR.MC_MINOR.MC_PATCH], [MC_BUGS])
AC_CONFIG_SRCDIR([src/mc.c])
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_HEADERS([config.h:config.h.in])
AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_SYSTEM
# Initialize automake
AM_INIT_AUTOMAKE(1.9 foreign)
AM_SILENT_RULES([yes])
# Define macro variables for the package version numbers
AC_DEFINE(MC_VERSION_MAJOR, MC_MAJOR, [Define the major version number])
AC_DEFINE(MC_VERSION_MINOR, MC_MINOR, [Define the minor version number])
AC_DEFINE(MC_VERSION_PATCH, MC_PATCH, [Define the patch version number])
AC_DEFINE(MC_VERSION_STRING, "MC_MAJOR.MC_MINOR.MC_PATCH", [Define the version string])
# Checks for language
AC_LANG([C])
# Checks for programs
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_MAKE_SET
AM_PROG_CC_C_O
# Checks for typedefs, structures, and compiler characteristics
AC_C_INLINE
AC_C_CONST
AC_TYPE_INT8_T
AC_TYPE_INT16_T
AC_TYPE_INT32_T
AC_TYPE_INT64_T
AC_TYPE_INTMAX_T
AC_TYPE_INTPTR_T
AC_TYPE_UINT8_T
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
AC_TYPE_UINTMAX_T
AC_TYPE_UINTPTR_T
AC_TYPE_OFF_T
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_TYPE_UID_T
# Checks for header files
AC_HEADER_STDBOOL
AC_CHECK_HEADERS([fcntl.h float.h limits.h stddef.h stdlib.h string.h unistd.h])
AC_CHECK_HEADERS([inttypes.h stdint.h])
AC_CHECK_HEADERS([sys/ioctl.h sys/time.h sys/uio.h])
AC_CHECK_HEADERS([sys/socket.h sys/un.h netinet/in.h arpa/inet.h netdb.h])
# Checks for library functions
AC_FUNC_FORK
AC_FUNC_MALLOC
AC_FUNC_REALLOC
AC_CHECK_FUNCS([dup2])
AC_CHECK_FUNCS([gethostname])
AC_CHECK_FUNCS([gettimeofday])
AC_CHECK_FUNCS([strerror])
AC_CHECK_FUNCS([socket])
AC_CHECK_FUNCS([memchr memmove memset])
AC_CHECK_FUNCS([strchr strndup strtol strtoul strtoull])
AC_CHECK_FUNCS([mlockall])
AC_CHECK_FUNCS([getpagesizes])
AC_CHECK_FUNCS([memcntl])
AC_CHECK_FUNCS([backtrace])
# Search for library
AC_SEARCH_LIBS([pthread_create], [pthread], [],
[AC_MSG_ERROR([need posix thread library to be installed])])
# Check if we're a little-endian or a big-endian system
AC_C_BIGENDIAN(
[AC_DEFINE(HAVE_BIG_ENDIAN, 1, [Define to 1 if machine is big endian])],
[AC_DEFINE(HAVE_LITTLE_ENDIAN, 1, [Define to 1 if machine is little endian])],
[AC_MSG_ERROR([endianess of this machine is unknown])],
[AC_MSG_ERROR([universial endianess not supported])]
)
# Check whether to enable debug logs and asserts
AC_MSG_CHECKING([whether to enable debug logs and asserts])
AC_ARG_ENABLE([debug],
[AS_HELP_STRING(
[--enable-debug=@<:@full|yes|log|no@:>@],
[enable debug logs and asserts @<:@default=no@:>@])
],
[],
[enable_debug=no])
AS_CASE([x$enable_debug],
[xfull], [AC_DEFINE([HAVE_ASSERT_PANIC], [1],
[Define to 1 if panic on an assert is enabled])
AC_DEFINE([HAVE_DEBUG_LOG], [1], [Define to 1 if debug log is enabled])
],
[xyes], [AC_DEFINE([HAVE_ASSERT_LOG], [1],
[Define to 1 if log on an assert is enabled])
AC_DEFINE([HAVE_DEBUG_LOG], [1], [Define to 1 if debug log is enabled])
],
[xlog], [AC_DEFINE([HAVE_DEBUG_LOG], [1], [Define to 1 if debug log is enabled])],
[xno], [],
[AC_MSG_FAILURE([invalid value ${enable_debug} for --enable-debug])])
AC_MSG_RESULT([$enable_debug])
# Check whether to disable stats
AC_MSG_CHECKING([whether to disable stats])
AC_ARG_ENABLE([stats],
[AS_HELP_STRING([--disable-stats], [disable stats collection])])
AS_IF(
[test "x$enable_stats" = "xno"],
[
AC_DEFINE([DISABLE_STATS], [1], [Define to 1 if stats collection is disabled])
AC_MSG_RESULT([yes])
],
[AC_MSG_RESULT([no])]
)
# Check whether to disable command logger (klog)
AC_MSG_CHECKING([whether to disable command logger (klog)])
AC_ARG_ENABLE([klog],
[AS_HELP_STRING([--disable-klog], [disable klogger])])
AS_IF(
[test "x$enable_klog" = "xno"],
[
AC_DEFINE([DISABLE_KLOG], [1], [Define to 1 if klogger is disabled])
AC_MSG_RESULT([yes])
],
[AC_MSG_RESULT([no])]
)
# Libevent detection; swiped from Tor, modified a bit
trylibeventdir=""
AC_ARG_WITH([libevent],
[AS_HELP_STRING([--with-libevent=@<:@path@:>@], [specify path to libevent install])],
[trylibeventdir=$withval], []
)
LIBEVENT_URL=http://libevent.org
AC_CACHE_CHECK([for libevent directory], [ac_cv_libevent_dir],
[
saved_LIBS="$LIBS"
saved_LDFLAGS="$LDFLAGS"
saved_CPPFLAGS="$CPPFLAGS"
le_found=no
for ledir in $trylibeventdir "" $prefix /usr/local
do
LDFLAGS="$saved_LDFLAGS"
LIBS="-levent $saved_LIBS"
# Skip the directory if it isn't there.
AS_IF([test ! -z "$ledir" -a ! -d "$ledir"], [continue])
AS_IF(
[test ! -z "$ledir"],
[
AS_IF(
[test -d "$ledir/lib"],
[LDFLAGS="-L$ledir/lib $LDFLAGS"],
[LDFLAGS="-L$ledir $LDFLAGS"]
)
AS_IF(
[test -d "$ledir/include"],
[CPPFLAGS="-I$ledir/include $CPPFLAGS"],
[CPPFLAGS="-I$ledir $CPPFLAGS"]
)
]
)
# Can I compile and link it?
AC_TRY_LINK(
[
#include <sys/time.h>
#include <sys/types.h>
#include <event.h>
],
[
event_init();
],
[libevent_linked=yes],
[libevent_linked=no]
)
AS_IF(
[test $libevent_linked = yes],
[
AS_IF(
[test ! -z "$ledir"],
[ac_cv_libevent_dir=$ledir],
[ac_cv_libevent_dir="(system)"]
)
le_found=yes
break
]
)
done
LIBS="$saved_LIBS"
LDFLAGS="$saved_LDFLAGS"
CPPFLAGS="$saved_CPPFLAGS"
AS_IF(
[test $le_found = no],
[AC_MSG_ERROR([libevent required. Get it from $LIBEVENT_URL or specify its path using --with-libevent=/dir/])]
)
]
)
AS_IF(
[test $ac_cv_libevent_dir != "(system)"],
[
AS_IF(
[test -d "$ac_cv_libevent_dir/lib"],
[
LDFLAGS="-L$ac_cv_libevent_dir/lib $LDFLAGS"
le_libdir="$ac_cv_libevent_dir/lib"
],
[
LDFLAGS="-L$ac_cv_libevent_dir $LDFLAGS"
le_libdir="$ac_cv_libevent_dir"
]
)
AS_IF(
[test -d "$ac_cv_libevent_dir/include"],
[CPPFLAGS="-I$ac_cv_libevent_dir/include $CPPFLAGS"]
[CPPFLAGS="-I$ac_cv_libevent_dir $CPPFLAGS"]
)
]
)
# Check whether to enable static linking
AC_MSG_CHECKING([whether to enable static linking])
AC_ARG_ENABLE([static],
[AS_HELP_STRING(
[--enable-static=@<:@libevent|no@:>@],
[enable static linking @<:@default=no@:>@])
],
[],
[enable_static=no])
AS_CASE([x$enable_static],
[xlibevent], [LIBS="-Wl,-Bstatic -levent -Wl,-Bdynamic $LIBS -lrt"],
[xno], [LIBS="-levent $LIBS"],
[AC_MSG_FAILURE([invalid value ${enable_static} for --enable-static])])
AC_MSG_RESULT([$enable_static])
# Define Makefiles
AC_CONFIG_FILES([Makefile
src/Makefile])
# Generate the "configure" script
AC_OUTPUT