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

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

index 9fe2339addfd75b19d1fa782b36d2dc161bb01f7..00de78943ceb4eb4609cd92eb64f1f7710eb7556 100644 (file)
@@ -412,24 +412,7 @@ if test x"${ENABLE_CYCLES_STATS}" = "xyes"; then
     AC_DEFINE([ENABLE_CYCLES_STATS], 1, [enable cycle count statistics])
 fi
 
-
-dnl check for JVMTI
-AC_MSG_CHECKING(whether to compile JVMTI support)
-AC_ARG_ENABLE([jvmti],
-              [AS_HELP_STRING(--enable-jvmti,enable JVMTI [[default=no]])],
-              [case "${enableval}" in
-                   yes) ENABLE_JVMTI=yes;;
-                   *) ENABLE_JVMTI=no;;
-               esac],
-              [ENABLE_JVMTI=no])
-AC_MSG_RESULT(${ENABLE_JVMTI})
-AM_CONDITIONAL([ENABLE_JVMTI], test x"${ENABLE_JVMTI}" = "xyes")
-
-if test x"${ENABLE_JVMTI}" = "xyes"; then
-    AC_DEFINE([ENABLE_JVMTI], 1, [use JVMTI])
-fi
-
-
+AC_CHECK_ENABLE_JVMTI
 AC_CHECK_ENABLE_THREADS
 
 
diff --git a/m4/jvmti.m4 b/m4/jvmti.m4
new file mode 100644 (file)
index 0000000..7ee27ad
--- /dev/null
@@ -0,0 +1,41 @@
+dnl m4/jvmti.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 JVMTI
+
+AC_DEFUN([AC_CHECK_ENABLE_JVMTI],[
+AC_MSG_CHECKING(whether to compile JVMTI support)
+AC_ARG_ENABLE([jvmti],
+              [AS_HELP_STRING(--enable-jvmti,enable JVMTI [[default=no]])],
+              [case "${enableval}" in
+                   yes) ENABLE_JVMTI=yes;;
+                   *) ENABLE_JVMTI=no;;
+               esac],
+              [ENABLE_JVMTI=no])
+AC_MSG_RESULT(${ENABLE_JVMTI})
+AM_CONDITIONAL([ENABLE_JVMTI], test x"${ENABLE_JVMTI}" = "xyes")
+
+if test x"${ENABLE_JVMTI}" = "xyes"; then
+    AC_DEFINE([ENABLE_JVMTI], 1, [use JVMTI])
+fi
+])