mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-15 23:05:34 +01:00
wireshark: fix rdepends issue
Added a few more PACKAGECONF options Signed-off-by: Armin Kuster <akuster@mvista.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
This commit is contained in:
parent
6b76fffbb1
commit
8912083e23
|
|
@ -4,7 +4,7 @@ SECTION = "network"
|
|||
LICENSE = "GPL-2.0"
|
||||
LIC_FILES_CHKSUM = "file://README.linux;md5=631e077455b7972172eb149195e065b0"
|
||||
|
||||
DEPENDS = "perl-native libcap libpcap pcre expat glib-2.0 libnl sbc"
|
||||
DEPENDS = "perl-native libcap libpcap pcre expat glib-2.0 sbc"
|
||||
|
||||
SRC_URI = " \
|
||||
http://wiresharkdownloads.riverbed.com/wireshark/src/wireshark-${PV}.tar.bz2 \
|
||||
|
|
@ -23,11 +23,12 @@ ARM_INSTRUCTION_SET = "arm"
|
|||
# Works with either gtk+ or gtk3.
|
||||
WHICH_GTK = "gtk3"
|
||||
|
||||
PACKAGECONFIG ??= "gnutls gcrypt"
|
||||
PACKAGECONFIG ??= "gnutls gcrypt libnl"
|
||||
PACKAGECONFIG += " ${@bb.utils.contains("DISTRO_FEATURES", "x11", "${WHICH_GTK} graphics", "", d)}"
|
||||
PACKAGECONFIG += " ${@bb.utils.contains("DISTRO_FEATURES", "ipv6", "ipv6", "", d)}"
|
||||
|
||||
PACKAGECONFIG[libsmi] = "--with-libsmi=yes, --with-libsmi=no, libsmi"
|
||||
PACKAGECONFIG[libnl] = "--with-libnl=yes, --with-libnl=no, libnl"
|
||||
PACKAGECONFIG[portaudio] = "--with-portaudio=yes, --with-portaudio=no, portaudio-v19"
|
||||
PACKAGECONFIG[gtk2] = "--with-gtk2=yes, --with-gtk2=no, gtk+"
|
||||
PACKAGECONFIG[gtk3] = "--with-gtk3=yes, --with-gtk3=no, gtk+3"
|
||||
|
|
@ -36,8 +37,15 @@ PACKAGECONFIG[ipv6] = "--enable-ipv6, --disable-ipv6,"
|
|||
PACKAGECONFIG[gnutls] = "--with-gnutls=yes, --with-gnutls=no, gnutls"
|
||||
PACKAGECONFIG[gcrypt] = "--with-gcrypt=yes, --with-gcrypt=no, libgcrypt"
|
||||
PACKAGECONFIG[krb5] = "--with-krb5=yes, --with-krb5=no, krb5"
|
||||
PACKAGECONFIG[lua] = "--with-lua=yes, --with-lua=no, lua"
|
||||
PACKAGECONFIG[zlib] = "--with-zlib=yes, --with-zlib=no, zlib"
|
||||
PACKAGECONFIG[geoip] = "--with-geoip=yes, --with-geoip=no, geoip"
|
||||
|
||||
EXTRA_OECONF = "--with-qt=no --enable-usr-local=no --enable-tshark --with-c-ares=no"
|
||||
# these next two options require addional layers
|
||||
PACKAGECONFIG[adns] = "--with-adns=yes, --with-adns=no, adns"
|
||||
PACKAGECONFIG[c-ares] = "--with-c-ares=yes, --with-c-ares=no, c-ares"
|
||||
|
||||
EXTRA_OECONF = "--with-qt=no --enable-usr-local=no --enable-tshark"
|
||||
|
||||
do_configure_prepend() {
|
||||
# force to use fallback
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user