X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=configure.ac;h=f8c5af98b17b93bc9765250528431334168b0c4b;hb=44a85942c384a3283493bca68791d2d7de2eb6eb;hp=aa051dd247c7667ed3cd88c5709ce1eca3ad33f7;hpb=1cb7ba391e84882407f3268dbae0a945214be12e;p=m6w6%2Flibmemcached diff --git a/configure.ac b/configure.ac index aa051dd2..f8c5af98 100644 --- a/configure.ac +++ b/configure.ac @@ -1,3 +1,4 @@ +#!/usr/bin/env bash # libmemcached # Copyright (C) 2008 Brian Aker, Monty Taylor # All rights reserved. @@ -6,7 +7,7 @@ # the COPYING file in this directory for full text. AC_PREREQ(2.59) -AC_INIT([libmemcached],[0.35],[http://tangent.org/552/libmemcached.html]) +AC_INIT([libmemcached],[0.41],[http://libmemcached.org/]) AC_CONFIG_SRCDIR([libmemcached/memcached.c]) AC_CONFIG_AUX_DIR(config) AM_CONFIG_HEADER([config.h]) @@ -14,37 +15,66 @@ AC_CONFIG_MACRO_DIR([m4]) PANDORA_CANONICAL_TARGET +#shared library versioning +MEMCACHED_LIBRARY_VERSION=5:1:1 +# | | | +# +------+ | +---+ +# | | | +# current:revision:age +# | | | +# | | +- increment if interfaces have been added +# | | set to zero if interfaces have been removed or changed +# | +- increment if source code has changed +# | set to zero if current is incremented +# +- increment if interfaces have been added, removed or changed +AC_SUBST(MEMCACHED_LIBRARY_VERSION) + + +HASHKIT_LIBRARY_VERSION=0:0:0 +AC_SUBST(HASHKIT_LIBRARY_VERSION) + AC_SEARCH_LIBS(getopt_long, gnugetopt) AC_SEARCH_LIBS(gethostbyname, nsl) -AC_CHECK_FUNCS_ONCE([getline]) - +AC_CHECK_FUNCS([getline]) PANDORA_HAVE_LIBEVENT PANDORA_REQUIRE_PTHREAD PANDORA_CXX_DEMANGLE - dnl Specialty checks DETECT_BYTEORDER ENABLE_UTILLIB SETSOCKOPT_SANITY ENABLE_HSIEH_HASH REQUIRE_POD2MAN +REQUIRE_PODCHECKER PROTOCOL_BINARY_TEST WITH_MEMCACHED ENABLE_DEPRECATED PANDORA_HAVE_LIBINNODB +PANDORA_PRINT_CALLSTACK +PANDORA_HAVE_SASL + +dnl The sasl functions should only be visible if we build with sasl support +AS_IF([test "x$ac_cv_sasl" = "xyes"], + [LIBMEMCACHED_WITH_SASL_SUPPORT="#define LIBMEMCACHED_WITH_SASL_SUPPORT 1"]) +AC_SUBST(LIBMEMCACHED_WITH_SASL_SUPPORT) + +AC_CHECK_HEADERS([atomic.h]) +AS_IF([test "x$ac_cv_header_atomic_h" = "xyes"],[ + AC_CHECK_FUNCS(atomic_add_64) + AC_CHECK_FUNCS(atomic_add_32) + AS_IF([test "x$ac_cv_func_atomic_add_64" = "xyes" -a "x$ac_cv_func_atomic_add_32" = "xyes"],[ + AC_DEFINE([USE_ATOMIC_H], + [1], + [Define to true if you want to use functions from atomic.h])])]) AC_CONFIG_FILES([ Makefile - clients/Makefile - tests/Makefile docs/Makefile - example/Makefile - libmemcached/Makefile - libmemcached/memcached_configure.h - support/Makefile + libhashkit/configure.h + libmemcached/configure.h support/libmemcached.pc support/libmemcached.spec support/libmemcached-fc.spec