mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-09-01 14:35:29 +00:00
made the indentation style consistent as suggested in review.
git-svn-id: svn://bind10.isc.org/svn/bind10/branches/trac436@3863 e5f2f494-b856-4b98-b285-d166d9295462
This commit is contained in:
12
configure.ac
12
configure.ac
@@ -338,17 +338,17 @@ boost::mutex m;
|
|||||||
],
|
],
|
||||||
[ AC_MSG_RESULT(yes (without libboost_thread)) ],
|
[ AC_MSG_RESULT(yes (without libboost_thread)) ],
|
||||||
[ LIBS=" $LIBS -lboost_thread"
|
[ LIBS=" $LIBS -lboost_thread"
|
||||||
AC_TRY_LINK([
|
AC_TRY_LINK([
|
||||||
#include <boost/thread.hpp>
|
#include <boost/thread.hpp>
|
||||||
],[
|
],[
|
||||||
boost::mutex m;
|
boost::mutex m;
|
||||||
],
|
],
|
||||||
[ AC_MSG_RESULT(yes (with libboost_thread))
|
[ AC_MSG_RESULT(yes (with libboost_thread))
|
||||||
need_libboost_thread=1 ],
|
need_libboost_thread=1 ],
|
||||||
[ AC_MSG_RESULT(no)
|
[ AC_MSG_RESULT(no)
|
||||||
AC_MSG_ERROR([boost::mutex cannot be linked in this build environment.
|
AC_MSG_ERROR([boost::mutex cannot be linked in this build environment.
|
||||||
Perhaps you are using an older version of Boost that requires libboost_thread for the mutex support. You may want to check the availability of the library or to upgrade Boost.])
|
Perhaps you are using an older version of Boost that requires libboost_thread for the mutex support. You may want to check the availability of the library or to upgrade Boost.])
|
||||||
])])
|
])])
|
||||||
CPPFLAGS="$CPPFLAGS_SAVES"
|
CPPFLAGS="$CPPFLAGS_SAVES"
|
||||||
LIBS="$LIBS_SAVES"
|
LIBS="$LIBS_SAVES"
|
||||||
AM_CONDITIONAL(NEED_LIBBOOST_THREAD, test $need_libboost_thread = 1)
|
AM_CONDITIONAL(NEED_LIBBOOST_THREAD, test $need_libboost_thread = 1)
|
||||||
|
Reference in New Issue
Block a user