mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-24 19:42:12 +00:00
All the packages modified by this commit have their Config.in included by package/Config.in inside a BR2_PACKAGE_HAS_LUAINTERPRETER && !BR2_STATIC_LIBS condition. Therefore, duplicating the BR2_PACKAGE_HAS_LUAINTERPRETER condition in each of their Config.in file is redundant and unnecessary. This commit drops such redundant "depends on" statements. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Acked-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
13 lines
420 B
Plaintext
13 lines
420 B
Plaintext
config BR2_PACKAGE_LUA_MSGPACK_NATIVE
|
|
bool "lua-msgpack-native"
|
|
depends on BR2_PACKAGE_LUA_5_1 || BR2_PACKAGE_LUAJIT
|
|
help
|
|
This is a native, C language implementation of msgpack
|
|
(http://msgpack.org) library/protocol for Lua language
|
|
|
|
https://github.com/kengonakajima/lua-msgpack-native
|
|
|
|
comment "lua-msgpack-native needs a Lua 5.1 interpreter"
|
|
depends on !BR2_PACKAGE_LUA_5_1
|
|
depends on !BR2_PACKAGE_LUAJIT
|