summaryrefslogtreecommitdiffstats
path: root/indexlib/boost-compat/config/requires_threads.h
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-12-31 11:24:44 +0900
committerMichele Calgaro <[email protected]>2024-12-31 20:40:18 +0900
commitcf77371af416089034949edd8aed088432a9adfb (patch)
tree1fb149ddf0a9151f789768e6dfa043e83dd61c18 /indexlib/boost-compat/config/requires_threads.h
parentd44d826885633ddfe051437358a421ecb0bf0486 (diff)
downloadtdepim-cf77371af416089034949edd8aed088432a9adfb.tar.gz
tdepim-cf77371af416089034949edd8aed088432a9adfb.zip
Remove support for Metrowerks compiler
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'indexlib/boost-compat/config/requires_threads.h')
-rw-r--r--indexlib/boost-compat/config/requires_threads.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/indexlib/boost-compat/config/requires_threads.h b/indexlib/boost-compat/config/requires_threads.h
index cc5b049c5..a8236b1f7 100644
--- a/indexlib/boost-compat/config/requires_threads.h
+++ b/indexlib/boost-compat/config/requires_threads.h
@@ -54,10 +54,6 @@
// Compaq Tru64 Unix cxx
# error "Compiler threading support is not turned on. Please set the correct command line options for threading: -pthread"
-#elif defined __MWERKS__
-// Metrowerks CodeWarrior
-# error "Compiler threading support is not turned on. Please set the correct command line options for threading: either -runtime sm, -runtime smd, -runtime dm, or -runtime dmd"
-
#elif defined __SUNPRO_CC
// Sun Workshop Compiler C++
# error "Compiler threading support is not turned on. Please set the correct command line options for threading: -mt"
@@ -73,8 +69,7 @@
#elif defined _MSC_VER
// Microsoft Visual C++
//
-// Must remain the last #elif since some other vendors (Metrowerks, for
-// example) also #define _MSC_VER
+// Must remain the last #elif since some other vendors may also #define _MSC_VER
# error "Compiler threading support is not turned on. Please set the correct command line options for threading: either /MT /MTd /MD or /MDd"
#else