~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-05 16:10:27 UTC
  • mto: This revision was merged to the branch mainline in revision 1644.
  • Revision ID: mordred@inaugust.com-20100705161027-pkkiiduwqljrosm5
Updated pandora-build files to version 0.136

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"