* m4/annotations.m4: New file.
authortwisti <none@none>
Tue, 31 Jul 2007 13:16:43 +0000 (13:16 +0000)
committertwisti <none@none>
Tue, 31 Jul 2007 13:16:43 +0000 (13:16 +0000)
* configure.ac: Use AC_CHECK_ENABLE_ANNOTATIONS.

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

index 13d1a01d5c80ae5ef055fc419090f7914faac8bc..15f13094f18dc5ec80e713de096e51aa53b0c6b3 100644 (file)
@@ -22,7 +22,7 @@ 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 
-dnl $Id: configure.ac 8249 2007-07-31 12:59:03Z panzi $
+dnl $Id: configure.ac 8250 2007-07-31 13:16:43Z twisti $
 
 dnl Process this file with autoconf to produce a configure script.
 
@@ -850,21 +850,7 @@ AM_CONDITIONAL([ENABLE_STATICVM], test x"${ENABLE_STATICVM}" = "xyes")
 AC_SUBST(ENABLE_STATICVM)
 
 
-dnl check if annotations support should be built
-AC_MSG_CHECKING(wether to build annotations support)
-AC_ARG_ENABLE([annotations],
-              [AS_HELP_STRING(--enable-annotations,build annotations support [[default=no]])],
-              [case "${enableval}" in
-                   yes) ENABLE_ANNOTATIONS=yes;;
-                   *) ENABLE_ANNOTATIONS=no;;
-               esac],
-              [ENABLE_ANNOTATIONS=no])
-AC_MSG_RESULT(${ENABLE_ANNOTATIONS})
-AM_CONDITIONAL([ENABLE_ANNOTATIONS], test x"${ENABLE_ANNOTATIONS}" = "xyes")
-   
-if test x"${ENABLE_ANNOTATIONS}" = "xyes"; then
-    AC_DEFINE([ENABLE_ANNOTATIONS], 1, [enable annotations])
-fi
+AC_CHECK_ENABLE_ANNOTATIONS
 
 
 dnl where is CACAO's vm.zip
diff --git a/m4/annotations.m4 b/m4/annotations.m4
new file mode 100644 (file)
index 0000000..2cc5938
--- /dev/null
@@ -0,0 +1,49 @@
+dnl m4/zlib.m4
+dnl
+dnl Copyright (C) 2007 R. Grafl, A. Krall, C. Kruegel,
+dnl C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
+dnl E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
+dnl J. Wenninger, Institut f. Computersprachen - TU Wien
+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 
+dnl $Id: configure.ac 7228 2007-01-19 01:13:48Z edwin $
+
+
+dnl check if annotations support should be built
+
+AC_DEFUN([AC_CHECK_ENABLE_ANNOTATIONS],[
+AC_MSG_CHECKING(wether to build annotations support)
+AC_ARG_ENABLE([annotations],
+              [AS_HELP_STRING(--enable-annotations,build annotations support [[default=no]])],
+              [case "${enableval}" in
+                   yes)
+                       ENABLE_ANNOTATIONS=yes
+                       ;;
+                   *)
+                       ENABLE_ANNOTATIONS=no
+                       ;;
+               esac],
+              [ENABLE_ANNOTATIONS=no])
+AC_MSG_RESULT(${ENABLE_ANNOTATIONS})
+AM_CONDITIONAL([ENABLE_ANNOTATIONS], test x"${ENABLE_ANNOTATIONS}" = "xyes")
+   
+if test x"${ENABLE_ANNOTATIONS}" = "xyes"; then
+    AC_DEFINE([ENABLE_ANNOTATIONS], 1, [enable annotations])
+fi
+])