forked from cheekyguy/memcached
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
executable file
·262 lines (232 loc) · 7.42 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
254
255
256
257
258
259
260
261
262
AC_PREREQ(2.52)
AC_INIT(memcached, 1.2.3e, [email protected])
AC_CANONICAL_SYSTEM
AC_CONFIG_SRCDIR(memcached.c)
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
AM_CONFIG_HEADER(config.h)
AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_INSTALL
trylibeventdir=""
AC_ARG_WITH(libevent,
[ --with-libevent=PATH Specify path to libevent installation ],
[
if test "x$withval" != "xno" ; then
trylibeventdir=$withval
fi
]
)
dnl ------------------------------------------------------
dnl libevent detection. swiped from Tor. modified a bit.
LIBEVENT_URL=http://www.monkey.org/~provos/libevent/
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="$saved_LIBS -levent"
# Skip the directory if it isn't there.
if test ! -z "$ledir" -a ! -d "$ledir" ; then
continue;
fi
if test ! -z "$ledir" ; then
if test -d "$ledir/lib" ; then
LDFLAGS="-L$ledir/lib $LDFLAGS"
else
LDFLAGS="-L$ledir $LDFLAGS"
fi
if test -d "$ledir/include" ; then
CPPFLAGS="-I$ledir/include $CPPFLAGS"
else
CPPFLAGS="-I$ledir $CPPFLAGS"
fi
fi
# 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 ])
if test $libevent_linked = yes; then
if test ! -z "$ledir" ; then
ac_cv_libevent_dir=$ledir
else
ac_cv_libevent_dir="(system)"
fi
le_found=yes
break
fi
done
LIBS="$saved_LIBS"
LDFLAGS="$saved_LDFLAGS"
CPPFLAGS="$saved_CPPFLAGS"
if test $le_found = no ; then
AC_MSG_ERROR([libevent is required. You can get it from $LIBEVENT_URL
If it's already installed, specify its path using --with-libevent=/dir/
])
fi
])
LIBS="$LIBS -levent"
if test $ac_cv_libevent_dir != "(system)"; then
if test -d "$ac_cv_libevent_dir/lib" ; then
LDFLAGS="-L$ac_cv_libevent_dir/lib $LDFLAGS"
le_libdir="$ac_cv_libevent_dir/lib"
else
LDFLAGS="-L$ac_cv_libevent_dir $LDFLAGS"
le_libdir="$ac_cv_libevent_dir"
fi
if test -d "$ac_cv_libevent_dir/include" ; then
CPPFLAGS="-I$ac_cv_libevent_dir/include $CPPFLAGS"
else
CPPFLAGS="-I$ac_cv_libevent_dir $CPPFLAGS"
fi
fi
dnl ----------------------------------------------------------------------------
AC_SEARCH_LIBS(socket, socket)
AC_SEARCH_LIBS(gethostbyname, nsl)
AC_SEARCH_LIBS(mallinfo, malloc)
AC_SEARCH_LIBS(pthread_create, pthread)
AC_CHECK_FUNC(daemon,AC_DEFINE([HAVE_DAEMON],,[Define this if you have daemon()]),[AC_LIBOBJ(daemon)])
AC_HEADER_STDBOOL
AC_HEADER_TIME
AC_C_CONST
AC_C_INLINE
AC_C_VOLATILE
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_TYPE_UINT8_T
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
AC_TYPE_SIGNAL
AC_TYPE_SSIZE_T
AC_CHECK_HEADER(regex.h, AC_DEFINE(HAVE_REGEX_H,,[do we have regex.h?]))
AC_CHECK_HEADER(malloc.h, AC_DEFINE(HAVE_MALLOC_H,,[do we have malloc.h?]))
AC_CHECK_MEMBER([struct mallinfo.arena], [
AC_DEFINE(HAVE_STRUCT_MALLINFO,,[do we have stuct mallinfo?])
], ,[
# include <malloc.h>
]
)
AC_CHECK_HEADER(execinfo.h, AC_DEFINE(HAVE_EXECINFO_H,,[do we have execinfo.h?]))
AC_CHECK_HEADER(stdarg.h, AC_DEFINE(HAVE_STDARG_H,,[do we have stdarg.h?]))
AC_CHECK_HEADERS([arpa/inet.h fcntl.h limits.h malloc.h netdb.h netinet/in.h sys/socket.h sys/time.h syslog.h])
dnl From licq: Copyright (c) 2000 Dirk Mueller
dnl Check if the type socklen_t is defined anywhere
AC_DEFUN([AC_C_SOCKLEN_T],
[AC_CACHE_CHECK(for socklen_t, ac_cv_c_socklen_t,
[
AC_TRY_COMPILE([
#include <sys/types.h>
#include <sys/socket.h>
],[
socklen_t foo;
],[
ac_cv_c_socklen_t=yes
],[
ac_cv_c_socklen_t=no
])
])
if test $ac_cv_c_socklen_t = no; then
AC_DEFINE(socklen_t, int, [define to int if socklen_t not available])
fi
])
AC_C_SOCKLEN_T
AC_DEFUN([AC_C__SC_NPROCESSORS_ONLN],
[AC_CACHE_CHECK(for _SC_NPROCESSORS_ONLN, ac_cv_c__sc_nprocessors_onln,
[
AC_TRY_COMPILE([
#include <unistd.h>
],[
sysconf(_SC_NPROCESSORS_ONLN)
],[
ac_cv_c__sc_nprocessors_onln=yes
],[
ac_cv_c__sc_nprocessors_onln=no
])
])
if test $ac_cv_c__sc_nprocessors_onln = yes; then
AC_DEFINE(HAVE__SC_NPROCESSORS_ONLN,,[do we support sysconf(_SC_NPROCESSORS_ONLN)?])
fi
])
AC_C__SC_NPROCESSORS_ONLN
dnl Check if we're a little-endian or a big-endian system, needed by hash code
AC_DEFUN([AC_C_ENDIAN],
[AC_CACHE_CHECK(for endianness, ac_cv_c_endian,
[
AC_RUN_IFELSE(
[AC_LANG_PROGRAM([], [dnl
long val = 1;
char *c = (char *) &val;
exit(*c == 1);
])
],[
ac_cv_c_endian=big
],[
ac_cv_c_endian=little
])
])
if test $ac_cv_c_endian = big; then
AC_DEFINE(ENDIAN_BIG, 1, [machine is bigendian])
fi
if test $ac_cv_c_endian = little; then
AC_DEFINE(ENDIAN_LITTLE, 1, [machine is littleendian])
fi
])
AC_C_ENDIAN
dnl Check whether the user wants operation stats classified into buckets or not
AC_ARG_ENABLE(stat-buckets,
[AS_HELP_STRING([--enable-stat-buckets],[enable operation stats classified into buckets])],
[if test "$enableval" = "yes"; then
AC_DEFINE([STATS_BUCKETS],,[Define this if you want operation stats classified into buckets])
fi])
dnl Check whether the user wants cost-benefit stats to be collected.
AC_ARG_ENABLE(cost-benefit-stats,
[AS_HELP_STRING([--enable-cost-benefit-stats],[enable cost-benefit stats])],
[if test "$enableval" = "yes"; then
AC_DEFINE([COST_BENEFIT_STATS],,[Define this if you want cost-benefit stats])
fi])
dnl Enable multiple udp reply ports
AC_ARG_ENABLE(udp-reply-ports,
[AS_HELP_STRING([--enable-udp-reply-ports],[enable multiple udp reply ports])],
[if test "$enableval" = "yes"; then
AC_DEFINE([HAVE_UDP_REPLY_PORTS],,[Define this if you want multiple udp reply ports])
fi])
dnl Check whether the user wants the slab allocator or not
AC_ARG_ENABLE(slab_allocator,
[AS_HELP_STRING([--enable-slab-allocator],[use the slab allocator (default=yes)])],
[if test "$enableval" = "no"; then
want_slab_allocator="no"
else
want_slab_allocator="yes"
fi
],)
dnl Check whether the user wants the flat allocator or not
AC_ARG_ENABLE(flat_allocator,
[AS_HELP_STRING([--enable-flat-allocator],[use the flat allocator (default=no)])],
[if test "$enableval" = "no"; then
want_flat_allocator="no"
else
want_flat_allocator="yes"
fi
],)
[if test "x$want_slab_allocator" = "xyes" && test "x$want_flat_allocator" = "xyes"; then
]AC_MSG_ERROR([Cannot enable both the slab allocator and the flat allocator])[
fi]
[if test "x$want_slab_allocator" = "x" && test "x$want_flat_allocator" = "x"; then
want_slab_allocator="yes"
fi]
[if test "x$want_slab_allocator" = "xyes"; then
]AC_DEFINE([USE_SLAB_ALLOCATOR],,[Define this if you want to use the slab allocator])[
elif test "x$want_flat_allocator" = "xyes"; then
]AC_DEFINE([USE_FLAT_ALLOCATOR],,[Define this if you want to use the flat allocator])[
fi]
AC_CHECK_FUNCS([dup2 socket inet_ntoa])
AC_CHECK_FUNCS([mlockall getpagesize munmap])
AC_CHECK_FUNCS([memchr memmove memset strtol strtoul strerror])
AC_CHECK_FUNCS([regcomp])
AC_CHECK_LIB(dl, dladdr)
AC_CHECK_FUNCS(dladdr)
AC_CONFIG_FILES(Makefile doc/Makefile)
AC_OUTPUT