1 | # ===========================================================================
|
---|
2 | # http://www.nongnu.org/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.
|
---|
30 |
|
---|
31 | AC_DEFUN([AX_BOOST_PROGRAM_OPTIONS],
|
---|
32 | [
|
---|
33 | AC_ARG_WITH([boost-program-options],
|
---|
34 | AS_HELP_STRING([--with-boost-program-options@<:@=special-lib@:>@],
|
---|
35 | [use the program options library from boost - it is possible to specify a certain library for the linker
|
---|
36 | e.g. --with-boost-program-options=boost_program_options-gcc-mt-1_33_1 ]),
|
---|
37 | [
|
---|
38 | if test "$withval" = "no"; then
|
---|
39 | want_boost="no"
|
---|
40 | elif test "$withval" = "yes"; then
|
---|
41 | want_boost="yes"
|
---|
42 | ax_boost_user_program_options_lib=""
|
---|
43 | else
|
---|
44 | want_boost="yes"
|
---|
45 | ax_boost_user_program_options_lib="$withval"
|
---|
46 | fi
|
---|
47 | ],
|
---|
48 | [want_boost="yes"]
|
---|
49 | )
|
---|
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*.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, exit,
|
---|
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, exit,
|
---|
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$link_program_options" != "xyes"; then
|
---|
96 | AC_MSG_ERROR([Could not link against [$ax_lib] !])
|
---|
97 | fi
|
---|
98 | fi
|
---|
99 | CPPFLAGS="$CPPFLAGS_SAVED"
|
---|
100 | LDFLAGS="$LDFLAGS_SAVED"
|
---|
101 | fi
|
---|
102 | ])
|
---|