1 | # This file is part of Autoconf. -*- Autoconf -*-
|
---|
2 | # M4 macros used in building test suites.
|
---|
3 | # Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
|
---|
4 |
|
---|
5 | # This program is free software; you can redistribute it and/or modify
|
---|
6 | # it under the terms of the GNU General Public License as published by
|
---|
7 | # the Free Software Foundation; either version 2, or (at your option)
|
---|
8 | # any later version.
|
---|
9 | #
|
---|
10 | # This program is distributed in the hope that it will be useful,
|
---|
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
13 | # GNU General Public License for more details.
|
---|
14 | #
|
---|
15 | # You should have received a copy of the GNU General Public License
|
---|
16 | # along with this program; if not, write to the Free Software
|
---|
17 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
---|
18 | # 02110-1301, USA.
|
---|
19 |
|
---|
20 | # As a special exception, the Free Software Foundation gives unlimited
|
---|
21 | # permission to copy, distribute and modify the configure scripts that
|
---|
22 | # are the output of Autoconf. You need not follow the terms of the GNU
|
---|
23 | # General Public License when using or distributing such scripts, even
|
---|
24 | # though portions of the text of Autoconf appear in them. The GNU
|
---|
25 | # General Public License (GPL) does govern all other use of the material
|
---|
26 | # that constitutes the Autoconf program.
|
---|
27 | #
|
---|
28 | # Certain portions of the Autoconf source text are designed to be copied
|
---|
29 | # (in certain cases, depending on the input) into the output of
|
---|
30 | # Autoconf. We call these the "data" portions. The rest of the Autoconf
|
---|
31 | # source text consists of comments plus executable code that decides which
|
---|
32 | # of the data portions to output in any given case. We call these
|
---|
33 | # comments and executable code the "non-data" portions. Autoconf never
|
---|
34 | # copies any of the non-data portions into its output.
|
---|
35 | #
|
---|
36 | # This special exception to the GPL applies to versions of Autoconf
|
---|
37 | # released by the Free Software Foundation. When you make and
|
---|
38 | # distribute a modified version of Autoconf, you may extend this special
|
---|
39 | # exception to the GPL to apply to your modified version as well, *unless*
|
---|
40 | # your modified version has the potential to copy into its output some
|
---|
41 | # of the text that was the non-data portion of the version that you started
|
---|
42 | # with. (In other words, unless your change moves or copies text from
|
---|
43 | # the non-data portions to the data portions.) If your modification has
|
---|
44 | # such potential, you must delete any notice of this special exception
|
---|
45 | # to the GPL from your modified version.
|
---|
46 |
|
---|
47 | m4_include([autotest/general.m4])
|
---|