* configure.ac: New switch for disabling -O2 (--disable-optimizations).
[cacao.git] / m4 / java.m4
1 dnl m4/java.m4
2 dnl
3 dnl Copyright (C) 2007 R. Grafl, A. Krall, C. Kruegel,
4 dnl C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5 dnl E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6 dnl J. Wenninger, Institut f. Computersprachen - TU Wien
7 dnl 
8 dnl This file is part of CACAO.
9 dnl 
10 dnl This program is free software; you can redistribute it and/or
11 dnl modify it under the terms of the GNU General Public License as
12 dnl published by the Free Software Foundation; either version 2, or (at
13 dnl your option) any later version.
14 dnl 
15 dnl This program is distributed in the hope that it will be useful, but
16 dnl WITHOUT ANY WARRANTY; without even the implied warranty of
17 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 dnl General Public License for more details.
19 dnl 
20 dnl You should have received a copy of the GNU General Public License
21 dnl along with this program; if not, write to the Free Software
22 dnl Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23 dnl 02110-1301, USA.
24
25
26 dnl check which Java configuration to use
27
28 AC_DEFUN([AC_CHECK_ENABLE_JAVA],[
29 AC_MSG_CHECKING(which Java configuration to use)
30 AC_ARG_ENABLE([java],
31               [AS_HELP_STRING(--enable-java,enable specific Java configuration (cldc1.1,javase) [[default=javase]])],
32               [case "${enableval}" in
33                    cldc1.1)
34                        ENABLE_JAVAME_CLDC1_1=yes
35                        AC_DEFINE([ENABLE_JAVAME_CLDC1_1], 1, [compile for Java ME CLDC1.1])
36                        AC_MSG_RESULT(cldc1.1)
37                        ;;
38                    javase)
39                        ENABLE_JAVASE=yes
40                        AC_DEFINE([ENABLE_JAVASE], 1, [compile for Java SE])
41                        AC_MSG_RESULT(javase)
42                        ;;
43                    *)
44                        AC_MSG_ERROR(${enableval} is an unknown configuration)
45                        ;;
46                esac],
47                [ENABLE_JAVASE=yes
48                 AC_DEFINE([ENABLE_JAVASE], 1, [compile for Java SE])
49                 AC_MSG_RESULT(j2se)])
50 AM_CONDITIONAL([ENABLE_JAVAME_CLDC1_1], test x"${ENABLE_JAVAME_CLDC1_1}" = "xyes")
51 AM_CONDITIONAL([ENABLE_JAVASE], test x"${ENABLE_JAVASE}" = "xyes")
52 ])