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