Skip to content
Snippets Groups Projects
Commit d0410ca4 authored by Martin Nolte's avatar Martin Nolte
Browse files

use proper quoting to silence an autoconf warning on missing AC_LANG_SOURCE

[[Imported from SVN: r6499]]
parent 31e94f28
Branches
Tags
No related merge requests found
......@@ -13,12 +13,12 @@ AC_DEFUN([DUNE_BOOST_FUSION],
AC_CACHE_CHECK(whether the Boost::FUSION library is available,
dune_cv_boost_fusion,
[AC_LANG_PUSH([C++])
AC_COMPILE_IFELSE(AC_LANG_PROGRAM([[ @%:@include <boost/fusion/container.hpp>
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ @%:@include <boost/fusion/container.hpp>
]],
[[
boost::fusion::vector<int,char,double> v;
return 0;
]]),
]])],
dune_cv_boost_fusion=yes, dune_cv_boost_fusion=no)
AC_LANG_POP([C++])])
if test "x$dune_cv_boost_fusion" = "xyes"; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment