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