* Removed all Id tags.
[cacao.git] / m4 / jni.m4
1 dnl m4/jni.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 if JNI should be enabled
27
28 AC_DEFUN([AC_CHECK_ENABLE_JNI],[
29 AC_MSG_CHECKING(whether JNI should be enabled)
30 AC_ARG_ENABLE([jni],
31               [AS_HELP_STRING(--enable-jni,enable JNI [[default=yes]])],
32               [case "${enableval}" in
33                   yes)
34                       ENABLE_JNI=yes
35                       ;;
36                   no)
37                       ENABLE_JNI=no
38                       ;;
39                   *)
40                       AC_CHECK_ENABLE_JNI_DEFAULT
41                       ;;
42                esac],
43               [AC_CHECK_ENABLE_JNI_DEFAULT])
44 AC_MSG_RESULT(${ENABLE_JNI})
45 AM_CONDITIONAL([ENABLE_JNI], test x"${ENABLE_JNI}" = "xyes")
46
47 if test x"${ENABLE_JNI}" = "xyes"; then
48     AC_DEFINE([ENABLE_JNI], 1, [enable JNI])
49 fi
50 ])
51
52
53 dnl check for the default value of --enable-jni
54
55 AC_DEFUN([AC_CHECK_ENABLE_JNI_DEFAULT],[
56 if test x"${ENABLE_JAVAME_CLDC1_1}" = "xyes"; then
57     ENABLE_JNI=no
58 else
59     ENABLE_JNI=yes
60 fi
61 ])