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