Sha256: d4d3771c1c7a9d14d400531f6a908dfdbb9892c4214d3b03f3135901cc898fc4
Contents?: true
Size: 1.2 KB
Versions: 2
Compression:
Stored size: 1.2 KB
Contents
dnl Copyright (C) 2010 Padraig O'Sullivan dnl This file is free software; Padraig O'Sullivan dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([_PANDORA_SEARCH_THRIFT],[ AC_REQUIRE([AC_LIB_PREFIX]) dnl -------------------------------------------------------------------- dnl Check for thrift dnl -------------------------------------------------------------------- AC_ARG_ENABLE([thrift], [AS_HELP_STRING([--disable-thrift], [Build with thrift support @<:@default=on@:>@])], [ac_enable_thrift="$enableval"], [ac_enable_thrift="yes"]) AS_IF([test "x$ac_enable_thrift" = "xyes"],[ AC_LANG_PUSH(C++) AC_LIB_HAVE_LINKFLAGS(thrift,,[ #include <thrift/Thrift.h> ],[ apache::thrift::TOutput test_output; ]) AC_LANG_POP() ],[ ac_cv_thrift="no" ]) AM_CONDITIONAL(HAVE_THRIFT, [test "x${ac_cv_thrift}" = "xyes"]) ]) AC_DEFUN([PANDORA_HAVE_THRIFT],[ AC_REQUIRE([_PANDORA_SEARCH_THRIFT]) ]) AC_DEFUN([PANDORA_REQUIRE_THRIFT],[ AC_REQUIRE([PANDORA_HAVE_THRIFT]) AS_IF([test x$ac_cv_thrift= xno],[ AC_MSG_ERROR([thrift required for ${PACKAGE}]) ]) ])
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
couchbase-memcached-1.2.9 | ext/libmemcached-0.50/m4/pandora_have_thrift.m4 |
couchbase-memcached-1.2.8 | ext/libmemcached-0.50/m4/pandora_have_thrift.m4 |