ax_boost_base.m4 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. # ===========================================================================
  2. # http://www.gnu.org/software/autoconf-archive/ax_boost_base.html
  3. # ===========================================================================
  4. #
  5. # SYNOPSIS
  6. #
  7. # AX_BOOST_BASE([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
  8. #
  9. # DESCRIPTION
  10. #
  11. # Test for the Boost C++ libraries of a particular version (or newer)
  12. #
  13. # If no path to the installed boost library is given the macro searchs
  14. # under /usr, /usr/local, /opt and /opt/local and evaluates the
  15. # $BOOST_ROOT environment variable. Further documentation is available at
  16. # <http://randspringer.de/boost/index.html>.
  17. #
  18. # This macro calls:
  19. #
  20. # AC_SUBST(BOOST_CPPFLAGS) / AC_SUBST(BOOST_LDFLAGS)
  21. #
  22. # And sets:
  23. #
  24. # HAVE_BOOST
  25. #
  26. # LICENSE
  27. #
  28. # Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de>
  29. # Copyright (c) 2009 Peter Adolphs
  30. #
  31. # Copying and distribution of this file, with or without modification, are
  32. # permitted in any medium without royalty provided the copyright notice
  33. # and this notice are preserved. This file is offered as-is, without any
  34. # warranty.
  35. #serial 26
  36. AC_DEFUN([AX_BOOST_BASE],
  37. [
  38. AC_ARG_WITH([boost],
  39. [AS_HELP_STRING([--with-boost@<:@=ARG@:>@],
  40. [use Boost library from a standard location (ARG=yes),
  41. from the specified location (ARG=<path>),
  42. or disable it (ARG=no)
  43. @<:@ARG=yes@:>@ ])],
  44. [
  45. if test "$withval" = "no"; then
  46. want_boost="no"
  47. elif test "$withval" = "yes"; then
  48. want_boost="yes"
  49. ac_boost_path=""
  50. else
  51. want_boost="yes"
  52. ac_boost_path="$withval"
  53. fi
  54. ],
  55. [want_boost="yes"])
  56. AC_ARG_WITH([boost-libdir],
  57. AS_HELP_STRING([--with-boost-libdir=LIB_DIR],
  58. [Force given directory for boost libraries. Note that this will override library path detection, so use this parameter only if default library detection fails and you know exactly where your boost libraries are located.]),
  59. [
  60. if test -d "$withval"
  61. then
  62. ac_boost_lib_path="$withval"
  63. else
  64. AC_MSG_ERROR(--with-boost-libdir expected directory name)
  65. fi
  66. ],
  67. [ac_boost_lib_path=""]
  68. )
  69. if test "x$want_boost" = "xyes"; then
  70. boost_lib_version_req=ifelse([$1], ,1.20.0,$1)
  71. boost_lib_version_req_shorten=`expr $boost_lib_version_req : '\([[0-9]]*\.[[0-9]]*\)'`
  72. boost_lib_version_req_major=`expr $boost_lib_version_req : '\([[0-9]]*\)'`
  73. boost_lib_version_req_minor=`expr $boost_lib_version_req : '[[0-9]]*\.\([[0-9]]*\)'`
  74. boost_lib_version_req_sub_minor=`expr $boost_lib_version_req : '[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\)'`
  75. if test "x$boost_lib_version_req_sub_minor" = "x" ; then
  76. boost_lib_version_req_sub_minor="0"
  77. fi
  78. WANT_BOOST_VERSION=`expr $boost_lib_version_req_major \* 100000 \+ $boost_lib_version_req_minor \* 100 \+ $boost_lib_version_req_sub_minor`
  79. AC_MSG_CHECKING(for boostlib >= $boost_lib_version_req)
  80. succeeded=no
  81. dnl On 64-bit systems check for system libraries in both lib64 and lib.
  82. dnl The former is specified by FHS, but e.g. Debian does not adhere to
  83. dnl this (as it rises problems for generic multi-arch support).
  84. dnl The last entry in the list is chosen by default when no libraries
  85. dnl are found, e.g. when only header-only libraries are installed!
  86. libsubdirs="lib"
  87. ax_arch=`uname -m`
  88. case $ax_arch in
  89. x86_64)
  90. libsubdirs="lib64 libx32 lib lib64"
  91. ;;
  92. ppc64|s390x|sparc64|aarch64|ppc64le)
  93. libsubdirs="lib64 lib lib64 ppc64le"
  94. ;;
  95. esac
  96. dnl allow for real multi-arch paths e.g. /usr/lib/x86_64-linux-gnu. Give
  97. dnl them priority over the other paths since, if libs are found there, they
  98. dnl are almost assuredly the ones desired.
  99. AC_REQUIRE([AC_CANONICAL_HOST])
  100. libsubdirs="lib/${host_cpu}-${host_os} $libsubdirs"
  101. case ${host_cpu} in
  102. i?86)
  103. libsubdirs="lib/i386-${host_os} $libsubdirs"
  104. ;;
  105. esac
  106. dnl first we check the system location for boost libraries
  107. dnl this location ist chosen if boost libraries are installed with the --layout=system option
  108. dnl or if you install boost with RPM
  109. if test "$ac_boost_path" != ""; then
  110. BOOST_CPPFLAGS="-I$ac_boost_path/include"
  111. for ac_boost_path_tmp in $libsubdirs; do
  112. if test -d "$ac_boost_path"/"$ac_boost_path_tmp" ; then
  113. BOOST_LDFLAGS="-L$ac_boost_path/$ac_boost_path_tmp"
  114. break
  115. fi
  116. done
  117. elif test "$cross_compiling" != yes; then
  118. for ac_boost_path_tmp in /usr /usr/local /opt /opt/local ; do
  119. if test -d "$ac_boost_path_tmp/include/boost" && test -r "$ac_boost_path_tmp/include/boost"; then
  120. for libsubdir in $libsubdirs ; do
  121. if ls "$ac_boost_path_tmp/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi
  122. done
  123. BOOST_LDFLAGS="-L$ac_boost_path_tmp/$libsubdir"
  124. BOOST_CPPFLAGS="-I$ac_boost_path_tmp/include"
  125. break;
  126. fi
  127. done
  128. fi
  129. dnl overwrite ld flags if we have required special directory with
  130. dnl --with-boost-libdir parameter
  131. if test "$ac_boost_lib_path" != ""; then
  132. BOOST_LDFLAGS="-L$ac_boost_lib_path"
  133. fi
  134. CPPFLAGS_SAVED="$CPPFLAGS"
  135. CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
  136. export CPPFLAGS
  137. LDFLAGS_SAVED="$LDFLAGS"
  138. LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
  139. export LDFLAGS
  140. AC_REQUIRE([AC_PROG_CXX])
  141. AC_LANG_PUSH(C++)
  142. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  143. @%:@include <boost/version.hpp>
  144. ]], [[
  145. #if BOOST_VERSION >= $WANT_BOOST_VERSION
  146. // Everything is okay
  147. #else
  148. # error Boost version is too old
  149. #endif
  150. ]])],[
  151. AC_MSG_RESULT(yes)
  152. succeeded=yes
  153. found_system=yes
  154. ],[
  155. ])
  156. AC_LANG_POP([C++])
  157. dnl if we found no boost with system layout we search for boost libraries
  158. dnl built and installed without the --layout=system option or for a staged(not installed) version
  159. if test "x$succeeded" != "xyes"; then
  160. CPPFLAGS="$CPPFLAGS_SAVED"
  161. LDFLAGS="$LDFLAGS_SAVED"
  162. BOOST_CPPFLAGS=
  163. BOOST_LDFLAGS=
  164. _version=0
  165. if test "$ac_boost_path" != ""; then
  166. if test -d "$ac_boost_path" && test -r "$ac_boost_path"; then
  167. for i in `ls -d $ac_boost_path/include/boost-* 2>/dev/null`; do
  168. _version_tmp=`echo $i | sed "s#$ac_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'`
  169. V_CHECK=`expr $_version_tmp \> $_version`
  170. if test "$V_CHECK" = "1" ; then
  171. _version=$_version_tmp
  172. fi
  173. VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'`
  174. BOOST_CPPFLAGS="-I$ac_boost_path/include/boost-$VERSION_UNDERSCORE"
  175. done
  176. dnl if nothing found search for layout used in Windows distributions
  177. if test -z "$BOOST_CPPFLAGS"; then
  178. if test -d "$ac_boost_path/boost" && test -r "$ac_boost_path/boost"; then
  179. BOOST_CPPFLAGS="-I$ac_boost_path"
  180. fi
  181. fi
  182. fi
  183. else
  184. if test "$cross_compiling" != yes; then
  185. for ac_boost_path in /usr /usr/local /opt /opt/local ; do
  186. if test -d "$ac_boost_path" && test -r "$ac_boost_path"; then
  187. for i in `ls -d $ac_boost_path/include/boost-* 2>/dev/null`; do
  188. _version_tmp=`echo $i | sed "s#$ac_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'`
  189. V_CHECK=`expr $_version_tmp \> $_version`
  190. if test "$V_CHECK" = "1" ; then
  191. _version=$_version_tmp
  192. best_path=$ac_boost_path
  193. fi
  194. done
  195. fi
  196. done
  197. VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'`
  198. BOOST_CPPFLAGS="-I$best_path/include/boost-$VERSION_UNDERSCORE"
  199. if test "$ac_boost_lib_path" = ""; then
  200. for libsubdir in $libsubdirs ; do
  201. if ls "$best_path/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi
  202. done
  203. BOOST_LDFLAGS="-L$best_path/$libsubdir"
  204. fi
  205. fi
  206. if test "x$BOOST_ROOT" != "x"; then
  207. for libsubdir in $libsubdirs ; do
  208. if ls "$BOOST_ROOT/stage/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi
  209. done
  210. if test -d "$BOOST_ROOT" && test -r "$BOOST_ROOT" && test -d "$BOOST_ROOT/stage/$libsubdir" && test -r "$BOOST_ROOT/stage/$libsubdir"; then
  211. version_dir=`expr //$BOOST_ROOT : '.*/\(.*\)'`
  212. stage_version=`echo $version_dir | sed 's/boost_//' | sed 's/_/./g'`
  213. stage_version_shorten=`expr $stage_version : '\([[0-9]]*\.[[0-9]]*\)'`
  214. V_CHECK=`expr $stage_version_shorten \>\= $_version`
  215. if test "$V_CHECK" = "1" -a "$ac_boost_lib_path" = "" ; then
  216. AC_MSG_NOTICE(We will use a staged boost library from $BOOST_ROOT)
  217. BOOST_CPPFLAGS="-I$BOOST_ROOT"
  218. BOOST_LDFLAGS="-L$BOOST_ROOT/stage/$libsubdir"
  219. fi
  220. fi
  221. fi
  222. fi
  223. CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
  224. export CPPFLAGS
  225. LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
  226. export LDFLAGS
  227. AC_LANG_PUSH(C++)
  228. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  229. @%:@include <boost/version.hpp>
  230. ]], [[
  231. #if BOOST_VERSION >= $WANT_BOOST_VERSION
  232. // Everything is okay
  233. #else
  234. # error Boost version is too old
  235. #endif
  236. ]])],[
  237. AC_MSG_RESULT(yes)
  238. succeeded=yes
  239. found_system=yes
  240. ],[
  241. ])
  242. AC_LANG_POP([C++])
  243. fi
  244. if test "$succeeded" != "yes" ; then
  245. if test "$_version" = "0" ; then
  246. AC_MSG_NOTICE([[We could not detect the boost libraries (version $boost_lib_version_req_shorten or higher). If you have a staged boost library (still not installed) please specify \$BOOST_ROOT in your environment and do not give a PATH to --with-boost option. If you are sure you have boost installed, then check your version number looking in <boost/version.hpp>. See http://randspringer.de/boost for more documentation.]])
  247. else
  248. AC_MSG_NOTICE([Your boost libraries seems to old (version $_version).])
  249. fi
  250. # execute ACTION-IF-NOT-FOUND (if present):
  251. ifelse([$3], , :, [$3])
  252. else
  253. AC_SUBST(BOOST_CPPFLAGS)
  254. AC_SUBST(BOOST_LDFLAGS)
  255. AC_DEFINE(HAVE_BOOST,,[define if the Boost library is available])
  256. # execute ACTION-IF-FOUND (if present):
  257. ifelse([$2], , :, [$2])
  258. fi
  259. CPPFLAGS="$CPPFLAGS_SAVED"
  260. LDFLAGS="$LDFLAGS_SAVED"
  261. fi
  262. ])