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 d8faa9b18 interpreters/luamodules/luv: use "depends on" instead of 
"select"
d8faa9b18 is described below

commit d8faa9b18e4c77a6347dc357774f3f60da649b0d
Author: YAMAMOTO Takashi <[email protected]>
AuthorDate: Wed Dec 18 10:47:08 2024 +0900

    interpreters/luamodules/luv: use "depends on" instead of "select"
---
 interpreters/luamodules/luv/Kconfig | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/interpreters/luamodules/luv/Kconfig 
b/interpreters/luamodules/luv/Kconfig
index 88b2bcb14..490f83adf 100644
--- a/interpreters/luamodules/luv/Kconfig
+++ b/interpreters/luamodules/luv/Kconfig
@@ -7,15 +7,15 @@ config LUA_LUV_MODULE
        bool "Lua Luv module"
        default n
        depends on INTERPRETERS_LUA && LIBUV
-       select LIBC_EXECFUNCS
-       select LIBC_NETDB
-       select NET
-       select NETDEV_IFINDEX
-       select NET_SOCKOPTS
-       select NET_TCP
-       select NET_UDP
-       select PSEUDOFS_SOFTLINKS
-       select SCHED_HAVE_PARENT
+       depends on LIBC_EXECFUNCS
+       depends on LIBC_NETDB
+       depends on NET
+       depends on NETDEV_IFINDEX
+       depends on NET_SOCKOPTS
+       depends on NET_TCP
+       depends on NET_UDP
+       depends on PSEUDOFS_SOFTLINKS
+       depends on SCHED_HAVE_PARENT
        ---help---
                Bare libuv bindings for Lua
 

Reply via email to