kumquat-buildroot/package/lua-cffi/Config.in
Fabrice Fontaine c33cecfac4 package/lua-cffi: fix spaces
Commit 13114d0f93 forgot to add spaces
before and after '=' and added a spurious space in Config.in

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-07 08:35:09 +01:00

20 lines
613 B
Plaintext

config BR2_PACKAGE_LUA_CFFI
bool "lua-cffi"
depends on !BR2_PACKAGE_LUAJIT
depends on BR2_TOOLCHAIN_HAS_THREADS # libffi
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
depends on BR2_INSTALL_LIBSTDCPP
select BR2_PACKAGE_LIBFFI
help
This is a portable C FFI for Lua, based on libffi and aiming
to be mostly compatible with LuaJIT FFI, but written from
scratch.
https://github.com/q66/cffi-lua
comment "lua-cffi needs a toolchain w/ C++, gcc >= 4.8, threads"
depends on !BR2_PACKAGE_LUAJIT
depends on !BR2_INSTALL_LIBSTDCPP || \
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || \
!BR2_TOOLCHAIN_HAS_THREADS