You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by gu...@apache.org on 2021/11/08 13:43:54 UTC

[incubator-nuttx-apps] 01/02: system/readline: Move READLINE_HAVE_EXTMATCH inside SYSTEM_READLINE section

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

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

commit 35e442d08c4a5080530b6cea2104841e9e076bee
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Sun Nov 7 12:33:20 2021 +0800

    system/readline: Move READLINE_HAVE_EXTMATCH inside SYSTEM_READLINE section
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
---
 nshlib/Kconfig          | 2 +-
 system/readline/Kconfig | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/nshlib/Kconfig b/nshlib/Kconfig
index 6d54c38..c45b6ff 100644
--- a/nshlib/Kconfig
+++ b/nshlib/Kconfig
@@ -11,7 +11,6 @@ config NSH_LIBRARY
 	default n
 	select NETUTILS_NETLIB if NET
 	select LIBC_NETDB if NET
-	select READLINE_HAVE_EXTMATCH
 	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
@@ -80,6 +79,7 @@ choice
 config NSH_READLINE
 	bool "Minimal readline()"
 	select SYSTEM_READLINE
+	select READLINE_HAVE_EXTMATCH
 	---help---
 		Selects the minimal implementation of readline().  This minimal
 		implementation provides on backspace for command line editing.
diff --git a/system/readline/Kconfig b/system/readline/Kconfig
index 5a9411f..f088fdd 100644
--- a/system/readline/Kconfig
+++ b/system/readline/Kconfig
@@ -3,10 +3,6 @@
 # see the file kconfig-language.txt in the NuttX tools repository.
 #
 
-config READLINE_HAVE_EXTMATCH
-	bool
-	default n
-
 menuconfig SYSTEM_READLINE
 	bool "readline() Support"
 	default n
@@ -15,6 +11,10 @@ menuconfig SYSTEM_READLINE
 
 if SYSTEM_READLINE
 
+config READLINE_HAVE_EXTMATCH
+	bool
+	default n
+
 config READLINE_ECHO
 	bool "Echo character input"
 	default y