~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_have_boost.m4

  • Committer: Monty Taylor
  • Date: 2010-07-06 00:44:32 UTC
  • mfrom: (1643.1.13 build)
  • Revision ID: mordred@inaugust.com-20100706004432-843uftc92rc2497l
Merged in PBMS, translation updates, a few build fixes and a few bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
  AS_IF([test "x$ac_enable_boost" = "xyes"],[
20
20
    dnl link against libc because we're just looking for headers here
21
21
    AC_LANG_PUSH(C++)
22
 
    AC_LIB_HAVE_LINKFLAGS(c,,[
23
 
      #include <boost/pool/pool.hpp>
24
 
    ],[
25
 
      boost::pool<> test_pool(1);
26
 
    ])
 
22
    AC_LIB_HAVE_LINKFLAGS(c,,
 
23
      [#include <boost/pool/pool.hpp>],
 
24
      [boost::pool<> test_pool(1);],
 
25
      [system])
27
26
    AC_LANG_POP()
28
27
  ],[
29
28
    ac_cv_boost="no"