72bafd5e45
- Remove first patch (inet_pton test removed since version 2.5.0 and12d63c428f
) - Remove second patch (already in version, since3761ef3785
) - Remove WIRESHARK_AUTORECONF=yes as configure.ac is not patched anymore - gcrypt is a mandatory dependency since version 2.4.0 and6b84ddee83
- geoip support has been replaced by maxminddb since version 2.5.0 anda1da75c554
- Drop includedir "hack", this is not needed anymore and wireshark is now installing files in target. With this hack, build fails on: wireshark: installs files in /home/fabrice/buildroot/output/target//home/fabrice/buildroot/output package/pkg-generic.mk:310: recipe for target '/home/fabrice/buildroot/output/build/wireshark-2.6.4/.stamp_target_installed' failed - Disable all new optional features Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> [Arnout: keep optional dependencies alphabetic on Config.in name; add comment of libgcrypt -> libgpg-error dependency.] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
36 lines
978 B
Plaintext
36 lines
978 B
Plaintext
config BR2_PACKAGE_WIRESHARK
|
|
bool "wireshark"
|
|
depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgcrypt -> libgpg-error
|
|
depends on BR2_USE_MMU # fork(), glib2
|
|
depends on BR2_USE_WCHAR # glib2
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
|
select BR2_PACKAGE_LIBPCAP
|
|
select BR2_PACKAGE_LIBGCRYPT
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
help
|
|
Network traffic sniffer and protocol decoder.
|
|
|
|
https://www.wireshark.org
|
|
|
|
if BR2_PACKAGE_WIRESHARK
|
|
|
|
config BR2_PACKAGE_WIRESHARK_QT
|
|
bool
|
|
default y
|
|
depends on BR2_PACKAGE_QT5BASE_WIDGETS
|
|
depends on BR2_PACKAGE_QT5TOOLS
|
|
select BR2_PACKAGE_QT5TOOLS_LINGUIST_TOOLS
|
|
|
|
config BR2_PACKAGE_WIRESHARK_GUI
|
|
bool
|
|
default y if BR2_PACKAGE_LIBGTK2
|
|
default y if BR2_PACKAGE_LIBGTK3
|
|
default y if BR2_PACKAGE_WIRESHARK_QT
|
|
|
|
endif # BR2_PACKAGE_WIRESHARK
|
|
|
|
comment "wireshark needs a toolchain w/ wchar, threads"
|
|
depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|