mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-26 20:56:33 +00:00
readline: s/BR2_READLINE/BR2_PACKAGE_READLINE/
Package configs should start with BR2_PACKAGE_.
This commit is contained in:
parent
ebf47824cc
commit
a72794391a
@ -2,7 +2,7 @@ config BR2_PACKAGE_MYSQL_CLIENT
|
|||||||
bool "MySQL 5.1 client"
|
bool "MySQL 5.1 client"
|
||||||
depends on BR2_INSTALL_LIBSTDCPP
|
depends on BR2_INSTALL_LIBSTDCPP
|
||||||
select BR2_PACKAGE_NCURSES
|
select BR2_PACKAGE_NCURSES
|
||||||
select BR2_READLINE
|
select BR2_PACKAGE_READLINE
|
||||||
help
|
help
|
||||||
MySQL client
|
MySQL client
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
config BR2_PACKAGE_SQLITE
|
config BR2_PACKAGE_SQLITE
|
||||||
bool "sqlite"
|
bool "sqlite"
|
||||||
select BR2_PACKAGE_NCURSES
|
select BR2_PACKAGE_NCURSES
|
||||||
select BR2_READLINE
|
select BR2_PACKAGE_READLINE
|
||||||
help
|
help
|
||||||
SQLite is a small C library that implements a self-contained,
|
SQLite is a small C library that implements a self-contained,
|
||||||
embeddable, zero-configuration SQL database engine.
|
embeddable, zero-configuration SQL database engine.
|
||||||
|
@ -51,7 +51,7 @@ config BR2_PACKAGE_IPSEC_TOOLS_IPV6
|
|||||||
|
|
||||||
config BR2_PACKAGE_IPSEC_TOOLS_READLINE
|
config BR2_PACKAGE_IPSEC_TOOLS_READLINE
|
||||||
depends on BR2_PACKAGE_IPSEC_TOOLS
|
depends on BR2_PACKAGE_IPSEC_TOOLS
|
||||||
select BR2_READLINE
|
select BR2_PACKAGE_READLINE
|
||||||
bool "Enable readline input support if available."
|
bool "Enable readline input support if available."
|
||||||
|
|
||||||
config BR2_PACKAGE_IPSEC_TOOLS_LIBS
|
config BR2_PACKAGE_IPSEC_TOOLS_LIBS
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
config BR2_PACKAGE_LUA
|
config BR2_PACKAGE_LUA
|
||||||
bool "lua"
|
bool "lua"
|
||||||
select BR2_READLINE
|
select BR2_PACKAGE_READLINE
|
||||||
select BR2_PACKAGE_NCURSES
|
select BR2_PACKAGE_NCURSES
|
||||||
help
|
help
|
||||||
Lua is a powerful, fast, light-weight, embeddable scripting language.
|
Lua is a powerful, fast, light-weight, embeddable scripting language.
|
||||||
|
@ -86,7 +86,7 @@ config BR2_PACKAGE_PHP_EXT_JSON
|
|||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_READLINE
|
config BR2_PACKAGE_PHP_EXT_READLINE
|
||||||
bool "readline"
|
bool "readline"
|
||||||
depends on BR2_PACKAGE_PHP && (BR2_PACKAGE_PHP_CLI || BR2_PACKAGE_PHP_CGI) && BR2_READLINE
|
depends on BR2_PACKAGE_PHP && (BR2_PACKAGE_PHP_CLI || BR2_PACKAGE_PHP_CGI) && BR2_PACKAGE_READLINE
|
||||||
help
|
help
|
||||||
readline support
|
readline support
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
config BR2_READLINE
|
config BR2_PACKAGE_READLINE
|
||||||
bool "readline"
|
bool "readline"
|
||||||
help
|
help
|
||||||
Enable GNU readline support?
|
Enable GNU readline support?
|
||||||
|
@ -86,6 +86,6 @@ readline-clean:
|
|||||||
readline-dirclean:
|
readline-dirclean:
|
||||||
rm -rf $(READLINE_DIR)
|
rm -rf $(READLINE_DIR)
|
||||||
|
|
||||||
ifeq ($(BR2_READLINE),y)
|
ifeq ($(BR2_PACKAGE_READLINE),y)
|
||||||
TARGETS+=readline
|
TARGETS+=readline
|
||||||
endif
|
endif
|
||||||
|
@ -45,7 +45,7 @@ config BR2_TARGET_TEST_PACKAGES
|
|||||||
select BR2_PACKAGE_MPATROL
|
select BR2_PACKAGE_MPATROL
|
||||||
select BR2_PACKAGE_OPROFILE
|
select BR2_PACKAGE_OPROFILE
|
||||||
select BR2_PACKAGE_PKGCONFIG
|
select BR2_PACKAGE_PKGCONFIG
|
||||||
select BR2_READLINE
|
select BR2_PACKAGE_READLINE
|
||||||
select BR2_PACKAGE_READLINE_TARGET
|
select BR2_PACKAGE_READLINE_TARGET
|
||||||
select BR2_PACKAGE_READLINE_HEADERS
|
select BR2_PACKAGE_READLINE_HEADERS
|
||||||
|
|
||||||
|
@ -306,7 +306,7 @@ BR2_HOST_FAKEROOT=y
|
|||||||
# oprofile requires a toolchain with C++ support enabled
|
# oprofile requires a toolchain with C++ support enabled
|
||||||
#
|
#
|
||||||
# BR2_PACKAGE_PKGCONFIG is not set
|
# BR2_PACKAGE_PKGCONFIG is not set
|
||||||
# BR2_READLINE is not set
|
# BR2_PACKAGE_READLINE is not set
|
||||||
# BR2_PACKAGE_PCRE is not set
|
# BR2_PACKAGE_PCRE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -311,7 +311,7 @@ BR2_PACKAGE_M4=y
|
|||||||
# BR2_PACKAGE_MPATROL is not set
|
# BR2_PACKAGE_MPATROL is not set
|
||||||
# BR2_PACKAGE_OPROFILE is not set
|
# BR2_PACKAGE_OPROFILE is not set
|
||||||
BR2_PACKAGE_PKGCONFIG=y
|
BR2_PACKAGE_PKGCONFIG=y
|
||||||
BR2_READLINE=y
|
BR2_PACKAGE_READLINE=y
|
||||||
BR2_PACKAGE_READLINE_TARGET=y
|
BR2_PACKAGE_READLINE_TARGET=y
|
||||||
# BR2_PACKAGE_READLINE_HEADERS is not set
|
# BR2_PACKAGE_READLINE_HEADERS is not set
|
||||||
# BR2_PACKAGE_PCRE is not set
|
# BR2_PACKAGE_PCRE is not set
|
||||||
|
@ -373,7 +373,7 @@ BR2_PACKAGE_LIBINTL=y
|
|||||||
# BR2_PACKAGE_M4 is not set
|
# BR2_PACKAGE_M4 is not set
|
||||||
# BR2_PACKAGE_OPROFILE is not set
|
# BR2_PACKAGE_OPROFILE is not set
|
||||||
BR2_PACKAGE_PKGCONFIG=y
|
BR2_PACKAGE_PKGCONFIG=y
|
||||||
BR2_READLINE=y
|
BR2_PACKAGE_READLINE=y
|
||||||
BR2_PACKAGE_READLINE_TARGET=y
|
BR2_PACKAGE_READLINE_TARGET=y
|
||||||
# BR2_PACKAGE_READLINE_HEADERS is not set
|
# BR2_PACKAGE_READLINE_HEADERS is not set
|
||||||
# BR2_PACKAGE_PCRE is not set
|
# BR2_PACKAGE_PCRE is not set
|
||||||
|
@ -387,7 +387,7 @@ BR2_PACKAGE_LIBINTL=y
|
|||||||
# BR2_PACKAGE_M4 is not set
|
# BR2_PACKAGE_M4 is not set
|
||||||
# BR2_PACKAGE_OPROFILE is not set
|
# BR2_PACKAGE_OPROFILE is not set
|
||||||
BR2_PACKAGE_PKGCONFIG=y
|
BR2_PACKAGE_PKGCONFIG=y
|
||||||
BR2_READLINE=y
|
BR2_PACKAGE_READLINE=y
|
||||||
BR2_PACKAGE_READLINE_TARGET=y
|
BR2_PACKAGE_READLINE_TARGET=y
|
||||||
# BR2_PACKAGE_READLINE_HEADERS is not set
|
# BR2_PACKAGE_READLINE_HEADERS is not set
|
||||||
# BR2_PACKAGE_PCRE is not set
|
# BR2_PACKAGE_PCRE is not set
|
||||||
|
@ -284,7 +284,7 @@ BR2_PACKAGE_LIBINTL=y
|
|||||||
BR2_PACKAGE_LIBTOOL=y
|
BR2_PACKAGE_LIBTOOL=y
|
||||||
BR2_PACKAGE_M4=y
|
BR2_PACKAGE_M4=y
|
||||||
BR2_PACKAGE_PKGCONFIG=y
|
BR2_PACKAGE_PKGCONFIG=y
|
||||||
BR2_READLINE=y
|
BR2_PACKAGE_READLINE=y
|
||||||
BR2_PACKAGE_READLINE_TARGET=y
|
BR2_PACKAGE_READLINE_TARGET=y
|
||||||
# BR2_PACKAGE_XERCES is not set
|
# BR2_PACKAGE_XERCES is not set
|
||||||
|
|
||||||
|
@ -381,7 +381,7 @@ BR2_PACKAGE_LIBINTL=y
|
|||||||
# BR2_PACKAGE_M4 is not set
|
# BR2_PACKAGE_M4 is not set
|
||||||
# BR2_PACKAGE_OPROFILE is not set
|
# BR2_PACKAGE_OPROFILE is not set
|
||||||
BR2_PACKAGE_PKGCONFIG=y
|
BR2_PACKAGE_PKGCONFIG=y
|
||||||
BR2_READLINE=y
|
BR2_PACKAGE_READLINE=y
|
||||||
BR2_PACKAGE_READLINE_TARGET=y
|
BR2_PACKAGE_READLINE_TARGET=y
|
||||||
# BR2_PACKAGE_READLINE_HEADERS is not set
|
# BR2_PACKAGE_READLINE_HEADERS is not set
|
||||||
# BR2_PACKAGE_PCRE is not set
|
# BR2_PACKAGE_PCRE is not set
|
||||||
|
@ -378,7 +378,7 @@ BR2_PACKAGE_LIBINTL=y
|
|||||||
# BR2_PACKAGE_M4 is not set
|
# BR2_PACKAGE_M4 is not set
|
||||||
# BR2_PACKAGE_OPROFILE is not set
|
# BR2_PACKAGE_OPROFILE is not set
|
||||||
BR2_PACKAGE_PKGCONFIG=y
|
BR2_PACKAGE_PKGCONFIG=y
|
||||||
BR2_READLINE=y
|
BR2_PACKAGE_READLINE=y
|
||||||
BR2_PACKAGE_READLINE_TARGET=y
|
BR2_PACKAGE_READLINE_TARGET=y
|
||||||
# BR2_PACKAGE_READLINE_HEADERS is not set
|
# BR2_PACKAGE_READLINE_HEADERS is not set
|
||||||
# BR2_PACKAGE_PCRE is not set
|
# BR2_PACKAGE_PCRE is not set
|
||||||
|
@ -378,7 +378,7 @@ BR2_PACKAGE_LIBINTL=y
|
|||||||
# BR2_PACKAGE_M4 is not set
|
# BR2_PACKAGE_M4 is not set
|
||||||
# BR2_PACKAGE_OPROFILE is not set
|
# BR2_PACKAGE_OPROFILE is not set
|
||||||
BR2_PACKAGE_PKGCONFIG=y
|
BR2_PACKAGE_PKGCONFIG=y
|
||||||
BR2_READLINE=y
|
BR2_PACKAGE_READLINE=y
|
||||||
BR2_PACKAGE_READLINE_TARGET=y
|
BR2_PACKAGE_READLINE_TARGET=y
|
||||||
# BR2_PACKAGE_READLINE_HEADERS is not set
|
# BR2_PACKAGE_READLINE_HEADERS is not set
|
||||||
# BR2_PACKAGE_PCRE is not set
|
# BR2_PACKAGE_PCRE is not set
|
||||||
|
@ -326,7 +326,7 @@ BR2_HOST_FAKEROOT=y
|
|||||||
# BR2_PACKAGE_M4 is not set
|
# BR2_PACKAGE_M4 is not set
|
||||||
# BR2_PACKAGE_OPROFILE is not set
|
# BR2_PACKAGE_OPROFILE is not set
|
||||||
BR2_PACKAGE_PKGCONFIG=y
|
BR2_PACKAGE_PKGCONFIG=y
|
||||||
# BR2_READLINE is not set
|
# BR2_PACKAGE_READLINE is not set
|
||||||
# BR2_PACKAGE_PCRE is not set
|
# BR2_PACKAGE_PCRE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -336,7 +336,7 @@ BR2_PACKAGE_LIBINTL=y
|
|||||||
# BR2_PACKAGE_M4 is not set
|
# BR2_PACKAGE_M4 is not set
|
||||||
# BR2_PACKAGE_OPROFILE is not set
|
# BR2_PACKAGE_OPROFILE is not set
|
||||||
BR2_PACKAGE_PKGCONFIG=y
|
BR2_PACKAGE_PKGCONFIG=y
|
||||||
BR2_READLINE=y
|
BR2_PACKAGE_READLINE=y
|
||||||
# BR2_PACKAGE_READLINE_TARGET is not set
|
# BR2_PACKAGE_READLINE_TARGET is not set
|
||||||
# BR2_PACKAGE_PCRE is not set
|
# BR2_PACKAGE_PCRE is not set
|
||||||
|
|
||||||
|
@ -326,7 +326,7 @@ BR2_PACKAGE_LIBINTL=y
|
|||||||
# BR2_PACKAGE_M4 is not set
|
# BR2_PACKAGE_M4 is not set
|
||||||
# BR2_PACKAGE_OPROFILE is not set
|
# BR2_PACKAGE_OPROFILE is not set
|
||||||
BR2_PACKAGE_PKGCONFIG=y
|
BR2_PACKAGE_PKGCONFIG=y
|
||||||
# BR2_READLINE is not set
|
# BR2_PACKAGE_READLINE is not set
|
||||||
# BR2_PACKAGE_PCRE is not set
|
# BR2_PACKAGE_PCRE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -326,7 +326,7 @@ BR2_PACKAGE_LIBINTL=y
|
|||||||
# BR2_PACKAGE_M4 is not set
|
# BR2_PACKAGE_M4 is not set
|
||||||
# BR2_PACKAGE_OPROFILE is not set
|
# BR2_PACKAGE_OPROFILE is not set
|
||||||
BR2_PACKAGE_PKGCONFIG=y
|
BR2_PACKAGE_PKGCONFIG=y
|
||||||
# BR2_READLINE is not set
|
# BR2_PACKAGE_READLINE is not set
|
||||||
# BR2_PACKAGE_PCRE is not set
|
# BR2_PACKAGE_PCRE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -336,7 +336,7 @@ BR2_PACKAGE_LIBINTL=y
|
|||||||
# BR2_PACKAGE_M4 is not set
|
# BR2_PACKAGE_M4 is not set
|
||||||
# BR2_PACKAGE_OPROFILE is not set
|
# BR2_PACKAGE_OPROFILE is not set
|
||||||
BR2_PACKAGE_PKGCONFIG=y
|
BR2_PACKAGE_PKGCONFIG=y
|
||||||
# BR2_READLINE is not set
|
# BR2_PACKAGE_READLINE is not set
|
||||||
# BR2_PACKAGE_PCRE is not set
|
# BR2_PACKAGE_PCRE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -302,7 +302,7 @@ BR2_HOST_FAKEROOT=y
|
|||||||
# BR2_PACKAGE_M4 is not set
|
# BR2_PACKAGE_M4 is not set
|
||||||
# BR2_PACKAGE_OPROFILE is not set
|
# BR2_PACKAGE_OPROFILE is not set
|
||||||
# BR2_PACKAGE_PKGCONFIG is not set
|
# BR2_PACKAGE_PKGCONFIG is not set
|
||||||
# BR2_READLINE is not set
|
# BR2_PACKAGE_READLINE is not set
|
||||||
# BR2_PACKAGE_PCRE is not set
|
# BR2_PACKAGE_PCRE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -299,7 +299,7 @@ BR2_PACKAGE_LIBINTL=y
|
|||||||
# BR2_PACKAGE_M4 is not set
|
# BR2_PACKAGE_M4 is not set
|
||||||
# BR2_PACKAGE_OPROFILE is not set
|
# BR2_PACKAGE_OPROFILE is not set
|
||||||
BR2_PACKAGE_PKGCONFIG=y
|
BR2_PACKAGE_PKGCONFIG=y
|
||||||
# BR2_READLINE is not set
|
# BR2_PACKAGE_READLINE is not set
|
||||||
BR2_PACKAGE_PCRE=y
|
BR2_PACKAGE_PCRE=y
|
||||||
# BR2_PACKAGE_TMC is not set
|
# BR2_PACKAGE_TMC is not set
|
||||||
|
|
||||||
|
@ -312,7 +312,7 @@ BR2_HOST_FAKEROOT=y
|
|||||||
# BR2_PACKAGE_M4 is not set
|
# BR2_PACKAGE_M4 is not set
|
||||||
# BR2_PACKAGE_OPROFILE is not set
|
# BR2_PACKAGE_OPROFILE is not set
|
||||||
# BR2_PACKAGE_PKGCONFIG is not set
|
# BR2_PACKAGE_PKGCONFIG is not set
|
||||||
# BR2_READLINE is not set
|
# BR2_PACKAGE_READLINE is not set
|
||||||
# BR2_PACKAGE_VALGRIND is not set
|
# BR2_PACKAGE_VALGRIND is not set
|
||||||
# BR2_PACKAGE_PCRE is not set
|
# BR2_PACKAGE_PCRE is not set
|
||||||
|
|
||||||
|
@ -312,7 +312,7 @@ BR2_HOST_FAKEROOT=y
|
|||||||
# BR2_PACKAGE_M4 is not set
|
# BR2_PACKAGE_M4 is not set
|
||||||
# BR2_PACKAGE_OPROFILE is not set
|
# BR2_PACKAGE_OPROFILE is not set
|
||||||
# BR2_PACKAGE_PKGCONFIG is not set
|
# BR2_PACKAGE_PKGCONFIG is not set
|
||||||
# BR2_READLINE is not set
|
# BR2_PACKAGE_READLINE is not set
|
||||||
# BR2_PACKAGE_VALGRIND is not set
|
# BR2_PACKAGE_VALGRIND is not set
|
||||||
# BR2_PACKAGE_PCRE is not set
|
# BR2_PACKAGE_PCRE is not set
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user