More changes. Still embryonic.
[u/mdw/catacomb] / configure.in
CommitLineData
d03ab969 1dnl -*-fundamental-*-
2dnl
8582bb3b 3dnl $Id: configure.in,v 1.8 1999/11/21 13:06:38 mdw Exp $
d03ab969 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 $
8582bb3b 32dnl Revision 1.8 1999/11/21 13:06:38 mdw
33dnl Version bump.
34dnl
77783960 35dnl Revision 1.7 1999/11/13 01:55:48 mdw
36dnl Don't be pedantic, because using `long long' as a multiprecision type
37dnl gets complained about.
38dnl
ffc086db 39dnl Revision 1.6 1999/11/11 18:56:14 mdw
40dnl Use `libtool' to generate a shared library.
a094cab7 41dnl
42dnl Revision 1.5 1999/11/11 17:47:34 mdw
43dnl Updates for new configuration system, and `mptypes' generator.
f122f08e 44dnl
45dnl Revision 1.4 1999/11/11 00:58:19 mdw
46dnl Use canned check for `ssize_t'.
748ed8dc 47dnl
f122f08e 48dnl Revision 1.3 1999/10/24 10:20:36 mdw
748ed8dc 49dnl Modify for standalone distribution. The library's getting far too large
50dnl to be sensibly embedded in other programs.
6fcd939f 51dnl
52dnl Revision 1.2 1999/10/23 12:56:25 mdw
53dnl Version number change.
d03ab969 54dnl
55dnl Revision 1.1 1999/09/03 08:41:11 mdw
56dnl Initial import.
57dnl
58
6fcd939f 59dnl --- Boring boilerplate ---
d03ab969 60
61AC_INIT(blkc.h)
8582bb3b 62AM_INIT_AUTOMAKE(catacomb, 1.0.0pre4)
d03ab969 63AM_CONFIG_HEADER(config.h)
64
65dnl --- Make sure I can compile and build libraries ---
66
67AC_PROG_CC
ffc086db 68AM_PROG_LIBTOOL
77783960 69mdw_GCC_FLAGS(-Wall)
8582bb3b 70mdw_MLIB(1.6.1)
d03ab969 71
72AC_PROG_YACC
73
74dnl --- Actually, I assume these exist anyway ---
75
76AC_CHECK_HEADERS(unistd.h)
77AC_HEADER_STDC
78
79dnl --- Check for various important system types ---
80
81AC_TYPE_PID_T
f122f08e 82AC_TYPE_SIZE_T
d03ab969 83AC_TYPE_UID_T
84AC_CHECK_TYPE(time_t, long)
85mdw_TYPE_SSIZE_T
86
87dnl --- Can I call `initgroups'? ---
88dnl
89dnl This is used in noise-gathering.
90
91AC_CHECK_FUNCS(setgroups)
a094cab7 92
d03ab969 93dnl --- Done ---
94
95AC_OUTPUT(Makefile catacomb-config)
96
97dnl ----- That's all, folks -------------------------------------------------