-
Notifications
You must be signed in to change notification settings - Fork 55
/
configure.ac
765 lines (686 loc) · 22.7 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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
AC_PREREQ(2.52)
m4_include([m4/version.m4])
m4_include([m4/c99-backport.m4])
AC_INIT([arcus-memcached], [VERSION_NUMBER], [openarcus@googlegroups.com])
AC_CANONICAL_HOST
AC_CONFIG_SRCDIR([memcached.c])
AM_INIT_AUTOMAKE([subdir-objects foreign])
AM_CONFIG_HEADER([config.h])
AC_PROG_CC
AC_DISABLE_STATIC
AC_PROG_LIBTOOL
if test "x${enable_dependency_tracking}" = "x"
then
enable_dependency_tracking=yes
fi
dnl **********************************************************************
dnl Checks for clock_gettime function.
dnl
dnl if clock_gettime is available, define USE_CLOCK_GETTIME 1
dnl else define USE_GETTIMEOFDAY 1
dnl **********************************************************************
AC_CHECK_LIB(rt, clock_gettime,
AC_DEFINE(USE_CLOCK_GETTIME, 1, [Defined if clock_gettime is available in libc]),
AC_DEFINE(USE_GETTIMEOFDAY, 1, [Defined if clock_gettime is not available in libc]))
dnl **********************************************************************
dnl DETECT_ICC ([ACTION-IF-YES], [ACTION-IF-NO])
dnl
dnl check if this is the Intel ICC compiler, and if so run the ACTION-IF-YES
dnl sets the $ICC variable to "yes" or "no"
dnl **********************************************************************
AC_DEFUN([DETECT_ICC],
[
ICC="no"
AC_MSG_CHECKING([for icc in use])
if test "$GCC" = "yes"; then
dnl check if this is icc acting as gcc in disguise
AC_EGREP_CPP([^__INTEL_COMPILER], [__INTEL_COMPILER],
AC_MSG_RESULT([no])
[$2],
AC_MSG_RESULT([yes])
[$1]
ICC="yes")
else
AC_MSG_RESULT([no])
[$2]
fi
])
DETECT_ICC([],[])
dnl **********************************************************************
dnl DETECT_CLANG ([ACTION-IF-YES], [ACTION-IF-NO])
dnl
dnl check if compiler is clang, and if so run the ACTION-IF-YES sets the
dnl $CLANG variable to "yes" or "no"
dnl **********************************************************************
AC_DEFUN([DETECT_CLANG],
[
AC_MSG_CHECKING([for clang in use])
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([], [[
#ifndef __clang__
not clang
#endif
]])],
[CLANG=yes], [CLANG=no])
AC_MSG_RESULT([$CLANG])
AS_IF([test "$CLANG" = "yes"],[$1],[$2])
])
DETECT_CLANG([],[])
dnl **********************************************************************
dnl DETECT_SUNCC ([ACTION-IF-YES], [ACTION-IF-NO])
dnl
dnl check if this is the Sun Studio compiler, and if so run the ACTION-IF-YES
dnl sets the $SUNCC variable to "yes" or "no"
dnl **********************************************************************
AC_DEFUN([DETECT_SUNCC],
[
SUNCC="no"
AC_MSG_CHECKING([for Sun cc in use])
AC_RUN_IFELSE(
[AC_LANG_PROGRAM([], [dnl
#ifdef __SUNPRO_C
return 0;
#else
return 1;
#endif
])
],[
AC_MSG_RESULT([yes])
[$1]
SUNCC="yes"
], [
AC_MSG_RESULT([no])
[$2]
])
])
DETECT_SUNCC([CFLAGS="-xldscope=hidden -mt $CFLAGS"], [])
if test "x$GCC" = "xyes" -o "x$ICC" = "xyes"; then
if test "x$CLANG" != "xyes"; then
CFLAGS="-pthread $CFLAGS"
fi
if test "x$GCC" = "xyes"; then
CFLAGS="-fvisibility=hidden $CFLAGS"
fi
fi
#AS_IF(test "x$GCC" = "xyes",
# DETECT_ICC([CFLAGS="-pthread $CFLAGS"], [CFLAGS="-fvisibility=hidden -pthread $CFLAGS"]),
# ICC=no
# DETECT_SUNCC([CFLAGS="-xldscope=hidden -mt $CFLAGS"], []))
if test "$ICC" = "no"; then
AC_PROG_CC_C99
fi
AM_PROG_CC_C_O
AC_PROG_INSTALL
AC_C_BIGENDIAN
AC_ARG_ENABLE(sasl,
[AS_HELP_STRING([--enable-sasl],[Enable SASL authentication])])
AC_ARG_ENABLE(isasl,
[AS_HELP_STRING([--enable-isasl],[Enable internal SASL implementation])])
AC_ARG_ENABLE(sasl_pwdb,
[AS_HELP_STRING([--enable-sasl-pwdb],[Enable plaintext password db])])
AS_IF([test "x$enable_sasl_pwdb" = "xyes"],
[enable_sasl=yes ])
dnl **********************************************************************
dnl DETECT_SASL_CB_GETCONF
dnl
dnl check if we can use SASL_CB_GETCONF
dnl **********************************************************************
AC_DEFUN([AC_C_DETECT_SASL_CB_GETCONF],
[
AC_CACHE_CHECK([for SASL_CB_GETCONF],
[ac_cv_c_sasl_cb_getconf],
[AC_TRY_COMPILE(
[
#include <sasl/sasl.h>
], [
unsigned long val = SASL_CB_GETCONF;
],
[ ac_cv_c_sasl_cb_getconf=yes ],
[ ac_cv_c_sasl_cb_getconf=no ])
])
AS_IF([test "$ac_cv_c_sasl_cb_getconf" = "yes"],
[AC_DEFINE([HAVE_SASL_CB_GETCONF], 1,
[Set to nonzero if your SASL implementation supports SASL_CB_GETCONF])])
])
AC_CHECK_HEADERS_ONCE(link.h dlfcn.h inttypes.h umem.h priv.h sasl/sasl.h sysexits.h sys/wait.h sys/socket.h netinet/in.h netdb.h unistd.h sys/un.h sys/stat.h sys/resource.h sys/uio.h netinet/tcp.h pwd.h sys/mman.h syslog.h)
AM_CONDITIONAL(BUILD_SYSLOG_LOGGER, test "x$ac_cv_header_syslog_h" = "xyes")
if test "x$enable_isasl" = "xyes"; then
AC_DEFINE([ENABLE_ISASL],1,[Set to nonzero if you want to include ISASL])
ac_cv_saslpasswd2="isasl"
if test "x$enable_sasl" = "xyes"; then
AC_MSG_ERROR([You can't specify isasl and sasl at the same time])
fi
elif test "x$enable_sasl" = "xyes"; then
AC_PATH_PROG(ac_cv_saslpasswd2, saslpasswd2, ,/usr/sbin:/usr/bin:/usr/local/bin:/usr/opt/bin/:/opt/bin)
AC_C_DETECT_SASL_CB_GETCONF
AC_DEFINE([ENABLE_SASL],1,[Set to nonzero if you want to include SASL])
AC_SEARCH_LIBS([sasl_server_init], [sasl2 sasl], [],
[
AC_MSG_ERROR([Failed to locate the library containing sasl_server_init])
])
AS_IF([test "x$enable_sasl_pwdb" = "xyes"],
[AC_DEFINE([ENABLE_SASL_PWDB], 1,
[Set to nonzero if you want to enable a SASL pwdb])])
# test user supplied saslpasswd2 path - if supplied, or try to locate
AC_ARG_WITH(saslpasswd2,
[ --with-saslpasswd2=PATH specify location of saslpasswd2 binary],
[
if test "x$withval" != "xno" ; then
if test ! -x $withval ; then
AC_MSG_ERROR([The filename and/or path supplied to saslpasswd2 is wrong!])
else
ac_cv_saslpasswd2=$withval
fi
fi
]
)
AC_CACHE_CHECK([for saslpasswd2 binary location], ac_cv_saslpasswd2, [
if test -z "$ac_cv_saslpasswd2"; then
AC_MSG_ERROR([saslpasswd2 is required if sasl is enabled.
If it's already installed, specify its path using --with-saslpasswd=/full/path/saslpasswd2
])
fi
])
fi
# even though the test won't run if no sasl, still need to generate
SASLPASSWD2=$ac_cv_saslpasswd2
AC_SUBST(SASLPASSWD2)
AC_CONFIG_FILES(t/binary-sasl.t)
AC_ARG_ENABLE(sticky-item,
[AS_HELP_STRING([--disable-sticky-item],[Disable sticky item support])],
[],[enable_sticky_item=yes])
if test "x$enable_sticky_item" = "xyes"; then
AC_DEFINE([ENABLE_STICKY_ITEM],1,[Set to nonzero if you want to include sticky items])
fi
AC_ARG_ENABLE(persistence,
[AS_HELP_STRING([--enable-persistence],[Enable persistence])],
[],[enable_persistence=no])
if test "x$enable_persistence" = "xyes"; then
AC_DEFINE([ENABLE_PERSISTENCE],1,[Set to nonzero if you want to include persistence])
fi
# default engine
AC_ARG_ENABLE(default-engine,
[AS_HELP_STRING([--enable-default-engine], [Build-in default engine])])
AM_CONDITIONAL([INCLUDE_DEFAULT_ENGINE],[test "$enable_default_engine" = "yes"])
# demo engine
AC_ARG_ENABLE(demo-engine,
[AS_HELP_STRING([--enable-demo-engine], [Build-in demo engine])])
AM_CONDITIONAL([INCLUDE_DEMO_ENGINE],[test "$enable_demo_engine" = "yes"])
AC_ARG_ENABLE(dtrace,
[AS_HELP_STRING([--enable-dtrace],[Enable dtrace probes])])
if test "x$enable_dtrace" = "xyes"; then
AC_PATH_PROG([DTRACE], [dtrace], "no", [/usr/sbin:$PATH])
if test "x$DTRACE" != "xno"; then
AC_DEFINE([ENABLE_DTRACE],1,[Set to nonzero if you want to include DTRACE])
build_dtrace=yes
# DTrace on MacOSX does not use -G option
cat > provider.$$.d <<EOF
provider autoconf {
probe foo();
};
EOF
$DTRACE -G -o conftest.$$ -s provider.$$.d 2>/dev/zero
if test $? -eq 0
then
dtrace_instrument_obj=yes
rm conftest.$$
fi
rm provider.$$.d
if test "`which tr`" = "/usr/ucb/tr"; then
AC_MSG_ERROR([Please remove /usr/ucb from your path. See man standards for more info])
fi
else
AC_MSG_ERROR([Need dtrace binary and OS support.])
fi
fi
AM_CONDITIONAL([BUILD_DTRACE],[test "$build_dtrace" = "yes"])
AM_CONDITIONAL([DTRACE_INSTRUMENT_OBJ],[test "$dtrace_instrument_obj" = "yes"])
AM_CONDITIONAL([ENABLE_SASL],[test "$enable_sasl" = "yes"])
AM_CONDITIONAL([ENABLE_ISASL],[test "$enable_isasl" = "yes"])
AM_CONDITIONAL([BUILD_ZK_INTEGRATION],[test "$enable_zk_integration" = "yes"])
AC_SUBST(DTRACE)
AC_SUBST(DTRACEFLAGS)
AC_SUBST(ENABLE_SASL)
AC_SUBST(ENABLE_ISASL)
AC_SUBST(PROFILER_LDFLAGS)
AC_ARG_ENABLE(coverage,
[AS_HELP_STRING([--enable-coverage],[Enable code coverage])])
if test "x$enable_coverage" = "xyes"; then
if test "$ICC" = "yes"
then
AC_MSG_WARN([icc doesn't support code coverage checking])
elif test "$GCC" = "yes"
then
AC_PATH_PROG([PROFILER], [gcov], "no", [$PATH])
if test "x$PROFILER" != "xno"; then
# Issue 97: The existense of gcov doesn't mean we have -lgcov
AC_CHECK_LIB(gcov, main,
[
PROFILER_FLAGS="-fprofile-arcs -ftest-coverage"
PROFILER_LDFLAGS="-lgcov"
], [
PROFILER_FLAGS=
PROFILER_LDFLAGS=
])
fi
elif test "$SUNCC" = "yes"
then
AC_PATH_PROG([PROFILER], [tcov], "no", [$PATH])
if test "x$PROFILER" != "xno"; then
PROFILER_FLAGS=-xprofile=tcov
fi
fi
fi
AC_SUBST(PROFILER_FLAGS)
AC_ARG_ENABLE(64bit,
[AS_HELP_STRING([--enable-64bit],[build 64bit version])])
if test "x$enable_64bit" = "xyes"
then
org_cflags=$CFLAGS
CFLAGS=-m64
AC_RUN_IFELSE(
[AC_LANG_PROGRAM([], [dnl
return sizeof(void*) == 8 ? 0 : 1;
])
],[
CFLAGS="-m64 $org_cflags"
],[
AC_MSG_ERROR([Don't know how to build a 64-bit object.])
])
fi
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.
#AC_SEARCH_LIBS(clock_gettime, rt)
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
])
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 ----------------------------------------------------------------------------
dnl ----------------------------------------------------------------------------
dnl Arcus zookeeper integration
AC_ARG_ENABLE(zk-integration,
[AS_HELP_STRING([--enable-zk-integration],[Enable Arcus cache cluster with zookeeper integration])])
if test "x$enable_zk_integration" = "xyes"; then
AC_DEFINE([ENABLE_ZK_INTEGRATION],[1],[Set to nonzero if you want to make zookeeper integration])
AC_DEFINE([ENABLE_CLUSTER_AWARE],1,[Set to nonzero if you want to make memcached cluster-aware])
AC_ARG_WITH(zk-reconfig,
[AS_HELP_STRING([--with-zk-reconfig],[Enable zookeeper dynamic reconfiguration])],
[AC_DEFINE([ENABLE_ZK_RECONFIG],1,[Set to nonzero if you want to use zookeeper dynamic reconfig])]
)
tryzookeeperdir=""
AC_ARG_WITH(zookeeper,
[ --with-zookeeper=PATH specify path to zookeeper installation ],
[
if test "x$withval" != "xno" ; then
tryzookeeperdir=$withval
fi
]
)
AC_CACHE_CHECK([for zookeeper directory], ac_cv_zookeeper_dir, [
saved_LIBS="$LIBS"
saved_LDFLAGS="$LDFLAGS"
saved_CPPFLAGS="$CPPFLAGS"
zk_found=no
for zkdir in $tryzookeeperdir $prefix "" /usr/local ; do
LDFLAGS="$saved_LDFLAGS"
LIBS="$saved_LIBS -lzookeeper_mt"
# Skip the directory if it isn't there.
if test ! -z "$zkdir" -a ! -d "$zkdir" ; then
continue;
fi
if test ! -z "$zkdir" ; then
if test -d "$zkdir/lib" ; then
LDFLAGS="-L$zkdir/lib $LDFLAGS"
else
LDFLAGS="-L$zkdir $LDFLAGS"
fi
# ZooKeeper 3.3
if test -d "$zkdir/include/c-client-src" ; then
CPPFLAGS="-I$zkdir/include/c-client-src $CPPFLAGS"
else
# ZooKeeper 3.4 installs headers under include/zookeeper
if test -d "$zkdir/include/zookeeper" ; then
CPPFLAGS="-I$zkdir/include/zookeeper $CPPFLAGS"
else
CPPFLAGS="-I$zkdir $CPPFLAGS"
fi
fi
fi
if test ! -z "$zkdir" ; then
ac_cv_zookeeper_dir=$zkdir
else
ac_cv_zookeeper_dir="(system)"
fi
AC_TRY_COMPILE([
#include <zookeeper.h>
],[
zoo_set_debug_level (ZOO_LOG_LEVEL_WARN);
],[
zk_found=yes
],[
zk_found=no
])
if test $zk_found = yes ; then
break
fi
done
LIBS="$saved_LIBS"
LDFLAGS="$saved_LDFLAGS"
CPPFLAGS="$saved_CPPFLAGS"
if test $zk_found = no ; then
AC_MSG_ERROR([
If it's already installed, specify its path using --with-zookeeper=/dir/
])
fi
])
AC_DEFINE([THREADED],1,[Enable Zookeeper multi thread mode])
# LIBS="$LIBS -lzookeeper_mt"
if test $ac_cv_zookeeper_dir != "(system)"; then
if test -d "$ac_cv_zookeeper_dir/lib" ; then
LDFLAGS="-L$ac_cv_zookeeper_dir/lib $LDFLAGS"
zk_libdir="$ac_cv_zookeeper_dir/lib"
else LDFLAGS="-L$ac_cv_zookeeper_dir $LDFLAGS"
zk_libdir="$ac_cv_zookeeper_dir"
fi
# ZooKeeper 3.3
if test -d "$ac_cv_zookeeper_dir/include/c-client-src" ; then
CPPFLAGS="-I$ac_cv_zookeeper_dir/include/c-client-src $CPPFLAGS"
else
# ZooKeeper 3.4
if test -d "$ac_cv_zookeeper_dir/include/zookeeper" ; then
CPPFLAGS="-I$ac_cv_zookeeper_dir/include/zookeeper $CPPFLAGS"
else
if test -d "$ac_cv_zookeeper_dir/include" ; then
CPPFLAGS="-I$ac_cv_zookeeper_dir/include $CPPFLAGS"
else
# Default
CPPFLAGS="-I$ac_cv_zookeeper_dir $CPPFLAGS"
fi
fi
fi
fi
fi
dnl ----------------------------------------------------------------------------
dnl **********************************************************************
dnl AC_CHECK_LIBRARY ([symbol], [library])
dnl
dnl Check to see if we got the symbol in the given library, and push
dnl the library as $LIB(library)
dnl **********************************************************************
AC_DEFUN([AC_CHECK_LIBRARY],
[
pushdef([NAME],[translit([$2],[abcdefghijklmnopqrstuvwxyz./-],
[ABCDEFGHIJKLMNOPQRSTUVWXYZ___])])
saved_LIBS="$LIBS"
LIBS=""
AC_SEARCH_LIBS($1, $2)
LIB[]NAME="$LIBS"
LIBS="$saved_LIBS"
AC_SUBST([LIB]NAME)
])
AC_CHECK_LIBRARY(socket, socket)
AC_CHECK_LIBRARY(gethostbyname, nsl)
AC_CHECK_LIBRARY(umem_cache_create, umem)
AC_CHECK_LIBRARY(gethugepagesizes, hugetlbfs)
AC_CHECK_LIBRARY(dlopen, dl)
AC_CHECK_LIBRARY(log, m)
APPLICATION_LIBS="$LIBSOCKET $LIBNSL $LIBUMEM $LIBHUGETLBFS $LIBDL $LIBM"
AC_SUBST(APPLICATION_LIBS)
AC_HEADER_STDBOOL
AH_TOP([#ifndef CONFIG_H
#define CONFIG_H])
AH_BOTTOM([#include "config_static.h"
#endif])
dnl **********************************************************************
dnl DETECT_UINT64_SUPPORT
dnl
dnl check if we can use a uint64_t
dnl **********************************************************************
AC_DEFUN([AC_C_DETECT_UINT64_SUPPORT],
[
AC_CACHE_CHECK([for print macros for integers (C99 section 7.8.1)],
[ac_cv_c_uint64_support],
[AC_TRY_COMPILE(
[
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#endif
#include <stdio.h>
], [
uint64_t val = 0;
fprintf(stderr, "%" PRIu64 "\n", val);
],
[ ac_cv_c_uint64_support=yes ],
[ ac_cv_c_uint64_support=no ])
])
])
AC_C_DETECT_UINT64_SUPPORT
AS_IF([test "x$ac_cv_c_uint64_support" = "xno"],
[AC_MSG_WARN([
Failed to use print macros (PRIu) as defined in C99 section 7.8.1.
])])
AC_C_CONST
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_HTONLL],
[
AC_MSG_CHECKING([for htonll])
have_htoll="no"
AC_RUN_IFELSE([
AC_LANG_PROGRAM([
#include <sys/types.h>
#include <netinet/in.h>
#ifdef HAVE_INTTYPES_H
#include <inttypes.h> */
#endif
], [
return htonll(0);
])
], [
have_htoll="yes"
AC_DEFINE([HAVE_HTONLL], [1], [Have ntohll])
])
AC_MSG_RESULT([$have_htoll])
])
AC_C_HTONLL
dnl Check whether the user's system supports pthread
AC_SEARCH_LIBS(pthread_create, pthread)
if test "x$ac_cv_search_pthread_create" = "xno"; then
AC_MSG_ERROR([Can't enable threads without the POSIX thread library.])
fi
AC_CHECK_FUNCS(mlockall)
AC_CHECK_FUNCS(getpagesizes)
AC_CHECK_FUNCS(memcntl)
AC_DEFUN([AC_C_ALIGNMENT],
[AC_CACHE_CHECK(for alignment, ac_cv_c_alignment,
[
AC_RUN_IFELSE(
[AC_LANG_PROGRAM([
#include <stdlib.h>
#include <inttypes.h>
], [
char *buf = malloc(32);
uint64_t *ptr = (uint64_t*)(buf+2);
// catch sigbus, etc.
*ptr = 0x1;
// catch unaligned word access (ARM cpus)
*buf = 1; *(buf +1) = 2; *(buf + 2) = 2; *(buf + 3) = 3; *(buf + 4) = 4;
int* i = (int*)(buf+1);
return (84148994 == i) ? 0 : 1;
])
],[
ac_cv_c_alignment=none
],[
ac_cv_c_alignment=need
])
])
if test $ac_cv_c_alignment = need; then
AC_DEFINE(NEED_ALIGN, 1, [Machine need alignment])
fi
])
AC_C_ALIGNMENT
dnl Check for the requirements for running memcached with less privileges
dnl than the default privilege set. On Solaris we need setppriv and priv.h
dnl If you want to add support for other platforms you should check for
dnl your requirements, define HAVE_DROP_PRIVILEGES, and make sure you add
dnl the source file containing the implementation into memcached_SOURCE
dnl in Makefile.am
AC_CHECK_FUNCS(setppriv, [
AS_IF([test "x$ac_cv_header_priv_h" = "xyes" ], [
AC_DEFINE([HAVE_DROP_PRIVILEGES], 1,
[Define this if you have an implementation of drop_privileges()])
build_solaris_privs=yes
])
],[])
AM_CONDITIONAL([BUILD_SOLARIS_PRIVS],[test "$build_solaris_privs" = "yes"])
AS_IF([ test "x$ac_cv_header_umem_h" = "xyes" ], [
AC_DEFINE([HAVE_UMEM_H], 1,
[Define this if you have umem.h])
build_cache=no
], [build_cache=yes])
AM_CONDITIONAL([BUILD_CACHE], [test "x$build_cache" = "xyes"])
dnl Don't generate text files from the XML documents by default.
dnl Most developers just run ./configure and will run a lot of make / make clean
dnl and we don't want them to spend their time waiting for doc generation ;-)
dnl If you really want the documents you should be capable of adding
dnl --enable-docs yourself...
AC_ARG_ENABLE(docs,
[AS_HELP_STRING([--enable-docs],[Enable documentation generation])])
if test "x$enable_docs" = "xyes"; then
AC_PATH_PROG([XML2RFC], [xml2rfc], "no")
if test "x$XML2RFC" = "xno"; then
AC_MSG_ERROR([Can't build documentation without xml2rfc.])
fi
AC_PATH_PROG([XSLTPROC], [xsltproc], "no")
if test "x$XSLTPROC" = "xno"; then
AC_MSG_ERROR([Can't build documentation without xsltproc.])
fi
fi
AM_CONDITIONAL([BUILD_SPECIFICATIONS], [test "x$enable_docs" = "xyes"])
dnl Let the compiler be a bit more picky. Please note that you cannot
dnl specify these flags to the compiler before AC_CHECK_FUNCS, because
dnl the test program will generate a compilation warning and hence fail
dnl to detect the function ;-)
if test "$ICC" = "yes"
then
dnl ICC trying to be gcc.
CFLAGS="$CFLAGS -diag-disable 187 -Wall -Werror"
AC_DEFINE([_GNU_SOURCE],[1],[make sure IOV_MAX is defined])
elif test "$GCC" = "yes"
then
GCC_VERSION=`$CC -dumpversion`
CFLAGS="$CFLAGS -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls"
case $GCC_VERSION in
4.4.*)
CFLAGS="$CFLAGS -fno-strict-aliasing"
;;
esac
AC_DEFINE([_GNU_SOURCE],[1],[make sure IOV_MAX is defined])
elif test "$SUNCC" = "yes"
then
CFLAGS="$CFLAGS -errfmt=error -errwarn -errshort=tags"
fi
COMMON_CFLAGS=${CFLAGS}
ARCUSZK_CFLAGS=${COMMON_CFLAGS//-pedantic/" "}
CFLAGS=
AC_SUBST(COMMON_CFLAGS)
AC_SUBST(ARCUSZK_CFLAGS)
dnl Check for stuff needed to run Doxygen
AC_PATH_PROG([DOT], [dot], "no")
AS_IF(test "x$DOT" = "xno", [HAVE_DOT=NO], [HAVE_DOT=YES])
AC_PATH_PROG([DOXYGEN], [doxygen], "doxygen")
AC_PATH_PROG([PERL], [perl], "perl")
AC_SUBST(HAVE_DOT)
PROJECT_NUMBER=VERSION_NUMBER
AC_SUBST(PROJECT_NUMBER)
dnl Generate output files
CPPFLAGS="-I\${top_srcdir}/include ${CPPFLAGS}"
AC_CONFIG_FILES(Makefile doc/Makefile config/Doxyfile config/Doxyfile-api)
AC_OUTPUT