mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-01-13 13:41:27 +00:00
19a62aa4b0
Add build support for a minimal boost tree which contains only filesystem, regex and system dynamic libraries plus all headers. - merge latest autoconf macros for boost from autoconf archive - patch { filesystem, regex, system } macros to detect .dylib suffixes - platform: Mac OS X 10.7.2 - boost versions: 1.47.0, 1.48.0 - compiler: gcc-4.6.2
28 lines
687 B
Plaintext
28 lines
687 B
Plaintext
# boost's headers must be present.
|
|
AX_BOOST_BASE([1.46.0])
|
|
|
|
# boost::filesystem must be present.
|
|
AX_BOOST_FILESYSTEM()
|
|
|
|
if test x"$ax_cv_boost_filesystem" != "xyes"; then
|
|
AC_MSG_ERROR(The Boost Filesystem Library was not found.)
|
|
fi
|
|
|
|
# boost::regex must be present.
|
|
AX_BOOST_REGEX()
|
|
|
|
if test x"$ax_cv_boost_regex" != "xyes"; then
|
|
AC_MSG_ERROR(The Boost Regex Library was not found.)
|
|
fi
|
|
|
|
# boost::system must be present.
|
|
AX_BOOST_SYSTEM()
|
|
|
|
if test x"$ax_cv_boost_system" != "xyes"; then
|
|
AC_MSG_ERROR(The Boost System Library was not found.)
|
|
fi
|
|
|
|
AX_BOOST_CHECK_HEADERS([boost/property_tree/ptree.hpp],,[
|
|
AC_MSG_ERROR([Boost's property tree library is required but wasn't found])
|
|
])
|