Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2012-09-22 02:34:48 +0400
committerKenneth Heafield <github@kheafield.com>2012-09-22 02:34:48 +0400
commit15b0ae1aef6173e9e78301ea5a689cd6f3878c3c (patch)
treeae0a23ba7b9d56a78a52309b60ea2e701fc6329d /contrib
parentfb190812e400718cb1780daad86f47fa63628fd7 (diff)
Single-threaded compilation fixes
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/relent-filter/src/Main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/relent-filter/src/Main.cpp b/contrib/relent-filter/src/Main.cpp
index 07525cfc0..1f86e2cc7 100755
--- a/contrib/relent-filter/src/Main.cpp
+++ b/contrib/relent-filter/src/Main.cpp
@@ -83,7 +83,7 @@ public:
void Run() {
// report thread number
-#ifdef BOOST_HAS_PTHREADS
+#if defined(WITH_THREADS) && defined(BOOST_HAS_PTHREADS)
TRACE_ERR("Translating line " << m_lineNumber << " in thread id " << pthread_self() << std::endl);
#endif