51788521b7
This commit adds a dependency of the libglib2 package on thread support in the toolchain, since upstream libglib2 doesn't build without thread support. The commit is rather large as it involves propagating the dependency on thread support to all reverse dependencies of the libglib2 package. [Thomas: squash all patches into one, make a few minor fixes, the most important one being to not add comments about MMU requirement when a package doesn't work on !MMU platforms.] Signed-off-by: Spenser Gilliland <spenser@gillilanding.com>
24 lines
895 B
Plaintext
24 lines
895 B
Plaintext
config BR2_PACKAGE_BUSTLE
|
|
bool "bustle"
|
|
select BR2_PACKAGE_LIBPCAP
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
depends on BR2_USE_WCHAR # libglib2
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
|
depends on BR2_PACKAGE_DBUS # runtime
|
|
help
|
|
Bustle is a better dbus-monitor! It records and draws
|
|
sequence diagrams of D-Bus activity, showing signal
|
|
emissions, method calls and their corresponding returns,
|
|
with timestamps for each individual event and the duration
|
|
of each method call. This can help you check for unwanted
|
|
D-Bus traffic, and pinpoint why your D-Bus-based application
|
|
isn't performing as well as you like.
|
|
|
|
This only installs the command line bustle-pcap tool, not
|
|
the graphical viewer.
|
|
|
|
http://www.willthompson.co.uk/bustle/
|
|
|
|
comment "bustle requires a toolchain with WCHAR support and threading support"
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|