Import ipsec-tools-0.6.2. Here is the ChangeLog since 0.6.1 (most of them

have already been pulled up in NetBSD CVS)
---------------------------------------------

        0.6.2 released

2005-10-14  Yvan Vanhullebus  <vanhu@netasq.com>

        * src/racoon/ipsec_doi.c: don't allow NULL or empty FQDNs or
          USER_FQDNs (problem reported by Bernhard Suttner).

---------------------------------------------

        0.6.2.beta3 released

2005-09-05   Emmanuel Dreyfus  <manu@netbsd.org>

        From Andreas Hasenack <ahasenack@terra.com.br>
        * configure.ac: More build fixes for Linux

---------------------------------------------

        0.6.2.beta2 released

2005-09-04  Emmanuel Dreyfus  <manu@netbsd.org>

        From Wilfried Weissmann
        * src/libipsec/policy_parse.y src/racoon/{ipsec_doi.c|oakley.c}
          src/racoon/{sockmisc.c|sockmisc.h}: build fixes

---------------------------------------------

        0.6.2.beta1 released

2005-09-03  Emmanuel Dreyfus  <manu@netbsd.org>

        From Francis Dupont <Francis.Dupont@enst-bretagne.fr>
        * src/libipsec/pfkey.c src/racoon/pfkey.c: Cope with extensions

2005-08-26  Emmanuel Dreyfus  <manu@netbsd.org>

        * src/racoon/cfparse.y: handle xauth_login correctly
        * src/racoon/isakmp.c: catch internal error
        * src/raccon/isakmp_agg.c: fix racoon as Xauth client
        * src/raccon/{isakmp_agg.c|isakmp_base.c}: Proposal safety checks
        * src/racoon/evt.c: Fix memory leak when event queue overflows

2005-08-23  Emmanuel Dreyfus  <manu@netbsd.org>

        * src/racoon/{isakmp_agg.c|isakmp_ident.c|isakmp_base.c}: Correctly
          initialize NAT-T VID to avoid freeing unallocated stuff.

2005-08-21  Emmanuel Dreyfus  <manu@netbsd.org>

        From Matthias Scheler <matthias.scheler@tadpole.com>
        * src/racoon/{isakmp_cfg.c|racoon.conf.5}: enable the use of
          ISAKMP mode config without Xauth.

2005-09-16  Yvan Vanhullebus  <vanhu@free.fr>

        * src/racoon/policy.c: Do not parse all sptree in inssp() if we
          don't use Policies priority.

2005-08-15  Emmanuel Dreyfus  <manu@netbsd.org>

        From: Thomas Klausner <wiz@netbsd.org>
        src/setkey/setkey.8: Drop trailing spaces
This commit is contained in:
manu 2005-10-14 13:21:42 +00:00
parent 8fa0fa95d8
commit a37873eef0
2 changed files with 8 additions and 3 deletions

View File

@ -1,5 +1,8 @@
Version history:
----------------
0.6.2 - 14 October 2005
o ISAKMP mode config works without Xauth
0.6.1 - 10 august 2005
o NAT-T fixes for situations where NAT-T is not used
o OpenSSL 0.9.8 support

View File

@ -1,8 +1,8 @@
dnl -*- mode: m4 -*-
dnl Id: configure.ac,v 1.47.2.24 2005/08/19 22:46:45 manubsd Exp
dnl Id: configure.ac,v 1.47.2.29 2005/10/14 09:24:43 manubsd Exp
AC_PREREQ(2.52)
AC_INIT(ipsec-tools, 0.6.1)
AC_INIT(ipsec-tools, 0.6.2)
AC_CONFIG_SRCDIR([configure.ac])
AM_CONFIG_HEADER(config.h)
@ -294,6 +294,8 @@ if test "x$enable_gssapi" = "xyes"; then
# Check if iconv 2nd argument needs const
AC_CHECK_HEADER([iconv.h], [], [AC_MSG_ERROR([iconv.h not found, but needed for GSSAPI support. Aborting.])])
AC_MSG_CHECKING([if iconv second argument needs const])
saved_CFLAGS=$CFLAGS
CFLAGS="$CFLAGS -Wall -Werror"
AC_TRY_COMPILE([
#include <iconv.h>
#include <stdio.h>
@ -308,7 +310,7 @@ if test "x$enable_gssapi" = "xyes"; then
], [AC_MSG_RESULT(yes)
AC_DEFINE([HAVE_ICONV_2ND_CONST], [], [Have iconv using const])
], [AC_MSG_RESULT(no)])
CFLAGS=$saved_CFLAGS
fi
AC_MSG_CHECKING([if --enable-hybrid option is specified])