~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_have_libgtest.m4

  • Committer: lbieber
  • Date: 2010-10-05 22:23:12 UTC
  • mfrom: (1813.1.4 build)
  • Revision ID: lbieber@orisndriz08-20101005222312-weuq0ardk3gcryau
Merge Travis - 621861 - convert structs to classes
Merge Billy - 621331 - Replace use of stringstream with boost::lexical_cast
Merge Travis - 621861 = To change C structs to C++ classes in Drizzle
Merge Andrew - fix bug 653300 - Syntax error on inport of a SQL file produced by drizzledump

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl Copyright (C) 2010 Monty Taylor
 
2
dnl This file is free software; Monty Taylor
 
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_LIBGTEST],[
 
7
  AC_REQUIRE([AC_LIB_PREFIX])
 
8
 
 
9
  dnl --------------------------------------------------------------------
 
10
  dnl  Check for libgtest
 
11
  dnl --------------------------------------------------------------------
 
12
 
 
13
  AC_ARG_ENABLE([libgtest],
 
14
    [AS_HELP_STRING([--disable-libgtest],
 
15
      [Build with libgtest support @<:@default=on@:>@])],
 
16
    [ac_enable_libgtest="$enableval"],
 
17
    [ac_enable_libgtest="yes"])
 
18
 
 
19
  AS_IF([test "x$ac_enable_libgtest" = "xyes"],[
 
20
    AC_LANG_PUSH(C++)
 
21
    save_CXXFLAGS="${CXXFLAGS}"
 
22
    CXXFLAGS="${AM_CXXFLAGS} ${CXXFLAGS}"
 
23
    AC_LIB_HAVE_LINKFLAGS(gtest,,[
 
24
      #include <gtest/gtest.h>
 
25
TEST(pandora_test_libgtest, PandoraTest)
 
26
{
 
27
  ASSERT_EQ(1, 1);
 
28
}
 
29
    ],[])
 
30
    CXXFLAGS="${save_CXXFLAGS}"
 
31
    AC_LANG_POP()
 
32
  ],[
 
33
    ac_cv_libgtest="no"
 
34
  ])
 
35
 
 
36
  AM_CONDITIONAL(HAVE_LIBGTEST, [test "x${ac_cv_libgtest}" = "xyes"])
 
37
])
 
38
 
 
39
AC_DEFUN([PANDORA_HAVE_LIBGTEST],[
 
40
  AC_REQUIRE([_PANDORA_SEARCH_LIBGTEST])
 
41
])
 
42
 
 
43
AC_DEFUN([PANDORA_REQUIRE_LIBGTEST],[
 
44
  AC_REQUIRE([_PANDORA_SEARCH_LIBGTEST])
 
45
  AS_IF([test "x${ac_cv_libgtest}" = "xno"],
 
46
    AC_MSG_ERROR([libgtest is required for ${PACKAGE}]))
 
47
])