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