]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
Makefiles: Missing boost library should not be fatal.
authorGary Lowell <glowell@inktank.com>
Tue, 9 Oct 2012 02:18:56 +0000 (19:18 -0700)
committerGary Lowell <glowell@inktank.com>
Mon, 15 Oct 2012 21:14:34 +0000 (14:14 -0700)
configure.ac

index 9779722816281262c81113afcb46834163ae6290..9bf808990f29d3d8fb48db5da48082dec777326f 100644 (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])