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"],[
20
AC_LIB_HAVE_LINKFLAGS(thrift,,[
21
#include <thrift/config.h>
29
AM_CONDITIONAL(HAVE_THRIFT, [test "x${ac_cv_thrift}" = "xyes"])
33
AC_DEFUN([PANDORA_HAVE_THRIFT],[
34
AC_REQUIRE([_PANDORA_SEARCH_THRIFT])
37
AC_DEFUN([PANDORA_REQUIRE_THRIFT],[
38
AC_REQUIRE([PANDORA_HAVE_THRIFT])
39
AS_IF([test x$ac_cv_thrift= xno],
40
AC_MSG_ERROR([thrift required for ${PACKAGE}]))