Description: pandora_have_libboostthread failed The autoconf macro fails to detect boost::thread, as boost:system needs to be also linked in the testcase Author: Tobias Frost (based on a patch by David Arnold Bug: https://bugs.launchpad.net/drizzle/+bug/1132648 Last-Update: 2013-08-21 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/m4/pandora_have_libboost_thread.m4 +++ b/m4/pandora_have_libboost_thread.m4 @@ -17,13 +17,13 @@ CXXFLAGS="${PTHREAD_CFLAGS} ${CXXFLAGS}" AC_LANG_PUSH(C++) - AC_LIB_HAVE_LINKFLAGS(boost_thread-mt,,[ + AC_LIB_HAVE_LINKFLAGS(boost_thread-mt,boost_system-mt,[ #include ],[ boost::thread id; ]) AS_IF([test "x${ac_cv_libboost_thread_mt}" = "xno"],[ - AC_LIB_HAVE_LINKFLAGS(boost_thread,,[ + AC_LIB_HAVE_LINKFLAGS(boost_thread,boost_system,[ #include ],[ boost::thread id;