Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 949688 - net-misc/dhcpcd-10.2.0[-ipv6] error: ‘vsiop’ undeclared
Summary: net-misc/dhcpcd-10.2.0[-ipv6] error: ‘vsiop’ undeclared
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: William Hubbs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2025-02-12 23:17 UTC by programming
Modified: 2025-02-13 07:47 UTC (History)
5 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
emerge info (info.txt,15.89 KB, text/plain)
2025-02-12 23:17 UTC, programming
Details
build.log (build.log,9.68 KB, text/plain)
2025-02-13 00:23 UTC, programming
Details

Note You need to log in before you can comment on or make changes to this bug.
Description programming 2025-02-12 23:17:26 UTC
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;
      |                              ^~~~~~~
```
Comment 1 Alfred Wingate 2025-02-13 00:02:56 UTC
Could you include the build.log? If you have ipv6 disabled then its this most likely.

https://github.com/NetworkConfiguration/dhcpcd/issues/458
Comment 2 programming 2025-02-13 00:23:45 UTC
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.
Comment 3 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2025-02-13 00:26:33 UTC
Yes, just that disabling ipv6 in userland often means issues like this even if kernel support is off.
Comment 4 Larry the Git Cow gentoo-dev 2025-02-13 07:47:04 UTC
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(+)