diff options
Diffstat (limited to 'sim/rx/configure.ac')
-rw-r--r-- | sim/rx/configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
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 |