Bump buildroot to version 2017-02
TG-3 #closed
This commit is contained in:
@@ -1,32 +1,35 @@
|
||||
From a0657feeb2b349ffda895a53e36ea5c992d871cf Mon Sep 17 00:00:00 2001
|
||||
From: Peter Seiderer <ps.report@gmx.net>
|
||||
Date: Sat, 31 Oct 2015 22:38:48 +0100
|
||||
Subject: [PATCH] configure: do not assume broken inet_pton in case of cross
|
||||
From 25d313275e87dc236e86c0e713cad08ea64253f8 Mon Sep 17 00:00:00 2001
|
||||
From: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
|
||||
Date: Thu, 8 Sep 2016 10:58:34 +0100
|
||||
Subject: [PATCH] configure.ac: do not assume broken inet_pton in case of cross
|
||||
compiling
|
||||
|
||||
Patch configure.ac to not assume broken inet_pton in case of cross
|
||||
compiling.
|
||||
|
||||
[Vincent: adapt the patch for 2.2.0]
|
||||
|
||||
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
|
||||
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
|
||||
---
|
||||
configure.ac | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index aec0548..d640e0c 100644
|
||||
index c43e366..9672831 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -2646,8 +2646,8 @@ int main()
|
||||
@@ -2373,8 +2373,8 @@ int main()
|
||||
#endif
|
||||
}], [AC_MSG_RESULT(ok);
|
||||
have_inet_pton=yes], [AC_MSG_RESULT(broken);
|
||||
-have_inet_pton=no], [AC_MSG_RESULT(cross compiling, assume it is broken);
|
||||
-have_inet_pton=no], [AC_MSG_RESULT([cross compiling, assume it is broken]);
|
||||
-have_inet_pton=no])],
|
||||
+have_inet_pton=no], [AC_MSG_RESULT([cross compiling, assume it is broken... not here]);
|
||||
+have_inet_pton=yes])],
|
||||
have_inet_pton=no)
|
||||
if test "$have_inet_pton" = no; then
|
||||
INET_PTON_LO="inet_pton.lo"
|
||||
AC_LIBOBJ(inet_pton)
|
||||
--
|
||||
2.1.4
|
||||
2.7.3
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
From 1ab938e762ee6ebd3211c22ef25a7575e37791c4 Mon Sep 17 00:00:00 2001
|
||||
From: Baruch Siach <baruch@tkos.co.il>
|
||||
Date: Thu, 29 Dec 2016 20:16:53 +0200
|
||||
Subject: [PATCH] androiddump: add missing sys/time.h header
|
||||
|
||||
struct timeval requires sys/time.h. Fixes the following musl libc build error:
|
||||
|
||||
androiddump.c: In function 'useSndTimeout':
|
||||
androiddump.c:262:18: error: variable 'socket_timeout' has initializer but incomplete type
|
||||
const struct timeval socket_timeout = {
|
||||
^
|
||||
|
||||
Change-Id: I52e204f32a012aabea2e54877e564576c072fe08
|
||||
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||||
---
|
||||
Upstream status: https://code.wireshark.org/review/19460
|
||||
---
|
||||
extcap/androiddump.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/extcap/androiddump.c b/extcap/androiddump.c
|
||||
index 8287c4bb1a76..fab7c10e05cc 100644
|
||||
--- a/extcap/androiddump.c
|
||||
+++ b/extcap/androiddump.c
|
||||
@@ -30,6 +30,7 @@
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#include <time.h>
|
||||
+#include <sys/time.h>
|
||||
|
||||
#ifdef HAVE_NETINET_IN_H
|
||||
# include <netinet/in.h>
|
||||
--
|
||||
2.11.0
|
||||
|
||||
@@ -8,7 +8,24 @@ config BR2_PACKAGE_WIRESHARK
|
||||
help
|
||||
Network traffic sniffer and protocol decoder.
|
||||
|
||||
http://www.wireshark.org
|
||||
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_USE_MMU
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# From: https://www.wireshark.org/download/src/all-versions/SIGNATURES-2.0.5.txt
|
||||
sha256 0ce0241330828973f5b4efee422a3760cab8ce0b41e7721c4b9fd185be1bb10b wireshark-2.0.5.tar.bz2
|
||||
# From: https://www.wireshark.org/download/src/all-versions/SIGNATURES-2.2.4.txt
|
||||
sha256 42a7fb35eed5a32478153e24601a284bb50148b7ba919c3e8452652f4c2a3911 wireshark-2.2.4.tar.bz2
|
||||
|
||||
@@ -4,9 +4,9 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
WIRESHARK_VERSION = 2.0.5
|
||||
WIRESHARK_VERSION = 2.2.4
|
||||
WIRESHARK_SOURCE = wireshark-$(WIRESHARK_VERSION).tar.bz2
|
||||
WIRESHARK_SITE = http://www.wireshark.org/download/src/all-versions
|
||||
WIRESHARK_SITE = https://www.wireshark.org/download/src/all-versions
|
||||
WIRESHARK_LICENSE = wireshark license
|
||||
WIRESHARK_LICENSE_FILES = COPYING
|
||||
WIRESHARK_DEPENDENCIES = host-pkgconf libpcap libglib2
|
||||
@@ -20,7 +20,6 @@ WIRESHARK_AUTORECONF = YES
|
||||
# Work around it by pointing includedir at staging
|
||||
WIRESHARK_CONF_OPTS = \
|
||||
--without-krb5 \
|
||||
--disable-usr-local \
|
||||
--enable-static=no \
|
||||
--with-libsmi=no \
|
||||
--with-lua=no \
|
||||
@@ -29,19 +28,20 @@ WIRESHARK_CONF_OPTS = \
|
||||
|
||||
# wireshark GUI options
|
||||
ifeq ($(BR2_PACKAGE_LIBGTK3),y)
|
||||
WIRESHARK_CONF_OPTS += --with-gtk3=yes
|
||||
WIRESHARK_CONF_OPTS += --with-gtk=3
|
||||
WIRESHARK_DEPENDENCIES += libgtk3
|
||||
else ifeq ($(BR2_PACKAGE_LIBGTK2),y)
|
||||
WIRESHARK_CONF_OPTS += --with-gtk2=yes
|
||||
WIRESHARK_DEPENDECIES += libgtk2
|
||||
WIRESHARK_CONF_OPTS += --with-gtk=2
|
||||
WIRESHARK_DEPENDENCIES += libgtk2
|
||||
else
|
||||
WIRESHARK_CONF_OPTS += --with-gtk3=no --with-gtk2=no
|
||||
WIRESHARK_CONF_OPTS += --with-gtk=no
|
||||
endif
|
||||
|
||||
# Qt4 needs accessibility, we don't support it
|
||||
ifeq ($(BR2_PACKAGE_QT5BASE_WIDGETS),y)
|
||||
ifeq ($(BR2_PACKAGE_WIRESHARK_QT),y)
|
||||
WIRESHARK_CONF_OPTS += --with-qt=5
|
||||
WIRESHARK_DEPENDENCIES += qt5base
|
||||
WIRESHARK_DEPENDENCIES += qt5base qt5tools
|
||||
WIRESHARK_CONF_ENV += ac_cv_path_QTCHOOSER=""
|
||||
# Seems it expects wrappers and passes a -qt=X parameter for version
|
||||
WIRESHARK_MAKE_OPTS += \
|
||||
MOC="$(HOST_DIR)/usr/bin/moc" \
|
||||
@@ -52,7 +52,7 @@ WIRESHARK_CONF_OPTS += --with-qt=no
|
||||
endif
|
||||
|
||||
# No GUI at all
|
||||
ifeq ($(BR2_PACKAGE_LIBGTK2)$(BR2_PACKAGE_LIBGTK3)$(BR2_PACKAGE_QT5BASE_WIDGETS),)
|
||||
ifeq ($(BR2_PACKAGE_WIRESHARK_GUI),)
|
||||
WIRESHARK_CONF_OPTS += --disable-wireshark
|
||||
endif
|
||||
|
||||
@@ -78,7 +78,7 @@ WIRESHARK_CONF_OPTS += --with-gnutls=no
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
|
||||
WIRESHARK_CONF_ENV = LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-config
|
||||
WIRESHARK_CONF_ENV += LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-config
|
||||
WIRESHARK_CONF_OPTS += --with-gcrypt=yes
|
||||
WIRESHARK_DEPENDENCIES += libgcrypt
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user