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