Dull modifications.
[become] / configure.in
... / ...
CommitLineData
1dnl -*-fundamental-*-
2dnl
3dnl $Id: configure.in,v 1.4 1997/08/20 16:10:56 mdw Exp $
4dnl
5dnl Source for auto configuration for `become'
6dnl
7dnl (c) 1997 Mark Wooding
8dnl
9
10dnl----- Licensing notice ---------------------------------------------------
11dnl
12dnl This file is part of `become'
13dnl
14dnl `Become' is free software; you can redistribute it and/or modify
15dnl it under the terms of the GNU General Public License as published by
16dnl the Free Software Foundation; either version 2 of the License, or
17dnl (at your option) any later version.
18dnl
19dnl `Become' 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 General Public License for more details.
23dnl
24dnl You should have received a copy of the GNU General Public License
25dnl along with `become'; if not, write to the Free Software Foundation,
26dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27
28dnl----- Revision history ---------------------------------------------------
29dnl
30dnl $Log: configure.in,v $
31dnl Revision 1.4 1997/08/20 16:10:56 mdw
32dnl Lowercase `mdw_' prefixes to macros. Add a `--with-etcdir=PATH'
33dnl option. Update `stamp-h' as required by the Automake docs (silly
34dnl me).
35dnl
36dnl Revision 1.3 1997/08/07 09:34:32 mdw
37dnl Added `ElectricFence' support, and support for the `deep' package
38dnl structure.
39dnl
40dnl Revision 1.2 1997/08/04 10:24:21 mdw
41dnl Sources placed under CVS control.
42dnl
43dnl Revision 1.1 1997/07/21 13:47:51 mdw
44dnl Initial revision
45dnl
46
47AC_INIT(src/icrypt.c)
48AC_CONFIG_HEADER(config.h)
49PACKAGE=become VERSION=1.2-pre
50AC_SUBST(PACKAGE)
51AC_SUBST(VERSION)
52AC_DEFINE(VERSION, "1.2-pre (24 July 1997)")
53
54dnl --- Check for compilers and things ---
55
56AC_PROG_CC
57AC_PROG_INSTALL
58AC_PROG_LEX
59AC_CHECK_PROG(AR, ar, ar)
60AC_PROG_RANLIB
61AC_PROG_MAKE_SET
62AC_PROG_YACC
63AC_ARG_PROGRAM
64if test "$ac_cv_prog_gcc" = "yes"; then
65 CFLAGS="$CFLAGS -pedantic -Wall"
66fi
67
68dnl --- Libraries ---
69
70mdw_CHECK_MANYLIBS(socket, socket,,
71 AC_MSG_ERROR([Socket library not found]))
72
73mdw_CHECK_MANYLIBS(gethostbyname, resolv nsl,,
74 AC_MSG_ERROR([Resolver library not found]))
75
76mdw_CHECK_MANYLIBS(yp_all, nsl, AC_DEFINE(HAVE_YP))
77
78dnl --- Types ---
79
80AC_TYPE_PID_T
81AC_TYPE_UID_T
82AC_CHECK_TYPE(ssize_t, int)
83
84dnl --- Check on type sizes ---
85
86AC_CHECK_SIZEOF(int, 2)
87
88dnl --- Set the path separator ---
89
90AC_DEFINE(PATHSEP, '/')
91
92dnl --- Check for some useful functions ---
93
94AC_CHECK_FUNCS(getrusage vtimes)
95
96dnl --- Set configuration directory ---
97
98AC_ARG_WITH([etcdir],
99[ --with-etcdir=PATH set directory for configuration and key files
100 [default is /etc/become]],
101[etcdir="$withval"], [etcdir="/etc/become"])
102AC_SUBST(etcdir)
103AC_DEFINE_UNQUOTED(ETCDIR, "$etcdir")
104
105dnl --- Debugging stuff ---
106
107AC_ARG_WITH(electric-fence,
108[ --with-electric-fence link programs with Electric Fence],
109 [if test "$withval" = "yes"; then
110 AC_CHECK_LIB(efence, malloc)
111 fi])
112
113AC_ARG_ENABLE(debugging,
114[ --enable-debugging spews vast swathes of useless information],
115 [if test "$enableval" = "no"; then
116 AC_DEFINE(NDEBUG, 1)
117 fi],
118 AC_DEFINE(NDEBUG, 1))
119
120AC_ARG_ENABLE(tracing,
121[ --enable-tracing enable output of tracing information],
122 [if test "$enableval" = "yes"; then
123 AC_DEFINE(TRACING)
124 fi],
125 AC_DEFINE(TRACING))
126
127dnl --- Done ---
128
129AC_OUTPUT(Makefile src/Makefile manual/Makefile,
130 [test -z "$CONFIG_HEADERS" || echo timestamp >stamp-h])
131
132dnl----- That's all, folks --------------------------------------------------