Makefiles: Missing boost library should not be fatal.

This commit is contained in:
Gary Lowell 2012-10-08 19:18:56 -07:00
parent 151d9403c5
commit 7ea734c472

View File

@ -361,8 +361,10 @@ AC_CHECK_HEADER([boost/random/discrete_distribution.hpp],
AC_CHECK_HEADER([boost/statechart/state.hpp], [],
AC_MSG_FAILURE(["Can't find boost statechart headers; need 1.34 or later"]))
# If we have the boost system library installed, then we may want to link
# with it.
AC_CHECK_LIB(boost_system-mt, main, [],
AC_MSG_ERROR(["Boost system library not found."]))
AC_MSG_NOTICE(["Boost system library not found."]))
AC_LANG([C])