diff options
| author | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-01-20 21:43:57 +0000 |
|---|---|---|
| committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-01-20 21:43:57 +0000 |
| commit | f2573c3d521f189ec16fde21938aa0da39eb9c3c (patch) | |
| tree | d9a49636813138c4ac608a95c09ab0f38a747a45 /net/ndisc6/files | |
| parent | Update MASTER_SITES and WWW (diff) | |
net/ndisc6: Update to 1.0.4
ndisc6 1.0.4 now requires a C11-capable compiler and no longer needs
the 'variable length array in structure' GCC extension. As such
we can build it with Clang now. This also removes the GCC run
dependency which was the initial request in the PR [1].
Changes: http://git.remlab.net/gitweb/?p=ndisc6.git;a=blob_plain;f=NEWS;hb=81bdcb51b576a394ba01f5a8022e5b9354e431a6
PR: 233187
Reported by: hashiz@meridiani.jp [1]
Submitted by: tobik
Approved by: m.tsatsenko@gmail.com (maintainer)
MFH: 2019Q1 (bug fixes and fewer run dependencies)
Notes
Notes:
svn path=/head/; revision=490814
Diffstat (limited to 'net/ndisc6/files')
| -rw-r--r-- | net/ndisc6/files/patch-configure | 10 | ||||
| -rw-r--r-- | net/ndisc6/files/patch-rdnss_merge-hook.in (renamed from net/ndisc6/files/patch-rdnssd__merge-hook.in) | 4 | ||||
| -rw-r--r-- | net/ndisc6/files/patch-rdnss_rdnssd.c (renamed from net/ndisc6/files/patch-rdnssd__rdnssd.c) | 4 | ||||
| -rw-r--r-- | net/ndisc6/files/patch-rdnss_rdnssd.h (renamed from net/ndisc6/files/patch-rdnssd__rdnssd.h) | 6 | ||||
| -rw-r--r-- | net/ndisc6/files/patch-src-ndisc.c | 4 |
5 files changed, 14 insertions, 14 deletions
diff --git a/net/ndisc6/files/patch-configure b/net/ndisc6/files/patch-configure index ea65a254b630..2cf476f1e32a 100644 --- a/net/ndisc6/files/patch-configure +++ b/net/ndisc6/files/patch-configure @@ -1,6 +1,6 @@ ---- configure.orig 2014-12-14 10:09:45 UTC +--- configure.orig 2019-01-06 14:36:38 UTC +++ configure -@@ -5713,7 +5713,7 @@ fi +@@ -5900,7 +5900,7 @@ fi if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in @@ -9,7 +9,7 @@ esac fi fi -@@ -5759,7 +5759,7 @@ fi +@@ -5946,7 +5946,7 @@ fi || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in @@ -18,7 +18,7 @@ esac fi fi -@@ -6597,7 +6597,7 @@ fi +@@ -6784,7 +6784,7 @@ fi if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in @@ -27,7 +27,7 @@ esac fi fi -@@ -6643,7 +6643,7 @@ fi +@@ -6830,7 +6830,7 @@ fi || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in diff --git a/net/ndisc6/files/patch-rdnssd__merge-hook.in b/net/ndisc6/files/patch-rdnss_merge-hook.in index fb53c52ff6ff..03c296e38be7 100644 --- a/net/ndisc6/files/patch-rdnssd__merge-hook.in +++ b/net/ndisc6/files/patch-rdnss_merge-hook.in @@ -1,5 +1,5 @@ ---- rdnssd/merge-hook.in.orig 2014-12-14 10:13:57 UTC -+++ rdnssd/merge-hook.in +--- rdnss/merge-hook.in.orig 2014-12-14 10:13:57 UTC ++++ rdnss/merge-hook.in @@ -19,7 +19,7 @@ set -e diff --git a/net/ndisc6/files/patch-rdnssd__rdnssd.c b/net/ndisc6/files/patch-rdnss_rdnssd.c index c8cbe857156a..54ed9b80a918 100644 --- a/net/ndisc6/files/patch-rdnssd__rdnssd.c +++ b/net/ndisc6/files/patch-rdnss_rdnssd.c @@ -1,5 +1,5 @@ ---- rdnssd/rdnssd.c.orig 2014-12-14 10:39:28 UTC -+++ rdnssd/rdnssd.c +--- rdnss/rdnssd.c.orig 2014-12-14 10:39:28 UTC ++++ rdnss/rdnssd.c @@ -28,6 +28,7 @@ #include <stdbool.h> #include <locale.h> diff --git a/net/ndisc6/files/patch-rdnssd__rdnssd.h b/net/ndisc6/files/patch-rdnss_rdnssd.h index b942a24307cf..0d5e440659ce 100644 --- a/net/ndisc6/files/patch-rdnssd__rdnssd.h +++ b/net/ndisc6/files/patch-rdnss_rdnssd.h @@ -1,6 +1,6 @@ ---- rdnssd/rdnssd.h.orig 2011-10-17 15:35:11 UTC -+++ rdnssd/rdnssd.h -@@ -32,24 +32,6 @@ extern const rdnss_src_t rdnss_netlink, +--- rdnss/rdnssd.h.orig 2016-12-07 18:11:55 UTC ++++ rdnss/rdnssd.h +@@ -32,24 +32,6 @@ extern const rdnss_src_t rdnss_netlink, rdnss_icmp; #define ND_OPT_RDNSS 25 #define ND_OPT_DNSSL 31 diff --git a/net/ndisc6/files/patch-src-ndisc.c b/net/ndisc6/files/patch-src-ndisc.c index 4e7adddbb490..08d52dc50c91 100644 --- a/net/ndisc6/files/patch-src-ndisc.c +++ b/net/ndisc6/files/patch-src-ndisc.c @@ -1,6 +1,6 @@ ---- src/ndisc.c.orig 2014-12-14 10:39:28 UTC +--- src/ndisc.c.orig 2016-12-07 16:43:04 UTC +++ src/ndisc.c -@@ -532,7 +532,7 @@ parseadv (const uint8_t *buf, size_t len +@@ -532,7 +532,7 @@ parseadv (const uint8_t *buf, size_t len, const struct printf (_("Stateful other conf. : %3s\n"), gettext ((v & ND_RA_FLAG_OTHER) ? N_ ("Yes") : N_("No"))); printf (_("Mobile home agent : %3s\n"), |
