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