Fix whitespace throughout.
[fwd] / configure.in
1 dnl -*-m4-*-
2 dnl
3 dnl Configuration script for fw
4 dnl
5 dnl (c) 1999 Straylight/Edgeware
6 dnl
7
8 dnl ----- Licensing notice --------------------------------------------------
9 dnl
10 dnl This file is part of the `fw' port forwarder.
11 dnl
12 dnl `fw' is free software; you can redistribute it and/or modify
13 dnl it under the terms of the GNU General Public License as published by
14 dnl the Free Software Foundation; either version 2 of the License, or
15 dnl (at your option) any later version.
16 dnl
17 dnl `fw' is distributed in the hope that it will be useful,
18 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
19 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 dnl GNU General Public License for more details.
21 dnl
22 dnl You should have received a copy of the GNU General Public License
23 dnl along with `fw'; if not, write to the Free Software Foundation,
24 dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26 AC_INIT(fw.c)
27 AM_INIT_AUTOMAKE(fw, 1.2.7)
28 AM_CONFIG_HEADER(config.h)
29
30 AC_PROG_CC
31 mdw_GCC_FLAGS
32
33 AC_CHECK_HEADERS(unistd.h)
34
35 AC_TYPE_UID_T
36 AC_TYPE_PID_T
37
38 mdw_DECL_ENVIRON
39
40 mdw_CHECK_MANYLIBS(socket, socket)
41 mdw_CHECK_MANYLIBS(gethostbyname, nsl resolv)
42 mdw_MLIB(2.0.3)
43
44 AC_CHECK_FUNCS(inet_aton)
45 AC_CHECK_FUNCS(setrlimit)
46 AC_CHECK_FUNCS(setgroups)
47 AC_CHECK_FUNCS(getnetbyname)
48 AC_CHECK_FUNCS(strsignal _sys_siglist, break)
49
50 AC_OUTPUT(Makefile)
51
52 dnl ----- That's all, folks -------------------------------------------------