~clint-fewbar/ubuntu/natty/drizzle/beta1-fixes

« back to all changes in this revision

Viewing changes to m4/pandora_have_libboost_filesystem.m4

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2011-03-15 10:41:18 UTC
  • mfrom: (1.2.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20110315104118-eaf0hvlytjdl4zrf
Tags: 2011.03.13-0ubuntu1
* New upstream release.
* Added slave plugin.
* Removed archive, blackhole and blitzdb plugins.
* Moved location of libdrizzle headers.
* Removed drizzleadmin manpage patch.
* Add drizzle_safe_write_string to symbols.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
  AM_CONDITIONAL(HAVE_BOOST_FILESYSTEM,
29
29
    [test "x${ac_cv_libboost_filesystem}" = "xyes" -o "x${ac_cv_libboost_filesystem_mt}" = "xyes"])
30
30
  BOOST_LIBS="${BOOST_LIBS} ${LTLIBBOOST_FILESYSTEM_MT} ${LTLIBBOOST_FILESYSTEM}"
 
31
  AC_DEFINE([BOOST_FILESYSTEM_DEPRECATED], [1],
 
32
            [Use the v2 interface until we can stop using old versions])
31
33
  AC_SUBST(BOOST_LIBS) 
32
34
])
33
35
 
40
42
  PANDORA_REQUIRE_BOOST($1)
41
43
  _PANDORA_SEARCH_BOOST_FILESYSTEM($1)
42
44
  AS_IF([test "x${ac_cv_libboost_filesystem}" = "xno" -a "x${ac_cv_libboost_filesystem_mt}" = "xno"],
43
 
      AC_MSG_ERROR([Boost.Filesystem is required for ${PACKAGE}]))
 
45
      PANDORA_MSG_ERROR([Boost.Filesystem is required for ${PACKAGE}]))
44
46
])
45
47