pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/net/bird
Module Name: pkgsrc
Committed By: joerg
Date: Mon Sep 25 22:29:06 UTC 2017
Modified Files:
pkgsrc/net/bird: distinfo
Added Files:
pkgsrc/net/bird/patches: patch-sysdep_bsd_krt-sock.c
Log Message:
Fix build on NetBSD 8+
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 pkgsrc/net/bird/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/net/bird/patches/patch-sysdep_bsd_krt-sock.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/net/bird/distinfo
diff -u pkgsrc/net/bird/distinfo:1.10 pkgsrc/net/bird/distinfo:1.11
--- pkgsrc/net/bird/distinfo:1.10 Sat Feb 11 02:29:48 2017
+++ pkgsrc/net/bird/distinfo Mon Sep 25 22:29:06 2017
@@ -1,8 +1,9 @@
-$NetBSD: distinfo,v 1.10 2017/02/11 02:29:48 mef Exp $
+$NetBSD: distinfo,v 1.11 2017/09/25 22:29:06 joerg Exp $
SHA1 (bird-1.6.3.tar.gz) = a6714488c4466778abeaba14ca9441066283676e
RMD160 (bird-1.6.3.tar.gz) = 238e113ebbe1871413bce307cd5303f92bc21fe9
SHA512 (bird-1.6.3.tar.gz) = d0f044cbbb3e5fe0624ad8ae58f5fa352ff41a9cd73f37d803431d9d148927bce52d8f2b82e31dd65c753c55b1034aaf8e15739a511e42cd2dd122b5cd1e15df
Size (bird-1.6.3.tar.gz) = 1337198 bytes
SHA1 (patch-configure) = b22044e5be530867a05406d4b32d789933993d53
+SHA1 (patch-sysdep_bsd_krt-sock.c) = e5e13621e06959222f18a06446fe7941cb33ffef
SHA1 (patch-tools_Makefile.in) = 4a6ad298abbe8c42627528c9156ce581a6e07917
Added files:
Index: pkgsrc/net/bird/patches/patch-sysdep_bsd_krt-sock.c
diff -u /dev/null pkgsrc/net/bird/patches/patch-sysdep_bsd_krt-sock.c:1.1
--- /dev/null Mon Sep 25 22:29:06 2017
+++ pkgsrc/net/bird/patches/patch-sysdep_bsd_krt-sock.c Mon Sep 25 22:29:06 2017
@@ -0,0 +1,21 @@
+$NetBSD: patch-sysdep_bsd_krt-sock.c,v 1.1 2017/09/25 22:29:06 joerg Exp $
+
+RTF_LLDATA is used by NetBSD 8+, RTF_LLINFO before.
+
+--- sysdep/bsd/krt-sock.c.orig 2017-09-25 12:08:47.512663756 +0000
++++ sysdep/bsd/krt-sock.c
+@@ -349,8 +349,14 @@ krt_read_route(struct ks_msg *msg, struc
+ if (!(flags & RTF_DONE) && !scan)
+ SKIP("not done in async\n");
+
++#ifdef RTF_LLINFO
+ if (flags & RTF_LLINFO)
+ SKIP("link-local\n");
++#endif
++#ifdef RTF_LLDATA
++ if (flags & RTF_LLDATA)
++ SKIP("link-local\n");
++#endif
+
+ #ifdef KRT_SHARED_SOCKET
+ if (!scan)
Home |
Main Index |
Thread Index |
Old Index