Fixes for new version of automake.
[become] / configure.in
1 dnl -*-fundamental-*-
2 dnl
3 dnl $Id: configure.in,v 1.17 1999/05/04 16:25:19 mdw Exp $
4 dnl
5 dnl Source for auto configuration for `become'
6 dnl
7 dnl (c) 1998 Mark Wooding
8 dnl
9
10 dnl----- Licensing notice ---------------------------------------------------
11 dnl
12 dnl This file is part of `become'
13 dnl
14 dnl `Become' is free software; you can redistribute it and/or modify
15 dnl it under the terms of the GNU General Public License as published by
16 dnl the Free Software Foundation; either version 2 of the License, or
17 dnl (at your option) any later version.
18 dnl
19 dnl `Become' is distributed in the hope that it will be useful,
20 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
21 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 dnl GNU General Public License for more details.
23 dnl
24 dnl You should have received a copy of the GNU General Public License
25 dnl along with `become'; if not, write to the Free Software Foundation,
26 dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27
28 dnl----- Revision history ---------------------------------------------------
29 dnl
30 dnl $Log: configure.in,v $
31 dnl Revision 1.17 1999/05/04 16:25:19 mdw
32 dnl Fixes for new version of automake.
33 dnl
34 dnl Revision 1.16 1998/06/18 15:15:45 mdw
35 dnl Set version number properly. D'oh.
36 dnl
37 dnl Revision 1.15 1998/06/18 15:11:36 mdw
38 dnl Change patchlevel. Check for @sigprocmask@, for improved @noise__shell@
39 dnl function.
40 dnl
41 dnl Revision 1.14 1998/06/08 11:22:16 mdw
42 dnl Step version number and date.
43 dnl
44 dnl Revision 1.13 1998/04/23 13:34:10 mdw
45 dnl Release version.
46 dnl
47 dnl Revision 1.12 1998/04/23 13:09:24 mdw
48 dnl Add new option to disable networking.
49 dnl
50 dnl Revision 1.11 1998/02/20 17:55:56 mdw
51 dnl Fix default HTML directory.
52 dnl
53 dnl Revision 1.10 1998/01/12 16:45:21 mdw
54 dnl Fix copyright date.
55 dnl
56 dnl Revision 1.9 1997/09/18 11:24:27 mdw
57 dnl Add `conf' directory. Add an `htmldir' installation directory too.
58 dnl
59 dnl Revision 1.8 1997/09/17 10:36:30 mdw
60 dnl Remove `set.c'. No longer necessary.
61 dnl
62 dnl Revision 1.7 1997/09/09 18:18:41 mdw
63 dnl Check for setgroups(2), to see whether subsidiary group lists need to be
64 dnl fiddled with.
65 dnl
66 dnl Revision 1.6 1997/09/08 13:41:14 mdw
67 dnl Check for `setreuid' for changing permissions.
68 dnl
69 dnl Revision 1.5 1997/09/05 11:45:18 mdw
70 dnl Add support for different login styles, and environment variable
71 dnl manipulation in a safe and useful way.
72 dnl
73 dnl Revision 1.4 1997/08/20 16:10:56 mdw
74 dnl Lowercase `mdw_' prefixes to macros. Add a `--with-etcdir=PATH'
75 dnl option. Update `stamp-h' as required by the Automake docs (silly
76 dnl me).
77 dnl
78 dnl Revision 1.3 1997/08/07 09:34:32 mdw
79 dnl Added `ElectricFence' support, and support for the `deep' package
80 dnl structure.
81 dnl
82 dnl Revision 1.2 1997/08/04 10:24:21 mdw
83 dnl Sources placed under CVS control.
84 dnl
85 dnl Revision 1.1 1997/07/21 13:47:51 mdw
86 dnl Initial revision
87 dnl
88
89 AC_INIT(src/icrypt.c)
90 AM_INIT_AUTOMAKE(become, 1.3.3)
91 AM_CONFIG_HEADER(config.h)
92
93 dnl --- Check for compilers and things ---
94
95 AC_PROG_CC
96 mdw_GCC_FLAGS
97 AM_PROG_LEX
98 AC_CHECK_PROG(AR, ar, ar)
99 AC_PROG_RANLIB
100 AC_PROG_YACC
101
102 dnl --- Set default become style ---
103
104 AC_ARG_ENABLE([style],
105 [ --enable-style=STYLE set default style to preserve, setuser, or login],
106 [case "$enableval" in
107 preserve) style="l_preserve" ;;
108 su|setuser) style="l_setuser" ;;
109 login) style="l_login" ;;
110 *) AC_MSG_ERROR([unknown login style: choose preserve, setuser, or login])
111 ;;
112 esac],
113 [style="l_preserve"])
114 AC_DEFINE_UNQUOTED(DEFAULT_LOGIN_STYLE, $style)
115
116 dnl --- Choose networking options ---
117
118 AC_ARG_ENABLE([network],
119 [ --disable-network disable the client-server bits of the program],
120 [if test "$enableval" = "no"; then
121 AC_DEFINE(NONETWORK)
122 fi])
123
124 dnl --- Set configuration directory ---
125
126 AC_ARG_WITH([etcdir],
127 [ --with-etcdir=PATH set directory for configuration and key files
128 [default is /etc/become]],
129 [etcdir="$withval"], [etcdir="/etc/become"])
130 AC_SUBST(etcdir)
131 AC_DEFINE_UNQUOTED(ETCDIR, "$etcdir")
132
133 AC_ARG_WITH([htmldir],
134 [ --with-htmldir=PATH set directory for HTML documentation
135 [default is PREFIX/html/become]],
136 [htmldir="$withval"], [htmldir='${prefix}/html/become'])
137 AC_SUBST(htmldir)
138
139 dnl --- Debugging stuff ---
140
141 AC_ARG_WITH(electric-fence,
142 [ --with-electric-fence link programs with Electric Fence],
143 [if test "$withval" = "yes"; then
144 AC_CHECK_LIB(efence, malloc)
145 fi])
146
147 AC_ARG_ENABLE(debugging,
148 [ --enable-debugging spews vast swathes of useless information],
149 [if test "$enableval" = "no"; then
150 AC_DEFINE(NDEBUG, 1)
151 fi],
152 AC_DEFINE(NDEBUG, 1))
153
154 AC_ARG_ENABLE(tracing,
155 [ --enable-tracing enable output of tracing information],
156 [if test "$enableval" = "yes"; then
157 AC_DEFINE(TRACING)
158 fi],
159 AC_DEFINE(TRACING))
160
161 dnl --- Libraries ---
162
163 mdw_CHECK_MANYLIBS(socket, socket,,
164 [AC_MSG_ERROR([Socket library not found])])
165
166 mdw_CHECK_MANYLIBS(gethostbyname, resolv nsl,,
167 [AC_MSG_ERROR([Resolver library not found])])
168
169 mdw_CHECK_MANYLIBS(yp_all, nsl, AC_DEFINE(HAVE_YP))
170
171 dnl --- Other functions ---
172
173 AC_CHECK_FUNCS(sigprocmask)
174
175 dnl --- Types ---
176
177 AC_TYPE_PID_T
178 AC_TYPE_UID_T
179 AC_CHECK_TYPE(ssize_t, int)
180
181 dnl --- Check on type sizes ---
182
183 AC_CHECK_SIZEOF(int, 2)
184
185 dnl --- Set the path separator ---
186
187 AC_DEFINE(PATHSEP, '/')
188
189 dnl --- Check for some useful functions ---
190
191 AC_CHECK_FUNCS(setreuid setgroups)
192 AC_CHECK_FUNCS(getrusage vtimes)
193
194 dnl --- Done ---
195
196 AC_OUTPUT(Makefile conf/Makefile src/Makefile manual/Makefile)
197
198 dnl----- That's all, folks --------------------------------------------------