1 dnl Copyright (C) 2010 Padraig O'Sullivan
2 dnl This file is free software; Padraig O'Sullivan
3 dnl gives unlimited permission to copy and/or distribute it,
4 dnl with or without modifications, as long as this notice is preserved.
6 AC_DEFUN([_PANDORA_SEARCH_THRIFT],[
7 AC_REQUIRE([AC_LIB_PREFIX])
9 dnl --------------------------------------------------------------------
11 dnl --------------------------------------------------------------------
13 AC_ARG_ENABLE([thrift],
14 [AS_HELP_STRING([--disable-thrift],
15 [Build with thrift support @<:@default=on@:>@])],
16 [ac_enable_thrift="$enableval"],
17 [ac_enable_thrift="yes"])
19 AS_IF([test "x$ac_enable_thrift" = "xyes"],[
21 AC_LIB_HAVE_LINKFLAGS(thrift,,[
22 #include <thrift/Thrift.h>
24 apache::thrift::TOutput test_output;
31 AM_CONDITIONAL(HAVE_THRIFT, [test "x${ac_cv_thrift}" = "xyes"])
35 AC_DEFUN([PANDORA_HAVE_THRIFT],[
36 AC_REQUIRE([_PANDORA_SEARCH_THRIFT])
39 AC_DEFUN([PANDORA_REQUIRE_THRIFT],[
40 AC_REQUIRE([PANDORA_HAVE_THRIFT])
41 AS_IF([test x$ac_cv_thrift= xno],[
42 AC_MSG_ERROR([thrift required for ${PACKAGE}])