mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-02-17 17:24:54 +00:00
Check all required Boost libraries
This commit is contained in:
parent
f76dc0db50
commit
af67218b72
20
ac/boost.m4
20
ac/boost.m4
@ -25,3 +25,23 @@ fi
|
||||
AX_BOOST_CHECK_HEADERS([boost/rational.hpp],,[
|
||||
AC_MSG_ERROR([Boost's rational library is required but wasn't found])
|
||||
])
|
||||
|
||||
AX_BOOST_CHECK_HEADERS([boost/logic/tribool.hpp],,[
|
||||
AC_MSG_ERROR([Boost's Tribool library is required but wasn't found])
|
||||
])
|
||||
|
||||
AX_BOOST_CHECK_HEADERS([boost/lexical_cast.hpp],,[
|
||||
AC_MSG_ERROR([Boost's lexical_cast library is required but wasn't found])
|
||||
])
|
||||
|
||||
AX_BOOST_CHECK_HEADERS([boost/type_traits/is_unsigned.hpp],,[
|
||||
AC_MSG_ERROR([Boost's type traits library is required but wasn't found])
|
||||
])
|
||||
|
||||
AX_BOOST_CHECK_HEADERS([boost/range.hpp],,[
|
||||
AC_MSG_ERROR([Boost's Range library is required but wasn't found])
|
||||
])
|
||||
|
||||
AX_BOOST_CHECK_HEADERS([boost/bind.hpp],,[
|
||||
AC_MSG_ERROR([Boost's Bind library is required but wasn't found])
|
||||
])
|
||||
|
Loading…
Reference in New Issue
Block a user