Remove need for build file.
[awesomized/libmemcached] / configure.ac
1 #!/usr/bin/env bash
2 # LibmemcacheD
3 # Copyright (C) 2011 Data Differential, http://datadifferential.com/
4 # Copyright (C) 2006-2010 Brian Aker, Monty Taylor, Trond Norbye
5 # All rights reserved.
6 #
7 # Use and distribution licensed under the BSD license. See
8 # the COPYING file in this directory for full text.
9
10 AC_PREREQ(2.59)
11 AC_INIT([libmemcached],[0.48],[http://libmemcached.org/])
12 AC_CONFIG_SRCDIR([libmemcached/memcached.c])
13 AC_CONFIG_AUX_DIR(config)
14
15 PANDORA_CANONICAL_TARGET(no-vc-changelog)
16 AC_CHECK_PROGS([YACC], ['bison'], [:])
17 AC_CHECK_PROGS([LEX], ['flex'], [:])
18
19 #shared library versioning
20 MEMCACHED_UTIL_LIBRARY_VERSION=1:0:0
21 MEMCACHED_PROTOCAL_LIBRARY_VERSION=0:0:0
22 MEMCACHED_LIBRARY_VERSION=6:0:0
23 # | | |
24 # +------+ | +---+
25 # | | |
26 # current:revision:age
27 # | | |
28 # | | +- increment if interfaces have been added
29 # | | set to zero if interfaces have been removed or changed
30 # | +- increment if source code has changed
31 # | set to zero if current is incremented
32 # +- increment if interfaces have been added, removed or changed
33 AC_SUBST(MEMCACHED_UTIL_LIBRARY_VERSION)
34 AC_SUBST(MEMCACHED_PROTOCAL_LIBRARY_VERSION)
35 AC_SUBST(MEMCACHED_LIBRARY_VERSION)
36
37
38 HASHKIT_LIBRARY_VERSION=1:0:0
39 AC_SUBST(HASHKIT_LIBRARY_VERSION)
40
41 AH_TOP([
42 #ifndef CONFIG_H
43 #define CONFIG_H
44
45 #ifdef _SYS_FEATURE_TESTS_H
46 #error "You should include config.h as your first include file"
47 #endif
48
49 #ifdef WIN32
50 #define _WIN32_WINNT 0x0501
51 #endif
52 ])
53
54 AH_BOTTOM([
55 #ifdef HAVE_SYS_WAIT_H
56 #include <sys/wait.h>
57 #endif
58
59 #ifdef HAVE_FNMATCH_H
60 #include <fnmatch.h>
61 #endif
62
63 #ifdef HAVE_POLL_H
64 #include <poll.h>
65 #else
66 #include "poll/poll.h"
67 #endif
68
69 /* To hide the platform differences between MS Windows and Unix, I am
70 * going to use the Microsoft way and #define the Microsoft-specific
71 * functions to the unix way. Microsoft use a separate subsystem for sockets,
72 * but Unix normally just use a filedescriptor on the same functions. It is
73 * a lot easier to map back to the unix way with macros than going the other
74 * way without side effect ;-)
75 */
76 #ifdef WIN32
77 #include "win32/wrappers.h"
78 #define get_socket_errno() WSAGetLastError()
79 #else
80 #define INVALID_SOCKET -1
81 #define SOCKET_ERROR -1
82 #define closesocket(a) close(a)
83 #define get_socket_errno() errno
84 #endif
85
86 #ifndef HAVE_MSG_NOSIGNAL
87 #define MSG_NOSIGNAL 0
88 #endif
89
90 #ifndef HAVE_MSG_DONTWAIT
91 #define MSG_DONTWAIT 0
92 #endif
93
94 #ifndef HAVE_MSG_MORE
95 #define MSG_MORE 0
96 #endif
97
98 #endif
99 ])
100
101 AC_SEARCH_LIBS(getopt_long, gnugetopt)
102 AC_SEARCH_LIBS(gethostbyname, nsl)
103
104 AC_CHECK_FUNCS([getline])
105
106 PANDORA_HAVE_LIBGTEST
107 PANDORA_HAVE_LIBEVENT
108 my_saved_libs="$LIBS"
109 LIBS=
110 PANDORA_REQUIRE_PTHREAD
111 LIBS="$my_saved_libs"
112
113 dnl Specialty checks
114 DETECT_BYTEORDER
115 ENABLE_UTILLIB
116 SETSOCKOPT_SANITY
117 ENABLE_HSIEH_HASH
118 ENABLE_MURMUR_HASH
119 PROTOCOL_BINARY_TEST
120 WITH_MEMCACHED
121 ENABLE_DEPRECATED
122 PANDORA_HAVE_LIBINNODB
123 PANDORA_PRINT_CALLSTACK
124 PANDORA_HAVE_SASL
125
126 dnl The sasl functions should only be visible if we build with sasl support
127 AS_IF([test "x$ac_cv_sasl" = "xyes"],
128 [LIBMEMCACHED_WITH_SASL_SUPPORT="#define LIBMEMCACHED_WITH_SASL_SUPPORT 1"])
129 AC_SUBST(LIBMEMCACHED_WITH_SASL_SUPPORT)
130
131 AC_CHECK_HEADERS([atomic.h])
132 AS_IF([test "x$ac_cv_header_atomic_h" = "xyes"],[
133 AC_CHECK_FUNCS(atomic_add_64)
134 AC_CHECK_FUNCS(atomic_add_32)
135 AS_IF([test "x$ac_cv_func_atomic_add_64" = "xyes" -a "x$ac_cv_func_atomic_add_32" = "xyes"],[
136 AC_DEFINE([USE_ATOMIC_H],
137 [1],
138 [Define to true if you want to use functions from atomic.h])])])
139
140 AC_ARG_WITH([docs],
141 [AS_HELP_STRING([--with-docs],
142 [Generate documentation (yes|no) @<:@default=yes@:>@])],
143 [with_docs=$withval],
144 [with_docs=yes])
145
146 AS_IF([test "$with_docs" = "yes"],
147 [
148 REQUIRE_POD2MAN
149 REQUIRE_PODCHECKER
150 ])
151 AM_CONDITIONAL(BUILD_DOCS, test "$with_docs" = "yes")
152
153 AC_CHECK_HEADERS_ONCE(winsock2.h poll.h sys/wait.h fnmatch.h)
154 AM_CONDITIONAL(BUILD_POLL, test "x$ac_cv_header_poll_h" = "xno")
155 AM_CONDITIONAL(BUILD_WIN32_WRAPPERS, test "x$ac_cv_header_winsock2_h" = "xyes")
156 AS_IF(test "x$ac_cv_header_winsock2_h" = "xyes",
157 [AM_LDFLAGS="$AM_LDFLAGS -lws2_32"
158 AM_CFLAGS="$AM_CFLAGS $NO_WERROR"
159 AM_CXXFLAGS="$AM_CXXFLAGS $NO_WERROR"
160 ])
161 DETECT_EAGAIN
162 SOCKET_SEND_FLAGS
163
164 AC_CONFIG_FILES([
165 Makefile
166 docs/Makefile
167 libhashkit/configure.h
168 libmemcached/configure.h
169 support/libmemcached.pc
170 support/libmemcached.spec
171 support/libmemcached-fc.spec
172 ])
173 AC_OUTPUT
174
175 echo "---"
176 echo "Configuration summary for $PACKAGE_NAME version $VERSION"
177 echo ""
178 echo " * Installation prefix: $prefix"
179 echo " * System type: $host_vendor-$host_os"
180 echo " * Host CPU: $host_cpu"
181 echo " * C Compiler: $CC_VERSION"
182 echo " * Assertions enabled: $ac_cv_assert"
183 echo " * Debug enabled: $with_debug"
184 echo " * Warnings as failure: $ac_cv_warnings_as_errors"
185 echo ""
186 echo "---"
187
188 case "$host_os" in
189 *freebsd*)
190 echo "*****"
191 echo "*"
192 echo "* NOTE: You are on FreeBSD. BSD make will not work."
193 echo "*"
194 echo "* use 'gmake' To build libmemcached"
195 echo "*"
196 echo "*****"
197 ;;
198 esac
199
200 AS_IF(test "$with_docs" = "no",
201 [
202 echo "*****"
203 echo "*"
204 echo "* WARNING: You are not generating any documentation."
205 echo "* Please don't ship libmemcached to an end user"
206 echo "* without documentation..."
207 echo "*"
208 echo "*****"
209 ])