This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new d35dd6572 system/dhcp6c: add NET_ICMPv6_AUTOCONF dependency
d35dd6572 is described below
commit d35dd65727fabba8fe44354c456209fd863bf515
Author: Lars Kruse <[email protected]>
AuthorDate: Tue Oct 8 09:52:09 2024 +0200
system/dhcp6c: add NET_ICMPv6_AUTOCONF dependency
Previously the build failed if NET_ICMPv6_AUTOCONF was disabled
(due to the missing `netlib_obtain_ipv6addr` symbol).
Closes: #2412
---
system/dhcp6c/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/system/dhcp6c/Kconfig b/system/dhcp6c/Kconfig
index d98c8f2bd..d202fd839 100644
--- a/system/dhcp6c/Kconfig
+++ b/system/dhcp6c/Kconfig
@@ -7,7 +7,7 @@ config SYSTEM_DHCPC_RENEW6
tristate "DHCP IPv6 Address Renewal"
default n
select NETUTILS_DHCP6C
- depends on NET_UDP && NET_IPv6
+ depends on NET_UDP && NET_IPv6 && NET_ICMPv6_AUTOCONF
---help---
Enable the DHCP client 'renew6' command