~mordred/ubuntu/maverick/drizzle/prerelease

« back to all changes in this revision

Viewing changes to m4/pandora_have_libboost_filesystem.m4

  • Committer: Monty Taylor
  • Date: 2010-09-26 16:09:02 UTC
  • mto: This revision was merged to the branch mainline in revision 1383.
  • Revision ID: mordred@inaugust.com-20100926160902-r30v5hegk16cjk22
Tags: upstream-2010.09.1794
ImportĀ upstreamĀ versionĀ 2010.09.1794

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
  dnl --------------------------------------------------------------------
12
12
 
13
13
  AC_LANG_PUSH(C++)
14
 
  AC_LIB_HAVE_LINKFLAGS(boost_filesystem-mt,,[
 
14
  AC_LIB_HAVE_LINKFLAGS(boost_filesystem-mt,boost_system-mt,[
15
15
    #include <boost/filesystem.hpp>
16
16
  ],[
17
17
    boost::filesystem::path my_path("some_dir/file.txt");
18
18
  ])
19
19
  AS_IF([test "x${ac_cv_libboost_filesystem_mt}" = "xno"],[
20
 
    AC_LIB_HAVE_LINKFLAGS(boost_filesystem,,[
 
20
    AC_LIB_HAVE_LINKFLAGS(boost_filesystem,boost_system,[
21
21
      #include <boost/filesystem.hpp>
22
22
    ],[
23
23
      boost::filesystem::path my_path("some_dir/file.txt");