You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by pk...@apache.org on 2023/08/12 12:58:18 UTC

[nuttx-apps] branch master updated (dbfe1a33f -> 2db68e26c)

This is an automated email from the ASF dual-hosted git repository.

pkarashchenko pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git


    from dbfe1a33f cmake:migrate libopencyphal for cmake build
     new b586ab839 nshlib: Don't select LIBC_NETDB automatically
     new 2db68e26c Fix Error: luv/src/constants.c:674:11: error: implicit declaration of function 'getprotobyname'

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 interpreters/luamodules/luv/Kconfig | 1 +
 nshlib/Kconfig                      | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)


[nuttx-apps] 02/02: Fix Error: luv/src/constants.c:674:11: error: implicit declaration of function 'getprotobyname'

Posted by pk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pkarashchenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git

commit 2db68e26c449ab6f3651131c19805510fbeb3714
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Fri Aug 11 23:24:43 2023 +0800

    Fix Error: luv/src/constants.c:674:11: error: implicit declaration of function 'getprotobyname'
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
---
 interpreters/luamodules/luv/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/interpreters/luamodules/luv/Kconfig b/interpreters/luamodules/luv/Kconfig
index 3b1693dd4..fafe2fc2b 100644
--- a/interpreters/luamodules/luv/Kconfig
+++ b/interpreters/luamodules/luv/Kconfig
@@ -8,6 +8,7 @@ config LUA_LUV_MODULE
 	default n
 	depends on INTERPRETERS_LUA && LIBUV
 	select LIBC_EXECFUNCS
+	select LIBC_NETDB
 	select NET
 	select NETDEV_IFINDEX
 	select NET_SOCKOPTS


[nuttx-apps] 01/02: nshlib: Don't select LIBC_NETDB automatically

Posted by pk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pkarashchenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git

commit b586ab839db19ea5df60f4048df89f34d55504d8
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Wed Jun 28 14:02:13 2023 +0800

    nshlib: Don't select LIBC_NETDB automatically
    
    since nshlib always call netdb API inside #ifdef CONFIG_LIBC_NETDB
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
---
 nshlib/Kconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/nshlib/Kconfig b/nshlib/Kconfig
index 6891ed5fd..28a6017e7 100644
--- a/nshlib/Kconfig
+++ b/nshlib/Kconfig
@@ -9,7 +9,6 @@ config NSH_LIBRARY
 	bool "NSH Library"
 	default n
 	select NETUTILS_NETLIB if NET
-	select LIBC_NETDB if NET
 	select BOARDCTL if (!NSH_DISABLE_MKRD && !DISABLE_MOUNTPOINT) || NSH_ARCHINIT || NSH_ROMFSETC
 	select BOARDCTL_MKRD if !NSH_DISABLE_MKRD && !DISABLE_MOUNTPOINT
 	select BOARDCTL_ROMDISK if NSH_ROMFSETC