summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Lowell <glowell@inktank.com>2012-10-08 19:18:56 -0700
committerGary Lowell <glowell@inktank.com>2012-10-15 14:14:34 -0700
commit7ea734c472b4bd34b87b8ef3352c4df65931f800 (patch)
tree9ba000a76086a9fe8f69e77c0262ecd44fb86699
parent151d9403c5fd04ea54c98e78b13a3e80201a3e9f (diff)
downloadceph-7ea734c472b4bd34b87b8ef3352c4df65931f800.tar.gz
Makefiles: Missing boost library should not be fatal.
-rw-r--r--configure.ac4
1 files changed, 3 insertions, 1 deletions
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])