-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathx_ac_boost.m4
45 lines (42 loc) · 1.94 KB
/
x_ac_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
AC_DEFUN([X_AC_BOOST], [
AC_MSG_CHECKING([boost installation])
AC_ARG_WITH([boost],
AS_HELP_STRING(--with-boost@<:@=boost installation path@:>@,specify the path to boost @<:@default=/usr@:>@),
[with_boost_path=$withval],
[with_boost_path="check"]
)
boost_dflt_dir="/usr"
boost_found="no"
if test "x$with_boost_path" != "xcheck"; then
#boost root given
#TODO: remove dependency on 1_37 below
#
if test -f "$with_boost_path"/include/boost/algorithm/string.hpp ; then
AC_SUBST(BOOST_INCLUDE, -I$with_boost_path/include)
AC_SUBST(LIBBOOSTDIR, [$with_boost_path/lib])
AC_SUBST(LIBBOOST,["-lboost_date_time-mt -lboost_thread-mt -lboost_filesystem-mt -lboost_program_options-mt -lboost_regex-mt -lboost_system-mt -lboost_wave-mt"])
AC_DEFINE(HAVE_BOOST_TO,1,[Define 1 if a compatible boost package is found])
boost_found="yes"
elif test -f "$with_boost_path"/include/boost-1_37/boost/algorithm/string.hpp ; then
AC_SUBST(BOOST_INCLUDE, -I$with_boost_path/include/boost-1_37)
AC_SUBST(LIBBOOSTDIR, [$with_boost_path/lib])
AC_SUBST(LIBBOOST,["-lboost_date_time-mt -lboost_thread-mt -lboost_filesystem-mt -lboost_program_options-mt -lboost_regex-mt -lboost_system-mt -lboost_wave-mt"])
AC_DEFINE(HAVE_BOOST_TO,1,[Define 1 if a compatible boost package is found])
boost_found="yes"
else
boost_found="no"
fi
else
# boost path not given
if test -f $boost_dflt_dir/include/boost/algorithm/string.hpp ; then
AC_SUBST(BOOST_INCLUDE, -I$boost_dflt_dir/include)
AC_DEFINE(HAVE_BOOST_TO,1,[Define 1 if a compatible boost package is found])
AC_SUBST(LIBBOOSTDIR, [$boost_dflt_dir/lib])
AC_SUBST(LIBBOOST,["-lboost_date_time-mt -lboost_thread-mt -lboost_filesystem-mt -lboost_program_options-mt -lboost_regex-mt -lboost_system-mt -lboost_wave-mt"])
boost_found="yes"
else
boost_found="no"
fi
fi
AC_MSG_RESULT($boost_found)
])