summaryrefslogtreecommitdiff
path: root/net/zebra/patches
diff options
context:
space:
mode:
authoritojun <itojun>2001-01-11 05:34:16 +0000
committeritojun <itojun>2001-01-11 05:34:16 +0000
commit9f37d39b6195a3d922933451ebc7fb543338f1e3 (patch)
treea1500dc09260c00f27f113ae7b381681c42aa182 /net/zebra/patches
parent3d8010c6cc335404a2eb9342b18d6d6945c96f84 (diff)
downloadpkgsrc-9f37d39b6195a3d922933451ebc7fb543338f1e3.tar.gz
upgrade to 0.90.
New RIB code provides multiple nexthop for a prefix. Equal cost multipath works on GNU/Linux. Communication between protocol daemon and zebra is changed to UNIX domain socket. BGP trap MIB works. BGP route selection is improved and various option is provided. New OSPF packet read method. PLEASE UPDATE WHOLE SUITE including zebra, bgpd, ripd, ripngd, ospfd, ospf6d when you update from previous version. Zebra protocol is changed so there may be some protocol mismatch when you don't update everything.
Diffstat (limited to 'net/zebra/patches')
-rw-r--r--net/zebra/patches/patch-af8
-rw-r--r--net/zebra/patches/patch-ag17
2 files changed, 15 insertions, 10 deletions
diff --git a/net/zebra/patches/patch-af b/net/zebra/patches/patch-af
index 56884d6e5db..8db65252a52 100644
--- a/net/zebra/patches/patch-af
+++ b/net/zebra/patches/patch-af
@@ -1,9 +1,9 @@
-$NetBSD: patch-af,v 1.1 2000/08/24 01:25:47 kim Exp $
+$NetBSD: patch-af,v 1.2 2001/01/11 05:34:16 itojun Exp $
---- zebra/Makefile.am.orig Thu Aug 17 04:28:47 2000
-+++ zebra/Makefile.am Wed Aug 23 16:25:31 2000
+--- zebra/Makefile.am.orig Wed Jan 10 10:11:11 2001
++++ zebra/Makefile.am Thu Jan 11 13:57:23 2001
@@ -4,6 +4,8 @@
- DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\"
+ DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" -DMULTIPATH_NUM=@MULTIPATH_NUM@
INSTALL_SDATA=@INSTALL@ -m 600
+sysconfdatadir=$(datadir)/examples/zebra
diff --git a/net/zebra/patches/patch-ag b/net/zebra/patches/patch-ag
index b06b2b6e51b..fbf7c905b02 100644
--- a/net/zebra/patches/patch-ag
+++ b/net/zebra/patches/patch-ag
@@ -1,8 +1,13 @@
-$NetBSD: patch-ag,v 1.2 2000/10/13 15:13:54 itojun Exp $
---- configure.in.orig Wed Sep 27 19:02:51 2000
-+++ configure.in Sat Oct 14 00:02:09 2000
-@@ -155,3 +155,3 @@
+$NetBSD: patch-ag,v 1.3 2001/01/11 05:34:16 itojun Exp $
+
+--- configure.in.orig Wed Jan 10 20:01:41 2001
++++ configure.in Thu Jan 11 13:57:58 2001
+@@ -193,7 +193,7 @@
+ case "${enable_vtysh}" in
+ "yes") VTYSH="vtysh";
AC_DEFINE(VTYSH)
-- AC_CHECK_LIB(ncurses, tputs)
-+ AC_CHECK_LIB(curses, tputs)
+- AC_CHECK_LIB(tinfo, tputs, , AC_CHECK_LIB(ncurses, tputs))
++ AC_CHECK_LIB(tinfo, tputs, , AC_CHECK_LIB(curses, tputs))
AC_CHECK_LIB(readline, main)
+ if test $ac_cv_lib_readline_main = no; then
+ AC_MSG_ERROR([vtysh needs libreadline but was not found on your system.])