Created attachment 918860 [details] emerge info In compiling dhcpcd-10.2.0 on x64, I get ``` if-options.c: In function ‘parse_option’: if-options.c:910:17: error: ‘vsiop’ undeclared (first use in this function); did you mean ‘vsio’? 910 | vsiop = &ifo->vsio; | ^~~~~ | vsio if-options.c:910:17: note: each undeclared identifier is reported only once for each function it appears in if-options.c:911:17: error: ‘vsio_lenp’ undeclared (first use in this function) 911 | vsio_lenp = &ifo->vsio_len; | ^~~~~~~~~ if-options.c:912:17: error: ‘opt_max’ undeclared (first use in this function) 912 | opt_max = UINT8_MAX; | ^~~~~~~ if-options.c:913:17: error: ‘opt_header’ undeclared (first use in this function) 913 | opt_header = sizeof(uint8_t) + sizeof(uint8_t); | ^~~~~~~~~~ if-options.c:968:61: error: ‘in6addr’ undeclared (first use in this function); did you mean ‘in6_addr’? 968 | } else if (inet_pton(AF_INET6, fp, &in6addr) == 1) { | ^~~~~~~ | in6_addr if-options.c:996:22: error: ‘sl’ undeclared (first use in this function); did you mean ‘dl’? 996 | for (sl = 0, vsio = *vsiop; sl < *vsio_lenp; sl++, vsio++) { | ^~ | dl if-options.c:996:30: error: ‘vsio’ undeclared (first use in this function) 996 | for (sl = 0, vsio = *vsiop; sl < *vsio_lenp; sl++, vsio++) { | ^~~~ if-options.c:1015:30: error: ‘vsio_so’ undeclared (first use in this function) 1015 | for (sl = 0, vsio_so = vsio->so; | ^~~~~~~ ```
Could you include the build.log? If you have ipv6 disabled then its this most likely. https://github.com/NetworkConfiguration/dhcpcd/issues/458
Created attachment 918861 [details] build.log Yes, I have IPv6 disabled. Our servers are given an IPv4 address and that works, so I have no need for IPv6 in the kernel.
Yes, just that disabling ipv6 in userland often means issues like this even if kernel support is off.
The bug has been closed via the following commit(s): https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15311ec67778da347c0f4803ab936f91a72a2152 commit 15311ec67778da347c0f4803ab936f91a72a2152 Author: Sam James <sam@gentoo.org> AuthorDate: 2025-02-13 07:46:25 +0000 Commit: Sam James <sam@gentoo.org> CommitDate: 2025-02-13 07:46:46 +0000 net-misc/dhcpcd: fix build w/ USE=-ipv6 Closes: https://bugs.gentoo.org/949688 Signed-off-by: Sam James <sam@gentoo.org> net-misc/dhcpcd/dhcpcd-10.2.0.ebuild | 1 + .../dhcpcd/files/dhcpcd-10.2.0-no-ipv6-build.patch | 110 +++++++++++++++++++++ 2 files changed, 111 insertions(+)