From a37873eef02fe0effcfd269c0f58f1b27083d182 Mon Sep 17 00:00:00 2001 From: manu Date: Fri, 14 Oct 2005 13:21:42 +0000 Subject: [PATCH] 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 * 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 From Andreas Hasenack * configure.ac: More build fixes for Linux --------------------------------------------- 0.6.2.beta2 released 2005-09-04 Emmanuel Dreyfus 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 From Francis Dupont * src/libipsec/pfkey.c src/racoon/pfkey.c: Cope with extensions 2005-08-26 Emmanuel Dreyfus * 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 * 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 From Matthias Scheler * src/racoon/{isakmp_cfg.c|racoon.conf.5}: enable the use of ISAKMP mode config without Xauth. 2005-09-16 Yvan Vanhullebus * src/racoon/policy.c: Do not parse all sptree in inssp() if we don't use Policies priority. 2005-08-15 Emmanuel Dreyfus From: Thomas Klausner src/setkey/setkey.8: Drop trailing spaces --- crypto/dist/ipsec-tools/NEWS | 3 +++ crypto/dist/ipsec-tools/configure.ac | 8 +++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/crypto/dist/ipsec-tools/NEWS b/crypto/dist/ipsec-tools/NEWS index f295b13353de..42be285ead59 100644 --- a/crypto/dist/ipsec-tools/NEWS +++ b/crypto/dist/ipsec-tools/NEWS @@ -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 diff --git a/crypto/dist/ipsec-tools/configure.ac b/crypto/dist/ipsec-tools/configure.ac index c729089f73fe..10933c40c2af 100644 --- a/crypto/dist/ipsec-tools/configure.ac +++ b/crypto/dist/ipsec-tools/configure.ac @@ -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 #include @@ -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])