5cd8c43137
- Switch to meson-package as configure is not shipped in the official tarball anymore - Drop host-m4 dependency (only needed in maintainer mode) - Disable examples and XML validation (enabled by default) - Drop LIBSIGC_INSTALL_TARGET_FIXUP as documentation is disabled by default - Update web page in Config.in - Update indentation in hash file (two spaces) https://github.com/libsigcplusplus/libsigcplusplus/blob/2.10.6/NEWS Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
15 lines
567 B
Plaintext
15 lines
567 B
Plaintext
config BR2_PACKAGE_LIBSIGC
|
|
bool "libsigc++"
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
help
|
|
libsigc++ implements a typesafe callback system for standard
|
|
C++. It allows you to define signals and to connect those
|
|
signals to any callback function, either global or a member
|
|
function, regardless of whether it is static or virtual.
|
|
|
|
https://libsigcplusplus.github.io/libsigcplusplus/
|
|
|
|
comment "libsigc++ needs a toolchain w/ C++, gcc >= 4.8"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
|