Update to 0.92a - quick bugfix release for ^$ patch matching - see below.

* Changes in zebra-0.92a

* Changes in bgpd

** Fix "^$" community list bug.

** Below command's Address Family specific configurations are added

  nexthop-self
  route-reflector-client
  route-server-client
  soft-reconfiguration inbound

* Changes in zebra

** Treat kernel type routes as EGP routes.
This commit is contained in:
peter 2001-08-21 10:10:20 +00:00
parent 7beb4cee40
commit 200ed62559
4 changed files with 8 additions and 45 deletions

View File

@ -1,10 +1,10 @@
# $OpenBSD: Makefile,v 1.21 2001/08/16 07:30:39 peter Exp $
# $OpenBSD: Makefile,v 1.22 2001/08/21 10:10:20 peter Exp $
# KAME Id: Makefile,v 1.5 1999/09/13 16:27:41 itojun Exp
# Originally by: peter.galbavy@knowledge.com
COMMENT= "multi-threaded routing daemon"
DISTNAME= zebra-0.92
DISTNAME= zebra-0.92a
CATEGORIES= net
NEED_VERSION= 1.435
MASTER_SITES= ftp://ftp.zebra.org/pub/zebra/ \

View File

@ -1,3 +1,3 @@
MD5 (zebra-0.92.tar.gz) = c477dca25a85a3ff86802a5e930ede18
RMD160 (zebra-0.92.tar.gz) = 227c39e441d25ed42163881f69ba84627c15cf3a
SHA1 (zebra-0.92.tar.gz) = f08c9dadaabe748d97e94046da0f7dfd4c1430fe
MD5 (zebra-0.92a.tar.gz) = d6725243ec245b77eb24b3ba7c0bf65c
RMD160 (zebra-0.92a.tar.gz) = f526c5cf7ee26ef7430f7cb3d228beafbc3d63e0
SHA1 (zebra-0.92a.tar.gz) = 7dc3813dfe3c3a70f298cdbb0abefcb4663682d7

View File

@ -1,23 +1,6 @@
--- configure.orig Wed Aug 15 10:26:51 2001
+++ configure Wed Aug 15 10:27:28 2001
@@ -3603,6 +3603,8 @@ fi
if test "${enable_snmp}" = "yes";then
+ old_libs="${LIBS}"
+ LIBS="-L/usr/local/lib"
unset ac_cv_lib_snmp_asn_parse_int
echo $ac_n "checking for asn_parse_int in -lsnmp""... $ac_c" 1>&6
echo "configure:3609: checking for asn_parse_int in -lsnmp" >&5
@@ -3766,6 +3768,7 @@ fi
fi
fi
+ LIBS="${old_libs}"
if test "${HAVE_SNMP}" = ""; then
old_libs="${LIBS}"
@@ -4242,7 +4242,7 @@
--- configure.orig Sun Aug 19 09:24:16 2001
+++ configure Mon Aug 20 10:20:38 2001
@@ -4397,7 +4397,7 @@ EOF
cat >> $CONFIG_STATUS <<EOF

View File

@ -1,20 +0,0 @@
$OpenBSD: patch-configure_in,v 1.1 2001/08/18 08:46:38 peter Exp $
--- configure.in.orig Wed Aug 15 10:25:57 2001
+++ configure.in Wed Aug 15 10:26:09 2001
@@ -596,6 +596,8 @@ dnl check SNMP library
dnl ------------------
if test "${enable_snmp}" = "yes";then
dnl AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes)
+ old_libs="${LIBS}"
+ LIBS="-L/usr/local/lib"
unset ac_cv_lib_snmp_asn_parse_int
AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes, )
if test "${HAVE_SNMP}" = ""; then
@@ -607,6 +609,7 @@ dnl AC_CHECK_LIB(snmp, asn_parse_int, H
AC_CHECK_LIB(snmp, asn_parse_int, [HAVE_SNMP=yes; NEED_CRYPTO=yes;LIBS="$LIBS -lcrypto" ],,"-lcrypto")
fi
fi
+ LIBS="${old_libs}"
if test "${HAVE_SNMP}" = ""; then
old_libs="${LIBS}"