Skip to content

Commit

Permalink
Double-check VexCL has all Boost prereqs
Browse files Browse the repository at this point in the history
Just because we have one Boost header doesn't mean we have every
header and library we need.
  • Loading branch information
roystgnr committed Mar 7, 2018
1 parent c3c1ff7 commit 8a89159
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions contrib/metaphysicl/0.2.0/m4/common/vexcl.m4
Expand Up @@ -84,11 +84,31 @@ if test "${with_vexcl}" != no ; then
found_boost=yes
BOOST_REQUIRE([1.47],[found_boost=no]) # Chrono introduced in 1.47
BOOST_CHRONO
if test "x$boost_cv_lib_chrono" != xyes; then
found_boost=no
fi
BOOST_DATE_TIME
if test "x$boost_cv_lib_date_time" != xyes; then
found_boost=no
fi
BOOST_FILESYSTEM
if test "x$boost_cv_lib_filesystem" != xyes; then
found_boost=no
fi
BOOST_SYSTEM
if test "x$boost_cv_lib_system" != xyes; then
found_boost=no
fi
BOOST_THREADS
if test "x$boost_cv_lib_threads" != xyes; then
found_boost=no
fi
# Make sure we have OpenCL support
AX_CHECK_CL([C++])
Expand Down

0 comments on commit 8a89159

Please sign in to comment.