Added tag 0.28 for changeset db4cc63f60ac
[awesomized/libmemcached] / configure.ac
1 AC_INIT(clients/memcat.c)
2 AC_CONFIG_AUX_DIR(config)
3 AM_CONFIG_HEADER(libmemcached/libmemcached_config.h)
4 AC_CANONICAL_SYSTEM
5
6 MEMCACHED_LIBRARY_NAME=libmemcached
7
8 #release versioning
9 MEMCACHED_MAJOR_VERSION=0
10 MEMCACHED_MINOR_VERSION=28
11 MEMCACHED_MICRO_VERSION=0
12
13 #API version
14 MEMCACHED_API_VERSION=1.0
15 AC_SUBST(MEMCACHED_API_VERSION)
16
17 #shared library versioning
18 MEMCACHED_LIBRARY_VERSION=2:0:0
19 # | | |
20 # +------+ | +---+
21 # | | |
22 # current:revision:age
23 # | | |
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
29
30 AC_SUBST(MEMCACHED_LIBRARY_VERSION)
31
32 PACKAGE=$MEMCACHED_LIBRARY_NAME
33 AC_SUBST(MEMCACHED_LIBRARY_NAME)
34
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)
39
40 VERSION=$MEMCACHED_RELEASE
41
42 AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
43
44 AC_PROG_CC
45 AC_PROG_CC_C99
46 AC_PROG_CXX
47 AC_PROG_LIBTOOL
48 AM_SANITY_CHECK
49 LIBTOOL="$LIBTOOL --preserve-dup-deps"
50 AC_SUBST(LIBTOOL)dnl
51
52 AC_C_CONST
53 AC_HEADER_TIME
54 AC_TYPE_SIZE_T
55 AC_SEARCH_LIBS(getopt_long, gnugetopt)
56 AC_SEARCH_LIBS(socket, socket)
57 AC_SEARCH_LIBS(gethostbyname, nsl)
58
59 sinclude(config/pod2man.m4)
60 sinclude(config/debug.m4)
61 sinclude(config/dtrace.m4)
62 sinclude(config/byteorder.m4)
63 sinclude(config/64bit.m4)
64 sinclude(config/protocol_binary.m4)
65 sinclude(config/memcached.m4)
66 sinclude(config/setsockopt.m4)
67
68 # We only support GCC and Sun's forte at the moment
69 if test "$GCC" = "yes"
70 then
71 #CFLAGS="-W -std=iso9899:1999 -Wall -Wextra -Wstrict-aliasing -pedantic -Wundef -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -O3 $CFLAGS"
72 CFLAGS="-Wall -O3 $CFLAGS"
73
74 if test "$ENABLE_DEBUG" = "yes"
75 then
76 CFLAGS="$CFLAGS -ggdb -DHAVE_DEBUG"
77 fi
78 else
79 CFLAGS="-Xa -xstrconst -mt -D_FORTEC_ -errfmt=error -errwarn -errshort=tags $CFLAGS"
80 CXXFLAGS="+w +w2 -xwe -mt -D_FORTEC_ $CXXFLAGS"
81 if test "$ENABLE_DEBUG" = "yes"
82 then
83 CFLAGS="$CFLAGS -DHAVE_DEBUG"
84 CXXFLAGS="$CXXFLAGS -DHAVE_DEBUG"
85 fi
86 fi
87
88 LDFLAGS="-lm"
89
90 AC_OUTPUT(Makefile clients/Makefile tests/Makefile docs/Makefile libmemcached/Makefile support/Makefile support/libmemcached.pc support/libmemcached.spec)