chiark / gitweb /
Fix licence text.
[storin] / configure.in
CommitLineData
e6e0e332
MW
1dnl -*-fundamental-*-
2dnl
6b2d9d76 3dnl $Id: configure.in,v 1.3 2000/07/02 15:21:20 mdw Exp $
e6e0e332
MW
4dnl
5dnl Configuration script for cipher
6dnl
7dnl (c) 2000 Mark Wooding
8dnl
9
10dnl ----- Licensing notice --------------------------------------------------
11dnl
12dnl Copyright (c) 2000 Mark Wooding
13dnl All rights reserved.
14dnl
15dnl Redistribution and use in source and binary forms, with or without
16dnl modification, are permitted provided that the following conditions are
17dnl met:
18dnl
19dnl 1. Redistributions of source code must retain the above copyright
20dnl notice, this list of conditions and the following disclaimer.
21dnl
22dnl 2, Redistributions in binary form must reproduce the above copyright
23dnl notice, this list of conditions and the following disclaimer in the
24dnl documentation and/or other materials provided with the distribution.
25dnl
26dnl 3. The name of the authors may not be used to endorse or promote
27dnl products derived from this software without specific prior written
28dnl permission.
29dnl
30dnl THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
31dnl WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
32dnl MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
6b2d9d76 33dnl NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
e6e0e332
MW
34dnl INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
35dnl (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
36dnl SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
37dnl HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
38dnl STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
39dnl ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
40dnl POSSIBILITY OF SUCH DAMAGE.
41dnl
42dnl Instead of accepting the above terms, you may redistribute and/or modify
43dnl this software under the terms of either the GNU General Public License,
44dnl or the GNU Library General Public License, published by the Free
45dnl Software Foundation; either version 2 of the License, or (at your
46dnl option) any later version.
47
48dnl ----- Revision history --------------------------------------------------
49dnl
50dnl $Log: configure.in,v $
6b2d9d76
MW
51dnl Revision 1.3 2000/07/02 15:21:20 mdw
52dnl Fix licence text.
53dnl
c7c3b750
MW
54dnl Revision 1.2 2000/05/25 19:46:46 mdw
55dnl Version bump.
56dnl
e6e0e332
MW
57dnl Revision 1.1 2000/05/21 11:28:30 mdw
58dnl Initial check-in.
59dnl
60
61AC_INIT(storin.c)
c7c3b750 62AM_INIT_AUTOMAKE(storin, 1.0.1)
e6e0e332
MW
63AC_PROG_CC
64mdw_GCC_FLAGS
65AC_OUTPUT(Makefile)
66
67dnl ----- That's all, folks -------------------------------------------------