Collection of DPF-based plugins for packaging
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123 lines
3.9KB

  1. # ===========================================================================
  2. # https://www.gnu.org/software/autoconf-archive/ax_boost_context.html
  3. # ===========================================================================
  4. #
  5. # SYNOPSIS
  6. #
  7. # AX_BOOST_CONTEXT
  8. #
  9. # DESCRIPTION
  10. #
  11. # Test for Context library from the Boost C++ libraries. The macro
  12. # requires a preceding call to AX_BOOST_BASE. Further documentation is
  13. # available at <http://randspringer.de/boost/index.html>.
  14. #
  15. # This macro calls:
  16. #
  17. # AC_SUBST(BOOST_CONTEXT_LIB)
  18. #
  19. # And sets:
  20. #
  21. # HAVE_BOOST_CONTEXT
  22. #
  23. # LICENSE
  24. #
  25. # Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de>
  26. # Copyright (c) 2008 Michael Tindal
  27. # Copyright (c) 2013 Daniel Casimiro <dan.casimiro@gmail.com>
  28. #
  29. # Copying and distribution of this file, with or without modification, are
  30. # permitted in any medium without royalty provided the copyright notice
  31. # and this notice are preserved. This file is offered as-is, without any
  32. # warranty.
  33. #serial 2
  34. AC_DEFUN([AX_BOOST_CONTEXT],
  35. [
  36. AC_ARG_WITH([boost-context],
  37. AS_HELP_STRING([--with-boost-context@<:@=special-lib@:>@],
  38. [use the Context library from boost - it is possible to specify a certain library for the linker
  39. e.g. --with-boost-context=boost_context-gcc-mt ]), [
  40. if test "$withval" = "no"; then
  41. want_boost="no"
  42. elif test "$withval" = "yes"; then
  43. want_boost="yes"
  44. ax_boost_user_context_lib=""
  45. else
  46. want_boost="yes"
  47. ax_boost_user_context_lib="$withval"
  48. fi
  49. ], [want_boost="yes"]
  50. )
  51. if test "x$want_boost" = "xyes"; then
  52. AC_REQUIRE([AC_PROG_CC])
  53. AC_REQUIRE([AC_CANONICAL_BUILD])
  54. CPPFLAGS_SAVED="$CPPFLAGS"
  55. CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
  56. export CPPFLAGS
  57. LDFLAGS_SAVED="$LDFLAGS"
  58. LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
  59. export LDFLAGS
  60. AC_CACHE_CHECK(whether the Boost::Context library is available,
  61. ax_cv_boost_context,
  62. [AC_LANG_PUSH([C++])
  63. CXXFLAGS_SAVE=$CXXFLAGS
  64. AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
  65. [[@%:@include <boost/context/all.hpp>]],
  66. [[boost::context::fcontext_t* fc = boost::context::make_fcontext(0, 0, 0);]])],
  67. ax_cv_boost_context=yes, ax_cv_boost_context=no)
  68. CXXFLAGS=$CXXFLAGS_SAVE
  69. AC_LANG_POP([C++])
  70. ])
  71. if test "x$ax_cv_boost_context" = "xyes"; then
  72. AC_SUBST(BOOST_CPPFLAGS)
  73. AC_DEFINE(HAVE_BOOST_CONTEXT,,[define if the Boost::Context library is available])
  74. BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'`
  75. if test "x$ax_boost_user_context_lib" = "x"; then
  76. for libextension in `ls $BOOSTLIBDIR/libboost_context*.so* $BOOSTLIBDIR/libboost_context*.dylib* $BOOSTLIBDIR/libboost_context*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_context.*\)\.so.*$;\1;' -e 's;^lib\(boost_context.*\)\.dylib.*$;\1;' -e 's;^lib\(boost_context.*\)\.a.*$;\1;'` ; do
  77. ax_lib=${libextension}
  78. AC_CHECK_LIB($ax_lib, exit,
  79. [BOOST_CONTEXT_LIB="-l$ax_lib"; AC_SUBST(BOOST_CONTEXT_LIB) link_context="yes"; break],
  80. [link_context="no"])
  81. done
  82. if test "x$link_context" != "xyes"; then
  83. for libextension in `ls $BOOSTLIBDIR/boost_context*.dll* $BOOSTLIBDIR/boost_context*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_context.*\)\.dll.*$;\1;' -e 's;^\(boost_context.*\)\.a.*$;\1;'` ; do
  84. ax_lib=${libextension}
  85. AC_CHECK_LIB($ax_lib, exit,
  86. [BOOST_CONTEXT_LIB="-l$ax_lib"; AC_SUBST(BOOST_CONTEXT_LIB) link_context="yes"; break],
  87. [link_context="no"])
  88. done
  89. fi
  90. else
  91. for ax_lib in $ax_boost_user_context_lib boost_context-$ax_boost_user_context_lib; do
  92. AC_CHECK_LIB($ax_lib, exit,
  93. [BOOST_CONTEXT_LIB="-l$ax_lib"; AC_SUBST(BOOST_CONTEXT_LIB) link_context="yes"; break],
  94. [link_context="no"])
  95. done
  96. fi
  97. if test "x$ax_lib" = "x"; then
  98. AC_MSG_ERROR(Could not find a version of the library!)
  99. fi
  100. if test "x$link_context" = "xno"; then
  101. AC_MSG_ERROR(Could not link against $ax_lib !)
  102. fi
  103. fi
  104. CPPFLAGS="$CPPFLAGS_SAVED"
  105. LDFLAGS="$LDFLAGS_SAVED"
  106. fi
  107. ])