chiark / gitweb /
keyfunc.sh.in: Don't let `userv' gobble our input.
[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 file is part of the distorted.org.uk key management suite.
11 dnl
12 dnl distorted-keys is free software; you can redistribute it and/or modify
13 dnl it under the terms of the GNU General Public License as published by
14 dnl the Free Software Foundation; either version 2 of the License, or
15 dnl (at your option) any later version.
16 dnl
17 dnl distorted-keys is distributed in the hope that it will be useful,
18 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
19 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 dnl GNU General Public License for more details.
21 dnl
22 dnl You should have received a copy of the GNU General Public License
23 dnl along with distorted-keys; if not, write to the Free Software Foundation,
24 dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26 dnl--------------------------------------------------------------------------
27 dnl Initialization.
28
29 mdw_AUTO_VERSION
30 AC_INIT([distorted-keys], AUTO_VERSION, [mdw@distorted.org.uk])
31 AC_CONFIG_SRCDIR([shamir.in])
32 AC_CONFIG_AUX_DIR([config])
33 AM_INIT_AUTOMAKE([foreign])
34 mdw_SILENT_RULES
35
36 dnl--------------------------------------------------------------------------
37 dnl Other random configuration.
38
39 AC_ARG_WITH([user],
40   AS_HELP_STRING([--with-user], [which user should own the archive]),
41   [user=$withval],
42   [user=keys])
43 AC_SUBST([user])
44
45 dnl--------------------------------------------------------------------------
46 dnl Python programming environment.
47
48 AC_PATH_PROG([PYTHON], [python])
49 AX_PROG_PYTHON_VERSION([2.5],,
50                        [AC_MSG_ERROR([Failed to find suitable Python.])])
51
52 dnl--------------------------------------------------------------------------
53 dnl Output.
54
55 AC_CONFIG_FILES(
56   [Makefile])
57 AC_OUTPUT
58
59 dnl----- That's all, folks --------------------------------------------------