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