* configure.ac (AC_CHECK_ENABLE_STATISTICS): Added.
authorChristian Thalinger <twisti@complang.tuwien.ac.at>
Sat, 21 Jun 2008 22:07:39 +0000 (00:07 +0200)
committerChristian Thalinger <twisti@complang.tuwien.ac.at>
Sat, 21 Jun 2008 22:07:39 +0000 (00:07 +0200)
* m4/statistics.m4: New file.

configure.ac
m4/statistics.m4 [new file with mode: 0644]

index 494f6f8f1f80ec499f496bdddcd8f3f86f5ec40f..113bc314826b84e85522b0d7f51555669958bcaf 100644 (file)
@@ -376,23 +376,7 @@ AC_CHECK_ENABLE_MEMCHECK
 AC_CHECK_ENABLE_HANDLES
 AC_CHECK_ENABLE_VMLOG
 AC_CHECK_ENABLE_DISASSEMBLER
-
-dnl check for statistics
-AC_MSG_CHECKING(whether statistics generation should be enabled)
-AC_ARG_ENABLE([statistics],
-              [AS_HELP_STRING(--enable-statistics,enable statistics generation [[default=no]])],
-              [case "${enableval}" in
-                   yes) ENABLE_STATISTICS=yes;;
-                   *) ENABLE_STATISTICS=no;;
-               esac],
-              [ENABLE_STATISTICS=no])
-AC_MSG_RESULT(${ENABLE_STATISTICS})
-AM_CONDITIONAL([ENABLE_STATISTICS], test x"${ENABLE_STATISTICS}" = "xyes")
-
-if test x"${ENABLE_STATISTICS}" = "xyes"; then
-    AC_DEFINE([ENABLE_STATISTICS], 1, [enable statistics])
-fi
-
+AC_CHECK_ENABLE_STATISTICS
 
 dnl check for verifier
 AC_MSG_CHECKING(whether classfile verification should be enabled)
diff --git a/m4/statistics.m4 b/m4/statistics.m4
new file mode 100644 (file)
index 0000000..2ee82c0
--- /dev/null
@@ -0,0 +1,41 @@
+dnl m4/statistics.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 statistics
+
+AC_DEFUN([AC_CHECK_ENABLE_STATISTICS],[
+AC_MSG_CHECKING(whether statistics generation should be enabled)
+AC_ARG_ENABLE([statistics],
+              [AS_HELP_STRING(--enable-statistics,enable statistics generation [[default=no]])],
+              [case "${enableval}" in
+                   yes) ENABLE_STATISTICS=yes;;
+                   *) ENABLE_STATISTICS=no;;
+               esac],
+              [ENABLE_STATISTICS=no])
+AC_MSG_RESULT(${ENABLE_STATISTICS})
+AM_CONDITIONAL([ENABLE_STATISTICS], test x"${ENABLE_STATISTICS}" = "xyes")
+
+if test x"${ENABLE_STATISTICS}" = "xyes"; then
+    AC_DEFINE([ENABLE_STATISTICS], 1, [enable statistics])
+fi
+])