mirror of
https://github.com/godotengine/buildroot.git
synced 2025-12-31 09:48:56 +03:00
[Thomas:
- Add missing include in package/Config.in to make the package
appear in menuconfig.
- Fix the comment dependencies: the comment should be shown either
if C++ is not available *or* if threads are not supported.
- Add a hash file.
- Add missing dependency on host-pkgconf, since pkg-config is used
to detect the availability of ibrcommon.
- Remove the custom INSTALL_STAGING_OPTS and INSTALL_TARGET_OPTS:
they are not needed since automake is used.
- Make --with-compression conditional on whether zlib is available.
- Add optional dependency on libglib2.
- Add missing final newlines in .mk and Config.in files.]
Signed-off-by: Tom Sparks <tom_a_sparks@yahoo.com.au>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
17 lines
485 B
Plaintext
17 lines
485 B
Plaintext
config BR2_PACKAGE_IBRDTN
|
|
bool "ibrdtn"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
select BR2_PACKAGE_IBRCOMMON
|
|
help
|
|
IBR-DTN is a small dtn application that supports:
|
|
Bundle Protocol RFC 5050
|
|
Bundle Security Protocol RFC 6257
|
|
|
|
This package contains the ibrdtn library.
|
|
|
|
http://trac.ibr.cs.tu-bs.de/project-cm-2012-ibrdtn
|
|
|
|
comment "ibrdtn needs a toolchain w/ C++, threads"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|