public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/dhcpcd/, net-misc/dhcpcd/files/
Date: Thu,  2 Apr 2020 20:01:30 +0000 (UTC)	[thread overview]
Message-ID: <1585857671.12089270c7adad9ec6cbffb031e27fa66e953383.polynomial-c@gentoo> (raw)

commit:     12089270c7adad9ec6cbffb031e27fa66e953383
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Thu Apr  2 20:01:11 2020 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Thu Apr  2 20:01:11 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12089270

net-misc/dhcpcd: Fixed build with USE="-ipv6"

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 net-misc/dhcpcd/dhcpcd-9.0.0.ebuild                |  2 +
 .../files/dhcpcd-9.0.0-no_ipv6_build_fix.patch     | 92 ++++++++++++++++++++++
 2 files changed, 94 insertions(+)

diff --git a/net-misc/dhcpcd/dhcpcd-9.0.0.ebuild b/net-misc/dhcpcd/dhcpcd-9.0.0.ebuild
index 9656eabee92..52553bf20cc 100644
--- a/net-misc/dhcpcd/dhcpcd-9.0.0.ebuild
+++ b/net-misc/dhcpcd/dhcpcd-9.0.0.ebuild
@@ -33,6 +33,8 @@ RDEPEND="
 	)
 "
 
+PATCHES=( "${FILESDIR}/${P}-no_ipv6_build_fix.patch" )
+
 src_configure() {
 	local myeconfargs=(
 		--dbdir="${EPREFIX}/var/lib/dhcpcd"

diff --git a/net-misc/dhcpcd/files/dhcpcd-9.0.0-no_ipv6_build_fix.patch b/net-misc/dhcpcd/files/dhcpcd-9.0.0-no_ipv6_build_fix.patch
new file mode 100644
index 00000000000..a210982c340
--- /dev/null
+++ b/net-misc/dhcpcd/files/dhcpcd-9.0.0-no_ipv6_build_fix.patch
@@ -0,0 +1,92 @@
+From 12ddbee51f0e1cf4372146f8d42ea404dd07dba3 Mon Sep 17 00:00:00 2001
+From: Roy Marples <roy@marples.name>
+Date: Thu, 2 Apr 2020 19:54:19 +0000
+Subject: Fix build without INET or INET6
+
+---
+ src/dhcpcd.c       | 2 +-
+ src/if-bsd.c       | 2 ++
+ src/if-options.c   | 6 ++++++
+ src/privsep-root.c | 2 ++
+ 4 files changed, 11 insertions(+), 1 deletion(-)
+
+diff --git a/src/dhcpcd.c b/src/dhcpcd.c
+index 057a1fd9..9208f37c 100644
+--- a/src/dhcpcd.c
++++ b/src/dhcpcd.c
+@@ -2169,7 +2169,7 @@ printpidfile:
+ 	}
+ #endif
+ 
+-#ifdef BSD
++#if defined(BSD) && defined(INET6)
+ 	/* Disable the kernel RTADV sysctl as early as possible. */
+ 	if (ctx.options & DHCPCD_IPV6 && ctx.options & DHCPCD_IPV6RS)
+ 		if_disable_rtadv();
+diff --git a/src/if-bsd.c b/src/if-bsd.c
+index dbe5c359..d6c38903 100644
+--- a/src/if-bsd.c
++++ b/src/if-bsd.c
+@@ -1524,6 +1524,8 @@ if_missfilter0(struct dhcpcd_ctx *ctx, struct interface *ifp,
+ #ifdef INET6
+ 	if (sa->sa_family == AF_INET6)
+ 		ifa_setscope(satosin6(sa), ifp->index);
++#else
++	UNUSED(ifp);
+ #endif
+ 
+ 	cp = ctx->rt_missfilter + ctx->rt_missfilterlen;
+diff --git a/src/if-options.c b/src/if-options.c
+index 7850ff2e..1280cfbd 100644
+--- a/src/if-options.c
++++ b/src/if-options.c
+@@ -573,6 +573,8 @@ set_option_space(struct dhcpcd_ctx *ctx,
+ 		return;
+ 	}
+ #endif
++#else
++	UNUSED(arg);
+ #endif
+ 
+ #ifdef INET
+@@ -1275,6 +1277,7 @@ parse_option(struct dhcpcd_ctx *ctx, const char *ifname, struct if_options *ifo,
+ 		memset(ifo->nomask6, 0xff, sizeof(ifo->nomask6));
+ 
+ 		/* Allow the bare minimum through */
++#ifdef INET
+ 		del_option_mask(ifo->nomask, DHO_SUBNETMASK);
+ 		del_option_mask(ifo->nomask, DHO_CSR);
+ 		del_option_mask(ifo->nomask, DHO_ROUTER);
+@@ -1286,11 +1289,14 @@ parse_option(struct dhcpcd_ctx *ctx, const char *ifname, struct if_options *ifo,
+ 		del_option_mask(ifo->nomask, DHO_RENEWALTIME);
+ 		del_option_mask(ifo->nomask, DHO_REBINDTIME);
+ 		del_option_mask(ifo->nomask, DHO_DNSSEARCH);
++#endif
+ 
++#ifdef INET6
+ 		del_option_mask(ifo->nomask6, D6_OPTION_DNS_SERVERS);
+ 		del_option_mask(ifo->nomask6, D6_OPTION_DOMAIN_LIST);
+ 		del_option_mask(ifo->nomask6, D6_OPTION_SOL_MAX_RT);
+ 		del_option_mask(ifo->nomask6, D6_OPTION_INF_MAX_RT);
++#endif
+ 
+ 		break;
+ #ifdef INET
+diff --git a/src/privsep-root.c b/src/privsep-root.c
+index f88f56dd..0f099bb7 100644
+--- a/src/privsep-root.c
++++ b/src/privsep-root.c
+@@ -435,8 +435,10 @@ ps_root_dispatchcb(void *arg, struct ps_msghdr *psm, struct msghdr *msg)
+ 	struct dhcpcd_ctx *ctx = arg;
+ 	ssize_t err;
+ 
++#ifdef INET
+ 	err = ps_bpf_dispatch(ctx, psm, msg);
+ 	if (err == -1 && errno == ENOTSUP)
++#endif
+ 		err = ps_inet_dispatch(ctx, psm, msg);
+ 	return err;
+ }
+-- 
+cgit v1.2.3
+


             reply	other threads:[~2020-04-02 20:01 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-02 20:01 Lars Wendler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-02-17  5:30 [gentoo-commits] repo/gentoo:master commit in: net-misc/dhcpcd/, net-misc/dhcpcd/files/ Sam James
2022-06-21  7:51 David Seifert
2021-05-23 11:48 David Seifert
2021-03-31 19:59 Lars Wendler
2021-03-17  8:21 Lars Wendler
2020-06-05 10:25 Lars Wendler
2020-05-21  2:04 Mike Gilbert
2020-04-21 10:33 Lars Wendler
2019-09-04 15:28 Lars Wendler
2019-05-07 11:19 Lars Wendler
2016-04-18 17:48 William Hubbs

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1585857671.12089270c7adad9ec6cbffb031e27fa66e953383.polynomial-c@gentoo \
    --to=polynomial-c@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox