1 AC_INIT(clients/memcat.c)
2 AC_CONFIG_AUX_DIR(config)
3 AM_CONFIG_HEADER(libmemcached/libmemcached_config.h)
6 MEMCACHED_LIBRARY_NAME=libmemcached
9 MEMCACHED_MAJOR_VERSION=0
10 MEMCACHED_MINOR_VERSION=19
11 MEMCACHED_MICRO_VERSION=0
14 MEMCACHED_API_VERSION=1.0
15 AC_SUBST(MEMCACHED_API_VERSION)
17 #shared library versioning
18 MEMCACHED_LIBRARY_VERSION=2:0:0
22 # current:revision:age
24 # | | +- increment if interfaces have been added
25 # | | set to zero if interfaces have been removed or changed
26 # | +- increment if source code has changed
27 # | set to zero if current is incremented
28 # +- increment if interfaces have been added, removed or changed
30 AC_SUBST(MEMCACHED_LIBRARY_VERSION)
32 PACKAGE=$MEMCACHED_LIBRARY_NAME
33 AC_SUBST(MEMCACHED_LIBRARY_NAME)
35 MEMCACHED_VERSION=$MEMCACHED_MAJOR_VERSION.$MEMCACHED_MINOR_VERSION.$MEMCACHED_MICRO_VERSION
36 MEMCACHED_RELEASE=$MEMCACHED_MAJOR_VERSION.$MEMCACHED_MINOR_VERSION
37 AC_SUBST(MEMCACHED_RELEASE)
38 AC_SUBST(MEMCACHED_VERSION)
40 VERSION=$MEMCACHED_RELEASE
42 AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
48 LIBTOOL="$LIBTOOL --preserve-dup-deps"
52 sinclude(config/debug.m4)
53 sinclude(config/dtrace.m4)
55 # We only support GCC and Sun's forte at the moment
56 if test "$GCC" = "yes"
58 if test "$ENABLE_DEBUG" = "yes"
60 CFLAGS="-Wall -ggdb -DMEMCACHED_INTERNAL -DHAVE_DEBUG"
62 CFLAGS="-Wall -O3 -DMEMCACHED_INTERNAL "
65 CFLAGS="-Xa -xstrconst -mt -D_FORTEC_ -fast -m64"
66 LDFLAGS="-lsocket -lnsl"
73 AC_SEARCH_LIBS(getopt_long, gnugetopt)
74 AC_OUTPUT(Makefile clients/Makefile tests/Makefile docs/Makefile libmemcached/Makefile support/Makefile support/libmemcached.pc support/libmemcached.spec)