Add braces to shut compiler up. Reformat code slightly.
[u/mdw/catacomb] / configure.in
... / ...
CommitLineData
1dnl -*-fundamental-*-
2dnl
3dnl $Id: configure.in,v 1.11 2000/06/17 10:51:23 mdw Exp $
4dnl
5dnl Autoconfiguration for Catacomb
6dnl
7dnl (c) 1999 Straylight/Edgeware
8dnl
9
10dnl ----- Licensing notice --------------------------------------------------
11dnl
12dnl This file is part of Catacomb.
13dnl
14dnl Catacomb is free software; you can redistribute it and/or modify
15dnl it under the terms of the GNU Library General Public License as
16dnl published by the Free Software Foundation; either version 2 of the
17dnl License, or (at your option) any later version.
18dnl
19dnl Catacomb is distributed in the hope that it will be useful,
20dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
21dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22dnl GNU Library General Public License for more details.
23dnl
24dnl You should have received a copy of the GNU Library General Public
25dnl License along with Catacomb; if not, write to the Free
26dnl Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27dnl MA 02111-1307, USA.
28
29dnl ----- Revision history --------------------------------------------------
30dnl
31dnl $Log: configure.in,v $
32dnl Revision 1.11 2000/06/17 10:51:23 mdw
33dnl Version number changes. Find maths library for Maurer's test.
34dnl
35dnl Revision 1.10 1999/12/22 16:03:31 mdw
36dnl New mLib version. Find socket functions for pixie.
37dnl
38dnl Revision 1.7 1999/11/13 01:55:48 mdw
39dnl Don't be pedantic, because using `long long' as a multiprecision type
40dnl gets complained about.
41dnl
42dnl Revision 1.6 1999/11/11 18:56:14 mdw
43dnl Use `libtool' to generate a shared library.
44dnl
45dnl Revision 1.5 1999/11/11 17:47:34 mdw
46dnl Updates for new configuration system, and `mptypes' generator.
47dnl
48dnl Revision 1.4 1999/11/11 00:58:19 mdw
49dnl Use canned check for `ssize_t'.
50dnl
51dnl Revision 1.3 1999/10/24 10:20:36 mdw
52dnl Modify for standalone distribution. The library's getting far too large
53dnl to be sensibly embedded in other programs.
54dnl
55dnl Revision 1.2 1999/10/23 12:56:25 mdw
56dnl Version number change.
57dnl
58dnl Revision 1.1 1999/09/03 08:41:11 mdw
59dnl Initial import.
60dnl
61
62dnl --- Boring boilerplate ---
63
64AC_INIT(blkc.h)
65AM_INIT_AUTOMAKE(catacomb, 2.0.0)
66AM_CONFIG_HEADER(config.h)
67
68dnl --- Make sure I can compile and build libraries ---
69
70AC_PROG_CC
71AM_PROG_LIBTOOL
72mdw_GCC_FLAGS(-Wall)
73
74AC_PROG_YACC
75
76dnl --- Actually, I assume these exist anyway ---
77
78AC_CHECK_HEADERS(unistd.h)
79AC_HEADER_STDC
80
81dnl --- Check for various important system types ---
82
83AC_TYPE_PID_T
84AC_TYPE_SIZE_T
85AC_TYPE_UID_T
86AC_CHECK_TYPE(time_t, long)
87mdw_TYPE_SSIZE_T
88
89dnl --- The maths library, for Maurer's test ---
90
91mdw_CHECK_MANYLIBS(log, m,,, [#include <math.h>], [2])
92mdw_CHECK_MANYLIBS(sqrt, m,,, [#include <math.h>], [2])
93
94dnl --- Can I call `initgroups'? ---
95dnl
96dnl This is used in noise-gathering.
97
98AC_CHECK_FUNCS(setgroups)
99
100dnl --- Support for the passphrase pixie ---
101
102mdw_CHECK_MANYLIBS(socket, socket)
103AC_CHECK_FUNCS(mlock)
104
105dnl --- Done ---
106
107mdw_MLIB(2.0.0)
108AC_OUTPUT(Makefile tests/Makefile catacomb-config qcc, chmod 755 qcc)
109
110dnl ----- That's all, folks -------------------------------------------------