-
Notifications
You must be signed in to change notification settings - Fork 90
/
configure.ac
79 lines (58 loc) · 1.87 KB
/
configure.ac
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
AC_INIT(src/mash/mash.cpp)
AC_ARG_WITH(capnp, [ --with-capnp=<path/to/capnp> Cap'n Proto install dir (default: /usr/local/)])
if test "$with_capnp" == ""
then
with_capnp=/usr/local/
fi
AC_ARG_WITH(gsl, [ --with-gsl=<path/to/gsl> GNU Scientific Library install dir (default: /usr/local/)])
AC_ARG_ENABLE(static-gsl, [ --enable-static-gsl])
if test "$with_gsl" == ""
then
with_gsl=/usr/local/
fi
AC_ARG_WITH(boost, [ --with-boost=<path/to/boost> Boost Library install dir (will be used instead of GSL)])
AC_LANG(C++)
AC_CHECK_HEADER(zlib.h, [result=1], [result=0])
if test $result == 0
then
AC_MSG_ERROR([Zlib not found.])
fi
AC_CHECK_PROG(capnpCheck, capnp, "yes", "no", $with_capnp/bin)
if test "$capnpCheck" != "yes"
then
AC_MSG_ERROR([Cap'n Proto compiler (capnp) not found.])
fi
CPPFLAGS="-I$with_capnp/include -std=c++14"
AC_CHECK_HEADER(capnp/common.h, [result=1], [result=0])
if test $result == 0
then
AC_MSG_ERROR([Cap'n Proto headers not found.])
fi
if test "$with_boost" == ""
then
CPPFLAGS="-I$with_gsl/include"
AC_CHECK_HEADER(gsl/gsl_cdf.h, [result=1], [result=0])
if test $result == 0
then
AC_MSG_ERROR([GNU Scientific Library headers not found.])
fi
if test "x$enable_static_gsl" == "xyes"
then
AC_SUBST(mathlib, "$with_gsl/lib/libgsl.a $with_gsl/lib/libgslcblas.a")
else
AC_SUBST(mathlib, "-L$with_gsl/lib -lgsl -lgslcblas")
fi
AC_SUBST(mathinc, $with_gsl/include)
else
CPPFLAGS="-I$with_boost/include"
AC_CHECK_HEADER(boost/math/distributions/binomial.hpp, [result=1], [result=0])
if test $result == 0
then
AC_MSG_ERROR([Boost Library headers not found.])
fi
AC_SUBST(mathlib, $with_boost/lib/libboost_math_c99.a)
AC_SUBST(mathinc, $with_boost/include)
AC_SUBST(amcppflags, "-DUSE_BOOST")
fi
AC_SUBST(capnp, $with_capnp)
AC_OUTPUT(Makefile)