chiark / gitweb /
pathmtu: New program for determining the MTU to a host.
[tripe] / configure.ac
CommitLineData
6b6ad670
MW
1dnl -*-autoconf-*-
2dnl
3dnl Configuration script for TrIPE
4dnl
5dnl (c) 2001 Straylight/Edgeware
6dnl
7
8dnl ----- Licensing notice --------------------------------------------------
9dnl
10dnl This file is part of Trivial IP Encryption (TrIPE).
11dnl
12dnl TrIPE 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.
16dnl
17dnl TrIPE 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.
21dnl
22dnl You should have received a copy of the GNU General Public License
23dnl along with TrIPE; if not, write to the Free Software Foundation,
24dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26dnl--------------------------------------------------------------------------
27dnl Initialization.
28
29mdw_AUTO_VERSION
30AC_INIT([tripe], AUTO_VERSION, [mdw@distorted.org.uk])
31AC_CONFIG_SRCDIR([server/tripe.h])
32AC_CONFIG_AUX_DIR([config])
33AM_INIT_AUTOMAKE([foreign])
34
35AC_PROG_CC
36AM_PROG_CC_C_O
37AX_CFLAGS_WARN_ALL
38AC_CANONICAL_HOST
39AM_PROG_LIBTOOL
40
1c5f4539
MW
41AC_CHECK_PROGS([AUTOM4TE], [autom4te])
42
6b6ad670
MW
43dnl--------------------------------------------------------------------------
44dnl C programming environment.
45
46AC_CHECK_HEADERS([stdarg.h])
47
48AC_SEARCH_LIBS([socket], [socket])
49
50case "$host_os" in
51 linux)
52 AC_ARG_WITH([linux-includes],
53 AS_HELP_STRING(
54 [--with-linux-includes=DIR],
55 [Linux kernel includes]),
56 [CFLAGS="$CFLAGS -I$withval"], [:])
57 ;;
58esac
59
60PKG_CHECK_MODULES([mLib], [mLib >= 2.0.4])
61PKG_CHECK_MODULES([catacomb], [catacomb >= 2.1.1])
62
63CFLAGS="$CFLAGS $mLib_CFLAGS $catacomb_CFLAGS"
6b6ad670
MW
64
65dnl--------------------------------------------------------------------------
66dnl Directories to install things into.
67
68dnl TRIPE_DEFINE_PATH(VAR, ARG, HELP, DEFAULT, [DEFINE, DEFINEHELP])
69AC_DEFUN([TRIPE_DEFINE_PATH], [
70 AC_ARG_WITH([$1], AS_HELP_STRING([--with-$1=$2], [$3]),
71 [$1=$withval], [$1=$4])
72 AC_SUBST([$1])
73 m4_if([$5], [], [], [
74 mdw_DEFINE_PATHS([mdw_DEFINE_PATH([$5], [$][$1], [$6])])
75 ])
76])
77
78dnl Actual options.
79TRIPE_DEFINE_PATH(
80 [configdir], [DIR], [keys and other configuration [[LOCALSTATE/tripe]]],
81 ['${localstatedir}/tripe'],
82 [CONFIGDIR], [Look for keys and other configuration here.])
83
84TRIPE_DEFINE_PATH(
85 [socketdir], [DIR], [admin socket [[.]]], [.],
86 [SOCKETDIR], [Create or look for administration socket here.])
87
88TRIPE_DEFINE_PATH(
89 [pidfile], [FILE], [process-id [[./tripectl.pid]]], [tripectl.pid])
90
91TRIPE_DEFINE_PATH(
92 [initconfig], [FILE], [configuration for init script [[/etc/tripe.conf]]],
93 [/etc/tripe.conf])
94
95TRIPE_DEFINE_PATH(
96 [logfile], [FILE], [logging output [[./tripe.log]]], [tripe.log])
97
98dnl--------------------------------------------------------------------------
99dnl Other options.
100
101AC_ARG_WITH([tracing],
102 AS_HELP_STRING(
103 [--without-tracing],
104 [compile out tracing support (not recommended)]),
105 [test "$withval" = no &&
106 AC_DEFINE([NTRACE], [1], [Disable all tracing.])],
107 [:])
108
c64d8cd5
MW
109dnl--------------------------------------------------------------------------
110dnl Path MTU discovery.
111
112case $host_os in
113 linux*)
114 pmtu=yes
115 ;;
116 *)
117 pmtu=no
118 ;;
119esac
120AM_CONDITIONAL([PATHMTU], [test $pmtu = yes])
121
6b6ad670
MW
122dnl--------------------------------------------------------------------------
123dnl Tunnel devices.
124
125dnl Provide the user with a choice.
126AC_ARG_WITH([tunnel],
127 AS_HELP_STRING(
128 [--with-tunnel=KIND],
129 [kinds of tunnel device to use (linux, unet, bsd, slip)]),
130 [tun=$withval], [tun=auto])
131
132dnl If he doesn't choose, pick something sensible.
133if test "$tun" = auto; then
134 AC_CACHE_CHECK([tunnel drivers to use], [mdw_cv_tunnel], [
135 mdw_cv_tunnel=""
136 case $host_os in
137 linux*)
138 case `uname -r` in
139 [2.[4-9].*] | [2.[1-9][0-9]*.*] | [[3-9].*] | [[1-9][0-9]*.*])
140 mdw_cv_tunnel=linux
141 ;;
142 *)
143 mdw_cv_tunnel=unet
144 ;;
145 esac
146 ;;
147 *bsd*)
148 mdw_cv_tunnel=bsd
149 ;;
150 esac
151 mdw_cv_tunnel=$mdw_cv_tunnel${mdw_cv_tunnel:+ }slip
152 ])
153 tun=$mdw_cv_tunnel
154fi
155
156tunnels=""
157for i in $tun; do
158 case $i in
159 linux) AC_DEFINE([TUN_LINUX], [1],
160 [Install the Linux TUN/TAP driver.]) ;;
161 bsd) AC_DEFINE([TUN_BSD], [1],
162 [Install the BSD tunnel driver.]) ;;
163 unet) AC_DEFINE([TUN_UNET], [1],
164 [Install the obsolete Linux Usernet driver.]) ;;
165 slip) ;;
166 *) AC_MSG_ERROR([Unknown tunnel type]) ;;
167 esac
168 tunnels="$tunnels&tun_$i, "
169done
170AC_DEFINE_UNQUOTED([TUN_LIST], [$tunnels 0],
171 [List of tunnel drivers to install.])
172
173dnl--------------------------------------------------------------------------
174dnl Python.
175
176dnl Find out whether Python exists at all.
177AM_PATH_PYTHON([2.4], [python=yes], [python=no])
178AM_CONDITIONAL([HAVE_PYTHON], [test $python = yes])
179
180dnl Find out whether we can use Catacomb and GTK.
181if test $python = yes; then
182 AC_PYTHON_MODULE([pygtk])
183 AC_PYTHON_MODULE([catacomb])
184fi
185AM_CONDITIONAL([HAVE_PYGTK], [test ${HAVE_PYMOD_PYGTK-no} = yes])
186AM_CONDITIONAL([HAVE_PYCATACOMB], [test ${HAVE_PYMOD_CATACOMB-no} = yes])
187
188dnl--------------------------------------------------------------------------
189dnl Wireshark.
190dnl
191dnl This is all distressingly ugly and complicated. Why they can't just
192dnl provide a pkg-config dropping containing all the useful information about
193dnl the installation I don't know.
194
195WIRESHARK_CFLAGS=""
196: ${wireshark_plugindir=unknown}
197
198dnl Get the user to help.
199AC_ARG_WITH([wireshark],
200 AS_HELP_STRING(
201 [--with-wireshark[=DIR]],
202 [build and install Wireshark plugin]),
203 [case "$withval" in
204 no) haveshark=no needshark=no ;;
205 yes) haveshark=yes needshark=yes ;;
206 *) haveshark=yes needshark=yes
63efe3ef 207 wireshark_plugindir=$withval ;;
6b6ad670
MW
208 esac],
209 [haveshark=yes needshark=no])
210
211dnl Try to find the Wireshark installation directory the hard way.
212case "$haveshark,$wireshark_plugindir" in
213 yes,unknown)
214 AC_CACHE_CHECK([where to put Wireshark plugins],
215 [mdw_cv_wireshark_plugin_dir], [
216 mdw_cv_wireshark_plugin_dir="failed"
217 wsprefix=none
218 for i in "${prefix}" /usr/local /usr `echo $PATH | tr : " "`; do
219 if test -x "$i/bin/tshark"; then
220 wsprefix=$i
221 break
222 fi
223 done
224 if test "$wsprefix" != none; then
225 wsbin=$wsprefix/bin/tshark
226 wsver=`$wsbin -v | sed ['s/^[^ ]* \([0-9A-Za-z.]*\).*$/\1/;q']`
227 dir=$wsprefix/lib/wireshark/plugins
228 test -d "$dir/$wsver" && dir="$dir/$wsver"
229 if test -d "$dir"; then
230 mdw_cv_wireshark_plugin_dir=$dir
231 fi
232 fi
233 ])
234 case $mdw_cv_wireshark_plugin_dir in
235 failed) haveshark=no ;;
236 *) wireshark_plugindir=$mdw_cv_wireshark_plugin_dir ;;
237 esac
238esac
239
240dnl If we're still interested, find Glib.
241case "$haveshark" in
9db701ca 242 yes) AM_PATH_GLIB_2_0([2.4.0], [], [haveshark=false], [gmodule]) ;;
6b6ad670
MW
243esac
244
245dnl Find the include directory. This would be much easier if they just
246dnl provided a pkg-config file.
247case "$haveshark" in
248 yes)
249 bad=yes
250 mdw_CFLAGS=$CFLAGS
251 wsprefix=`echo $wireshark_plugindir | sed 's:/lib/.*$::'`
252 AC_CACHE_CHECK([how to find the Wireshark headers],
63efe3ef 253 [mdw_cv_wireshark_includes], [
6b6ad670
MW
254 mdw_cv_wireshark_includes=failed
255 for i in \
256 "" \
257 "-I${wsprefix}/include/wireshark" \
258 "-I${wsprefix}/include" \
259 "-I${prefix}/include/wireshark" \
260 "-I${prefix}/include" \
261 "-I/usr/include/wireshark" \
262 "-I/usr/local/include/wireshark" \
263 "-I/usr/local/include"; do
264 CFLAGS="$GLIB_CFLAGS $i"
265 AC_TRY_COMPILE([
266#include <netinet/in.h>
267#include <glib.h>
268#include <wireshark/config.h>
269#include <wireshark/epan/packet.h>],
270 [dissector_handle_t dh; dh = create_dissector_handle(0, 0);],
271 [bad=no; break])
272 done
273 case "$bad" in
274 no) mdw_cv_wireshark_includes=$i ;;
275 esac
276 CFLAGS=$mdw_CFLAGS
277 ])
278 case "$mdw_cv_wireshark_includes" in
279 failed) haveshark=no ;;
280 esac
281esac
282
283case "$haveshark,$needshark" in
284 no,yes)
285 AC_MSG_ERROR([failed to configure Wireshark plugin])
286 ;;
287 yes,*)
288 WIRESHARK_CFLAGS="$CFLAGS $GLIB_CFLAGS $mdw_cv_wireshark_includes"
289 AC_SUBST(WIRESHARK_CFLAGS)
290 AC_SUBST(wireshark_plugindir)
291 ;;
292esac
293
294AM_CONDITIONAL([HAVE_WIRESHARK], [test "$haveshark" = yes])
295
296dnl--------------------------------------------------------------------------
297dnl Produce output.
298
299AC_CONFIG_HEADER([config/config.h])
1c5f4539 300AC_CONFIG_TESTDIR([t])
6b6ad670
MW
301
302AC_CONFIG_FILES(
303 [Makefile]
304 [common/Makefile]
49f86fe4 305 [uslip/Makefile]
c64d8cd5 306 [pathmtu/Makefile]
6b6ad670
MW
307 [client/Makefile]
308 [server/Makefile]
309 [proxy/Makefile]
310 [pkstream/Makefile]
311 [wireshark/Makefile]
312 [init/Makefile]
313 [keys/Makefile]
1c5f4539
MW
314 [mon/Makefile]
315 [t/Makefile t/atlocal])
6b6ad670
MW
316AC_OUTPUT
317
318dnl ----- That's all, folks -------------------------------------------------