forked from cole-trapnell-lab/cufflinks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
boost.m4
87 lines (79 loc) · 2.2 KB
/
boost.m4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
dnl AC_PATH_BOOST([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
dnl Test for the Boost C++ libraries of a particular version (or newer)
dnl Defines:
dnl BOOST_CXXFLAGS to the set of flags required to compiled Boost
AC_DEFUN([AC_PATH_BOOST],
[
BOOST_CXXFLAGS=""
path_given="no"
dnl Extract the path name from a --with-boost=PATH argument
AC_ARG_WITH(boost,
[ --with-boost=PATH absolute path name where the Boost C++ libraries
reside. Alternatively, the BOOST_ROOT environment variable will be used],
if test "$withval" = no ; then
path_given="no"
BOOST_CXXFLAGS=""
else
if test "$withval" != yes ; then
path_given="yes"
BOOST_CXXFLAGS="-I$withval"
BOOST_ROOT="$withval"
fi
fi
)
dnl If no path with given and there is a BOOST_ROOT environment variable,
dnl use it
if test "$path_given" = "no"; then
if test "x$BOOST_ROOT" = "x"; then
BOOST_CXXFLAGS=""
else
BOOST_CXXFLAGS="-I$BOOST_ROOT"
fi
fi
boost_min_version=ifelse([$1], ,1.20.0,$1)
AC_LANG_SAVE
AC_LANG_CPLUSPLUS
OLD_CXX_FLAGS=$CXXFLAGS
CXXFLAGS="$CXXFLAGS $BOOST_CXXFLAGS"
AC_MSG_CHECKING([for the Boost C++ libraries, version $boost_min_version or newer])
AC_TRY_COMPILE(
[
#include <boost/version.hpp>
],
[],
[
have_boost="yes"
],
[
AC_MSG_RESULT(no)
have_boost="no"
ifelse([$3], , :, [$3])
])
if test "$have_boost" = "yes"; then
WANT_BOOST_MAJOR=`expr $boost_min_version : '\([[0-9]]\+\)'`
WANT_BOOST_MINOR=`expr $boost_min_version : '[[0-9]]\+\.\([[0-9]]\+\)'`
WANT_BOOST_SUB_MINOR=`expr $boost_min_version : '[[0-9]]\+\.[[0-9]]\+\.\([[0-9]]\+\)'`
WANT_BOOST_VERSION=`expr $WANT_BOOST_MAJOR \* 100000 \+ $WANT_BOOST_MINOR \* 100 \+ $WANT_BOOST_SUB_MINOR`
AC_TRY_COMPILE(
[
#include <boost/version.hpp>
],
[
#if BOOST_VERSION >= $WANT_BOOST_VERSION
// Everything is okay
#else
# error Boost version is too old
#endif
],
[
AC_MSG_RESULT(yes)
ifelse([$2], , :, [$2])
],
[
AC_MSG_RESULT([no, version of installed Boost libraries is too old])
ifelse([$3], , :, [$3])
])
fi
CXXFLAGS=$OLD_CXXFLAGS
AC_LANG_RESTORE
])