From: Gary Lowell Date: Tue, 9 Oct 2012 02:18:56 +0000 (-0700) Subject: Makefiles: Missing boost library should not be fatal. X-Git-Tag: v0.53~1^2~8 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7ea734c472b4bd34b87b8ef3352c4df65931f800;p=ceph.git Makefiles: Missing boost library should not be fatal. --- diff --git a/configure.ac b/configure.ac index 97797228162..9bf808990f2 100644 --- a/configure.ac +++ b/configure.ac @@ -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])