chiark / gitweb /
initial checkin: still somewhat sketchy
[distorted-keys] / configure.ac
1 dnl -*-autoconf-*-
2 dnl
3 dnl Configuration script for distorted.org.uk key management
4 dnl
5 dnl (c) 2011 Mark Wooding
6 dnl
7
8 dnl----- Licensing notice ---------------------------------------------------
9 dnl
10 dnl This program is free software; you can redistribute it and/or modify
11 dnl it under the terms of the GNU General Public License as published by
12 dnl the Free Software Foundation; either version 2 of the License, or
13 dnl (at your option) any later version.
14 dnl
15 dnl This program is distributed in the hope that it will be useful,
16 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
17 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 dnl GNU General Public License for more details.
19 dnl
20 dnl You should have received a copy of the GNU General Public License
21 dnl along with this program; if not, write to the Free Software Foundation,
22 dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
24 dnl--------------------------------------------------------------------------
25 dnl Initialization.
26
27 mdw_AUTO_VERSION
28 AC_INIT([distorted-keys], AUTO_VERSION, [mdw@distorted.org.uk])
29 AC_CONFIG_SRCDIR([shamir.in])
30 AC_CONFIG_AUX_DIR([config])
31 AM_INIT_AUTOMAKE([foreign])
32 mdw_SILENT_RULES
33
34 dnl--------------------------------------------------------------------------
35 dnl Python programming environment.
36
37 AC_PATH_PROG([PYTHON], [python])
38 AX_PROG_PYTHON_VERSION([2.5],,
39                        [AC_MSG_ERROR([Failed to find suitable Python.])])
40
41 dnl--------------------------------------------------------------------------
42 dnl Output.
43
44 AC_CONFIG_FILES(
45   [Makefile])
46 AC_OUTPUT
47
48 dnl----- That's all, folks --------------------------------------------------