~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_have_thrift.m4

  • Committer: Monty Taylor
  • Date: 2010-03-23 08:22:38 UTC
  • mto: This revision was merged to the branch mainline in revision 1398.
  • Revision ID: mordred@inaugust.com-20100323082238-q8idt9pxq7gdvo9m
Wow. Actually check this in. :)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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.
 
5
 
 
6
AC_DEFUN([_PANDORA_SEARCH_THRIFT],[
 
7
  AC_REQUIRE([AC_LIB_PREFIX])
 
8
 
 
9
  dnl --------------------------------------------------------------------
 
10
  dnl  Check for thrift
 
11
  dnl --------------------------------------------------------------------
 
12
 
 
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"])
 
18
 
 
19
  AS_IF([test "x$ac_enable_thrift" = "xyes"],[
 
20
    AC_LANG_PUSH(C++)
 
21
    AC_LIB_HAVE_LINKFLAGS(thrift,,[
 
22
      #include <thrift/Thrift.h>
 
23
    ],[
 
24
      apache::thrift::TOutput test_output;
 
25
    ])
 
26
    AC_LANG_POP()
 
27
  ],[
 
28
    ac_cv_thrift="no"
 
29
  ])
 
30
  
 
31
  AM_CONDITIONAL(HAVE_THRIFT, [test "x${ac_cv_thrift}" = "xyes"])
 
32
  
 
33
])
 
34
 
 
35
AC_DEFUN([PANDORA_HAVE_THRIFT],[
 
36
  AC_REQUIRE([_PANDORA_SEARCH_THRIFT])
 
37
])
 
38
 
 
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}])
 
43
  ])
 
44
])
 
45