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