Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2011-01-14 19:34:03 +0000
committereutarass2011-01-14 19:34:03 +0000
commit08ca994dfeb9bfbccd655990d9c9548dbcd4455c (patch)
tree74eb2374467e0f13df0bdf3d4f5a999dd0871741
parent14e0c02da143ca0ff346f7d85971d3d8a3203dff (diff)
downloadorg.eclipse.tcf.agent-08ca994dfeb9bfbccd655990d9c9548dbcd4455c.tar.gz
org.eclipse.tcf.agent-08ca994dfeb9bfbccd655990d9c9548dbcd4455c.tar.xz
org.eclipse.tcf.agent-08ca994dfeb9bfbccd655990d9c9548dbcd4455c.zip
TCF Agent: fixed build errors when the agent is built without Symbols service
-rw-r--r--services/runctrl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/runctrl.c b/services/runctrl.c
index 43ae7584..12ec20ed 100644
--- a/services/runctrl.c
+++ b/services/runctrl.c
@@ -42,7 +42,7 @@
#include <services/symbols.h>
#include <main/cmdline.h>
-#define EN_STEP_OVER (SERVICE_Breakpoints && SERVICE_StackTrace)
+#define EN_STEP_OVER (SERVICE_Breakpoints && SERVICE_StackTrace && ENABLE_Symbols)
#define EN_STEP_LINE (SERVICE_LineNumbers)
#define STOP_ALL_TIMEOUT 1000000

Back to the top