Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2013-12-05 04:52:34 +0000
committerEugene Tarassov2013-12-05 04:52:34 +0000
commit59066948195819d6326d59a6cd2853ac64409b9c (patch)
tree6711e7032143d03deb4c7c8c99e0648e26506258 /agent/tcf/config.h
parentebb9ea4223d7fb6f58e098d4138182fdad949aa3 (diff)
downloadorg.eclipse.tcf.agent-59066948195819d6326d59a6cd2853ac64409b9c.tar.gz
org.eclipse.tcf.agent-59066948195819d6326d59a6cd2853ac64409b9c.tar.xz
org.eclipse.tcf.agent-59066948195819d6326d59a6cd2853ac64409b9c.zip
TCF Agent: got rid of compiler warnings: undefined macro
Diffstat (limited to 'agent/tcf/config.h')
-rw-r--r--agent/tcf/config.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/agent/tcf/config.h b/agent/tcf/config.h
index 33d176be..3b9ccb5f 100644
--- a/agent/tcf/config.h
+++ b/agent/tcf/config.h
@@ -163,8 +163,12 @@
# define ENABLE_ContextProxy 0
#endif
+#if !defined(ENABLE_ContextMux)
+# define ENABLE_ContextMux 0
+#endif
+
#if !defined(ENABLE_DebugContext)
-# define ENABLE_DebugContext (ENABLE_ContextProxy || SERVICE_RunControl || SERVICE_Breakpoints || \
+# define ENABLE_DebugContext (ENABLE_ContextProxy || ENABLE_ContextMux || SERVICE_RunControl || SERVICE_Breakpoints || \
SERVICE_Memory || SERVICE_Registers || SERVICE_StackTrace || SERVICE_Disassembly)
#endif
@@ -301,8 +305,4 @@
ENABLE_DebugContext && !ENABLE_ContextProxy)
#endif
-#if !defined(ENABLE_ContextMux)
-#define ENABLE_ContextMux 0
-#endif
-
#endif /* D_config */

Back to the top