Build system: implement REUSE with SPDX identifiers
[lttng-ust.git] / m4 / ax_check_rqrd_class.m4
1 # SPDX-License-Identifier: GPL-2.0-or-later WITH LicenseRef-Autoconf-exception-macro
2 #
3 # ===========================================================================
4 # https://www.gnu.org/software/autoconf-archive/ax_check_rqrd_class.html
5 # ===========================================================================
6 #
7 # SYNOPSIS
8 #
9 # AX_CHECK_RQRD_CLASS
10 #
11 # DESCRIPTION
12 #
13 # AX_CHECK_RQRD_CLASS tests the existence of a given Java class, either in
14 # a jar or in a '.class' file and fails if it doesn't exist. Its success
15 # or failure can depend on a proper setting of the CLASSPATH env.
16 # variable.
17 #
18 # Note: This is part of the set of autoconf M4 macros for Java programs.
19 # It is VERY IMPORTANT that you download the whole set, some macros depend
20 # on other. Unfortunately, the autoconf archive does not support the
21 # concept of set of macros, so I had to break it for submission. The
22 # general documentation, as well as the sample configure.in, is included
23 # in the AX_PROG_JAVA macro.
24 #
25 # LICENSE
26 #
27 # Copyright (c) 2008 Stephane Bortzmeyer <bortzmeyer@pasteur.fr>
28 #
29 # This program is free software; you can redistribute it and/or modify it
30 # under the terms of the GNU General Public License as published by the
31 # Free Software Foundation; either version 2 of the License, or (at your
32 # option) any later version.
33 #
34 # This program is distributed in the hope that it will be useful, but
35 # WITHOUT ANY WARRANTY; without even the implied warranty of
36 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
37 # Public License for more details.
38 #
39 # You should have received a copy of the GNU General Public License along
40 # with this program. If not, see <https://www.gnu.org/licenses/>.
41 #
42 # As a special exception, the respective Autoconf Macro's copyright owner
43 # gives unlimited permission to copy, distribute and modify the configure
44 # scripts that are the output of Autoconf when processing the Macro. You
45 # need not follow the terms of the GNU General Public License when using
46 # or distributing such scripts, even though portions of the text of the
47 # Macro appear in them. The GNU General Public License (GPL) does govern
48 # all other use of the material that constitutes the Autoconf Macro.
49 #
50 # This special exception to the GPL applies to versions of the Autoconf
51 # Macro released by the Autoconf Archive. When you make and distribute a
52 # modified version of the Autoconf Macro, you may extend this special
53 # exception to the GPL to apply to your modified version as well.
54
55 #serial 6
56
57 AU_ALIAS([AC_CHECK_RQRD_CLASS], [AX_CHECK_RQRD_CLASS])
58 AC_DEFUN([AX_CHECK_RQRD_CLASS],[
59 CLASS=`echo $1|sed 's/\./_/g'`
60 AC_CHECK_CLASS($1)
61 if test "$HAVE_LAST_CLASS" = "no"; then
62 AC_MSG_ERROR([Required class $1 missing, exiting.])
63 fi
64 ])
This page took 0.03006 seconds and 4 git commands to generate.