X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=configure.in;h=2c1fa700a3a3cf0cb8606a1623b6d09e0de7411b;hp=ec76e6d650db92de07fbc33c65aef1af0da00571;hb=33d3bad87d5f3e00e3ed81b75bca2ef21fd6e983;hpb=d9a62c6354d1e2ad78ee8c610518ae9f9ab012d1 diff --git a/configure.in b/configure.in index ec76e6d6..2c1fa700 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -dnl $Id: configure.in,v 1.13.2.40 2002/02/11 15:59:18 guus Exp $ +dnl $Id: configure.in,v 1.13.2.43 2002/03/22 11:43:46 guus Exp $ AC_INIT(src/tincd.c) AM_INIT_AUTOMAKE(tinc, 1.0-cvs) @@ -50,6 +50,10 @@ case $host_os in AC_DEFINE(HAVE_OPENBSD) [ rm -f src/device.c; ln -sf openbsd/device.c src/device.c ] ;; + *netbsd*) + AC_DEFINE(HAVE_NETBSD) + [ rm -f src/device.c; ln -sf netbsd/device.c src/device.c ] + ;; esac AC_CACHE_SAVE @@ -96,6 +100,12 @@ tinc_TUNTAP tinc_OPENSSL tinc_ZLIB +dnl Check if support for jumbograms is requested +AC_ARG_ENABLE(jumbograms, + [ --enable-jumbograms enable support for jumbograms (packets up to 9000 bytes)], + [ AC_DEFINE(ENABLE_JUMBOGRAMS) ] +) + dnl Check if checkpoint tracing has to be enabled AC_ARG_ENABLE(tracing, [ --enable-tracing enable checkpoint tracing (debugging only)], @@ -112,6 +122,4 @@ intl/Makefile lib/Makefile m4/Makefile po/Makefile.in -po/POTFILES -po/Makefile )