3 # Copyright (C) 2006-2010 Brian Aker, Monty Taylor, Trond Norbye
6 # Use and distribution licensed under the BSD license. See
7 # the COPYING file in this directory for full text.
10 AC_INIT
([libmemcached
],[0.46],[http
://libmemcached.org
/])
11 AC_CONFIG_SRCDIR
([libmemcached
/memcached.c
])
12 AC_CONFIG_AUX_DIR
(config
)
14 PANDORA_CANONICAL_TARGET
(no-vc-changelog
)
16 #shared library versioning
17 MEMCACHED_UTIL_LIBRARY_VERSION
=1:0:0
18 MEMCACHED_PROTOCAL_LIBRARY_VERSION
=0:0:0
19 MEMCACHED_LIBRARY_VERSION
=6:0:0
23 # current:revision:age
25 # | | +- increment if interfaces have been added
26 # | | set to zero if interfaces have been removed or changed
27 # | +- increment if source code has changed
28 # | set to zero if current is incremented
29 # +- increment if interfaces have been added, removed or changed
30 AC_SUBST
(MEMCACHED_UTIL_LIBRARY_VERSION
)
31 AC_SUBST
(MEMCACHED_PROTOCAL_LIBRARY_VERSION
)
32 AC_SUBST
(MEMCACHED_LIBRARY_VERSION
)
35 HASHKIT_LIBRARY_VERSION
=0:0:0
36 AC_SUBST
(HASHKIT_LIBRARY_VERSION
)
42 #ifdef _SYS_FEATURE_TESTS_H
43 #error "You should include config.h as your first include file"
47 #define _WIN32_WINNT 0x0501
52 #ifdef HAVE_SYS_WAIT_H
63 #include "poll/poll.h"
66 /* To hide the platform differences between MS Windows and Unix
, I am
67 * going to use the Microsoft way and
#define the Microsoft-specific
68 * functions to the unix way. Microsoft use a separate subsystem
for sockets
,
69 * but Unix normally just use a filedescriptor on the same functions. It is
70 * a lot easier to map back to the unix way with macros than going the other
71 * way without side effect
;-)
74 #include "win32/wrappers.h"
75 #define get_socket_errno() WSAGetLastError()
77 #define INVALID_SOCKET -1
78 #define SOCKET_ERROR -1
79 #define closesocket(a) close(a)
80 #define get_socket_errno() errno
85 AC_SEARCH_LIBS
(getopt_long
, gnugetopt
)
86 AC_SEARCH_LIBS
(gethostbyname
, nsl
)
88 AC_CHECK_FUNCS
([getline
])
94 PANDORA_REQUIRE_PTHREAD
106 PANDORA_HAVE_LIBINNODB
107 PANDORA_PRINT_CALLSTACK
110 dnl The sasl functions should only be visible
if we build with sasl support
111 AS_IF
([test "x$ac_cv_sasl" = "xyes"],
112 [LIBMEMCACHED_WITH_SASL_SUPPORT
="#define LIBMEMCACHED_WITH_SASL_SUPPORT 1"])
113 AC_SUBST
(LIBMEMCACHED_WITH_SASL_SUPPORT
)
115 AC_CHECK_HEADERS
([atomic.h
])
116 AS_IF
([test "x$ac_cv_header_atomic_h" = "xyes"],[
117 AC_CHECK_FUNCS
(atomic_add_64
)
118 AC_CHECK_FUNCS
(atomic_add_32
)
119 AS_IF
([test "x$ac_cv_func_atomic_add_64" = "xyes" -a "x$ac_cv_func_atomic_add_32" = "xyes"],[
120 AC_DEFINE
([USE_ATOMIC_H
],
122 [Define to true
if you want to use functions from atomic.h
])])])
125 [AS_HELP_STRING
([--with-docs],
126 [Generate documentation
(yes|no
) @
<:@default
=yes@
:>@
])],
127 [with_docs
=$withval],
130 AS_IF
([test "$with_docs" = "yes"],
135 AM_CONDITIONAL
(BUILD_DOCS
, test "$with_docs" = "yes")
137 AC_CHECK_HEADERS_ONCE
(winsock2.h poll.h sys
/wait.h fnmatch.h
)
138 AM_CONDITIONAL
(BUILD_POLL
, test "x$ac_cv_header_poll_h" = "xno")
139 AM_CONDITIONAL
(BUILD_WIN32_WRAPPERS
, test "x$ac_cv_header_winsock2_h" = "xyes")
140 AS_IF
(test "x$ac_cv_header_winsock2_h" = "xyes",
141 [AM_LDFLAGS
="$AM_LDFLAGS -lws2_32"
142 AM_CFLAGS
="$AM_CFLAGS $NO_WERROR"
143 AM_CXXFLAGS
="$AM_CXXFLAGS $NO_WERROR"
150 libhashkit
/configure.h
151 libmemcached
/configure.h
152 support
/libmemcached.pc
153 support
/libmemcached.spec
154 support
/libmemcached-fc.spec
159 echo "Configuration summary for $PACKAGE_NAME version $VERSION"
161 echo " * Installation prefix: $prefix"
162 echo " * System type: $host_vendor-$host_os"
163 echo " * Host CPU: $host_cpu"
164 echo " * C Compiler: $CC_VERSION"
165 echo " * Assertions enabled: $ac_cv_assert"
166 echo " * Debug enabled: $with_debug"
167 echo " * Warnings as failure: $ac_cv_warnings_as_errors"
175 echo "* NOTE: You are on FreeBSD. BSD make will not work."
177 echo "* use 'gmake' To build libmemcached"
183 AS_IF
(test "$with_docs" = "no",
187 echo "* WARNING: You are not generating any documentation."
188 echo "* Please don't ship libmemcached to an end user"
189 echo "* without documentation..."