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