1 dnl Copyright (C) 2010 Andrew Hutchings
2 dnl This file is free software; Andrew Hutchings
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_BOOST_REGEX],[
7 AC_REQUIRE([AC_LIB_PREFIX])
8 AC_REQUIRE([ACX_PTHREAD])
10 dnl --------------------------------------------------------------------
11 dnl Check for boost::regex
12 dnl --------------------------------------------------------------------
14 save_CFLAGS="${CFLAGS}"
15 save_CXXFLAGS="${CXXFLAGS}"
16 CFLAGS="${PTHREAD_CFLAGS} ${CFLAGS}"
17 CXXFLAGS="${PTHREAD_CFLAGS} ${CXXFLAGS}"
20 AC_LIB_HAVE_LINKFLAGS(boost_regex-mt,,[
21 #include <boost/regex.hpp>
23 boost::regex test_regex("drizzle");
25 AS_IF([test "x${ac_cv_libboost_regex_mt}" = "xno"],[
26 AC_LIB_HAVE_LINKFLAGS(boost_regex,,[
27 #include <boost/regex.hpp>
29 boost::regex test_regex("drizzle");
33 CFLAGS="${save_CFLAGS}"
34 CXXFLAGS="${save_CXXFLAGS}"
37 AM_CONDITIONAL(HAVE_BOOST_REGEX,
38 [test "x${ac_cv_libboost_regex}" = "xyes" -o "x${ac_cv_libboost_regex_mt}" = "xyes"])
39 BOOST_LIBS="${BOOST_LIBS} ${LTLIBBOOST_REGEX_MT} ${LTLIBBOOST_REGEX}"
43 AC_DEFUN([PANDORA_HAVE_BOOST_REGEX],[
44 PANDORA_HAVE_BOOST($1)
45 _PANDORA_SEARCH_BOOST_REGEX($1)
48 AC_DEFUN([PANDORA_REQUIRE_BOOST_REGEX],[
49 PANDORA_REQUIRE_BOOST($1)
50 _PANDORA_SEARCH_BOOST_REGEX($1)
51 AS_IF([test "x${ac_cv_libboost_regex}" = "xno" -a "x${ac_cv_libboost_regex_mt}" = "xno"],
52 AC_MSG_ERROR([boost::regex is required for ${PACKAGE}]))