Remove `set.c'. No longer necessary.
[become] / configure.in
CommitLineData
c4f2d992 1dnl -*-fundamental-*-
2dnl
f36dccc8 3dnl $Id: configure.in,v 1.8 1997/09/17 10:36:30 mdw Exp $
c4f2d992 4dnl
5dnl Source for auto configuration for `become'
6dnl
7dnl (c) 1997 Mark Wooding
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 $
f36dccc8 31dnl Revision 1.8 1997/09/17 10:36:30 mdw
32dnl Remove `set.c'. No longer necessary.
33dnl
ffbfa517 34dnl Revision 1.7 1997/09/09 18:18:41 mdw
35dnl Check for setgroups(2), to see whether subsidiary group lists need to be
36dnl fiddled with.
f81d049a 37dnl
f36dccc8 38dnl Revision 1.6 1997/09/08 13:41:14 mdw
39dnl Check for `setreuid' for changing permissions.
40dnl
41dnl Revision 1.5 1997/09/05 11:45:18 mdw
42dnl Add support for different login styles, and environment variable
43dnl manipulation in a safe and useful way.
44dnl
45dnl Revision 1.4 1997/08/20 16:10:56 mdw
46dnl Lowercase `mdw_' prefixes to macros. Add a `--with-etcdir=PATH'
47dnl option. Update `stamp-h' as required by the Automake docs (silly
48dnl me).
49dnl
1bda7a39 50dnl Revision 1.3 1997/08/07 09:34:32 mdw
f81d049a 51dnl Added `ElectricFence' support, and support for the `deep' package
52dnl structure.
1bda7a39 53dnl
03f996bd 54dnl Revision 1.2 1997/08/04 10:24:21 mdw
55dnl Sources placed under CVS control.
c4f2d992 56dnl
1bda7a39 57dnl Revision 1.1 1997/07/21 13:47:51 mdw
58dnl Initial revision
59dnl
c4f2d992 60
1bda7a39 61AC_INIT(src/icrypt.c)
c4f2d992 62AC_CONFIG_HEADER(config.h)
03f996bd 63PACKAGE=become VERSION=1.2-pre
64AC_SUBST(PACKAGE)
65AC_SUBST(VERSION)
f36dccc8 66AC_DEFINE(VERSION, "1.2-pre (17 September 1997)")
c4f2d992 67
68dnl --- Check for compilers and things ---
69
70AC_PROG_CC
71AC_PROG_INSTALL
72AC_PROG_LEX
73AC_CHECK_PROG(AR, ar, ar)
74AC_PROG_RANLIB
1bda7a39 75AC_PROG_MAKE_SET
c4f2d992 76AC_PROG_YACC
03f996bd 77AC_ARG_PROGRAM
f36dccc8 78if test "$GCC" = "yes"; then
c4f2d992 79 CFLAGS="$CFLAGS -pedantic -Wall"
80fi
81
387501ae 82dnl --- Set default become style ---
83
84AC_ARG_ENABLE([style],
ffbfa517 85[ --enable-style=STYLE set default style to preserve, setuser, or login],
f36dccc8 86[case "$enableval" in
387501ae 87 preserve) style="l_preserve" ;;
ffbfa517 88 su|setuser) style="l_setuser" ;;
387501ae 89 login) style="l_login" ;;
f36dccc8 90 *) AC_MSG_ERROR([unknown login style: choose preserve, setuser, or login])
91 ;;
387501ae 92esac],
93[style="l_preserve"])
94AC_DEFINE_UNQUOTED(DEFAULT_LOGIN_STYLE, $style)
95
f81d049a 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
c4f2d992 105dnl --- Debugging stuff ---
106
1bda7a39 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
c4f2d992 113AC_ARG_ENABLE(debugging,
03f996bd 114[ --enable-debugging spews vast swathes of useless information],
c4f2d992 115 [if test "$enableval" = "no"; then
116 AC_DEFINE(NDEBUG, 1)
117 fi],
118 AC_DEFINE(NDEBUG, 1))
119
03f996bd 120AC_ARG_ENABLE(tracing,
121[ --enable-tracing enable output of tracing information],
122 [if test "$enableval" = "yes"; then
123 AC_DEFINE(TRACING)
c4f2d992 124 fi],
03f996bd 125 AC_DEFINE(TRACING))
c4f2d992 126
f36dccc8 127dnl --- Libraries ---
128
129mdw_CHECK_MANYLIBS(socket, socket,,
130 AC_MSG_ERROR([Socket library not found]))
131
132mdw_CHECK_MANYLIBS(gethostbyname, resolv nsl,,
133 AC_MSG_ERROR([Resolver library not found]))
134
135mdw_CHECK_MANYLIBS(yp_all, nsl, AC_DEFINE(HAVE_YP))
136
137dnl --- Types ---
138
139AC_TYPE_PID_T
140AC_TYPE_UID_T
141AC_CHECK_TYPE(ssize_t, int)
142
143dnl --- Check on type sizes ---
144
145AC_CHECK_SIZEOF(int, 2)
146
147dnl --- Set the path separator ---
148
149AC_DEFINE(PATHSEP, '/')
150
151dnl --- Check for some useful functions ---
152
153AC_CHECK_FUNCS(setreuid setgroups)
154AC_CHECK_FUNCS(getrusage vtimes)
155
c4f2d992 156dnl --- Done ---
157
f81d049a 158AC_OUTPUT(Makefile src/Makefile manual/Makefile,
159 [test -z "$CONFIG_HEADERS" || echo timestamp >stamp-h])
c4f2d992 160
161dnl----- That's all, folks --------------------------------------------------