~ubuntu-branches/debian/stretch/aptitude/stretch

« back to all changes in this revision

Viewing changes to m4/ax_boost_iostreams.m4

  • Committer: Package Import Robot
  • Author(s): Daniel Hartwig
  • Date: 2012-02-07 09:14:11 UTC
  • mto: (4.2.8)
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: package-import@ubuntu.com-20120207091411-i0u2gy8zrhpqpkj0
Tags: upstream-0.6.5
ImportĀ upstreamĀ versionĀ 0.6.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
        AC_CACHE_CHECK(whether the Boost::IOStreams library is available,
58
58
                                           ax_cv_boost_iostreams,
59
59
        [AC_LANG_PUSH([C++])
60
 
                 AC_COMPILE_IFELSE(AC_LANG_PROGRAM([[@%:@include <boost/iostreams/filtering_stream.hpp>
 
60
                 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[@%:@include <boost/iostreams/filtering_stream.hpp>
61
61
                                                                                         @%:@include <boost/range/iterator_range.hpp>
62
62
                                                                                        ]],
63
63
                                  [[std::string  input = "Hello World!";
64
64
                                                                 namespace io = boost::iostreams;
65
65
                                                                         io::filtering_istream  in(boost::make_iterator_range(input));
66
66
                                                                         return 0;
67
 
                                   ]]),
 
67
                                   ]])],
68
68
                             ax_cv_boost_iostreams=yes, ax_cv_boost_iostreams=no)
69
69
         AC_LANG_POP([C++])
70
70
                ])