aboutsummaryrefslogtreecommitdiff
path: root/sim/common/acinclude.m4
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-06-12 10:32:54 -0400
committerMike Frysinger <vapier@gentoo.org>2015-06-12 10:40:46 -0400
commita34870829162e3276a9e0152efe2c7de5677a0c3 (patch)
tree400109c3d67ffb1a09a09b2126284e28cf15703a /sim/common/acinclude.m4
parent5b064994f0e7d8a7bfa0b4b080a360ecd9d2af82 (diff)
downloadgdb-a34870829162e3276a9e0152efe2c7de5677a0c3.zip
gdb-a34870829162e3276a9e0152efe2c7de5677a0c3.tar.gz
gdb-a34870829162e3276a9e0152efe2c7de5677a0c3.tar.bz2
sim: drop -DTRACE from configure
No code uses this anymore and the symbol conflicts with the new TRACE helper. Punt it from configure.
Diffstat (limited to 'sim/common/acinclude.m4')
-rw-r--r--sim/common/acinclude.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/sim/common/acinclude.m4 b/sim/common/acinclude.m4
index 75ea8ea..3564474 100644
--- a/sim/common/acinclude.m4
+++ b/sim/common/acinclude.m4
@@ -186,10 +186,10 @@ dnl use WITH_TRACE.
AC_ARG_ENABLE(sim-trace,
[ --enable-sim-trace=opts Enable tracing flags],
[case "${enableval}" in
- yes) sim_trace="-DTRACE=1 -DWITH_TRACE=-1";;
- no) sim_trace="-DTRACE=0 -DWITH_TRACE=0";;
+ yes) sim_trace="-DWITH_TRACE=-1";;
+ no) sim_trace="-DWITH_TRACE=0";;
[[-0-9]]*)
- sim_trace="-DTRACE='(${enableval})' -DWITH_TRACE='(${enableval})'";;
+ sim_trace="-DWITH_TRACE='(${enableval})'";;
[[[:lower:]]]*)
sim_trace=""
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do