ef5d311a84
The libfutils library is a library that contains some common useful functions (list, hash, time). https://github.com/Parrot-Developers/libfutils Signed-off-by: Herve Codina <herve.codina@bootlin.com> [yann.morin.1998@free.fr: - do not macro-ify headers install - do not parameterise static libs install dest - reorder macros decaration and use - implicit module name - BUILD_CMDS fit on a single line - LIBFUTILS_TARGET_ENV is all env, not just extra env - add missing mkdir in shared-libs case ] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
16 lines
485 B
Plaintext
16 lines
485 B
Plaintext
config BR2_PACKAGE_LIBFUTILS
|
|
bool "libfutils"
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC
|
|
depends on BR2_INSTALL_LIBSTDCPP # ulog
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # ulog
|
|
select BR2_PACKAGE_ULOG
|
|
help
|
|
This library contains some common useful functions (list,
|
|
hash, time)
|
|
|
|
https://github.com/Parrot-Developers/libfutils
|
|
|
|
comment "libfutils needs a toolchain w/ C++, threads"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC
|