Install headers in the right directory.
[u/mdw/catacomb] / configure.in
CommitLineData
d03ab969 1dnl -*-fundamental-*-
2dnl
6fcd939f 3dnl $Id: configure.in,v 1.2 1999/10/23 12:56:25 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 $
6fcd939f 32dnl Revision 1.2 1999/10/23 12:56:25 mdw
33dnl Version number change.
34dnl
35dnl Revision 1.2 1999/10/23 12:56:25 mdw
36dnl Version number change.
d03ab969 37dnl
38dnl Revision 1.1 1999/09/03 08:41:11 mdw
39dnl Initial import.
40dnl
41
6fcd939f 42dnl --- Boring boilerplate ---
d03ab969 43
44AC_INIT(blkc.h)
45AM_INIT_AUTOMAKE(catacomb, 1.0.0pre2)
46AM_CONFIG_HEADER(config.h)
47
48dnl --- Make sure I can compile and build libraries ---
49
50AC_PROG_CC
51AC_CHECK_PROG(AR, ar, ar)
52AC_PROG_RANLIB
53mdw_MLIB
54
55AC_PROG_YACC
56
57dnl --- Actually, I assume these exist anyway ---
58
59AC_CHECK_HEADERS(unistd.h)
60AC_HEADER_STDC
61
62dnl --- Check for various important system types ---
63
64AC_TYPE_PID_T
65
66dnl --- Tedious check for ssize_t ---
67dnl
68dnl glibc-2 puts ssize_t in a strange place.
69
70AC_CACHE_CHECK(for ssize_t, cat_cv_type_ssize_t,
71[AC_EGREP_CPP(ssize_t,
72[#include <sys/types.h>
73#if HAVE_UNISTD_H
74#inlcude <unistd.h>
75#endif
76#if STDC_HEADERS
77#include <stddef.h>
78#include <stdlib.h>
79#endif],
80cat_cv_type_ssize_t=yes, cat_cv_type_ssize_t=no)])
81if test $cat_cv_type_ssize_t = no; then
82 AC_DEFINE(ssize_t, int)
83fi
84AC_TYPE_UID_T
85AC_CHECK_TYPE(time_t, long)
86mdw_TYPE_SSIZE_T
87
88dnl --- Can I call `initgroups'? ---
89dnl
90dnl This is used in noise-gathering.
91
92AC_CHECK_FUNCS(setgroups)
93AC_OUTPUT(Makefile)
94dnl --- Done ---
95
96AC_OUTPUT(Makefile catacomb-config)
97
98dnl ----- That's all, folks -------------------------------------------------