ax_boost_program_options.m4 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. # ============================================================================
  2. # http://www.gnu.org/software/autoconf-archive/ax_boost_program_options.html
  3. # ============================================================================
  4. #
  5. # SYNOPSIS
  6. #
  7. # AX_BOOST_PROGRAM_OPTIONS
  8. #
  9. # DESCRIPTION
  10. #
  11. # Test for program options 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_PROGRAM_OPTIONS_LIB)
  18. #
  19. # And sets:
  20. #
  21. # HAVE_BOOST_PROGRAM_OPTIONS
  22. #
  23. # LICENSE
  24. #
  25. # Copyright (c) 2009 Thomas Porschberg <thomas@randspringer.de>
  26. #
  27. # Copying and distribution of this file, with or without modification, are
  28. # permitted in any medium without royalty provided the copyright notice
  29. # and this notice are preserved. This file is offered as-is, without any
  30. # warranty.
  31. #serial 23
  32. AC_DEFUN([AX_BOOST_PROGRAM_OPTIONS],
  33. [
  34. AC_ARG_WITH([boost-program-options],
  35. AS_HELP_STRING([--with-boost-program-options@<:@=special-lib@:>@],
  36. [use the program options library from boost - it is possible to specify a certain library for the linker
  37. e.g. --with-boost-program-options=boost_program_options-gcc-mt-1_33_1 ]),
  38. [
  39. if test "$withval" = "no"; then
  40. want_boost="no"
  41. elif test "$withval" = "yes"; then
  42. want_boost="yes"
  43. ax_boost_user_program_options_lib=""
  44. else
  45. want_boost="yes"
  46. ax_boost_user_program_options_lib="$withval"
  47. fi
  48. ],
  49. [want_boost="yes"]
  50. )
  51. if test "x$want_boost" = "xyes"; then
  52. AC_REQUIRE([AC_PROG_CC])
  53. export want_boost
  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::Program_Options library is available],
  61. ax_cv_boost_program_options,
  62. [AC_LANG_PUSH(C++)
  63. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[@%:@include <boost/program_options.hpp>
  64. ]],
  65. [[boost::program_options::options_description generic("Generic options");
  66. return 0;]])],
  67. ax_cv_boost_program_options=yes, ax_cv_boost_program_options=no)
  68. AC_LANG_POP([C++])
  69. ])
  70. if test "$ax_cv_boost_program_options" = yes; then
  71. AC_DEFINE(HAVE_BOOST_PROGRAM_OPTIONS,,[define if the Boost::PROGRAM_OPTIONS library is available])
  72. BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'`
  73. if test "x$ax_boost_user_program_options_lib" = "x"; then
  74. for libextension in `ls $BOOSTLIBDIR/libboost_program_options*.so* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_program_options.*\)\.so.*$;\1;'` `ls $BOOSTLIBDIR/libboost_program_options*.dylib* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_program_options.*\)\.dylib.*$;\1;'` `ls $BOOSTLIBDIR/libboost_program_options*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_program_options.*\)\.a.*$;\1;'` ; do
  75. ax_lib=${libextension}
  76. AC_CHECK_LIB($ax_lib, rand,
  77. [BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib"; AC_SUBST(BOOST_PROGRAM_OPTIONS_LIB) link_program_options="yes"; break],
  78. [link_program_options="no"])
  79. done
  80. if test "x$link_program_options" != "xyes"; then
  81. for libextension in `ls $BOOSTLIBDIR/boost_program_options*.dll* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_program_options.*\)\.dll.*$;\1;'` `ls $BOOSTLIBDIR/boost_program_options*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_program_options.*\)\.a.*$;\1;'` ; do
  82. ax_lib=${libextension}
  83. AC_CHECK_LIB($ax_lib, rand,
  84. [BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib"; AC_SUBST(BOOST_PROGRAM_OPTIONS_LIB) link_program_options="yes"; break],
  85. [link_program_options="no"])
  86. done
  87. fi
  88. else
  89. for ax_lib in $ax_boost_user_program_options_lib boost_program_options-$ax_boost_user_program_options_lib; do
  90. AC_CHECK_LIB($ax_lib, main,
  91. [BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib"; AC_SUBST(BOOST_PROGRAM_OPTIONS_LIB) link_program_options="yes"; break],
  92. [link_program_options="no"])
  93. done
  94. fi
  95. if test "x$ax_lib" = "x"; then
  96. AC_MSG_ERROR(Could not find a version of the library!)
  97. fi
  98. if test "x$link_program_options" != "xyes"; then
  99. AC_MSG_ERROR([Could not link against [$ax_lib] !])
  100. fi
  101. fi
  102. CPPFLAGS="$CPPFLAGS_SAVED"
  103. LDFLAGS="$LDFLAGS_SAVED"
  104. fi
  105. ])