From: Mike Frysinger Date: Fri, 23 Mar 2012 04:00:59 +0000 (+0000) Subject: sim: rx: fix warnings with AC_DEFINE X-Git-Tag: sid-snapshot-20120401~99 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=abcee8fd2516cdc7628bc32b714b7f046da41bd1;p=external%2Fbinutils.git sim: rx: fix warnings with AC_DEFINE This lets `autoheader` work again. Signed-off-by: Mike Frysinger --- diff --git a/sim/rx/ChangeLog b/sim/rx/ChangeLog index 659fc6b..4aaa5aa 100644 --- a/sim/rx/ChangeLog +++ b/sim/rx/ChangeLog @@ -1,3 +1,8 @@ +2012-03-22 Mike Frysinger + + * configure.ac (CYCLE_ACCURATE): Add template with AC_DEFINE call. + (CYCLE_STATS): Likewise. + 2012-03-02 Kevin Buettner * load.h (rx_load): Add `callback' parameter to function prototype. diff --git a/sim/rx/configure.ac b/sim/rx/configure.ac index aebad94..1857063 100644 --- a/sim/rx/configure.ac +++ b/sim/rx/configure.ac @@ -44,14 +44,14 @@ echo enable_cycle_accurate is $enable_cycle_accurate echo enable_cycle_stats is $enable_cycle_stats if test "x${enable_cycle_accurate}" != xno; then -AC_DEFINE([CYCLE_ACCURATE]) + AC_DEFINE([CYCLE_ACCURATE], 1, [--enable-cycle-accurate]) if test "x${enable_cycle_stats}" != xno; then - AC_DEFINE([CYCLE_STATS]) + AC_DEFINE([CYCLE_STATS], 1, [--enable-cycle-stats]) fi else if test "x${enable_cycle_stats}" != xno; then - AC_ERROR([cycle-stats not available without cycle-accurate]) + AC_ERROR([cycle-stats not available without cycle-accurate]) fi fi