summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2012-10-20 13:22:37 (GMT)
committerRemko Tronçon <git@el-tramo.be>2012-10-20 13:22:37 (GMT)
commit698d56b68533760931ea6e1509fea73cdcf35b67 (patch)
tree71346c7f4749709ed6c9e50e9bb8ec9756dd0894
parent4dad3eb68ba3aeed6e04863a8d10e1e12aa1912e (diff)
downloadswift-698d56b68533760931ea6e1509fea73cdcf35b67.zip
swift-698d56b68533760931ea6e1509fea73cdcf35b67.tar.bz2
Fixed compilation problems against Boost >= 1.50.0.
Change-Id: I7c7c3456c9007caffda1a6b4b721c01aa47d0a6d
-rw-r--r--Swiften/Base/sleep.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Swiften/Base/sleep.cpp b/Swiften/Base/sleep.cpp
index 7161217..0f1937b 100644
--- a/Swiften/Base/sleep.cpp
+++ b/Swiften/Base/sleep.cpp
@@ -7,12 +7,17 @@
#include <Swiften/Base/sleep.h>
#include <boost/thread.hpp>
+#include <boost/version.hpp>
namespace Swift {
void sleep(unsigned int msecs) {
boost::xtime xt;
+#if BOOST_VERSION >= 105000
+ boost::xtime_get(&xt, boost::TIME_UTC_);
+#else
boost::xtime_get(&xt, boost::TIME_UTC);
+#endif
xt.nsec += msecs*1000000;
boost::thread::sleep(xt);
}