From: Christian Thalinger Date: Sat, 21 Jun 2008 22:35:28 +0000 (+0200) Subject: * configure.ac (AC_CHECK_ENABLE_RT_TIMING): Added. X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=cacao.git;a=commitdiff_plain;h=012c423e5970ecfdd357f072a2d9c8d00a5627ee * configure.ac (AC_CHECK_ENABLE_RT_TIMING): Added. * m4/rt-timing.m4: New file. --- diff --git a/configure.ac b/configure.ac index c1b311a20..11e94ca6f 100644 --- a/configure.ac +++ b/configure.ac @@ -378,23 +378,7 @@ AC_CHECK_ENABLE_VMLOG AC_CHECK_ENABLE_DISASSEMBLER AC_CHECK_ENABLE_STATISTICS AC_CHECK_ENABLE_VERIFIER - -dnl check for compiler timing -AC_MSG_CHECKING(whether real-time timing should be enabled) -AC_ARG_ENABLE([rt-timing], - [AS_HELP_STRING(--enable-rt-timing,enable real-time timing [[default=no]])], - [case "${enableval}" in - yes) ENABLE_RT_TIMING=yes;; - *) ENABLE_RT_TIMING=no;; - esac], - [ENABLE_RT_TIMING=no]) -AC_MSG_RESULT(${ENABLE_RT_TIMING}) -AM_CONDITIONAL([ENABLE_RT_TIMING], test x"${ENABLE_RT_TIMING}" = "xyes") - -if test x"${ENABLE_RT_TIMING}" = "xyes"; then - AC_DEFINE([ENABLE_RT_TIMING], 1, [enable real-time timing]) -fi - +AC_CHECK_ENABLE_RT_TIMING dnl check for cycle count statistics AC_MSG_CHECKING(whether cycle count statistics should be enabled) diff --git a/m4/rt-timing.m4 b/m4/rt-timing.m4 new file mode 100644 index 000000000..c2e85f8c1 --- /dev/null +++ b/m4/rt-timing.m4 @@ -0,0 +1,41 @@ +dnl m4/rt-timing.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 compiler timing + +AC_DEFUN([AC_CHECK_ENABLE_RT_TIMING],[ +AC_MSG_CHECKING(whether real-time timing should be enabled) +AC_ARG_ENABLE([rt-timing], + [AS_HELP_STRING(--enable-rt-timing,enable real-time timing [[default=no]])], + [case "${enableval}" in + yes) ENABLE_RT_TIMING=yes;; + *) ENABLE_RT_TIMING=no;; + esac], + [ENABLE_RT_TIMING=no]) +AC_MSG_RESULT(${ENABLE_RT_TIMING}) +AM_CONDITIONAL([ENABLE_RT_TIMING], test x"${ENABLE_RT_TIMING}" = "xyes") + +if test x"${ENABLE_RT_TIMING}" = "xyes"; then + AC_DEFINE([ENABLE_RT_TIMING], 1, [enable real-time timing]) +fi +])