From c29bbda10ac2c856d1a05758c54e9948e5ef92ec Mon Sep 17 00:00:00 2001 From: Christian Thalinger Date: Sun, 22 Jun 2008 00:40:40 +0200 Subject: [PATCH] * configure.ac (AC_CHECK_ENABLE_CYCLE_STATS): Added. * m4/cycle-stats.m4: New file. --- configure.ac | 18 +----------------- m4/cycle-stats.m4 | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 17 deletions(-) create mode 100644 m4/cycle-stats.m4 diff --git a/configure.ac b/configure.ac index 11e94ca6f..b64ddd98b 100644 --- a/configure.ac +++ b/configure.ac @@ -379,23 +379,7 @@ AC_CHECK_ENABLE_DISASSEMBLER AC_CHECK_ENABLE_STATISTICS AC_CHECK_ENABLE_VERIFIER AC_CHECK_ENABLE_RT_TIMING - -dnl check for cycle count statistics -AC_MSG_CHECKING(whether cycle count statistics should be enabled) -AC_ARG_ENABLE([cycles-stats], - [AS_HELP_STRING(--enable-cycles-stats,enable cycle count statistics [[default=no]])], - [case "${enableval}" in - yes) ENABLE_CYCLES_STATS=yes;; - *) ENABLE_CYCLES_STATS=no;; - esac], - [ENABLE_CYCLES_STATS=no]) -AC_MSG_RESULT(${ENABLE_CYCLES_STATS}) -AM_CONDITIONAL([ENABLE_CYCLES_STATS], test x"${ENABLE_CYCLES_STATS}" = "xyes") - -if test x"${ENABLE_CYCLES_STATS}" = "xyes"; then - AC_DEFINE([ENABLE_CYCLES_STATS], 1, [enable cycle count statistics]) -fi - +AC_CHECK_ENABLE_CYCLE_STATS AC_CHECK_ENABLE_JVMTI AC_CHECK_ENABLE_THREADS diff --git a/m4/cycle-stats.m4 b/m4/cycle-stats.m4 new file mode 100644 index 000000000..c474adc83 --- /dev/null +++ b/m4/cycle-stats.m4 @@ -0,0 +1,41 @@ +dnl m4/cycle-stats.m4 +dnl +dnl Copyright (C) 2008 +dnl CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO +dnl +dnl This file is part of CACAO. +dnl +dnl This program is free software; you can redistribute it and/or +dnl modify it under the terms of the GNU General Public License as +dnl published by the Free Software Foundation; either version 2, or (at +dnl your option) any later version. +dnl +dnl This program is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of +dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +dnl General Public License for more details. +dnl +dnl You should have received a copy of the GNU General Public License +dnl along with this program; if not, write to the Free Software +dnl Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +dnl 02110-1301, USA. + + +dnl check for cycle count statistics + +AC_DEFUN([AC_CHECK_ENABLE_CYCLE_STATS],[ +AC_MSG_CHECKING(whether cycle count statistics should be enabled) +AC_ARG_ENABLE([cycles-stats], + [AS_HELP_STRING(--enable-cycles-stats,enable cycle count statistics [[default=no]])], + [case "${enableval}" in + yes) ENABLE_CYCLES_STATS=yes;; + *) ENABLE_CYCLES_STATS=no;; + esac], + [ENABLE_CYCLES_STATS=no]) +AC_MSG_RESULT(${ENABLE_CYCLES_STATS}) +AM_CONDITIONAL([ENABLE_CYCLES_STATS], test x"${ENABLE_CYCLES_STATS}" = "xyes") + +if test x"${ENABLE_CYCLES_STATS}" = "xyes"; then + AC_DEFINE([ENABLE_CYCLES_STATS], 1, [enable cycle count statistics]) +fi +]) -- 2.25.1