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