chiark / gitweb /
Distribute the generated HTML files.
[become] / configure.in
CommitLineData
c4f2d992 1dnl -*-fundamental-*-
2dnl
b24e27ea 3dnl $Id: configure.in,v 1.16 1998/06/18 15:15:45 mdw Exp $
c4f2d992 4dnl
5dnl Source for auto configuration for `become'
6dnl
c758e654 7dnl (c) 1998 Mark Wooding
c4f2d992 8dnl
9
03f996bd 10dnl----- Licensing notice ---------------------------------------------------
c4f2d992 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
03f996bd 25dnl along with `become'; if not, write to the Free Software Foundation,
26dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
c4f2d992 27
28dnl----- Revision history ---------------------------------------------------
29dnl
30dnl $Log: configure.in,v $
b24e27ea 31dnl Revision 1.16 1998/06/18 15:15:45 mdw
32dnl Set version number properly. D'oh.
33dnl
82399d0a 34dnl Revision 1.15 1998/06/18 15:11:36 mdw
35dnl Change patchlevel. Check for @sigprocmask@, for improved @noise__shell@
36dnl function.
37dnl
b1b19a1e 38dnl Revision 1.14 1998/06/08 11:22:16 mdw
39dnl Step version number and date.
40dnl
b0ac4e9d 41dnl Revision 1.13 1998/04/23 13:34:10 mdw
42dnl Release version.
43dnl
45732897 44dnl Revision 1.12 1998/04/23 13:09:24 mdw
45dnl Add new option to disable networking.
46dnl
07981d85 47dnl Revision 1.11 1998/02/20 17:55:56 mdw
48dnl Fix default HTML directory.
49dnl
c758e654 50dnl Revision 1.10 1998/01/12 16:45:21 mdw
51dnl Fix copyright date.
52dnl
53dnl Revision 1.9 1997/09/18 11:24:27 mdw
df962e20 54dnl Add `conf' directory. Add an `htmldir' installation directory too.
55dnl
56dnl Revision 1.8 1997/09/17 10:36:30 mdw
f36dccc8 57dnl Remove `set.c'. No longer necessary.
58dnl
ffbfa517 59dnl Revision 1.7 1997/09/09 18:18:41 mdw
60dnl Check for setgroups(2), to see whether subsidiary group lists need to be
61dnl fiddled with.
f81d049a 62dnl
f36dccc8 63dnl Revision 1.6 1997/09/08 13:41:14 mdw
64dnl Check for `setreuid' for changing permissions.
65dnl
66dnl Revision 1.5 1997/09/05 11:45:18 mdw
67dnl Add support for different login styles, and environment variable
68dnl manipulation in a safe and useful way.
69dnl
70dnl Revision 1.4 1997/08/20 16:10:56 mdw
71dnl Lowercase `mdw_' prefixes to macros. Add a `--with-etcdir=PATH'
72dnl option. Update `stamp-h' as required by the Automake docs (silly
73dnl me).
74dnl
1bda7a39 75dnl Revision 1.3 1997/08/07 09:34:32 mdw
f81d049a 76dnl Added `ElectricFence' support, and support for the `deep' package
77dnl structure.
1bda7a39 78dnl
03f996bd 79dnl Revision 1.2 1997/08/04 10:24:21 mdw
80dnl Sources placed under CVS control.
c4f2d992 81dnl
1bda7a39 82dnl Revision 1.1 1997/07/21 13:47:51 mdw
83dnl Initial revision
84dnl
c4f2d992 85
1bda7a39 86AC_INIT(src/icrypt.c)
c4f2d992 87AC_CONFIG_HEADER(config.h)
c758e654 88PACKAGE=become
b24e27ea 89VERSION=1.3.2
82399d0a 90AC_DEFINE(VERSION, "1.3.2 (18 June 1998)")
03f996bd 91AC_SUBST(PACKAGE)
92AC_SUBST(VERSION)
c4f2d992 93
94dnl --- Check for compilers and things ---
95
96AC_PROG_CC
97AC_PROG_INSTALL
98AC_PROG_LEX
99AC_CHECK_PROG(AR, ar, ar)
100AC_PROG_RANLIB
1bda7a39 101AC_PROG_MAKE_SET
c4f2d992 102AC_PROG_YACC
03f996bd 103AC_ARG_PROGRAM
f36dccc8 104if test "$GCC" = "yes"; then
c4f2d992 105 CFLAGS="$CFLAGS -pedantic -Wall"
106fi
107
387501ae 108dnl --- Set default become style ---
109
110AC_ARG_ENABLE([style],
ffbfa517 111[ --enable-style=STYLE set default style to preserve, setuser, or login],
f36dccc8 112[case "$enableval" in
387501ae 113 preserve) style="l_preserve" ;;
ffbfa517 114 su|setuser) style="l_setuser" ;;
387501ae 115 login) style="l_login" ;;
f36dccc8 116 *) AC_MSG_ERROR([unknown login style: choose preserve, setuser, or login])
117 ;;
387501ae 118esac],
119[style="l_preserve"])
120AC_DEFINE_UNQUOTED(DEFAULT_LOGIN_STYLE, $style)
121
45732897 122dnl --- Choose networking options ---
123
124AC_ARG_ENABLE([network],
125[ --disable-network disable the client-server bits of the program],
126 [if test "$enableval" = "no"; then
127 AC_DEFINE(NONETWORK)
128 fi])
129
f81d049a 130dnl --- Set configuration directory ---
131
132AC_ARG_WITH([etcdir],
133[ --with-etcdir=PATH set directory for configuration and key files
134 [default is /etc/become]],
135[etcdir="$withval"], [etcdir="/etc/become"])
136AC_SUBST(etcdir)
137AC_DEFINE_UNQUOTED(ETCDIR, "$etcdir")
138
df962e20 139AC_ARG_WITH([htmldir],
140[ --with-htmldir=PATH set directory for HTML documentation
141 [default is PREFIX/html/become]],
07981d85 142[htmldir="$withval"], [htmldir='${prefix}/html/become'])
df962e20 143AC_SUBST(htmldir)
144
c4f2d992 145dnl --- Debugging stuff ---
146
1bda7a39 147AC_ARG_WITH(electric-fence,
148[ --with-electric-fence link programs with Electric Fence],
149 [if test "$withval" = "yes"; then
150 AC_CHECK_LIB(efence, malloc)
151 fi])
152
c4f2d992 153AC_ARG_ENABLE(debugging,
03f996bd 154[ --enable-debugging spews vast swathes of useless information],
c4f2d992 155 [if test "$enableval" = "no"; then
156 AC_DEFINE(NDEBUG, 1)
157 fi],
158 AC_DEFINE(NDEBUG, 1))
159
03f996bd 160AC_ARG_ENABLE(tracing,
161[ --enable-tracing enable output of tracing information],
162 [if test "$enableval" = "yes"; then
163 AC_DEFINE(TRACING)
c4f2d992 164 fi],
03f996bd 165 AC_DEFINE(TRACING))
c4f2d992 166
f36dccc8 167dnl --- Libraries ---
168
169mdw_CHECK_MANYLIBS(socket, socket,,
c758e654 170 [AC_MSG_ERROR([Socket library not found])])
f36dccc8 171
172mdw_CHECK_MANYLIBS(gethostbyname, resolv nsl,,
c758e654 173 [AC_MSG_ERROR([Resolver library not found])])
f36dccc8 174
175mdw_CHECK_MANYLIBS(yp_all, nsl, AC_DEFINE(HAVE_YP))
176
82399d0a 177dnl --- Other functions ---
178
179AC_CHECK_FUNCS(sigprocmask)
180
f36dccc8 181dnl --- Types ---
182
183AC_TYPE_PID_T
184AC_TYPE_UID_T
185AC_CHECK_TYPE(ssize_t, int)
186
187dnl --- Check on type sizes ---
188
189AC_CHECK_SIZEOF(int, 2)
190
191dnl --- Set the path separator ---
192
193AC_DEFINE(PATHSEP, '/')
194
195dnl --- Check for some useful functions ---
196
197AC_CHECK_FUNCS(setreuid setgroups)
198AC_CHECK_FUNCS(getrusage vtimes)
199
c4f2d992 200dnl --- Done ---
201
df962e20 202AC_OUTPUT(Makefile conf/Makefile src/Makefile manual/Makefile,
f81d049a 203 [test -z "$CONFIG_HEADERS" || echo timestamp >stamp-h])
c4f2d992 204
205dnl----- That's all, folks --------------------------------------------------