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